@hpcc-js/graph 3.7.2 → 3.7.5
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/dagre-B-z4SP0u.js.map +1 -1
- 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 +8 -8
- package/src/Edge.ts +1 -1
- package/src/Graph.ts +1 -1
- package/src/Sankey.ts +1 -1
- package/src/Subgraph.ts +1 -1
- package/src/Vertex.ts +1 -1
- package/types/Edge.d.ts +1 -1
- package/types/Graph.d.ts +1 -1
- package/types/Sankey.d.ts +1 -1
- package/types/Subgraph.d.ts +1 -1
- package/types/Vertex.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hpcc-js/graph",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.5",
|
|
4
4
|
"description": "hpcc-js - Viz Graph",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.cjs",
|
|
@@ -38,17 +38,17 @@
|
|
|
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.5.
|
|
41
|
+
"@hpcc-js/api": "^3.4.16",
|
|
42
|
+
"@hpcc-js/common": "^3.7.6",
|
|
43
|
+
"@hpcc-js/html": "^3.3.16",
|
|
44
|
+
"@hpcc-js/react": "^3.4.16",
|
|
45
|
+
"@hpcc-js/util": "^3.5.5"
|
|
46
46
|
},
|
|
47
47
|
"optionalPeerDependencies": {
|
|
48
48
|
"react": ">=17.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@hpcc-js/esbuild-plugins": "^1.8.
|
|
51
|
+
"@hpcc-js/esbuild-plugins": "^1.8.7",
|
|
52
52
|
"@hpcc-js/wasm-graphviz": "1.21.2",
|
|
53
53
|
"@types/d3-transition": "1.3.6",
|
|
54
54
|
"@types/dagre": "0.7.54",
|
|
@@ -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": "6f134126379fe058a052986758b792d7b4ddb84b"
|
|
77
77
|
}
|
package/src/Edge.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Platform, SVGWidget, TextBox, Widget } from "@hpcc-js/common";
|
|
2
2
|
import { curveBasis as d3CurveBasis, curveBundle as d3CurveBundle, curveCardinal as d3CurveCardinal, curveCatmullRom as d3CurveCatmullRom, curveLinear as d3CurveLinear, line as d3Line } from "d3-shape";
|
|
3
3
|
|
|
4
|
-
import "
|
|
4
|
+
import "./Edge.css";
|
|
5
5
|
|
|
6
6
|
const Curve = {
|
|
7
7
|
basis: d3CurveBasis,
|
package/src/Graph.ts
CHANGED
package/src/Sankey.ts
CHANGED
package/src/Subgraph.ts
CHANGED
package/src/Vertex.ts
CHANGED
package/types/Edge.d.ts
CHANGED
package/types/Graph.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import { Edge } from "./Edge.ts";
|
|
|
4
4
|
import * as GraphLayouts from "./GraphLayouts.ts";
|
|
5
5
|
import { Subgraph } from "./Subgraph.ts";
|
|
6
6
|
import { Vertex } from "./Vertex.ts";
|
|
7
|
-
import "
|
|
7
|
+
import "./Graph.css";
|
|
8
8
|
export interface Lineage {
|
|
9
9
|
parent: Widget;
|
|
10
10
|
child: Widget;
|
package/types/Sankey.d.ts
CHANGED
package/types/Subgraph.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Icon, SVGWidget, Text } from "@hpcc-js/common";
|
|
2
2
|
import "d3-transition";
|
|
3
|
-
import "
|
|
3
|
+
import "./Subgraph.css";
|
|
4
4
|
export type SubgraphMinState = "normal" | "partial";
|
|
5
5
|
export declare class Subgraph extends SVGWidget {
|
|
6
6
|
protected _border: any;
|
package/types/Vertex.d.ts
CHANGED