@hpcc-js/graph 3.2.0 → 3.3.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 (97) hide show
  1. package/dist/assets/{dagre-D0bY8RPD.js.map → dagre-BVMQn91n.js.map} +1 -1
  2. package/dist/assets/graphviz-CMhlTALo.js.map +1 -1
  3. package/dist/index.js +4741 -1992
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.umd.cjs +148 -7
  6. package/dist/index.umd.cjs.map +1 -1
  7. package/package.json +6 -5
  8. package/src/__tests__/test5.ts +1 -1
  9. package/src/common/graphT.css +33 -0
  10. package/src/{graph2 → common}/graphT.ts +78 -47
  11. package/src/common/index.ts +3 -0
  12. package/src/{graph2 → common}/layouts/dagre.ts +16 -3
  13. package/src/{graph2 → common}/layouts/graphviz.ts +17 -4
  14. package/src/{graph2 → common}/layouts/layout.ts +48 -5
  15. package/src/common/layouts/pathIntersection.ts +67 -0
  16. package/src/{graph2 → common}/layouts/placeholders.ts +12 -0
  17. package/src/{graph2 → common}/layouts/tree.ts +2 -4
  18. package/src/{graph2 → common}/sankeyGraph.ts +2 -2
  19. package/src/html/annotation.ts +71 -0
  20. package/src/html/component.ts +14 -0
  21. package/src/html/graphHtml.ts +10 -0
  22. package/src/html/graphHtmlT.ts +49 -0
  23. package/src/html/icon.ts +64 -0
  24. package/src/html/image.ts +26 -0
  25. package/src/html/imageChar.ts +18 -0
  26. package/src/html/index.ts +8 -0
  27. package/src/html/shape.ts +136 -0
  28. package/src/html/text.ts +59 -0
  29. package/src/html/textBox.ts +41 -0
  30. package/src/html/vertex.ts +65 -0
  31. package/src/index.ts +3 -1
  32. package/src/{graph2 → react}/dataGraph.ts +11 -11
  33. package/src/{graph2/graph.ts → react/graphReact.ts} +65 -22
  34. package/src/{graph2 → react}/graphReactT.ts +1 -1
  35. package/src/react/index.ts +4 -0
  36. package/src/{graph2 → react}/subgraph.tsx +2 -1
  37. package/src/{graph2 → react}/vertex.tsx +2 -1
  38. package/types/{graph2 → common}/graphT.d.ts +9 -11
  39. package/types/common/index.d.ts +3 -0
  40. package/types/{graph2 → common}/layouts/layout.d.ts +18 -1
  41. package/types/common/layouts/pathIntersection.d.ts +24 -0
  42. package/types/{graph2 → common}/layouts/placeholders.d.ts +6 -0
  43. package/types/{graph2 → common}/sankeyGraph.d.ts +2 -2
  44. package/types/html/annotation.d.ts +13 -0
  45. package/types/html/component.d.ts +10 -0
  46. package/types/html/graphHtml.d.ts +5 -0
  47. package/types/html/graphHtmlT.d.ts +9 -0
  48. package/types/html/icon.d.ts +15 -0
  49. package/types/html/image.d.ts +8 -0
  50. package/types/html/imageChar.d.ts +2 -0
  51. package/types/html/index.d.ts +8 -0
  52. package/types/html/shape.d.ts +31 -0
  53. package/types/html/text.d.ts +10 -0
  54. package/types/html/textBox.d.ts +11 -0
  55. package/types/html/vertex.d.ts +17 -0
  56. package/types/index.d.ts +3 -1
  57. package/types/{graph2 → react}/dataGraph.d.ts +2 -2
  58. package/types/{graph2/graph.d.ts → react/graphReact.d.ts} +13 -3
  59. package/types/{graph2 → react}/graphReactT.d.ts +1 -1
  60. package/types/react/index.d.ts +4 -0
  61. package/types/{graph2 → react}/subgraph.d.ts +1 -1
  62. package/types/{graph2 → react}/vertex.d.ts +1 -1
  63. package/src/graph2/graph.css +0 -34
  64. package/src/graph2/index.ts +0 -7
  65. package/src/test.ts +0 -649
  66. package/types/graph2/index.d.ts +0 -7
  67. /package/src/{graph2 → common}/layouts/circle.ts +0 -0
  68. /package/src/{graph2 → common}/layouts/dagreWorker.ts +0 -0
  69. /package/src/{graph2 → common}/layouts/forceDirected.ts +0 -0
  70. /package/src/{graph2 → common}/layouts/forceDirectedWorker.ts +0 -0
  71. /package/src/{graph2 → common}/layouts/geoForceDirected.ts +0 -0
  72. /package/src/{graph2 → common}/layouts/graphvizWorker.ts +0 -0
  73. /package/src/{graph2 → common}/layouts/index.ts +0 -0
  74. /package/src/{graph2 → common}/layouts/null.ts +0 -0
  75. /package/src/{graph2 → common}/layouts/workers/dagre.ts +0 -0
  76. /package/src/{graph2 → common}/layouts/workers/dagreOptions.ts +0 -0
  77. /package/src/{graph2 → common}/layouts/workers/forceDirected.ts +0 -0
  78. /package/src/{graph2 → common}/layouts/workers/forceDirectedOptions.ts +0 -0
  79. /package/src/{graph2 → common}/layouts/workers/graphviz.ts +0 -0
  80. /package/src/{graph2 → common}/layouts/workers/graphvizOptions.ts +0 -0
  81. /package/src/{graph2 → common}/liteMap.ts +0 -0
  82. /package/src/{graph2 → common}/liteSVGZooom.ts +0 -0
  83. /package/src/{graph2 → common}/sankeyGraph.css +0 -0
  84. /package/types/{graph2 → common}/layouts/circle.d.ts +0 -0
  85. /package/types/{graph2 → common}/layouts/dagre.d.ts +0 -0
  86. /package/types/{graph2 → common}/layouts/dagreWorker.d.ts +0 -0
  87. /package/types/{graph2 → common}/layouts/forceDirected.d.ts +0 -0
  88. /package/types/{graph2 → common}/layouts/forceDirectedWorker.d.ts +0 -0
  89. /package/types/{graph2 → common}/layouts/geoForceDirected.d.ts +0 -0
  90. /package/types/{graph2 → common}/layouts/graphviz.d.ts +0 -0
  91. /package/types/{graph2 → common}/layouts/graphvizWorker.d.ts +0 -0
  92. /package/types/{graph2 → common}/layouts/index.d.ts +0 -0
  93. /package/types/{graph2 → common}/layouts/null.d.ts +0 -0
  94. /package/types/{graph2 → common}/layouts/tree.d.ts +0 -0
  95. /package/types/{graph2 → common}/layouts/workers/dagreOptions.d.ts +0 -0
  96. /package/types/{graph2 → common}/layouts/workers/forceDirectedOptions.d.ts +0 -0
  97. /package/types/{graph2 → common}/layouts/workers/graphvizOptions.d.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.