@hpcc-js/graph 2.83.1 → 2.84.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.
Files changed (56) hide show
  1. package/dist/index.es6.js +1145 -266
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +1146 -262
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/package.json +9 -8
  8. package/src/__package__.ts +2 -2
  9. package/src/graph2/dataGraph.ts +27 -25
  10. package/src/graph2/edge.tsx +30 -0
  11. package/src/graph2/graph.ts +46 -1311
  12. package/src/graph2/graphReactT.ts +43 -0
  13. package/src/graph2/graphT.ts +1315 -0
  14. package/src/graph2/index.ts +5 -0
  15. package/src/graph2/layouts/dagre.ts +17 -4
  16. package/src/graph2/layouts/forceDirected.ts +2 -2
  17. package/src/graph2/layouts/graphviz.ts +1 -1
  18. package/src/graph2/layouts/graphvizWorker.ts +2 -2
  19. package/src/graph2/layouts/placeholders.ts +46 -37
  20. package/src/graph2/layouts/tree.ts +1 -1
  21. package/src/graph2/sankeyGraph.ts +8 -12
  22. package/src/graph2/subgraph.tsx +30 -0
  23. package/src/graph2/vertex.tsx +31 -0
  24. package/types/__package__.d.ts +2 -2
  25. package/types/graph2/dataGraph.d.ts +4 -4
  26. package/types/graph2/dataGraph.d.ts.map +1 -1
  27. package/types/graph2/edge.d.ts +9 -0
  28. package/types/graph2/edge.d.ts.map +1 -0
  29. package/types/graph2/graph.d.ts +25 -234
  30. package/types/graph2/graph.d.ts.map +1 -1
  31. package/types/graph2/graphReactT.d.ts +15 -0
  32. package/types/graph2/graphReactT.d.ts.map +1 -0
  33. package/types/graph2/graphT.d.ts +233 -0
  34. package/types/graph2/graphT.d.ts.map +1 -0
  35. package/types/graph2/index.d.ts +5 -0
  36. package/types/graph2/index.d.ts.map +1 -1
  37. package/types/graph2/layouts/dagre.d.ts.map +1 -1
  38. package/types/graph2/layouts/placeholders.d.ts +44 -37
  39. package/types/graph2/layouts/placeholders.d.ts.map +1 -1
  40. package/types/graph2/sankeyGraph.d.ts +5 -5
  41. package/types/graph2/sankeyGraph.d.ts.map +1 -1
  42. package/types/graph2/subgraph.d.ts +12 -0
  43. package/types/graph2/subgraph.d.ts.map +1 -0
  44. package/types/graph2/vertex.d.ts +13 -0
  45. package/types/graph2/vertex.d.ts.map +1 -0
  46. package/types-3.4/__package__.d.ts +2 -2
  47. package/types-3.4/graph2/dataGraph.d.ts +4 -4
  48. package/types-3.4/graph2/edge.d.ts +9 -0
  49. package/types-3.4/graph2/graph.d.ts +25 -234
  50. package/types-3.4/graph2/graphReactT.d.ts +15 -0
  51. package/types-3.4/graph2/graphT.d.ts +233 -0
  52. package/types-3.4/graph2/index.d.ts +5 -0
  53. package/types-3.4/graph2/layouts/placeholders.d.ts +47 -37
  54. package/types-3.4/graph2/sankeyGraph.d.ts +5 -5
  55. package/types-3.4/graph2/subgraph.d.ts +12 -0
  56. package/types-3.4/graph2/vertex.d.ts +13 -0
@@ -0,0 +1,12 @@
1
+ import { React } from "@hpcc-js/react";
2
+ import { SubgraphProps } from "./layouts/placeholders";
3
+ export interface BasicSubgraphProps extends SubgraphProps {
4
+ label?: string;
5
+ labelFill?: string;
6
+ labelHeight?: number;
7
+ rectFill?: string;
8
+ rectStroke?: string;
9
+ rectStrokeWidth?: number;
10
+ }
11
+ export declare const BasicSubgraph: React.FunctionComponent<BasicSubgraphProps>;
12
+ //# sourceMappingURL=subgraph.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { React } from "@hpcc-js/react";
2
+ import { VertexProps } from "./layouts/placeholders";
3
+ export interface BasicVertexProps extends VertexProps {
4
+ textFill?: string;
5
+ textHeight?: number;
6
+ scale?: number;
7
+ circleRadius?: number;
8
+ circleFill?: string;
9
+ circleStroke?: string;
10
+ circleStrokeWidth?: number;
11
+ }
12
+ export declare const BasicVertex: React.FunctionComponent<BasicVertexProps>;
13
+ //# sourceMappingURL=vertex.d.ts.map