@hpcc-js/marshaller 3.2.2 → 3.3.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/dist/index.js +5072 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +100 -2
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +18 -18
- package/src/ddl2/ddleditor.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/marshaller",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.3.0",
|
|
4
4
|
"description": "hpcc-js - Viz Marshaller",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"bundle": "vite build",
|
|
26
26
|
"bundle-watch": "vite build --watch",
|
|
27
27
|
"bundle-serve": "vite --port 5520",
|
|
28
|
-
"gen-types": "
|
|
28
|
+
"gen-types": "tsgo --project tsconfig.json",
|
|
29
29
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
30
30
|
"build": "run-p gen-types bundle",
|
|
31
31
|
"watch": "run-p gen-types-watch bundle-watch",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"update-major": "npx --yes npm-check-updates -u"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hpcc-js/chart": "^3.
|
|
43
|
-
"@hpcc-js/codemirror": "^3.
|
|
44
|
-
"@hpcc-js/common": "^3.
|
|
45
|
-
"@hpcc-js/comms": "^3.
|
|
46
|
-
"@hpcc-js/composite": "^3.
|
|
47
|
-
"@hpcc-js/ddl-shim": "^3.
|
|
48
|
-
"@hpcc-js/dgrid": "^3.
|
|
49
|
-
"@hpcc-js/form": "^3.
|
|
50
|
-
"@hpcc-js/graph": "^3.
|
|
51
|
-
"@hpcc-js/layout": "^3.
|
|
52
|
-
"@hpcc-js/map": "^3.
|
|
53
|
-
"@hpcc-js/other": "^3.
|
|
54
|
-
"@hpcc-js/phosphor": "^3.
|
|
55
|
-
"@hpcc-js/util": "^3.
|
|
42
|
+
"@hpcc-js/chart": "^3.8.0",
|
|
43
|
+
"@hpcc-js/codemirror": "^3.8.0",
|
|
44
|
+
"@hpcc-js/common": "^3.8.0",
|
|
45
|
+
"@hpcc-js/comms": "^3.17.0",
|
|
46
|
+
"@hpcc-js/composite": "^3.6.0",
|
|
47
|
+
"@hpcc-js/ddl-shim": "^3.4.0",
|
|
48
|
+
"@hpcc-js/dgrid": "^3.9.0",
|
|
49
|
+
"@hpcc-js/form": "^3.5.0",
|
|
50
|
+
"@hpcc-js/graph": "^3.8.0",
|
|
51
|
+
"@hpcc-js/layout": "^3.6.0",
|
|
52
|
+
"@hpcc-js/map": "^3.6.0",
|
|
53
|
+
"@hpcc-js/other": "^3.6.0",
|
|
54
|
+
"@hpcc-js/phosphor": "^3.7.0",
|
|
55
|
+
"@hpcc-js/util": "^3.6.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@hpcc-js/esbuild-plugins": "^1.
|
|
58
|
+
"@hpcc-js/esbuild-plugins": "^1.9.0",
|
|
59
59
|
"d3-array": "^1",
|
|
60
60
|
"d3-collection": "^1",
|
|
61
61
|
"d3-dsv": "^1",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
74
74
|
},
|
|
75
75
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "b762adfab7d03d06ea8cfab59059456100ea757c"
|
|
77
77
|
}
|
package/src/ddl2/ddleditor.ts
CHANGED
|
@@ -31,7 +31,7 @@ export class DDLEditor extends SplitPanel {
|
|
|
31
31
|
if (success) {
|
|
32
32
|
this._errorTable.data([]);
|
|
33
33
|
} else {
|
|
34
|
-
this._errorTable.data(errors.map(error => [error.
|
|
34
|
+
this._errorTable.data(errors.map(error => [error.instancePath, error.keyword, error.message, JSON.stringify(error.params)]));
|
|
35
35
|
}
|
|
36
36
|
} catch (e) {
|
|
37
37
|
this._errorTable.data([["", "Validation Failed", "", ""]]);
|