@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/marshaller",
3
- "version": "3.3.1",
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.1",
43
- "@hpcc-js/codemirror": "^3.8.1",
44
- "@hpcc-js/common": "^3.8.1",
45
- "@hpcc-js/comms": "^3.17.1",
46
- "@hpcc-js/composite": "^3.6.1",
47
- "@hpcc-js/ddl-shim": "^3.4.1",
48
- "@hpcc-js/dgrid": "^3.9.1",
49
- "@hpcc-js/form": "^3.5.1",
50
- "@hpcc-js/graph": "^3.8.1",
51
- "@hpcc-js/layout": "^3.6.1",
52
- "@hpcc-js/map": "^3.6.1",
53
- "@hpcc-js/other": "^3.6.1",
54
- "@hpcc-js/phosphor": "^3.7.1",
55
- "@hpcc-js/util": "^3.6.1"
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.1",
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": "0cfcae9b4ccbd0b3c9f21381f4581bf121392585"
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.childActivation(this._lhsDebugSheet.active());
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
  })