@hpcc-js/layout 3.4.5 → 3.5.1
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 +1 -1
- 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 +8 -8
- package/src/ChartPanel.ts +2 -3
- package/types/ChartPanel.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/layout",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "hpcc-js - Viz Layout",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"update-major": "npx --yes npm-check-updates -u"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@hpcc-js/api": "^3.4.
|
|
41
|
-
"@hpcc-js/chart": "^3.6.
|
|
42
|
-
"@hpcc-js/common": "^3.6.
|
|
43
|
-
"@hpcc-js/
|
|
44
|
-
"@hpcc-js/util": "^3.4.
|
|
40
|
+
"@hpcc-js/api": "^3.4.6",
|
|
41
|
+
"@hpcc-js/chart": "^3.6.2",
|
|
42
|
+
"@hpcc-js/common": "^3.6.2",
|
|
43
|
+
"@hpcc-js/dgrid2": "^3.5.4",
|
|
44
|
+
"@hpcc-js/util": "^3.4.5"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@hpcc-js/esbuild-plugins": "^1.8.
|
|
47
|
+
"@hpcc-js/esbuild-plugins": "^1.8.1",
|
|
48
48
|
"@types/d3-transition": "1.3.6",
|
|
49
49
|
"d3-drag": "^1",
|
|
50
50
|
"d3-selection": "^1",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
65
65
|
},
|
|
66
66
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "cdd52de0cb8b157acefb4cea23895268d8127570"
|
|
68
68
|
}
|
package/src/ChartPanel.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { IHighlight } from "@hpcc-js/api";
|
|
2
2
|
import { Button, Database, IconBar, ProgressBar, Spacer, SVGWidget, Text, TitleBar, ToggleButton, Utility, Widget } from "@hpcc-js/common";
|
|
3
|
-
import
|
|
4
|
-
import { Table } from "@hpcc-js/dgrid";
|
|
3
|
+
import { Table } from "@hpcc-js/dgrid2";
|
|
5
4
|
import { select as d3Select } from "d3-selection";
|
|
6
5
|
import { Border2 } from "./Border2.ts";
|
|
7
6
|
import { Carousel } from "./Carousel.ts";
|
|
@@ -100,7 +99,7 @@ export class ChartPanel<T extends Widget = Widget> extends Border2 implements IH
|
|
|
100
99
|
protected _table = new Table();
|
|
101
100
|
protected _widget: T;
|
|
102
101
|
|
|
103
|
-
protected _hideLegendToggleList = ["dgrid_Table"];
|
|
102
|
+
protected _hideLegendToggleList = ["dgrid_Table", "dgrid2_Table"];
|
|
104
103
|
|
|
105
104
|
constructor() {
|
|
106
105
|
super();
|
package/types/ChartPanel.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { IHighlight } from "@hpcc-js/api";
|
|
2
2
|
import { Database, ProgressBar, Spacer, TitleBar, Widget } from "@hpcc-js/common";
|
|
3
|
-
import { Table } from "@hpcc-js/
|
|
3
|
+
import { Table } from "@hpcc-js/dgrid2";
|
|
4
4
|
import { Border2 } from "./Border2.ts";
|
|
5
5
|
import { Carousel } from "./Carousel.ts";
|
|
6
6
|
import { Legend } from "./Legend.ts";
|