Skip to content

Commit f9c5b91

Browse files
author
Teamcity
committed
Release: 0.2.1
1 parent 95530df commit f9c5b91

File tree

7 files changed

+65
-37
lines changed

7 files changed

+65
-37
lines changed

.github/workflows/fake-pr-tests.yml

-18
This file was deleted.

forward_engineering/api.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

localization/en.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"TOOLBAR___ADD_ATTRIBUTE": "Add Column",
1717
"TOOLBAR___INSERT_FIELD": "Insert Column",
1818
"TOOLBAR___APPEND_FIELD": "Append Column",
19-
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toogle column details",
19+
"TOOLBAR___TOGGLE_FIELD_DETAILS": "Toggle column details",
2020
"TOOLBAR___SHOW_FOREIGN_MASTER": "Toggle foreign master",
2121
"TOOLBAR___SHOW_MODEL_VIEW": "Toggle model views",
2222
"TOOLBAR___DISTRIBUTE_ORTHOGONALLY": "Distribute tables orthogonally",

package.json

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "HBase",
3-
"version": "0.1.17",
3+
"version": "0.2.1",
44
"author": "hackolade",
55
"engines": {
66
"hackolade": "2.3.2",
@@ -35,15 +35,19 @@
3535
},
3636
"devDependencies": {
3737
"@hackolade/hck-esbuild-plugins-pack": "0.0.1",
38-
"esbuild": "0.19.2",
38+
"@typescript-eslint/parser": "7.11.0",
39+
"@typescript-eslint/eslint-plugin": "7.11.0",
40+
"esbuild": "0.20.2",
3941
"esbuild-plugin-clean": "1.0.1",
40-
"eslint": "8.48.0",
41-
"eslint-config-prettier": "9.0.0",
42-
"eslint-plugin-prettier": "5.0.0",
43-
"fs-extra": "11.1.1",
42+
"eslint": "8.57.0",
43+
"eslint-config-prettier": "9.1.0",
44+
"eslint-formatter-teamcity": "^1.0.0",
45+
"eslint-plugin-import": "^2.26.0",
46+
"eslint-plugin-prettier": "5.1.3",
47+
"eslint-plugin-unused-imports": "3.2.0",
4448
"lint-staged": "14.0.1",
45-
"prettier": "3.0.2",
46-
"simple-git-hooks": "2.9.0"
49+
"prettier": "3.2.5",
50+
"simple-git-hooks": "2.11.1"
4751
},
4852
"lint-staged": {
4953
"*.{js,json}": "prettier --write"

properties_pane/field_level/fieldLevelConfig.json

+15-4
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
* Copyright © 2016-2017 by IntegrIT S.A. dba Hackolade. All rights reserved.
33
*
44
* The copyright to the computer software herein is the property of IntegrIT S.A.
5-
* The software may be used and/or copied only with the written permission of
6-
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7-
* the agreement/contract under which the software has been supplied.
5+
* The software may be used and/or copied only with the written permission of
6+
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
7+
* the agreement/contract under which the software has been supplied.
88

99

1010
In order to define custom properties for any object's properties pane, you may copy/paste from the following,
@@ -226,7 +226,18 @@ making sure that you maintain a proper JSON format.
226226
],
227227
"counter": "numeric",
228228
"boolean": "boolean",
229-
"object": "document",
229+
"object": [
230+
"schemaId",
231+
"type",
232+
"description",
233+
"dependencies",
234+
"required",
235+
"primaryKey",
236+
"minProperties",
237+
"maxProperties",
238+
"additionalProperties",
239+
"comments"
240+
],
230241
"array": "array",
231242
"null": "null"
232243
}

reverse_engineering/api.js

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tsconfig.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"compilerOptions": {
3+
"baseUrl": ".",
4+
"outDir": "./tscDist",
5+
"allowJs": true,
6+
"checkJs": false,
7+
"target": "ES2016",
8+
"lib": ["ESNext", "DOM"],
9+
"sourceMap": true,
10+
"jsx": "react-jsx",
11+
"moduleResolution": "node",
12+
"experimentalDecorators": true,
13+
"noUnusedParameters": true,
14+
"noUnusedLocals": true,
15+
"noImplicitThis": true,
16+
"noImplicitAny": false,
17+
"alwaysStrict": true,
18+
"skipLibCheck": true,
19+
"module": "ESNext",
20+
"strict": true,
21+
"useUnknownInCatchVariables": true,
22+
"allowSyntheticDefaultImports": true,
23+
"isolatedModules": true,
24+
"resolveJsonModule": true,
25+
"esModuleInterop": true,
26+
"forceConsistentCasingInFileNames": true,
27+
"typeRoots": ["./node_modules/@types", "./types"]
28+
},
29+
"include": ["reverse_engineering", "forward_engineering"],
30+
"exclude": ["**/node_modules/**", "release/**/*"]
31+
}

0 commit comments

Comments
 (0)