@hpcc-js/graph 3.6.6 → 3.7.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/assets/{graphviz-DQ0E8zfY.js.map → graphviz-DJ070oMZ.js.map} +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +13 -13
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +9 -9
- package/src/Edge.css +3 -3
- package/src/Graph.css +1 -1
- package/src/Sankey.css +7 -8
- package/src/Subgraph.css +3 -3
- package/src/Vertex.css +2 -2
- package/src/common/sankeyGraph.css +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/graph",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.7.0",
|
|
4
4
|
"description": "hpcc-js - Viz Graph",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -38,20 +38,20 @@
|
|
|
38
38
|
"update-major": "npx --yes npm-check-updates -u"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@hpcc-js/api": "^3.4.
|
|
42
|
-
"@hpcc-js/common": "^3.7.
|
|
43
|
-
"@hpcc-js/html": "^3.3.
|
|
44
|
-
"@hpcc-js/react": "^3.4.
|
|
45
|
-
"@hpcc-js/util": "^3.
|
|
41
|
+
"@hpcc-js/api": "^3.4.11",
|
|
42
|
+
"@hpcc-js/common": "^3.7.1",
|
|
43
|
+
"@hpcc-js/html": "^3.3.11",
|
|
44
|
+
"@hpcc-js/react": "^3.4.11",
|
|
45
|
+
"@hpcc-js/util": "^3.5.0"
|
|
46
46
|
},
|
|
47
47
|
"optionalPeerDependencies": {
|
|
48
48
|
"react": ">=17.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
51
|
"@hpcc-js/esbuild-plugins": "^1.8.3",
|
|
52
|
-
"@hpcc-js/wasm-graphviz": "1.
|
|
52
|
+
"@hpcc-js/wasm-graphviz": "1.21.0",
|
|
53
53
|
"@types/d3-transition": "1.3.6",
|
|
54
|
-
"@types/dagre": "0.7.
|
|
54
|
+
"@types/dagre": "0.7.54",
|
|
55
55
|
"d3-force": "^1",
|
|
56
56
|
"d3-geo": "^1",
|
|
57
57
|
"d3-interpolate-path": "2.3.0",
|
|
@@ -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": "
|
|
76
|
+
"gitHead": "ada394f582442d2b23a7ff55b9f87a50a723f45b"
|
|
77
77
|
}
|
package/src/Edge.css
CHANGED
package/src/Graph.css
CHANGED
package/src/Sankey.css
CHANGED
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.graph_Sankey .node.selected rect {
|
|
9
|
-
|
|
9
|
+
stroke: red;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.graph_Sankey .node.over rect {
|
|
13
|
-
|
|
13
|
+
stroke: orange;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.graph_Sankey .node.selected.over rect {
|
|
17
|
-
|
|
17
|
+
stroke: red;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.graph_Sankey .node text {
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.graph_Sankey .node.selected text {
|
|
26
|
-
|
|
26
|
+
fill: red;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.graph_Sankey .node.over text {
|
|
30
|
-
|
|
30
|
+
fill: orange;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.graph_Sankey .node.selected.over text {
|
|
34
|
-
|
|
34
|
+
fill: red;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.graph_Sankey .link {
|
|
@@ -42,5 +42,4 @@
|
|
|
42
42
|
|
|
43
43
|
.graph_Sankey .link:hover {
|
|
44
44
|
stroke-opacity: .5;
|
|
45
|
-
}
|
|
46
|
-
|
|
45
|
+
}
|
package/src/Subgraph.css
CHANGED
package/src/Vertex.css
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
.graph_Vertex.selected .common_Shape {
|
|
2
|
-
stroke:red !important;
|
|
3
|
-
}
|
|
2
|
+
stroke: red !important;
|
|
3
|
+
}
|
|
@@ -6,15 +6,15 @@
|
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.graph_SankeyGraph .node.selected rect {
|
|
9
|
-
|
|
9
|
+
stroke: red;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.graph_SankeyGraph .node.over rect {
|
|
13
|
-
|
|
13
|
+
stroke: orange;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.graph_SankeyGraph .node.selected.over rect {
|
|
17
|
-
|
|
17
|
+
stroke: red;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.graph_SankeyGraph .node text {
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.graph_SankeyGraph .node.selected text {
|
|
26
|
-
|
|
26
|
+
fill: red;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.graph_SankeyGraph .node.over text {
|
|
30
|
-
|
|
30
|
+
fill: orange;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.graph_SankeyGraph .node.selected.over text {
|
|
34
|
-
|
|
34
|
+
fill: red;
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.graph_SankeyGraph .link {
|
|
@@ -42,4 +42,4 @@
|
|
|
42
42
|
|
|
43
43
|
.graph_SankeyGraph .link:hover {
|
|
44
44
|
stroke-opacity: .5;
|
|
45
|
-
}
|
|
45
|
+
}
|