treege 0.7.0 → 0.7.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +2 -1
- package/dist/components/DataDisplay/TreeCard/TreeCard.d.ts +1 -1
- package/dist/features/Treege/components/Forms/FormTreeCardMutation/useFormTreeCardMutation.d.ts +2 -2
- package/dist/features/Treege/components/TreeGrid/useTreeGrid.d.ts +2 -2
- package/dist/features/Treege/type/TreeNode.d.ts +1 -1
- package/dist/locales/en/button-en.d.ts +7 -0
- package/dist/locales/en/form-en.d.ts +36 -0
- package/dist/locales/en/modal-en.d.ts +8 -0
- package/dist/locales/en/snackMessage-en.d.ts +12 -0
- package/dist/locales/en/translation-en.d.ts +23 -0
- package/dist/locales/fr/button-fr.d.ts +7 -0
- package/dist/locales/fr/form-fr.d.ts +36 -0
- package/dist/locales/fr/modal-fr.d.ts +8 -0
- package/dist/locales/fr/snackMessage-fr.d.ts +12 -0
- package/dist/locales/fr/translation-fr.d.ts +23 -0
- package/dist/main.js +5030 -7749
- package/dist/main.umd.cjs +41 -37
- package/package.json +20 -20
- package/dist/types/vite-env.d.ts +0 -2
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "treege",
|
|
3
3
|
"description": "Form decision tree generator",
|
|
4
4
|
"license": "ISC",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.2",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "dist/main.d.ts",
|
|
8
8
|
"main": "dist/main.umd.cjs",
|
|
@@ -35,34 +35,34 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@codemirror/lang-json": "^6.0.0",
|
|
37
37
|
"@mui/icons-material": "^5.8.4",
|
|
38
|
-
"@tracktor/design-system": "^1.
|
|
38
|
+
"@tracktor/design-system": "^1.22.0",
|
|
39
39
|
"@uiw/codemirror-theme-dracula": "^4.11.4",
|
|
40
40
|
"@uiw/react-codemirror": "^4.11.4",
|
|
41
|
-
"axios": "^1.
|
|
42
|
-
"i18next": "^
|
|
43
|
-
"i18next-browser-languagedetector": "^6.1.
|
|
41
|
+
"axios": "^1.3.4",
|
|
42
|
+
"i18next": "^22.4.11",
|
|
43
|
+
"i18next-browser-languagedetector": "^6.1.8",
|
|
44
44
|
"react": "^18.2.0",
|
|
45
|
-
"react-d3-tree": "^3.
|
|
45
|
+
"react-d3-tree": "^3.5.0",
|
|
46
46
|
"react-dom": "^18.2.0",
|
|
47
|
-
"react-i18next": "^
|
|
48
|
-
"react-query": "^3.39.
|
|
47
|
+
"react-i18next": "^12.2.0",
|
|
48
|
+
"react-query": "^3.39.3"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@testing-library/jest-dom": "^5.16.5",
|
|
52
|
-
"@testing-library/react": "^
|
|
53
|
-
"@testing-library/user-event": "^
|
|
54
|
-
"@types/node": "^
|
|
55
|
-
"@types/react": "^18.0.
|
|
56
|
-
"@types/react-dom": "^18.0.
|
|
57
|
-
"@vitejs/plugin-react": "^
|
|
58
|
-
"@vitest/ui": "0.
|
|
52
|
+
"@testing-library/react": "^14.0.0",
|
|
53
|
+
"@testing-library/user-event": "^14.4.3",
|
|
54
|
+
"@types/node": "^18.14.6",
|
|
55
|
+
"@types/react": "^18.0.28",
|
|
56
|
+
"@types/react-dom": "^18.0.11",
|
|
57
|
+
"@vitejs/plugin-react": "^3.1.0",
|
|
58
|
+
"@vitest/ui": "0.29.2",
|
|
59
59
|
"eslint-config-react-tracktor": "^1.0.5",
|
|
60
|
-
"husky": "^8.0.
|
|
61
|
-
"jsdom": "
|
|
60
|
+
"husky": "^8.0.3",
|
|
61
|
+
"jsdom": "21.1.0",
|
|
62
62
|
"typescript": "^4.7.4",
|
|
63
|
-
"vite": "^4.1.
|
|
64
|
-
"vite-plugin-dts": "^1.
|
|
65
|
-
"vitest": "^0.
|
|
63
|
+
"vite": "^4.1.4",
|
|
64
|
+
"vite-plugin-dts": "^2.1.0",
|
|
65
|
+
"vitest": "^0.29.2"
|
|
66
66
|
},
|
|
67
67
|
"peerDependencies": {
|
|
68
68
|
"react": ">=18.0.0",
|
package/dist/types/vite-env.d.ts
DELETED