@hpcc-js/marshaller 3.3.1 → 3.4.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 +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +2 -2
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +17 -17
- package/src/dashy.ts +3 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/marshaller",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"description": "hpcc-js - Viz Marshaller",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -39,23 +39,23 @@
|
|
|
39
39
|
"update-major": "npx --yes npm-check-updates -u"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hpcc-js/chart": "^3.8.
|
|
43
|
-
"@hpcc-js/codemirror": "^3.8.
|
|
44
|
-
"@hpcc-js/common": "^3.8.
|
|
45
|
-
"@hpcc-js/comms": "^3.17.
|
|
46
|
-
"@hpcc-js/composite": "^3.6.
|
|
47
|
-
"@hpcc-js/ddl-shim": "^3.4.
|
|
48
|
-
"@hpcc-js/dgrid": "^3.9.
|
|
49
|
-
"@hpcc-js/form": "^3.5.
|
|
50
|
-
"@hpcc-js/graph": "^3.8.
|
|
51
|
-
"@hpcc-js/layout": "^3.6.
|
|
52
|
-
"@hpcc-js/map": "^3.6.
|
|
53
|
-
"@hpcc-js/other": "^3.6.
|
|
54
|
-
"@hpcc-js/phosphor": "^3.
|
|
55
|
-
"@hpcc-js/util": "^3.6.
|
|
42
|
+
"@hpcc-js/chart": "^3.8.2",
|
|
43
|
+
"@hpcc-js/codemirror": "^3.8.2",
|
|
44
|
+
"@hpcc-js/common": "^3.8.2",
|
|
45
|
+
"@hpcc-js/comms": "^3.17.2",
|
|
46
|
+
"@hpcc-js/composite": "^3.6.3",
|
|
47
|
+
"@hpcc-js/ddl-shim": "^3.4.2",
|
|
48
|
+
"@hpcc-js/dgrid": "^3.9.2",
|
|
49
|
+
"@hpcc-js/form": "^3.5.2",
|
|
50
|
+
"@hpcc-js/graph": "^3.8.2",
|
|
51
|
+
"@hpcc-js/layout": "^3.6.2",
|
|
52
|
+
"@hpcc-js/map": "^3.6.2",
|
|
53
|
+
"@hpcc-js/other": "^3.6.2",
|
|
54
|
+
"@hpcc-js/phosphor": "^3.8.0",
|
|
55
|
+
"@hpcc-js/util": "^3.6.2"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@hpcc-js/esbuild-plugins": "^1.9.
|
|
58
|
+
"@hpcc-js/esbuild-plugins": "^1.9.2",
|
|
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": "9d31241482c78decca86e3bf624244ce5b40f3d6"
|
|
77
77
|
}
|
package/src/dashy.ts
CHANGED
|
@@ -434,7 +434,9 @@ export class Dashy extends SplitPanel {
|
|
|
434
434
|
this.loadGraph();
|
|
435
435
|
break;
|
|
436
436
|
case this._lhsDebugSheet:
|
|
437
|
-
this._lhsDebugSheet.
|
|
437
|
+
const w = this._lhsDebugSheet.active();
|
|
438
|
+
const wa = this._lhsDebugSheet.getWidgetAdapter(w);
|
|
439
|
+
this._lhsDebugSheet.childActivation(w, wa);
|
|
438
440
|
break;
|
|
439
441
|
}
|
|
440
442
|
})
|