@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hpcc-js/graph",
3
- "version": "3.7.2",
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.13",
42
- "@hpcc-js/common": "^3.7.3",
43
- "@hpcc-js/html": "^3.3.13",
44
- "@hpcc-js/react": "^3.4.13",
45
- "@hpcc-js/util": "^3.5.2"
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.5",
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": "eab3a48367063ed368bdd82c05de6a822ee308aa"
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 "../src/Edge.css";
4
+ import "./Edge.css";
5
5
 
6
6
  const Curve = {
7
7
  basis: d3CurveBasis,
package/src/Graph.ts CHANGED
@@ -8,7 +8,7 @@ import * as GraphLayouts from "./GraphLayouts.ts";
8
8
  import { Subgraph } from "./Subgraph.ts";
9
9
  import { Vertex } from "./Vertex.ts";
10
10
 
11
- import "../src/Graph.css";
11
+ import "./Graph.css";
12
12
 
13
13
  export interface Lineage {
14
14
  parent: Widget;
package/src/Sankey.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  import { sankey as d3Sankey, sankeyLinkHorizontal as d3SankeyLinkHorizontal } from "d3-sankey";
3
3
  import { select as d3Select } from "d3-selection";
4
4
 
5
- import "../src/Sankey.css";
5
+ import "./Sankey.css";
6
6
 
7
7
  const d3Aggr = {
8
8
  mean: d3Mean,
package/src/Subgraph.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Icon, Palette, SVGWidget, Text } from "@hpcc-js/common";
2
2
  import "d3-transition";
3
3
 
4
- import "../src/Subgraph.css";
4
+ import "./Subgraph.css";
5
5
 
6
6
  const TITLE_SIZE = 14;
7
7
  const MINMAX_SIZE = 18;
package/src/Vertex.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { Icon, SVGWidget, TextBox } from "@hpcc-js/common";
2
2
  import { select as d3Select } from "d3-selection";
3
3
 
4
- import "../src/Vertex.css";
4
+ import "./Vertex.css";
5
5
 
6
6
  export interface IAnnotation {
7
7
  faChar?: string;
package/types/Edge.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { SVGWidget, TextBox, Widget } from "@hpcc-js/common";
2
- import "../src/Edge.css";
2
+ import "./Edge.css";
3
3
  export declare class Edge extends SVGWidget {
4
4
  protected _points: any[];
5
5
  protected _weight: number;
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 "../src/Graph.css";
7
+ import "./Graph.css";
8
8
  export interface Lineage {
9
9
  parent: Widget;
10
10
  child: Widget;
package/types/Sankey.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { PropertyExt, SVGWidget } from "@hpcc-js/common";
2
- import "../src/Sankey.css";
2
+ import "./Sankey.css";
3
3
  export declare class SankeyColumn extends PropertyExt {
4
4
  _owner: Sankey;
5
5
  constructor();
@@ -1,6 +1,6 @@
1
1
  import { Icon, SVGWidget, Text } from "@hpcc-js/common";
2
2
  import "d3-transition";
3
- import "../src/Subgraph.css";
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
@@ -1,5 +1,5 @@
1
1
  import { Icon, SVGWidget, TextBox } from "@hpcc-js/common";
2
- import "../src/Vertex.css";
2
+ import "./Vertex.css";
3
3
  export interface IAnnotation {
4
4
  faChar?: string;
5
5
  imageUrl?: string;