@hpcc-js/graph 3.2.1 → 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.
- package/dist/assets/{dagre-D0bY8RPD.js.map → dagre-BVMQn91n.js.map} +1 -1
- package/dist/assets/graphviz-CMhlTALo.js.map +1 -1
- package/dist/index.js +4741 -1992
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +148 -7
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +4 -3
- package/src/__tests__/test5.ts +1 -1
- package/src/common/graphT.css +33 -0
- package/src/{graph2 → common}/graphT.ts +78 -47
- package/src/common/index.ts +3 -0
- package/src/{graph2 → common}/layouts/dagre.ts +16 -3
- package/src/{graph2 → common}/layouts/graphviz.ts +17 -4
- package/src/{graph2 → common}/layouts/layout.ts +48 -5
- package/src/common/layouts/pathIntersection.ts +67 -0
- package/src/{graph2 → common}/layouts/placeholders.ts +12 -0
- package/src/{graph2 → common}/layouts/tree.ts +2 -4
- package/src/{graph2 → common}/sankeyGraph.ts +2 -2
- package/src/html/annotation.ts +71 -0
- package/src/html/component.ts +14 -0
- package/src/html/graphHtml.ts +10 -0
- package/src/html/graphHtmlT.ts +49 -0
- package/src/html/icon.ts +64 -0
- package/src/html/image.ts +26 -0
- package/src/html/imageChar.ts +18 -0
- package/src/html/index.ts +8 -0
- package/src/html/shape.ts +136 -0
- package/src/html/text.ts +59 -0
- package/src/html/textBox.ts +41 -0
- package/src/html/vertex.ts +65 -0
- package/src/index.ts +3 -1
- package/src/{graph2 → react}/dataGraph.ts +11 -11
- package/src/{graph2/graph.ts → react/graphReact.ts} +65 -22
- package/src/{graph2 → react}/graphReactT.ts +1 -1
- package/src/react/index.ts +4 -0
- package/src/{graph2 → react}/subgraph.tsx +2 -1
- package/src/{graph2 → react}/vertex.tsx +2 -1
- package/types/{graph2 → common}/graphT.d.ts +9 -11
- package/types/common/index.d.ts +3 -0
- package/types/{graph2 → common}/layouts/layout.d.ts +18 -1
- package/types/common/layouts/pathIntersection.d.ts +24 -0
- package/types/{graph2 → common}/layouts/placeholders.d.ts +6 -0
- package/types/{graph2 → common}/sankeyGraph.d.ts +2 -2
- package/types/html/annotation.d.ts +13 -0
- package/types/html/component.d.ts +10 -0
- package/types/html/graphHtml.d.ts +5 -0
- package/types/html/graphHtmlT.d.ts +9 -0
- package/types/html/icon.d.ts +15 -0
- package/types/html/image.d.ts +8 -0
- package/types/html/imageChar.d.ts +2 -0
- package/types/html/index.d.ts +8 -0
- package/types/html/shape.d.ts +31 -0
- package/types/html/text.d.ts +10 -0
- package/types/html/textBox.d.ts +11 -0
- package/types/html/vertex.d.ts +17 -0
- package/types/index.d.ts +3 -1
- package/types/{graph2 → react}/dataGraph.d.ts +2 -2
- package/types/{graph2/graph.d.ts → react/graphReact.d.ts} +13 -3
- package/types/{graph2 → react}/graphReactT.d.ts +1 -1
- package/types/react/index.d.ts +4 -0
- package/types/{graph2 → react}/subgraph.d.ts +1 -1
- package/types/{graph2 → react}/vertex.d.ts +1 -1
- package/src/graph2/graph.css +0 -34
- package/src/graph2/index.ts +0 -7
- package/src/test.ts +0 -649
- package/types/graph2/index.d.ts +0 -7
- /package/src/{graph2 → common}/layouts/circle.ts +0 -0
- /package/src/{graph2 → common}/layouts/dagreWorker.ts +0 -0
- /package/src/{graph2 → common}/layouts/forceDirected.ts +0 -0
- /package/src/{graph2 → common}/layouts/forceDirectedWorker.ts +0 -0
- /package/src/{graph2 → common}/layouts/geoForceDirected.ts +0 -0
- /package/src/{graph2 → common}/layouts/graphvizWorker.ts +0 -0
- /package/src/{graph2 → common}/layouts/index.ts +0 -0
- /package/src/{graph2 → common}/layouts/null.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/dagre.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/dagreOptions.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/forceDirected.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/forceDirectedOptions.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/graphviz.ts +0 -0
- /package/src/{graph2 → common}/layouts/workers/graphvizOptions.ts +0 -0
- /package/src/{graph2 → common}/liteMap.ts +0 -0
- /package/src/{graph2 → common}/liteSVGZooom.ts +0 -0
- /package/src/{graph2 → common}/sankeyGraph.css +0 -0
- /package/types/{graph2 → common}/layouts/circle.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/dagre.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/dagreWorker.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/forceDirected.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/forceDirectedWorker.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/geoForceDirected.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/graphviz.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/graphvizWorker.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/index.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/null.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/tree.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/workers/dagreOptions.d.ts +0 -0
- /package/types/{graph2 → common}/layouts/workers/forceDirectedOptions.d.ts +0 -0
- /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.