@hpcc-js/composite 3.5.6 → 3.5.8
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 +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +15 -13
- package/src/MegaChart.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/composite",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.8",
|
|
4
4
|
"description": "hpcc-js - Viz Composite",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -23,10 +23,12 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
|
|
25
25
|
"bundle": "vite build",
|
|
26
|
-
"bundle-watch": "vite --
|
|
26
|
+
"bundle-watch": "vite build --watch",
|
|
27
|
+
"bundle-serve": "vite --port 5503",
|
|
27
28
|
"gen-types": "tsc --project tsconfig.json",
|
|
28
29
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
29
30
|
"build": "run-p gen-types bundle",
|
|
31
|
+
"watch": "run-p gen-types-watch bundle-watch",
|
|
30
32
|
"lint": "eslint ./src",
|
|
31
33
|
"lint-fix": "eslint --fix src/**/*.ts",
|
|
32
34
|
"docs": "typedoc --options tdoptions.json .",
|
|
@@ -37,18 +39,18 @@
|
|
|
37
39
|
"update-major": "npx --yes npm-check-updates -u"
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
40
|
-
"@hpcc-js/api": "^3.4.
|
|
41
|
-
"@hpcc-js/chart": "^3.7.
|
|
42
|
-
"@hpcc-js/common": "^3.7.
|
|
43
|
-
"@hpcc-js/dgrid": "^3.7.
|
|
44
|
-
"@hpcc-js/form": "^3.4.
|
|
45
|
-
"@hpcc-js/html": "^3.3.
|
|
46
|
-
"@hpcc-js/other": "^3.5.
|
|
47
|
-
"@hpcc-js/phosphor": "^3.
|
|
48
|
-
"@hpcc-js/util": "^3.5.
|
|
42
|
+
"@hpcc-js/api": "^3.4.17",
|
|
43
|
+
"@hpcc-js/chart": "^3.7.6",
|
|
44
|
+
"@hpcc-js/common": "^3.7.7",
|
|
45
|
+
"@hpcc-js/dgrid": "^3.7.7",
|
|
46
|
+
"@hpcc-js/form": "^3.4.6",
|
|
47
|
+
"@hpcc-js/html": "^3.3.17",
|
|
48
|
+
"@hpcc-js/other": "^3.5.6",
|
|
49
|
+
"@hpcc-js/phosphor": "^3.6.1",
|
|
50
|
+
"@hpcc-js/util": "^3.5.6"
|
|
49
51
|
},
|
|
50
52
|
"devDependencies": {
|
|
51
|
-
"@hpcc-js/esbuild-plugins": "^1.8.
|
|
53
|
+
"@hpcc-js/esbuild-plugins": "^1.8.8",
|
|
52
54
|
"@types/d3-transition": "1.3.6",
|
|
53
55
|
"d3-collection": "^1",
|
|
54
56
|
"d3-selection": "^1",
|
|
@@ -65,5 +67,5 @@
|
|
|
65
67
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
66
68
|
},
|
|
67
69
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
68
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "630e839917f1cc38f6e3324db5a9ac991234599a"
|
|
69
71
|
}
|
package/src/MegaChart.ts
CHANGED
|
@@ -133,7 +133,7 @@ export class MegaChart extends Border {
|
|
|
133
133
|
;
|
|
134
134
|
this._maximizeButton.click = function (buttonWidget) {
|
|
135
135
|
const target = context.target() as any;
|
|
136
|
-
let node
|
|
136
|
+
let node;
|
|
137
137
|
const isMaximized = d3Select(target).classed("__hpccisMaximized");
|
|
138
138
|
|
|
139
139
|
// Find the layout_Grid ancestor
|