@hpcc-js/layout 3.1.0 → 3.2.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 +2599 -580
- package/dist/index.js.map +1 -7
- package/dist/index.umd.cjs +8 -0
- package/dist/index.umd.cjs.map +1 -0
- package/package.json +15 -13
- package/src/__package__.ts +2 -2
- package/src/index.ts +1 -0
- package/types/__package__.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/layout",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"description": "hpcc-js - Viz Layout",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/index.umd.cjs",
|
|
7
|
+
"module": "./dist/index.js",
|
|
6
8
|
"exports": {
|
|
7
9
|
".": {
|
|
8
10
|
"types": "./types/index.d.ts",
|
|
9
|
-
"
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"require": "./dist/index.umd.cjs"
|
|
10
13
|
},
|
|
11
14
|
"./dist/*": "./dist/*"
|
|
12
15
|
},
|
|
13
|
-
"
|
|
14
|
-
"browser": "./dist/index.js",
|
|
16
|
+
"browser": "./dist/index.umd.cjs",
|
|
15
17
|
"types": "./types/index.d.ts",
|
|
16
18
|
"files": [
|
|
17
19
|
"dist/*",
|
|
@@ -20,8 +22,8 @@
|
|
|
20
22
|
],
|
|
21
23
|
"scripts": {
|
|
22
24
|
"clean": "rimraf --glob lib* types dist *.tsbuildinfo .turbo",
|
|
23
|
-
"bundle": "
|
|
24
|
-
"bundle-watch": "
|
|
25
|
+
"bundle": "vite build",
|
|
26
|
+
"bundle-watch": "vite --port 5511",
|
|
25
27
|
"gen-types": "tsc --project tsconfig.json",
|
|
26
28
|
"gen-types-watch": "npm run gen-types -- --watch",
|
|
27
29
|
"build": "run-p gen-types bundle",
|
|
@@ -35,14 +37,14 @@
|
|
|
35
37
|
"update-major": "npx --yes npm-check-updates -u"
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"@hpcc-js/api": "^3.
|
|
39
|
-
"@hpcc-js/chart": "^3.
|
|
40
|
-
"@hpcc-js/common": "^3.
|
|
41
|
-
"@hpcc-js/dgrid2": "^3.
|
|
42
|
-
"@hpcc-js/util": "^3.
|
|
40
|
+
"@hpcc-js/api": "^3.3.0",
|
|
41
|
+
"@hpcc-js/chart": "^3.3.0",
|
|
42
|
+
"@hpcc-js/common": "^3.3.0",
|
|
43
|
+
"@hpcc-js/dgrid2": "^3.2.0",
|
|
44
|
+
"@hpcc-js/util": "^3.3.0"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
|
-
"@hpcc-js/esbuild-plugins": "^1.
|
|
47
|
+
"@hpcc-js/esbuild-plugins": "^1.4.0",
|
|
46
48
|
"@types/d3-transition": "1.3.6",
|
|
47
49
|
"d3-drag": "^1",
|
|
48
50
|
"d3-selection": "^1",
|
|
@@ -62,5 +64,5 @@
|
|
|
62
64
|
"url": "https://github.com/hpcc-systems/Visualization/issues"
|
|
63
65
|
},
|
|
64
66
|
"homepage": "https://github.com/hpcc-systems/Visualization",
|
|
65
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "145a4d4c8189c70f08e9804e63959d6dd398bd9f"
|
|
66
68
|
}
|
package/src/__package__.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export const PKG_NAME = "@hpcc-js/layout";
|
|
2
|
-
export const PKG_VERSION = "3.1.
|
|
3
|
-
export const BUILD_VERSION = "3.2.
|
|
2
|
+
export const PKG_VERSION = "3.1.1";
|
|
3
|
+
export const BUILD_VERSION = "3.2.1";
|
package/src/index.ts
CHANGED
package/types/__package__.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const PKG_NAME = "@hpcc-js/layout";
|
|
2
|
-
export declare const PKG_VERSION = "3.1.
|
|
3
|
-
export declare const BUILD_VERSION = "3.2.
|
|
2
|
+
export declare const PKG_VERSION = "3.1.1";
|
|
3
|
+
export declare const BUILD_VERSION = "3.2.1";
|