@goplasmatic/datalogic-ui 4.0.21 → 5.0.0
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/README.md +35 -15
- package/dist/components/logic-editor/DataLogicEditor.d.ts +1 -1
- package/dist/components/logic-editor/DataLogicEditor.d.ts.map +1 -1
- package/dist/components/logic-editor/EditorToolbar.d.ts +3 -3
- package/dist/components/logic-editor/EditorToolbar.d.ts.map +1 -1
- package/dist/components/logic-editor/UndoRedoToolbar.d.ts.map +1 -1
- package/dist/components/logic-editor/config/operators/utility.d.ts.map +1 -1
- package/dist/components/logic-editor/context/editor/useClipboardState.d.ts.map +1 -1
- package/dist/components/logic-editor/context/editor/useHistoryState.d.ts.map +1 -1
- package/dist/components/logic-editor/debugger-controls/DebuggerControls.d.ts.map +1 -1
- package/dist/components/logic-editor/hooks/index.d.ts +1 -1
- package/dist/components/logic-editor/hooks/index.d.ts.map +1 -1
- package/dist/components/logic-editor/hooks/useLogicEditor.d.ts +3 -3
- package/dist/components/logic-editor/hooks/useLogicEditor.d.ts.map +1 -1
- package/dist/components/logic-editor/hooks/useWasmEvaluator.d.ts +8 -3
- package/dist/components/logic-editor/hooks/useWasmEvaluator.d.ts.map +1 -1
- package/dist/components/logic-editor/types/editor.d.ts +18 -6
- package/dist/components/logic-editor/types/editor.d.ts.map +1 -1
- package/dist/components/logic-editor/types/index.d.ts +1 -1
- package/dist/components/logic-editor/types/index.d.ts.map +1 -1
- package/dist/components/logic-editor/types/trace.d.ts +22 -0
- package/dist/components/logic-editor/types/trace.d.ts.map +1 -1
- package/dist/components/logic-editor/utils/converters/types.d.ts +2 -2
- package/dist/components/logic-editor/utils/converters/types.d.ts.map +1 -1
- package/dist/components/logic-editor/utils/jsonlogic-to-nodes.d.ts +2 -2
- package/dist/components/logic-editor/utils/jsonlogic-to-nodes.d.ts.map +1 -1
- package/dist/components/logic-editor/utils/trace/node-type.d.ts +1 -1
- package/dist/components/logic-editor/utils/trace/node-type.d.ts.map +1 -1
- package/dist/components/logic-editor/utils/trace/types.d.ts +3 -3
- package/dist/components/logic-editor/utils/trace/types.d.ts.map +1 -1
- package/dist/datalogic_wasm-CF1jcNAu.js +634 -0
- package/dist/datalogic_wasm-Dj9TEPTG.cjs +637 -0
- package/dist/index.cjs +868 -388
- package/dist/index.js +869 -389
- package/dist/styles.css +302 -136
- package/package.json +32 -29
- package/dist/datalogic_wasm-Ckkdrc0z.cjs +0 -383
- package/dist/datalogic_wasm-daWVf40b.js +0 -380
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@goplasmatic/datalogic-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "DataLogic Debugger - Visual JSONLogic Debugger & Editor for debugging and visualizing JSONLogic expressions",
|
|
7
7
|
"keywords": [
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"directory": "ui"
|
|
22
22
|
},
|
|
23
23
|
"author": "Plasmatic",
|
|
24
|
-
"license": "
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
25
|
"main": "./dist/index.cjs",
|
|
26
26
|
"module": "./dist/index.js",
|
|
27
27
|
"types": "./dist/lib.d.ts",
|
|
@@ -52,13 +52,27 @@
|
|
|
52
52
|
"sideEffects": [
|
|
53
53
|
"**/*.css"
|
|
54
54
|
],
|
|
55
|
+
"scripts": {
|
|
56
|
+
"dev": "vite",
|
|
57
|
+
"build": "tsc -b && vite build",
|
|
58
|
+
"build:lib": "vite build --config vite.lib.config.ts",
|
|
59
|
+
"build:embed": "vite build --config vite.embed.config.ts",
|
|
60
|
+
"lint": "eslint .",
|
|
61
|
+
"preview": "vite preview",
|
|
62
|
+
"prepublishOnly": "npm run build:lib",
|
|
63
|
+
"predev": "npm run sync-wasm",
|
|
64
|
+
"prebuild": "npm run sync-wasm",
|
|
65
|
+
"prebuild:lib": "npm run sync-wasm",
|
|
66
|
+
"prebuild:embed": "npm run sync-wasm",
|
|
67
|
+
"sync-wasm": "rm -rf vendor/datalogic && mkdir -p vendor && cp -R ../bindings/wasm/pkg vendor/datalogic"
|
|
68
|
+
},
|
|
55
69
|
"dependencies": {
|
|
56
|
-
"@dagrejs/dagre": "^
|
|
70
|
+
"@dagrejs/dagre": "^3.0.0",
|
|
71
|
+
"@goplasmatic/datalogic-wasm": "5.0.0",
|
|
57
72
|
"@msgpack/msgpack": "^3.1.3",
|
|
58
73
|
"fflate": "^0.8.2",
|
|
59
|
-
"lucide-react": "^
|
|
60
|
-
"uuid": "^
|
|
61
|
-
"@goplasmatic/datalogic": "4.0.21"
|
|
74
|
+
"lucide-react": "^1.14.0",
|
|
75
|
+
"uuid": "^14.0.0"
|
|
62
76
|
},
|
|
63
77
|
"peerDependencies": {
|
|
64
78
|
"@xyflow/react": "^12.0.0",
|
|
@@ -67,32 +81,21 @@
|
|
|
67
81
|
},
|
|
68
82
|
"devDependencies": {
|
|
69
83
|
"@eslint/js": "^10.0.1",
|
|
70
|
-
"@types/node": "^25.
|
|
84
|
+
"@types/node": "^25.7.0",
|
|
71
85
|
"@types/react": "^19.2.14",
|
|
72
86
|
"@types/react-dom": "^19.2.3",
|
|
73
87
|
"@vitejs/plugin-react": "^6.0.1",
|
|
74
|
-
"@xyflow/react": "^12.10.
|
|
75
|
-
"eslint": "^10.0
|
|
76
|
-
"eslint-plugin-react-hooks": "^7.
|
|
88
|
+
"@xyflow/react": "^12.10.2",
|
|
89
|
+
"eslint": "^10.3.0",
|
|
90
|
+
"eslint-plugin-react-hooks": "^7.1.1",
|
|
77
91
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
78
|
-
"globals": "^17.
|
|
79
|
-
"react": "^19.2.
|
|
80
|
-
"react-dom": "^19.2.
|
|
81
|
-
"typescript": "~
|
|
82
|
-
"typescript-eslint": "^8.
|
|
83
|
-
"vite": "^8.0.
|
|
84
|
-
"vite-plugin-dts": "^
|
|
92
|
+
"globals": "^17.6.0",
|
|
93
|
+
"react": "^19.2.6",
|
|
94
|
+
"react-dom": "^19.2.6",
|
|
95
|
+
"typescript": "~6.0.3",
|
|
96
|
+
"typescript-eslint": "^8.59.3",
|
|
97
|
+
"vite": "^8.0.12",
|
|
98
|
+
"vite-plugin-dts": "^5.0.0",
|
|
85
99
|
"vite-plugin-wasm": "^3.6.0"
|
|
86
|
-
},
|
|
87
|
-
"scripts": {
|
|
88
|
-
"dev": "vite",
|
|
89
|
-
"build": "tsc -b && vite build",
|
|
90
|
-
"build:lib": "vite build --config vite.lib.config.ts",
|
|
91
|
-
"build:embed": "vite build --config vite.embed.config.ts",
|
|
92
|
-
"lint": "eslint .",
|
|
93
|
-
"preview": "vite preview",
|
|
94
|
-
"release:patch": "npm version patch && pnpm publish --access public --no-git-checks",
|
|
95
|
-
"release:minor": "npm version minor && pnpm publish --access public --no-git-checks",
|
|
96
|
-
"release:major": "npm version major && pnpm publish --access public --no-git-checks"
|
|
97
100
|
}
|
|
98
|
-
}
|
|
101
|
+
}
|