@hpcc-js/graph 2.84.3 → 2.84.4

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 (53) hide show
  1. package/dist/index.es6.js +8 -18
  2. package/dist/index.es6.js.map +1 -1
  3. package/dist/index.js +6 -17
  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 -9
  8. package/src/__package__.ts +2 -2
  9. package/src/__tests__/index.ts +1 -1
  10. package/src/graph2/dataGraph.ts +9 -7
  11. package/src/graph2/graph.ts +12 -4
  12. package/src/graph2/graphReactT.ts +3 -3
  13. package/src/graph2/graphT.ts +23 -23
  14. package/src/graph2/index.ts +0 -1
  15. package/src/graph2/layouts/placeholders.ts +15 -15
  16. package/src/graph2/sankeyGraph.ts +8 -8
  17. package/src/graph2/subgraph.tsx +2 -2
  18. package/src/graph2/vertex.tsx +2 -2
  19. package/types/__package__.d.ts +2 -2
  20. package/types/__tests__/index.d.ts +1 -1
  21. package/types/graph2/dataGraph.d.ts +4 -3
  22. package/types/graph2/dataGraph.d.ts.map +1 -1
  23. package/types/graph2/graph.d.ts +8 -3
  24. package/types/graph2/graph.d.ts.map +1 -1
  25. package/types/graph2/graphReactT.d.ts +3 -3
  26. package/types/graph2/graphReactT.d.ts.map +1 -1
  27. package/types/graph2/graphT.d.ts +10 -10
  28. package/types/graph2/graphT.d.ts.map +1 -1
  29. package/types/graph2/index.d.ts +0 -1
  30. package/types/graph2/index.d.ts.map +1 -1
  31. package/types/graph2/layouts/placeholders.d.ts +15 -15
  32. package/types/graph2/layouts/placeholders.d.ts.map +1 -1
  33. package/types/graph2/sankeyGraph.d.ts +5 -5
  34. package/types/graph2/sankeyGraph.d.ts.map +1 -1
  35. package/types/graph2/subgraph.d.ts +2 -2
  36. package/types/graph2/subgraph.d.ts.map +1 -1
  37. package/types/graph2/vertex.d.ts +2 -2
  38. package/types/graph2/vertex.d.ts.map +1 -1
  39. package/types-3.4/__package__.d.ts +2 -2
  40. package/types-3.4/__tests__/index.d.ts +1 -1
  41. package/types-3.4/graph2/dataGraph.d.ts +4 -3
  42. package/types-3.4/graph2/graph.d.ts +8 -3
  43. package/types-3.4/graph2/graphReactT.d.ts +3 -3
  44. package/types-3.4/graph2/graphT.d.ts +10 -10
  45. package/types-3.4/graph2/index.d.ts +0 -1
  46. package/types-3.4/graph2/layouts/placeholders.d.ts +15 -15
  47. package/types-3.4/graph2/sankeyGraph.d.ts +5 -5
  48. package/types-3.4/graph2/subgraph.d.ts +2 -2
  49. package/types-3.4/graph2/vertex.d.ts +2 -2
  50. package/src/graph2/edge.tsx +0 -30
  51. package/types/graph2/edge.d.ts +0 -9
  52. package/types/graph2/edge.d.ts.map +0 -1
  53. package/types-3.4/graph2/edge.d.ts +0 -9
@@ -1,9 +0,0 @@
1
- import { React } from "@hpcc-js/react";
2
- import { EdgeProps as EdgeProps } from "./layouts/placeholders";
3
- export interface BasicEdgeProps extends EdgeProps {
4
- labelFill?: string;
5
- labelHeight?: number;
6
- path?: string;
7
- }
8
- export declare const BasicEdge: React.FunctionComponent<BasicEdgeProps>;
9
- //# sourceMappingURL=edge.d.ts.map