@hpcc-js/layout 3.5.15 → 3.6.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/dist/index.js +2 -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 +10 -10
- package/types/Legend.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.6.1",
|
|
4
4
|
"description": "hpcc-js - Viz Layout",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"types/*"
|
|
22
22
|
],
|
|
23
23
|
"scripts": {
|
|
24
|
-
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
|
|
24
|
+
"clean": "rimraf --glob lib* types types-3.4 dist *.tsbuildinfo .turbo",
|
|
25
25
|
"bundle": "vite build",
|
|
26
26
|
"bundle-watch": "vite build --watch",
|
|
27
27
|
"bundle-serve": "vite --port 5511",
|
|
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,14 +39,14 @@
|
|
|
39
39
|
"update-major": "npx --yes npm-check-updates -u"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@hpcc-js/api": "^3.
|
|
43
|
-
"@hpcc-js/chart": "^3.
|
|
44
|
-
"@hpcc-js/common": "^3.
|
|
45
|
-
"@hpcc-js/dgrid2": "^3.
|
|
46
|
-
"@hpcc-js/util": "^3.
|
|
42
|
+
"@hpcc-js/api": "^3.5.1",
|
|
43
|
+
"@hpcc-js/chart": "^3.8.1",
|
|
44
|
+
"@hpcc-js/common": "^3.8.1",
|
|
45
|
+
"@hpcc-js/dgrid2": "^3.7.1",
|
|
46
|
+
"@hpcc-js/util": "^3.6.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@hpcc-js/esbuild-plugins": "^1.
|
|
49
|
+
"@hpcc-js/esbuild-plugins": "^1.9.1",
|
|
50
50
|
"@types/d3-transition": "1.3.6",
|
|
51
51
|
"d3-drag": "^1",
|
|
52
52
|
"d3-selection": "^1",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
67
67
|
},
|
|
68
68
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "0cfcae9b4ccbd0b3c9f21381f4581bf121392585"
|
|
70
70
|
}
|
package/types/Legend.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ export declare class Legend extends SVGWidget {
|
|
|
17
17
|
targetWidget(_: Widget): this;
|
|
18
18
|
getWidget(): any;
|
|
19
19
|
getPalette(): Palette.OrdinalPaletteFunc | Palette.RainbowPaletteFunc;
|
|
20
|
-
getPaletteType(): "
|
|
20
|
+
getPaletteType(): "ordinal" | "rainbow";
|
|
21
21
|
fillColorFunc(): (row: any, col: any, sel: any) => any;
|
|
22
22
|
fillColor(row: any, col: any, sel: any): any;
|
|
23
23
|
protected _g: any;
|