@antv/layout 2.0.0-alpha.1 → 2.0.0-alpha.3
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/README.md +26 -301
- package/dist/index.js +815 -814
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -3
- package/dist/index.min.js.map +1 -1
- package/dist/worker.js +1 -1
- package/dist/worker.js.map +1 -1
- package/lib/_virtual/index.js +1 -1
- package/lib/_virtual/index2.js +1 -1
- package/lib/_virtual/index3.js +1 -1
- package/lib/_virtual/matrix.js +1 -1
- package/lib/algorithm/antv-dagre/acyclic.js.map +1 -0
- package/lib/algorithm/antv-dagre/add-border-segments.js.map +1 -0
- package/lib/algorithm/antv-dagre/coordinate-system.js.map +1 -0
- package/lib/algorithm/antv-dagre/data/list.js.map +1 -0
- package/lib/algorithm/antv-dagre/graph.js.map +1 -0
- package/lib/algorithm/antv-dagre/greedy-fas.js.map +1 -0
- package/lib/algorithm/antv-dagre/index.d.ts +15 -0
- package/lib/algorithm/antv-dagre/index.js +339 -0
- package/lib/algorithm/antv-dagre/index.js.map +1 -0
- package/lib/algorithm/antv-dagre/layout.js +471 -0
- package/lib/algorithm/antv-dagre/layout.js.map +1 -0
- package/lib/algorithm/antv-dagre/nesting-graph.js.map +1 -0
- package/lib/algorithm/antv-dagre/normalize.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/add-subgraph-constraints.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/barycenter.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/build-layer-graph.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/cross-count.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/index.js +94 -0
- package/lib/algorithm/antv-dagre/order/index.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/init-data-order.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/init-order.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/resolve-conflicts.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/sort-subgraph.js.map +1 -0
- package/lib/algorithm/antv-dagre/order/sort.js.map +1 -0
- package/lib/algorithm/antv-dagre/parent-dummy-chains.js.map +1 -0
- package/lib/algorithm/antv-dagre/position/bk.js.map +1 -0
- package/lib/algorithm/antv-dagre/position/index.js.map +1 -0
- package/lib/algorithm/antv-dagre/rank/feasible-tree.js.map +1 -0
- package/lib/algorithm/antv-dagre/rank/index.js.map +1 -0
- package/lib/algorithm/antv-dagre/rank/network-simplex.js.map +1 -0
- package/lib/algorithm/antv-dagre/rank/util.js.map +1 -0
- package/lib/algorithm/antv-dagre/types.d.ts +192 -0
- package/lib/algorithm/antv-dagre/util.js +265 -0
- package/lib/algorithm/antv-dagre/util.js.map +1 -0
- package/lib/algorithm/base-layout.d.ts +49 -0
- package/lib/algorithm/base-layout.js +89 -0
- package/lib/algorithm/base-layout.js.map +1 -0
- package/lib/algorithm/base-simulation.d.ts +20 -0
- package/lib/algorithm/base-simulation.js +75 -0
- package/lib/algorithm/base-simulation.js.map +1 -0
- package/lib/algorithm/circular/index.d.ts +15 -0
- package/lib/algorithm/circular/index.js +108 -0
- package/lib/algorithm/circular/index.js.map +1 -0
- package/lib/algorithm/circular/types.d.ts +105 -0
- package/lib/algorithm/combo-combined/index.d.ts +33 -0
- package/lib/algorithm/combo-combined/index.js +303 -0
- package/lib/algorithm/combo-combined/index.js.map +1 -0
- package/lib/algorithm/combo-combined/types.d.ts +37 -0
- package/lib/algorithm/concentric/index.d.ts +15 -0
- package/lib/algorithm/concentric/index.js +192 -0
- package/lib/algorithm/concentric/index.js.map +1 -0
- package/lib/algorithm/concentric/types.d.ts +92 -0
- package/lib/algorithm/d3-force/force-in-a-box.js +343 -0
- package/lib/algorithm/d3-force/force-in-a-box.js.map +1 -0
- package/lib/algorithm/d3-force/index.d.ts +53 -0
- package/lib/algorithm/d3-force/index.js +514 -0
- package/lib/algorithm/d3-force/index.js.map +1 -0
- package/lib/algorithm/d3-force/types.d.ts +336 -0
- package/lib/algorithm/d3-force-3d/index.js +73 -0
- package/lib/algorithm/d3-force-3d/index.js.map +1 -0
- package/lib/algorithm/dagre/index.d.ts +22 -0
- package/lib/algorithm/dagre/index.js +142 -0
- package/lib/algorithm/dagre/index.js.map +1 -0
- package/lib/algorithm/dagre/types.d.ts +79 -0
- package/lib/algorithm/force/attractive.js.map +1 -0
- package/lib/algorithm/force/centripetal.js +87 -0
- package/lib/algorithm/force/centripetal.js.map +1 -0
- package/lib/algorithm/force/collide.js +172 -0
- package/lib/algorithm/force/collide.js.map +1 -0
- package/lib/algorithm/force/gravity.js.map +1 -0
- package/lib/algorithm/force/index.d.ts +87 -0
- package/lib/algorithm/force/index.js +450 -0
- package/lib/algorithm/force/index.js.map +1 -0
- package/lib/algorithm/force/repulsive.js +142 -0
- package/lib/algorithm/force/repulsive.js.map +1 -0
- package/lib/algorithm/force/simulation.d.ts +23 -0
- package/lib/algorithm/force/simulation.js +137 -0
- package/lib/algorithm/force/simulation.js.map +1 -0
- package/lib/algorithm/force/types.d.ts +252 -0
- package/lib/algorithm/force-atlas2/body.js.map +1 -0
- package/lib/algorithm/force-atlas2/index.d.ts +22 -0
- package/lib/algorithm/force-atlas2/index.js +155 -0
- package/lib/algorithm/force-atlas2/index.js.map +1 -0
- package/lib/algorithm/force-atlas2/quad-tree.js.map +1 -0
- package/lib/algorithm/force-atlas2/quad.js.map +1 -0
- package/lib/algorithm/force-atlas2/simulation.d.ts +39 -0
- package/lib/algorithm/force-atlas2/simulation.js +388 -0
- package/lib/algorithm/force-atlas2/simulation.js.map +1 -0
- package/lib/algorithm/force-atlas2/types.d.ts +109 -0
- package/lib/algorithm/fruchterman/index.d.ts +20 -0
- package/lib/algorithm/fruchterman/index.js +93 -0
- package/lib/algorithm/fruchterman/index.js.map +1 -0
- package/lib/algorithm/fruchterman/simulation.js +356 -0
- package/lib/algorithm/fruchterman/simulation.js.map +1 -0
- package/lib/algorithm/fruchterman/types.d.ts +48 -0
- package/lib/algorithm/grid/index.d.ts +16 -0
- package/lib/algorithm/grid/index.js +243 -0
- package/lib/algorithm/grid/index.js.map +1 -0
- package/lib/algorithm/grid/types.d.ts +85 -0
- package/lib/algorithm/mds/index.d.ts +15 -0
- package/lib/algorithm/mds/index.js +127 -0
- package/lib/algorithm/mds/index.js.map +1 -0
- package/lib/algorithm/mds/types.d.ts +25 -0
- package/lib/algorithm/radial/index.d.ts +16 -0
- package/lib/algorithm/radial/index.js +275 -0
- package/lib/algorithm/radial/index.js.map +1 -0
- package/lib/algorithm/radial/radial-nonoverlap-force.js +129 -0
- package/lib/algorithm/radial/radial-nonoverlap-force.js.map +1 -0
- package/lib/algorithm/radial/types.d.ts +103 -0
- package/lib/algorithm/random/index.d.ts +15 -0
- package/lib/algorithm/random/index.js +41 -0
- package/lib/algorithm/random/index.js.map +1 -0
- package/lib/algorithm/random/types.d.ts +11 -0
- package/lib/algorithm/types.d.ts +142 -0
- package/lib/index.d.ts +36 -33
- package/lib/index.js +19 -17
- package/lib/index.js.map +1 -1
- package/lib/model/data.d.ts +46 -0
- package/lib/model/data.js +281 -0
- package/lib/model/data.js.map +1 -0
- package/lib/node_modules/@antv/event-emitter/esm/index.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/clone.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/deep-mix.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/each.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/get-type.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/get.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-array-like.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-array.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-boolean.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-empty.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-function.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-nil.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-number.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-object-like.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-object.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-plain-object.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-prototype.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-string.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/is-type.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/pick.js.map +1 -0
- package/lib/node_modules/@antv/util/esm/lodash/set.js.map +1 -0
- package/lib/node_modules/comlink/dist/esm/comlink.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/add.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/binarytree.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/cover.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/data.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/extent.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/find.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/half.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/remove.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/root.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/size.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/visit.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/visitAfter.js.map +1 -0
- package/lib/node_modules/d3-binarytree/src/x.js.map +1 -0
- package/lib/node_modules/d3-dispatch/src/dispatch.js.map +1 -0
- package/lib/node_modules/d3-force/src/center.js.map +1 -0
- package/lib/node_modules/d3-force/src/collide.js +103 -0
- package/lib/node_modules/d3-force/src/collide.js.map +1 -0
- package/lib/node_modules/d3-force/src/constant.js.map +1 -0
- package/lib/node_modules/d3-force/src/jiggle.js.map +1 -0
- package/lib/node_modules/d3-force/src/lcg.js.map +1 -0
- package/lib/node_modules/d3-force/src/link.js.map +1 -0
- package/lib/node_modules/d3-force/src/manyBody.js +119 -0
- package/lib/node_modules/d3-force/src/manyBody.js.map +1 -0
- package/lib/node_modules/d3-force/src/radial.js.map +1 -0
- package/lib/node_modules/d3-force/src/simulation.js +159 -0
- package/lib/node_modules/d3-force/src/simulation.js.map +1 -0
- package/lib/node_modules/d3-force/src/x.js.map +1 -0
- package/lib/node_modules/d3-force/src/y.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/center.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/collide.js +135 -0
- package/lib/node_modules/d3-force-3d/src/collide.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/constant.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/jiggle.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/lcg.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/link.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/manyBody.js +142 -0
- package/lib/node_modules/d3-force-3d/src/manyBody.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/radial.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/simulation.js +202 -0
- package/lib/node_modules/d3-force-3d/src/simulation.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/x.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/y.js.map +1 -0
- package/lib/node_modules/d3-force-3d/src/z.js.map +1 -0
- package/lib/node_modules/d3-octree/src/add.js.map +1 -0
- package/lib/node_modules/d3-octree/src/cover.js.map +1 -0
- package/lib/node_modules/d3-octree/src/data.js.map +1 -0
- package/lib/node_modules/d3-octree/src/extent.js.map +1 -0
- package/lib/node_modules/d3-octree/src/find.js.map +1 -0
- package/lib/node_modules/d3-octree/src/findAll.js.map +1 -0
- package/lib/node_modules/d3-octree/src/octant.js.map +1 -0
- package/lib/node_modules/d3-octree/src/octree.js.map +1 -0
- package/lib/node_modules/d3-octree/src/remove.js.map +1 -0
- package/lib/node_modules/d3-octree/src/root.js.map +1 -0
- package/lib/node_modules/d3-octree/src/size.js.map +1 -0
- package/lib/node_modules/d3-octree/src/visit.js.map +1 -0
- package/lib/node_modules/d3-octree/src/visitAfter.js.map +1 -0
- package/lib/node_modules/d3-octree/src/x.js.map +1 -0
- package/lib/node_modules/d3-octree/src/y.js.map +1 -0
- package/lib/node_modules/d3-octree/src/z.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/add.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/cover.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/data.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/extent.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/find.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/quad.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/quadtree.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/remove.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/root.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/size.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/visit.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/visitAfter.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/x.js.map +1 -0
- package/lib/node_modules/d3-quadtree/src/y.js.map +1 -0
- package/lib/node_modules/d3-timer/src/timer.js.map +1 -0
- package/lib/node_modules/dagre/index.js.map +1 -0
- package/lib/node_modules/dagre/lib/acyclic.js.map +1 -0
- package/lib/node_modules/dagre/lib/add-border-segments.js.map +1 -0
- package/lib/node_modules/dagre/lib/coordinate-system.js.map +1 -0
- package/lib/node_modules/dagre/lib/data/list.js.map +1 -0
- package/lib/node_modules/dagre/lib/debug.js.map +1 -0
- package/lib/node_modules/dagre/lib/graphlib.js +31 -0
- package/lib/node_modules/dagre/lib/graphlib.js.map +1 -0
- package/lib/node_modules/dagre/lib/greedy-fas.js.map +1 -0
- package/lib/node_modules/dagre/lib/layout.js.map +1 -0
- package/lib/node_modules/dagre/lib/lodash.js +83 -0
- package/lib/node_modules/dagre/lib/lodash.js.map +1 -0
- package/lib/node_modules/dagre/lib/nesting-graph.js.map +1 -0
- package/lib/node_modules/dagre/lib/normalize.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/add-subgraph-constraints.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/barycenter.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/build-layer-graph.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/cross-count.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/index.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/init-order.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/resolve-conflicts.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/sort-subgraph.js.map +1 -0
- package/lib/node_modules/dagre/lib/order/sort.js.map +1 -0
- package/lib/node_modules/dagre/lib/parent-dummy-chains.js.map +1 -0
- package/lib/node_modules/dagre/lib/position/bk.js.map +1 -0
- package/lib/node_modules/dagre/lib/position/index.js.map +1 -0
- package/lib/node_modules/dagre/lib/rank/feasible-tree.js.map +1 -0
- package/lib/node_modules/dagre/lib/rank/index.js.map +1 -0
- package/lib/node_modules/dagre/lib/rank/network-simplex.js.map +1 -0
- package/lib/node_modules/dagre/lib/rank/util.js.map +1 -0
- package/lib/node_modules/dagre/lib/util.js.map +1 -0
- package/lib/node_modules/dagre/lib/version.js.map +1 -0
- package/lib/node_modules/graphlib/index.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/components.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/dfs.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/dijkstra-all.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/dijkstra.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/find-cycles.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/floyd-warshall.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/index.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/is-acyclic.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/postorder.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/preorder.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/prim.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/tarjan.js.map +1 -0
- package/lib/node_modules/graphlib/lib/alg/topsort.js.map +1 -0
- package/lib/node_modules/graphlib/lib/data/priority-queue.js.map +1 -0
- package/lib/node_modules/graphlib/lib/graph.js.map +1 -0
- package/lib/node_modules/graphlib/lib/index.js.map +1 -0
- package/lib/node_modules/graphlib/lib/json.js.map +1 -0
- package/lib/node_modules/graphlib/lib/lodash.js +63 -0
- package/lib/node_modules/graphlib/lib/lodash.js.map +1 -0
- package/lib/node_modules/graphlib/lib/version.js.map +1 -0
- package/lib/node_modules/is-any-array/lib-esm/index.js.map +1 -0
- package/lib/node_modules/lodash/_DataView.js.map +1 -0
- package/lib/node_modules/lodash/_Hash.js.map +1 -0
- package/lib/node_modules/lodash/_ListCache.js.map +1 -0
- package/lib/node_modules/lodash/_Map.js.map +1 -0
- package/lib/node_modules/lodash/_MapCache.js.map +1 -0
- package/lib/node_modules/lodash/_Promise.js.map +1 -0
- package/lib/node_modules/lodash/_Set.js.map +1 -0
- package/lib/node_modules/lodash/_SetCache.js.map +1 -0
- package/lib/node_modules/lodash/_Stack.js.map +1 -0
- package/lib/node_modules/lodash/_Symbol.js.map +1 -0
- package/lib/node_modules/lodash/_Uint8Array.js.map +1 -0
- package/lib/node_modules/lodash/_WeakMap.js.map +1 -0
- package/lib/node_modules/lodash/_apply.js.map +1 -0
- package/lib/node_modules/lodash/_arrayEach.js.map +1 -0
- package/lib/node_modules/lodash/_arrayFilter.js.map +1 -0
- package/lib/node_modules/lodash/_arrayIncludes.js.map +1 -0
- package/lib/node_modules/lodash/_arrayIncludesWith.js.map +1 -0
- package/lib/node_modules/lodash/_arrayLikeKeys.js.map +1 -0
- package/lib/node_modules/lodash/_arrayMap.js.map +1 -0
- package/lib/node_modules/lodash/_arrayPush.js.map +1 -0
- package/lib/node_modules/lodash/_arrayReduce.js.map +1 -0
- package/lib/node_modules/lodash/_arraySome.js.map +1 -0
- package/lib/node_modules/lodash/_asciiSize.js.map +1 -0
- package/lib/node_modules/lodash/_assignMergeValue.js.map +1 -0
- package/lib/node_modules/lodash/_assignValue.js.map +1 -0
- package/lib/node_modules/lodash/_assocIndexOf.js.map +1 -0
- package/lib/node_modules/lodash/_baseAssign.js.map +1 -0
- package/lib/node_modules/lodash/_baseAssignIn.js.map +1 -0
- package/lib/node_modules/lodash/_baseAssignValue.js.map +1 -0
- package/lib/node_modules/lodash/_baseClone.js.map +1 -0
- package/lib/node_modules/lodash/_baseCreate.js.map +1 -0
- package/lib/node_modules/lodash/_baseEach.js.map +1 -0
- package/lib/node_modules/lodash/_baseExtremum.js.map +1 -0
- package/lib/node_modules/lodash/_baseFilter.js.map +1 -0
- package/lib/node_modules/lodash/_baseFindIndex.js.map +1 -0
- package/lib/node_modules/lodash/_baseFlatten.js.map +1 -0
- package/lib/node_modules/lodash/_baseFor.js.map +1 -0
- package/lib/node_modules/lodash/_baseForOwn.js.map +1 -0
- package/lib/node_modules/lodash/_baseGet.js.map +1 -0
- package/lib/node_modules/lodash/_baseGetAllKeys.js.map +1 -0
- package/lib/node_modules/lodash/_baseGetTag.js.map +1 -0
- package/lib/node_modules/lodash/_baseGt.js.map +1 -0
- package/lib/node_modules/lodash/_baseHas.js.map +1 -0
- package/lib/node_modules/lodash/_baseHasIn.js.map +1 -0
- package/lib/node_modules/lodash/_baseIndexOf.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsArguments.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsEqual.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsEqualDeep.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsMap.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsMatch.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsNaN.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsNative.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsSet.js.map +1 -0
- package/lib/node_modules/lodash/_baseIsTypedArray.js.map +1 -0
- package/lib/node_modules/lodash/_baseIteratee.js.map +1 -0
- package/lib/node_modules/lodash/_baseKeys.js.map +1 -0
- package/lib/node_modules/lodash/_baseKeysIn.js.map +1 -0
- package/lib/node_modules/lodash/_baseLt.js.map +1 -0
- package/lib/node_modules/lodash/_baseMap.js.map +1 -0
- package/lib/node_modules/lodash/_baseMatches.js.map +1 -0
- package/lib/node_modules/lodash/_baseMatchesProperty.js.map +1 -0
- package/lib/node_modules/lodash/_baseMerge.js.map +1 -0
- package/lib/node_modules/lodash/_baseMergeDeep.js.map +1 -0
- package/lib/node_modules/lodash/_baseOrderBy.js.map +1 -0
- package/lib/node_modules/lodash/_basePick.js.map +1 -0
- package/lib/node_modules/lodash/_basePickBy.js.map +1 -0
- package/lib/node_modules/lodash/_baseProperty.js.map +1 -0
- package/lib/node_modules/lodash/_basePropertyDeep.js.map +1 -0
- package/lib/node_modules/lodash/_baseRange.js.map +1 -0
- package/lib/node_modules/lodash/_baseReduce.js.map +1 -0
- package/lib/node_modules/lodash/_baseRest.js.map +1 -0
- package/lib/node_modules/lodash/_baseSet.js.map +1 -0
- package/lib/node_modules/lodash/_baseSetToString.js.map +1 -0
- package/lib/node_modules/lodash/_baseSortBy.js.map +1 -0
- package/lib/node_modules/lodash/_baseTimes.js.map +1 -0
- package/lib/node_modules/lodash/_baseToString.js.map +1 -0
- package/lib/node_modules/lodash/_baseTrim.js.map +1 -0
- package/lib/node_modules/lodash/_baseUnary.js.map +1 -0
- package/lib/node_modules/lodash/_baseUniq.js.map +1 -0
- package/lib/node_modules/lodash/_baseValues.js.map +1 -0
- package/lib/node_modules/lodash/_baseZipObject.js.map +1 -0
- package/lib/node_modules/lodash/_cacheHas.js.map +1 -0
- package/lib/node_modules/lodash/_castFunction.js.map +1 -0
- package/lib/node_modules/lodash/_castPath.js.map +1 -0
- package/lib/node_modules/lodash/_cloneArrayBuffer.js.map +1 -0
- package/lib/node_modules/lodash/_cloneBuffer.js +52 -0
- package/lib/node_modules/lodash/_cloneBuffer.js.map +1 -0
- package/lib/node_modules/lodash/_cloneDataView.js.map +1 -0
- package/lib/node_modules/lodash/_cloneRegExp.js.map +1 -0
- package/lib/node_modules/lodash/_cloneSymbol.js.map +1 -0
- package/lib/node_modules/lodash/_cloneTypedArray.js.map +1 -0
- package/lib/node_modules/lodash/_compareAscending.js.map +1 -0
- package/lib/node_modules/lodash/_compareMultiple.js.map +1 -0
- package/lib/node_modules/lodash/_copyArray.js.map +1 -0
- package/lib/node_modules/lodash/_copyObject.js.map +1 -0
- package/lib/node_modules/lodash/_copySymbols.js.map +1 -0
- package/lib/node_modules/lodash/_copySymbolsIn.js.map +1 -0
- package/lib/node_modules/lodash/_coreJsData.js.map +1 -0
- package/lib/node_modules/lodash/_createAssigner.js.map +1 -0
- package/lib/node_modules/lodash/_createBaseEach.js.map +1 -0
- package/lib/node_modules/lodash/_createBaseFor.js.map +1 -0
- package/lib/node_modules/lodash/_createFind.js.map +1 -0
- package/lib/node_modules/lodash/_createRange.js.map +1 -0
- package/lib/node_modules/lodash/_createSet.js.map +1 -0
- package/lib/node_modules/lodash/_defineProperty.js.map +1 -0
- package/lib/node_modules/lodash/_equalArrays.js.map +1 -0
- package/lib/node_modules/lodash/_equalByTag.js.map +1 -0
- package/lib/node_modules/lodash/_equalObjects.js.map +1 -0
- package/lib/node_modules/lodash/_flatRest.js.map +1 -0
- package/lib/node_modules/lodash/_freeGlobal.js +18 -0
- package/lib/node_modules/lodash/_freeGlobal.js.map +1 -0
- package/lib/node_modules/lodash/_getAllKeys.js.map +1 -0
- package/lib/node_modules/lodash/_getAllKeysIn.js.map +1 -0
- package/lib/node_modules/lodash/_getMapData.js.map +1 -0
- package/lib/node_modules/lodash/_getMatchData.js.map +1 -0
- package/lib/node_modules/lodash/_getNative.js.map +1 -0
- package/lib/node_modules/lodash/_getPrototype.js.map +1 -0
- package/lib/node_modules/lodash/_getRawTag.js.map +1 -0
- package/lib/node_modules/lodash/_getSymbols.js.map +1 -0
- package/lib/node_modules/lodash/_getSymbolsIn.js.map +1 -0
- package/lib/node_modules/lodash/_getTag.js.map +1 -0
- package/lib/node_modules/lodash/_getValue.js.map +1 -0
- package/lib/node_modules/lodash/_hasPath.js.map +1 -0
- package/lib/node_modules/lodash/_hasUnicode.js.map +1 -0
- package/lib/node_modules/lodash/_hashClear.js.map +1 -0
- package/lib/node_modules/lodash/_hashDelete.js.map +1 -0
- package/lib/node_modules/lodash/_hashGet.js.map +1 -0
- package/lib/node_modules/lodash/_hashHas.js.map +1 -0
- package/lib/node_modules/lodash/_hashSet.js.map +1 -0
- package/lib/node_modules/lodash/_initCloneArray.js.map +1 -0
- package/lib/node_modules/lodash/_initCloneByTag.js.map +1 -0
- package/lib/node_modules/lodash/_initCloneObject.js.map +1 -0
- package/lib/node_modules/lodash/_isFlattenable.js.map +1 -0
- package/lib/node_modules/lodash/_isIndex.js.map +1 -0
- package/lib/node_modules/lodash/_isIterateeCall.js.map +1 -0
- package/lib/node_modules/lodash/_isKey.js.map +1 -0
- package/lib/node_modules/lodash/_isKeyable.js.map +1 -0
- package/lib/node_modules/lodash/_isMasked.js.map +1 -0
- package/lib/node_modules/lodash/_isPrototype.js.map +1 -0
- package/lib/node_modules/lodash/_isStrictComparable.js.map +1 -0
- package/lib/node_modules/lodash/_listCacheClear.js.map +1 -0
- package/lib/node_modules/lodash/_listCacheDelete.js.map +1 -0
- package/lib/node_modules/lodash/_listCacheGet.js.map +1 -0
- package/lib/node_modules/lodash/_listCacheHas.js.map +1 -0
- package/lib/node_modules/lodash/_listCacheSet.js.map +1 -0
- package/lib/node_modules/lodash/_mapCacheClear.js.map +1 -0
- package/lib/node_modules/lodash/_mapCacheDelete.js.map +1 -0
- package/lib/node_modules/lodash/_mapCacheGet.js.map +1 -0
- package/lib/node_modules/lodash/_mapCacheHas.js.map +1 -0
- package/lib/node_modules/lodash/_mapCacheSet.js.map +1 -0
- package/lib/node_modules/lodash/_mapToArray.js.map +1 -0
- package/lib/node_modules/lodash/_matchesStrictComparable.js.map +1 -0
- package/lib/node_modules/lodash/_memoizeCapped.js.map +1 -0
- package/lib/node_modules/lodash/_nativeCreate.js.map +1 -0
- package/lib/node_modules/lodash/_nativeKeys.js.map +1 -0
- package/lib/node_modules/lodash/_nativeKeysIn.js.map +1 -0
- package/lib/node_modules/lodash/_nodeUtil.js +47 -0
- package/lib/node_modules/lodash/_nodeUtil.js.map +1 -0
- package/lib/node_modules/lodash/_objectToString.js.map +1 -0
- package/lib/node_modules/lodash/_overArg.js.map +1 -0
- package/lib/node_modules/lodash/_overRest.js.map +1 -0
- package/lib/node_modules/lodash/_root.js.map +1 -0
- package/lib/node_modules/lodash/_safeGet.js.map +1 -0
- package/lib/node_modules/lodash/_setCacheAdd.js.map +1 -0
- package/lib/node_modules/lodash/_setCacheHas.js.map +1 -0
- package/lib/node_modules/lodash/_setToArray.js.map +1 -0
- package/lib/node_modules/lodash/_setToString.js.map +1 -0
- package/lib/node_modules/lodash/_shortOut.js.map +1 -0
- package/lib/node_modules/lodash/_stackClear.js.map +1 -0
- package/lib/node_modules/lodash/_stackDelete.js.map +1 -0
- package/lib/node_modules/lodash/_stackGet.js.map +1 -0
- package/lib/node_modules/lodash/_stackHas.js.map +1 -0
- package/lib/node_modules/lodash/_stackSet.js.map +1 -0
- package/lib/node_modules/lodash/_strictIndexOf.js.map +1 -0
- package/lib/node_modules/lodash/_stringSize.js.map +1 -0
- package/lib/node_modules/lodash/_stringToPath.js.map +1 -0
- package/lib/node_modules/lodash/_toKey.js.map +1 -0
- package/lib/node_modules/lodash/_toSource.js.map +1 -0
- package/lib/node_modules/lodash/_trimmedEndIndex.js.map +1 -0
- package/lib/node_modules/lodash/_unicodeSize.js.map +1 -0
- package/lib/node_modules/lodash/clone.js.map +1 -0
- package/lib/node_modules/lodash/cloneDeep.js.map +1 -0
- package/lib/node_modules/lodash/constant.js.map +1 -0
- package/lib/node_modules/lodash/defaults.js.map +1 -0
- package/lib/node_modules/lodash/each.js.map +1 -0
- package/lib/node_modules/lodash/eq.js.map +1 -0
- package/lib/node_modules/lodash/filter.js.map +1 -0
- package/lib/node_modules/lodash/find.js.map +1 -0
- package/lib/node_modules/lodash/findIndex.js.map +1 -0
- package/lib/node_modules/lodash/flatten.js.map +1 -0
- package/lib/node_modules/lodash/forEach.js.map +1 -0
- package/lib/node_modules/lodash/forIn.js.map +1 -0
- package/lib/node_modules/lodash/get.js.map +1 -0
- package/lib/node_modules/lodash/has.js.map +1 -0
- package/lib/node_modules/lodash/hasIn.js.map +1 -0
- package/lib/node_modules/lodash/identity.js.map +1 -0
- package/lib/node_modules/lodash/isArguments.js.map +1 -0
- package/lib/node_modules/lodash/isArray.js.map +1 -0
- package/lib/node_modules/lodash/isArrayLike.js.map +1 -0
- package/lib/node_modules/lodash/isArrayLikeObject.js.map +1 -0
- package/lib/node_modules/lodash/isBuffer.js +56 -0
- package/lib/node_modules/lodash/isBuffer.js.map +1 -0
- package/lib/node_modules/lodash/isEmpty.js.map +1 -0
- package/lib/node_modules/lodash/isFunction.js.map +1 -0
- package/lib/node_modules/lodash/isLength.js.map +1 -0
- package/lib/node_modules/lodash/isMap.js.map +1 -0
- package/lib/node_modules/lodash/isObject.js.map +1 -0
- package/lib/node_modules/lodash/isObjectLike.js.map +1 -0
- package/lib/node_modules/lodash/isPlainObject.js.map +1 -0
- package/lib/node_modules/lodash/isSet.js.map +1 -0
- package/lib/node_modules/lodash/isString.js.map +1 -0
- package/lib/node_modules/lodash/isSymbol.js.map +1 -0
- package/lib/node_modules/lodash/isTypedArray.js.map +1 -0
- package/lib/node_modules/lodash/isUndefined.js.map +1 -0
- package/lib/node_modules/lodash/keys.js.map +1 -0
- package/lib/node_modules/lodash/keysIn.js.map +1 -0
- package/lib/node_modules/lodash/last.js.map +1 -0
- package/lib/node_modules/lodash/map.js.map +1 -0
- package/lib/node_modules/lodash/mapValues.js.map +1 -0
- package/lib/node_modules/lodash/max.js.map +1 -0
- package/lib/node_modules/lodash/memoize.js.map +1 -0
- package/lib/node_modules/lodash/merge.js.map +1 -0
- package/lib/node_modules/lodash/min.js.map +1 -0
- package/lib/node_modules/lodash/minBy.js.map +1 -0
- package/lib/node_modules/lodash/noop.js.map +1 -0
- package/lib/node_modules/lodash/now.js.map +1 -0
- package/lib/node_modules/lodash/pick.js.map +1 -0
- package/lib/node_modules/lodash/property.js.map +1 -0
- package/lib/node_modules/lodash/range.js.map +1 -0
- package/lib/node_modules/lodash/reduce.js.map +1 -0
- package/lib/node_modules/lodash/size.js.map +1 -0
- package/lib/node_modules/lodash/sortBy.js.map +1 -0
- package/lib/node_modules/lodash/stubArray.js.map +1 -0
- package/lib/node_modules/lodash/stubFalse.js.map +1 -0
- package/lib/node_modules/lodash/toFinite.js.map +1 -0
- package/lib/node_modules/lodash/toInteger.js.map +1 -0
- package/lib/node_modules/lodash/toNumber.js.map +1 -0
- package/lib/node_modules/lodash/toPlainObject.js.map +1 -0
- package/lib/node_modules/lodash/toString.js.map +1 -0
- package/lib/node_modules/lodash/transform.js.map +1 -0
- package/lib/node_modules/lodash/union.js.map +1 -0
- package/lib/node_modules/lodash/uniqueId.js.map +1 -0
- package/lib/node_modules/lodash/values.js.map +1 -0
- package/lib/node_modules/lodash/zipObject.js.map +1 -0
- package/lib/node_modules/ml-array-max/lib-es6/index.js +37 -0
- package/lib/node_modules/ml-array-max/lib-es6/index.js.map +1 -0
- package/lib/node_modules/ml-array-min/lib-es6/index.js +37 -0
- package/lib/node_modules/ml-array-min/lib-es6/index.js.map +1 -0
- package/lib/node_modules/ml-array-rescale/lib-es6/index.js +52 -0
- package/lib/node_modules/ml-array-rescale/lib-es6/index.js.map +1 -0
- package/lib/node_modules/ml-matrix/matrix.js +8 -0
- package/lib/node_modules/ml-matrix/matrix.js.map +1 -0
- package/lib/node_modules/ml-matrix/matrix2.js +5660 -0
- package/lib/node_modules/ml-matrix/matrix2.js.map +1 -0
- package/lib/node_modules/tslib/tslib.es6.js.map +1 -0
- package/lib/registry.js +13 -13
- package/lib/runtime/context.d.ts +15 -0
- package/lib/runtime/context.js +29 -0
- package/lib/runtime/context.js.map +1 -0
- package/lib/runtime/supervisor.d.ts +25 -0
- package/lib/runtime/supervisor.js +75 -0
- package/lib/runtime/supervisor.js.map +1 -0
- package/lib/types/data.d.ts +13 -10
- package/lib/types/edge-label.d.ts +6 -0
- package/lib/types/force.d.ts +1 -2
- package/lib/util/common.d.ts +2 -2
- package/lib/util/common.js.map +1 -1
- package/lib/util/format.js +3 -3
- package/lib/util/math.d.ts +3 -3
- package/lib/util/math.js +1 -1
- package/lib/util/math.js.map +1 -1
- package/lib/util/object.d.ts +1 -2
- package/lib/util/object.js +3 -6
- package/lib/util/object.js.map +1 -1
- package/lib/util/order.d.ts +5 -5
- package/lib/util/order.js +2 -8
- package/lib/util/order.js.map +1 -1
- package/lib/util/size.js +1 -1
- package/lib/worker.js +462 -463
- package/lib/worker.js.map +1 -1
- package/package.json +30 -11
- package/src/algorithm/antv-dagre/acyclic.ts +70 -0
- package/src/algorithm/antv-dagre/add-border-segments.ts +55 -0
- package/src/algorithm/antv-dagre/coordinate-system.ts +77 -0
- package/src/algorithm/antv-dagre/graph.ts +533 -0
- package/src/algorithm/antv-dagre/greedy-fas.ts +185 -0
- package/src/algorithm/antv-dagre/index.ts +619 -0
- package/src/algorithm/antv-dagre/layout.ts +622 -0
- package/src/algorithm/antv-dagre/nesting-graph.ts +184 -0
- package/src/algorithm/antv-dagre/normalize.ts +125 -0
- package/src/algorithm/antv-dagre/order/add-subgraph-constraints.ts +51 -0
- package/src/algorithm/antv-dagre/order/barycenter.ts +26 -0
- package/src/algorithm/antv-dagre/order/build-layer-graph.ts +109 -0
- package/src/algorithm/antv-dagre/order/cross-count.ts +76 -0
- package/src/algorithm/antv-dagre/order/index.ts +123 -0
- package/src/algorithm/antv-dagre/order/init-data-order.ts +29 -0
- package/src/algorithm/antv-dagre/order/init-order.ts +59 -0
- package/src/algorithm/antv-dagre/order/resolve-conflicts.ts +153 -0
- package/src/algorithm/antv-dagre/order/sort-subgraph.ts +111 -0
- package/src/algorithm/antv-dagre/order/sort.ts +94 -0
- package/src/algorithm/antv-dagre/parent-dummy-chains.ts +111 -0
- package/src/algorithm/antv-dagre/position/bk.ts +560 -0
- package/src/algorithm/antv-dagre/position/index.ts +109 -0
- package/src/algorithm/antv-dagre/rank/feasible-tree.ts +179 -0
- package/src/algorithm/antv-dagre/rank/network-simplex.ts +282 -0
- package/src/algorithm/antv-dagre/rank/util.ts +157 -0
- package/src/algorithm/antv-dagre/types.ts +197 -0
- package/src/algorithm/antv-dagre/util.ts +359 -0
- package/src/algorithm/base-layout.ts +137 -0
- package/src/algorithm/base-simulation.ts +94 -0
- package/src/algorithm/circular/index.ts +123 -0
- package/src/algorithm/circular/types.ts +105 -0
- package/src/algorithm/combo-combined/index.ts +412 -0
- package/src/algorithm/combo-combined/types.ts +39 -0
- package/src/algorithm/concentric/index.ts +234 -0
- package/src/algorithm/concentric/types.ts +89 -0
- package/src/algorithm/d3-force/force-in-a-box.ts +404 -0
- package/src/algorithm/d3-force/index.ts +592 -0
- package/src/algorithm/d3-force/types.ts +378 -0
- package/src/algorithm/dagre/index.ts +172 -0
- package/src/algorithm/dagre/types.ts +84 -0
- package/src/algorithm/force/attractive.ts +71 -0
- package/src/algorithm/force/centripetal.ts +133 -0
- package/src/algorithm/force/collide.ts +219 -0
- package/src/algorithm/force/gravity.ts +61 -0
- package/src/algorithm/force/index.ts +541 -0
- package/src/algorithm/force/repulsive.ts +200 -0
- package/src/algorithm/force/simulation.ts +172 -0
- package/src/algorithm/force/types.ts +265 -0
- package/src/algorithm/force-atlas2/index.ts +189 -0
- package/src/algorithm/force-atlas2/quad.ts +117 -0
- package/src/algorithm/force-atlas2/simulation.ts +445 -0
- package/src/algorithm/force-atlas2/types.ts +106 -0
- package/src/algorithm/fruchterman/index.ts +116 -0
- package/src/algorithm/fruchterman/simulation.ts +447 -0
- package/src/algorithm/fruchterman/types.ts +47 -0
- package/src/algorithm/grid/index.ts +305 -0
- package/src/algorithm/grid/types.ts +120 -0
- package/src/algorithm/index.ts +29 -0
- package/src/algorithm/mds/index.ts +143 -0
- package/src/algorithm/mds/types.ts +23 -0
- package/src/algorithm/radial/index.ts +346 -0
- package/src/algorithm/radial/radial-nonoverlap-force.ts +210 -0
- package/src/algorithm/radial/types.ts +100 -0
- package/src/algorithm/random/index.ts +41 -0
- package/src/algorithm/random/types.ts +8 -0
- package/src/algorithm/types.ts +172 -0
- package/src/index.ts +3 -25
- package/src/model/data.ts +381 -0
- package/src/model/index.ts +1 -0
- package/src/registry.ts +13 -13
- package/src/runtime/context.ts +49 -0
- package/src/runtime/index.ts +2 -0
- package/src/runtime/supervisor.ts +80 -0
- package/src/types/data.ts +20 -13
- package/src/types/edge-label.ts +5 -0
- package/src/types/force.ts +2 -2
- package/src/types/index.ts +1 -0
- package/src/util/common.ts +2 -2
- package/src/util/index.ts +0 -1
- package/src/util/math.ts +3 -3
- package/src/util/object.ts +0 -4
- package/src/util/order.ts +13 -20
- package/src/worker.ts +2 -2
- package/lib/antv-dagre/acyclic.js.map +0 -1
- package/lib/antv-dagre/add-border-segments.js.map +0 -1
- package/lib/antv-dagre/coordinate-system.js.map +0 -1
- package/lib/antv-dagre/data/list.js.map +0 -1
- package/lib/antv-dagre/graph.js.map +0 -1
- package/lib/antv-dagre/greedy-fas.js.map +0 -1
- package/lib/antv-dagre/index.d.ts +0 -15
- package/lib/antv-dagre/index.js +0 -337
- package/lib/antv-dagre/index.js.map +0 -1
- package/lib/antv-dagre/layout.js +0 -471
- package/lib/antv-dagre/layout.js.map +0 -1
- package/lib/antv-dagre/nesting-graph.js.map +0 -1
- package/lib/antv-dagre/normalize.js.map +0 -1
- package/lib/antv-dagre/order/add-subgraph-constraints.js.map +0 -1
- package/lib/antv-dagre/order/barycenter.js.map +0 -1
- package/lib/antv-dagre/order/build-layer-graph.js.map +0 -1
- package/lib/antv-dagre/order/cross-count.js.map +0 -1
- package/lib/antv-dagre/order/index.js +0 -94
- package/lib/antv-dagre/order/index.js.map +0 -1
- package/lib/antv-dagre/order/init-data-order.js.map +0 -1
- package/lib/antv-dagre/order/init-order.js.map +0 -1
- package/lib/antv-dagre/order/resolve-conflicts.js.map +0 -1
- package/lib/antv-dagre/order/sort-subgraph.js.map +0 -1
- package/lib/antv-dagre/order/sort.js.map +0 -1
- package/lib/antv-dagre/parent-dummy-chains.js.map +0 -1
- package/lib/antv-dagre/position/bk.js.map +0 -1
- package/lib/antv-dagre/position/index.js.map +0 -1
- package/lib/antv-dagre/rank/feasible-tree.js.map +0 -1
- package/lib/antv-dagre/rank/index.js.map +0 -1
- package/lib/antv-dagre/rank/network-simplex.js.map +0 -1
- package/lib/antv-dagre/rank/util.js.map +0 -1
- package/lib/antv-dagre/types.d.ts +0 -170
- package/lib/antv-dagre/util.js +0 -265
- package/lib/antv-dagre/util.js.map +0 -1
- package/lib/circular/index.d.ts +0 -15
- package/lib/circular/index.js +0 -108
- package/lib/circular/index.js.map +0 -1
- package/lib/circular/types.d.ts +0 -105
- package/lib/combo-combined/index.d.ts +0 -33
- package/lib/combo-combined/index.js +0 -303
- package/lib/combo-combined/index.js.map +0 -1
- package/lib/combo-combined/types.d.ts +0 -37
- package/lib/concentric/index.d.ts +0 -15
- package/lib/concentric/index.js +0 -192
- package/lib/concentric/index.js.map +0 -1
- package/lib/concentric/types.d.ts +0 -92
- package/lib/core/base-layout.d.ts +0 -40
- package/lib/core/base-layout.js +0 -88
- package/lib/core/base-layout.js.map +0 -1
- package/lib/core/base-simulation.d.ts +0 -43
- package/lib/core/base-simulation.js +0 -75
- package/lib/core/base-simulation.js.map +0 -1
- package/lib/core/types.d.ts +0 -89
- package/lib/d3-force/force-in-a-box.js +0 -343
- package/lib/d3-force/force-in-a-box.js.map +0 -1
- package/lib/d3-force/index.d.ts +0 -53
- package/lib/d3-force/index.js +0 -552
- package/lib/d3-force/index.js.map +0 -1
- package/lib/d3-force/types.d.ts +0 -336
- package/lib/d3-force-3d/index.js +0 -73
- package/lib/d3-force-3d/index.js.map +0 -1
- package/lib/dagre/index.d.ts +0 -22
- package/lib/dagre/index.js +0 -142
- package/lib/dagre/index.js.map +0 -1
- package/lib/dagre/types.d.ts +0 -79
- package/lib/force/attractive.js.map +0 -1
- package/lib/force/centripetal.js +0 -87
- package/lib/force/centripetal.js.map +0 -1
- package/lib/force/collide.js +0 -172
- package/lib/force/collide.js.map +0 -1
- package/lib/force/gravity.js.map +0 -1
- package/lib/force/index.d.ts +0 -87
- package/lib/force/index.js +0 -450
- package/lib/force/index.js.map +0 -1
- package/lib/force/repulsive.js +0 -142
- package/lib/force/repulsive.js.map +0 -1
- package/lib/force/simulation.d.ts +0 -23
- package/lib/force/simulation.js +0 -137
- package/lib/force/simulation.js.map +0 -1
- package/lib/force/types.d.ts +0 -252
- package/lib/force-atlas2/body.js.map +0 -1
- package/lib/force-atlas2/index.d.ts +0 -22
- package/lib/force-atlas2/index.js +0 -155
- package/lib/force-atlas2/index.js.map +0 -1
- package/lib/force-atlas2/quad-tree.js.map +0 -1
- package/lib/force-atlas2/quad.js.map +0 -1
- package/lib/force-atlas2/simulation.d.ts +0 -39
- package/lib/force-atlas2/simulation.js +0 -388
- package/lib/force-atlas2/simulation.js.map +0 -1
- package/lib/force-atlas2/types.d.ts +0 -109
- package/lib/fruchterman/index.d.ts +0 -20
- package/lib/fruchterman/index.js +0 -93
- package/lib/fruchterman/index.js.map +0 -1
- package/lib/fruchterman/simulation.js +0 -356
- package/lib/fruchterman/simulation.js.map +0 -1
- package/lib/fruchterman/types.d.ts +0 -48
- package/lib/grid/index.d.ts +0 -16
- package/lib/grid/index.js +0 -243
- package/lib/grid/index.js.map +0 -1
- package/lib/grid/types.d.ts +0 -85
- package/lib/mds/index.d.ts +0 -15
- package/lib/mds/index.js +0 -127
- package/lib/mds/index.js.map +0 -1
- package/lib/mds/types.d.ts +0 -25
- package/lib/node_modules/.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv/event-emitter/esm/index.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/clone.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/deep-mix.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/each.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get-type.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array-like.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-boolean.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-empty.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-function.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-nil.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-number.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object-like.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-plain-object.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-prototype.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-string.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-type.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/pick.js.map +0 -1
- package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/set.js.map +0 -1
- package/lib/node_modules/.pnpm/@rollup_plugin-typescript@12.3.0_rollup@4.54.0_tslib@2.8.1_typescript@4.9.5/node_modules/tslib/tslib.es6.js.map +0 -1
- package/lib/node_modules/.pnpm/comlink@4.4.2/node_modules/comlink/dist/esm/comlink.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/add.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/binarytree.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/cover.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/data.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/extent.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/find.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/half.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/remove.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/root.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/size.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visit.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visitAfter.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/x.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch/src/dispatch.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/center.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js +0 -135
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/constant.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/jiggle.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/lcg.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/link.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js +0 -142
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/radial.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js +0 -202
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/x.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/y.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/z.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/center.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js +0 -103
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/constant.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/jiggle.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/lcg.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/link.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js +0 -119
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/radial.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js +0 -159
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/x.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/y.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/add.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/cover.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/data.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/extent.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/find.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/findAll.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octant.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octree.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/remove.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/root.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/size.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visit.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visitAfter.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/x.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/y.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/z.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/add.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/cover.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/data.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/extent.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/find.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quad.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quadtree.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/remove.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/root.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/size.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visit.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visitAfter.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/x.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/y.js.map +0 -1
- package/lib/node_modules/.pnpm/d3-timer@3.0.1/node_modules/d3-timer/src/timer.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/index.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/acyclic.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/add-border-segments.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/coordinate-system.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/data/list.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/debug.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js +0 -31
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/greedy-fas.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/layout.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js +0 -83
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/nesting-graph.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/normalize.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/add-subgraph-constraints.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/barycenter.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/build-layer-graph.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/cross-count.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/index.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/init-order.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/resolve-conflicts.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort-subgraph.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/parent-dummy-chains.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/bk.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/index.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/feasible-tree.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/index.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/network-simplex.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/util.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/util.js.map +0 -1
- package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/version.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/index.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/components.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dfs.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra-all.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/find-cycles.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/floyd-warshall.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/index.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/is-acyclic.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/postorder.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/preorder.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/prim.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/tarjan.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/topsort.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/data/priority-queue.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/graph.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/index.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/json.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js +0 -63
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js.map +0 -1
- package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/version.js.map +0 -1
- package/lib/node_modules/.pnpm/is-any-array@2.0.1/node_modules/is-any-array/lib-esm/index.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_DataView.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Hash.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_ListCache.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Map.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_MapCache.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Promise.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Set.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_SetCache.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Stack.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Symbol.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Uint8Array.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_WeakMap.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_apply.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayEach.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayFilter.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludes.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludesWith.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayLikeKeys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayMap.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayPush.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayReduce.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arraySome.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_asciiSize.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignMergeValue.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignValue.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assocIndexOf.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssign.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignValue.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseClone.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseCreate.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseEach.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseExtremum.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFilter.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFindIndex.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFlatten.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFor.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseForOwn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetAllKeys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetTag.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGt.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHasIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIndexOf.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsArguments.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqual.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqualDeep.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMap.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMatch.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNaN.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNative.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsTypedArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIteratee.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeysIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseLt.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMap.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatches.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatchesProperty.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMerge.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMergeDeep.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePickBy.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseProperty.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyDeep.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRange.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseReduce.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRest.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSetToString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTimes.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseToString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTrim.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUnary.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUniq.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseValues.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseZipObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cacheHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castFunction.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castPath.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneArrayBuffer.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js +0 -52
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneDataView.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneRegExp.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneSymbol.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneTypedArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbols.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbolsIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_coreJsData.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createAssigner.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseEach.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseFor.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createFind.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createRange.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_defineProperty.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalArrays.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalByTag.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalObjects.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_flatRest.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js +0 -18
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeysIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMapData.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMatchData.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getNative.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getPrototype.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getRawTag.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbols.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbolsIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getTag.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getValue.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasPath.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasUnicode.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashClear.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashDelete.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneByTag.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isFlattenable.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIndex.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIterateeCall.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKey.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKeyable.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isMasked.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isPrototype.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isStrictComparable.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheClear.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheDelete.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheClear.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheDelete.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapToArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_matchesStrictComparable.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_memoizeCapped.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeCreate.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeysIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js +0 -47
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_objectToString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overArg.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overRest.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_root.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_safeGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheAdd.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_shortOut.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackClear.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackDelete.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackGet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackHas.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_strictIndexOf.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringSize.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringToPath.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toKey.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toSource.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_trimmedEndIndex.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_unicodeSize.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/clone.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/cloneDeep.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/constant.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/defaults.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/each.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/eq.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/filter.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/find.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/findIndex.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/flatten.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forEach.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/get.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/hasIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/identity.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArguments.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLike.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLikeObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js +0 -56
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isFunction.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isLength.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isMap.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObjectLike.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isPlainObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSet.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSymbol.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isTypedArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keys.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keysIn.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/last.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/map.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/max.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/memoize.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/merge.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/min.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/minBy.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/noop.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/now.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/property.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/range.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/reduce.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/size.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/sortBy.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubArray.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubFalse.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toFinite.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toInteger.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toNumber.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toPlainObject.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toString.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/transform.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/union.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/uniqueId.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/values.js.map +0 -1
- package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/zipObject.js.map +0 -1
- package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js +0 -37
- package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js.map +0 -1
- package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js +0 -37
- package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js.map +0 -1
- package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js +0 -52
- package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js.map +0 -1
- package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js +0 -8
- package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js.map +0 -1
- package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js +0 -5660
- package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js.map +0 -1
- package/lib/radial/index.d.ts +0 -16
- package/lib/radial/index.js +0 -275
- package/lib/radial/index.js.map +0 -1
- package/lib/radial/radial-nonoverlap-force.js +0 -129
- package/lib/radial/radial-nonoverlap-force.js.map +0 -1
- package/lib/radial/types.d.ts +0 -103
- package/lib/random/index.d.ts +0 -15
- package/lib/random/index.js +0 -36
- package/lib/random/index.js.map +0 -1
- package/lib/random/types.d.ts +0 -11
- package/lib/supervisor.d.ts +0 -25
- package/lib/supervisor.js +0 -71
- package/lib/supervisor.js.map +0 -1
- package/lib/util/model.d.ts +0 -45
- package/lib/util/model.js +0 -273
- package/lib/util/model.js.map +0 -1
- package/src/antv-dagre/acyclic.ts +0 -70
- package/src/antv-dagre/add-border-segments.ts +0 -55
- package/src/antv-dagre/coordinate-system.ts +0 -77
- package/src/antv-dagre/graph.ts +0 -533
- package/src/antv-dagre/greedy-fas.ts +0 -185
- package/src/antv-dagre/index.ts +0 -620
- package/src/antv-dagre/layout.ts +0 -622
- package/src/antv-dagre/nesting-graph.ts +0 -184
- package/src/antv-dagre/normalize.ts +0 -125
- package/src/antv-dagre/order/add-subgraph-constraints.ts +0 -51
- package/src/antv-dagre/order/barycenter.ts +0 -26
- package/src/antv-dagre/order/build-layer-graph.ts +0 -109
- package/src/antv-dagre/order/cross-count.ts +0 -76
- package/src/antv-dagre/order/index.ts +0 -123
- package/src/antv-dagre/order/init-data-order.ts +0 -29
- package/src/antv-dagre/order/init-order.ts +0 -59
- package/src/antv-dagre/order/resolve-conflicts.ts +0 -153
- package/src/antv-dagre/order/sort-subgraph.ts +0 -111
- package/src/antv-dagre/order/sort.ts +0 -94
- package/src/antv-dagre/parent-dummy-chains.ts +0 -111
- package/src/antv-dagre/position/bk.ts +0 -560
- package/src/antv-dagre/position/index.ts +0 -109
- package/src/antv-dagre/rank/feasible-tree.ts +0 -179
- package/src/antv-dagre/rank/network-simplex.ts +0 -282
- package/src/antv-dagre/rank/util.ts +0 -157
- package/src/antv-dagre/types.ts +0 -175
- package/src/antv-dagre/util.ts +0 -359
- package/src/circular/index.ts +0 -123
- package/src/circular/types.ts +0 -105
- package/src/combo-combined/index.ts +0 -412
- package/src/combo-combined/types.ts +0 -39
- package/src/concentric/index.ts +0 -234
- package/src/concentric/types.ts +0 -89
- package/src/core/base-layout.ts +0 -126
- package/src/core/base-simulation.ts +0 -115
- package/src/core/types.ts +0 -145
- package/src/d3-force/force-in-a-box.ts +0 -404
- package/src/d3-force/index.ts +0 -642
- package/src/d3-force/types.ts +0 -378
- package/src/dagre/index.ts +0 -172
- package/src/dagre/types.ts +0 -85
- package/src/force/attractive.ts +0 -71
- package/src/force/centripetal.ts +0 -133
- package/src/force/collide.ts +0 -219
- package/src/force/gravity.ts +0 -61
- package/src/force/index.ts +0 -539
- package/src/force/repulsive.ts +0 -200
- package/src/force/simulation.ts +0 -172
- package/src/force/types.ts +0 -265
- package/src/force-atlas2/index.ts +0 -188
- package/src/force-atlas2/quad.ts +0 -117
- package/src/force-atlas2/simulation.ts +0 -445
- package/src/force-atlas2/types.ts +0 -106
- package/src/fruchterman/index.ts +0 -116
- package/src/fruchterman/simulation.ts +0 -447
- package/src/fruchterman/types.ts +0 -47
- package/src/grid/index.ts +0 -305
- package/src/grid/types.ts +0 -120
- package/src/mds/index.ts +0 -143
- package/src/mds/types.ts +0 -23
- package/src/radial/index.ts +0 -345
- package/src/radial/radial-nonoverlap-force.ts +0 -209
- package/src/radial/types.ts +0 -100
- package/src/random/index.ts +0 -35
- package/src/random/types.ts +0 -8
- package/src/supervisor.ts +0 -77
- package/src/util/model.ts +0 -372
- /package/lib/{antv-dagre → algorithm/antv-dagre}/acyclic.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/add-border-segments.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/coordinate-system.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/data/list.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/graph.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/greedy-fas.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/nesting-graph.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/normalize.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/add-subgraph-constraints.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/barycenter.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/build-layer-graph.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/cross-count.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/init-data-order.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/init-order.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/resolve-conflicts.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/sort-subgraph.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/order/sort.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/parent-dummy-chains.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/position/bk.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/position/index.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/feasible-tree.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/index.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/network-simplex.js +0 -0
- /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/util.js +0 -0
- /package/lib/{d3-force-3d → algorithm/d3-force-3d}/index.d.ts +0 -0
- /package/lib/{d3-force-3d → algorithm/d3-force-3d}/types.d.ts +0 -0
- /package/lib/{force → algorithm/force}/attractive.js +0 -0
- /package/lib/{force → algorithm/force}/gravity.js +0 -0
- /package/lib/{force-atlas2 → algorithm/force-atlas2}/body.js +0 -0
- /package/lib/{force-atlas2 → algorithm/force-atlas2}/quad-tree.js +0 -0
- /package/lib/{force-atlas2 → algorithm/force-atlas2}/quad.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv → @antv}/event-emitter/esm/index.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/clone.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/deep-mix.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/each.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/get-type.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/get.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-array-like.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-array.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-boolean.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-empty.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-function.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-nil.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-number.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-object-like.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-object.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-plain-object.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-prototype.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-string.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-type.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/pick.js +0 -0
- /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/set.js +0 -0
- /package/lib/node_modules/{.pnpm/comlink@4.4.2/node_modules/comlink → comlink}/dist/esm/comlink.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/add.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/binarytree.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/cover.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/data.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/extent.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/find.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/half.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/remove.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/root.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/size.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/visit.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/visitAfter.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/x.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch → d3-dispatch}/src/dispatch.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/center.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/constant.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/jiggle.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/lcg.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/link.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/radial.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/x.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/y.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/center.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/constant.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/jiggle.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/lcg.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/link.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/radial.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/x.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/y.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/z.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/add.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/cover.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/data.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/extent.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/find.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/findAll.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/octant.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/octree.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/remove.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/root.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/size.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/visit.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/visitAfter.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/x.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/y.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/z.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/add.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/cover.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/data.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/extent.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/find.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/quad.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/quadtree.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/remove.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/root.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/size.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/visit.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/visitAfter.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/x.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/y.js +0 -0
- /package/lib/node_modules/{.pnpm/d3-timer@3.0.1/node_modules/d3-timer → d3-timer}/src/timer.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/index.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/acyclic.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/add-border-segments.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/coordinate-system.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/data/list.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/debug.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/greedy-fas.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/layout.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/nesting-graph.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/normalize.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/add-subgraph-constraints.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/barycenter.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/build-layer-graph.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/cross-count.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/index.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/init-order.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/resolve-conflicts.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/sort-subgraph.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/sort.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/parent-dummy-chains.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/position/bk.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/position/index.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/feasible-tree.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/index.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/network-simplex.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/util.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/util.js +0 -0
- /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/version.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/index.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/components.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dfs.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dijkstra-all.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dijkstra.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/find-cycles.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/floyd-warshall.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/index.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/is-acyclic.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/postorder.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/preorder.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/prim.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/tarjan.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/topsort.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/data/priority-queue.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/graph.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/index.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/json.js +0 -0
- /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/version.js +0 -0
- /package/lib/node_modules/{.pnpm/is-any-array@2.0.1/node_modules/is-any-array → is-any-array}/lib-esm/index.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_DataView.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Hash.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_ListCache.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Map.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_MapCache.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Promise.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Set.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_SetCache.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Stack.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Symbol.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Uint8Array.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_WeakMap.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_apply.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayEach.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayFilter.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayIncludes.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayIncludesWith.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayLikeKeys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayMap.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayPush.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayReduce.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arraySome.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_asciiSize.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assignMergeValue.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assignValue.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assocIndexOf.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssign.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssignIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssignValue.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseClone.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseCreate.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseEach.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseExtremum.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFilter.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFindIndex.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFlatten.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFor.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseForOwn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGetAllKeys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGetTag.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGt.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseHasIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIndexOf.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsArguments.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsEqual.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsEqualDeep.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsMap.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsMatch.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsNaN.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsNative.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsTypedArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIteratee.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseKeys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseKeysIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseLt.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMap.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMatches.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMatchesProperty.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMerge.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMergeDeep.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseOrderBy.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePick.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePickBy.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseProperty.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePropertyDeep.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseRange.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseReduce.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseRest.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSetToString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSortBy.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseTimes.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseToString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseTrim.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseUnary.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseUniq.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseValues.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseZipObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cacheHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_castFunction.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_castPath.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneArrayBuffer.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneDataView.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneRegExp.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneSymbol.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneTypedArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_compareAscending.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_compareMultiple.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copyArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copyObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copySymbols.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copySymbolsIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_coreJsData.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createAssigner.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createBaseEach.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createBaseFor.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createFind.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createRange.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_defineProperty.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalArrays.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalByTag.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalObjects.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_flatRest.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getAllKeys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getAllKeysIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getMapData.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getMatchData.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getNative.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getPrototype.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getRawTag.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getSymbols.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getSymbolsIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getTag.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getValue.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hasPath.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hasUnicode.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashClear.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashDelete.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneByTag.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isFlattenable.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isIndex.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isIterateeCall.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isKey.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isKeyable.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isMasked.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isPrototype.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isStrictComparable.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheClear.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheDelete.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheClear.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheDelete.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapToArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_matchesStrictComparable.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_memoizeCapped.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeCreate.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeKeys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeKeysIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_objectToString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_overArg.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_overRest.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_root.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_safeGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setCacheAdd.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setCacheHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setToArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setToString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_shortOut.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackClear.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackDelete.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackGet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackHas.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_strictIndexOf.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stringSize.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stringToPath.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_toKey.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_toSource.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_trimmedEndIndex.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_unicodeSize.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/clone.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/cloneDeep.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/constant.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/defaults.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/each.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/eq.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/filter.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/find.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/findIndex.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/flatten.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/forEach.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/forIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/get.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/has.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/hasIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/identity.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArguments.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArrayLike.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArrayLikeObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isEmpty.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isFunction.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isLength.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isMap.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isObjectLike.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isPlainObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isSet.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isSymbol.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isTypedArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isUndefined.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/keys.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/keysIn.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/last.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/map.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/mapValues.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/max.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/memoize.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/merge.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/min.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/minBy.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/noop.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/now.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/pick.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/property.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/range.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/reduce.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/size.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/sortBy.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/stubArray.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/stubFalse.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toFinite.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toInteger.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toNumber.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toPlainObject.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toString.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/transform.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/union.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/uniqueId.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/values.js +0 -0
- /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/zipObject.js +0 -0
- /package/lib/node_modules/{.pnpm/@rollup_plugin-typescript@12.3.0_rollup@4.54.0_tslib@2.8.1_typescript@4.9.5/node_modules/tslib → tslib}/tslib.es6.js +0 -0
- /package/src/{antv-dagre → algorithm/antv-dagre}/data/list.ts +0 -0
- /package/src/{antv-dagre → algorithm/antv-dagre}/rank/index.ts +0 -0
- /package/src/{d3-force-3d → algorithm/d3-force-3d}/index.ts +0 -0
- /package/src/{d3-force-3d → algorithm/d3-force-3d}/types.ts +0 -0
- /package/src/{d3-force-3d → algorithm/d3-force-3d}/typing.d.ts +0 -0
- /package/src/{force → algorithm/force}/typing.d.ts +0 -0
- /package/src/{force-atlas2 → algorithm/force-atlas2}/body.ts +0 -0
- /package/src/{force-atlas2 → algorithm/force-atlas2}/quad-tree.ts +0 -0
|
@@ -1,560 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* This module provides coordinate assignment based on Brandes and Köpf, "Fast
|
|
3
|
-
* and Simple Horizontal Coordinate Assignment."
|
|
4
|
-
*/
|
|
5
|
-
import type { ID } from '../../types';
|
|
6
|
-
import { EdgeData, NodeData } from '../../types';
|
|
7
|
-
import { DagreGraph, GraphNode } from '../graph';
|
|
8
|
-
import type { DagreAlign } from '../types';
|
|
9
|
-
import { buildLayerMatrix, minBy } from '../util';
|
|
10
|
-
|
|
11
|
-
/*
|
|
12
|
-
* Marks all edges in the graph with a type-1 conflict with the "type1Conflict"
|
|
13
|
-
* property. A type-1 conflict is one where a non-inner segment crosses an
|
|
14
|
-
* inner segment. An inner segment is an edge with both incident nodes marked
|
|
15
|
-
* with the "dummy" property.
|
|
16
|
-
*
|
|
17
|
-
* This algorithm scans layer by layer, starting with the second, for type-1
|
|
18
|
-
* conflicts between the current layer and the previous layer. For each layer
|
|
19
|
-
* it scans the nodes from left to right until it reaches one that is incident
|
|
20
|
-
* on an inner segment. It then scans predecessors to determine if they have
|
|
21
|
-
* edges that cross that inner segment. At the end a final scan is done for all
|
|
22
|
-
* nodes on the current rank to see if they cross the last visited inner
|
|
23
|
-
* segment.
|
|
24
|
-
*
|
|
25
|
-
* This algorithm (safely) assumes that a dummy node will only be incident on a
|
|
26
|
-
* single node in the layers being scanned.
|
|
27
|
-
*/
|
|
28
|
-
|
|
29
|
-
type Conflicts = Record<ID, Record<ID, boolean>>;
|
|
30
|
-
|
|
31
|
-
export const findType1Conflicts = (g: DagreGraph, layering?: ID[][]) => {
|
|
32
|
-
const conflicts = {};
|
|
33
|
-
|
|
34
|
-
const visitLayer = (prevLayer: ID[], layer: ID[]) => {
|
|
35
|
-
// last visited node in the previous layer that is incident on an inner
|
|
36
|
-
// segment.
|
|
37
|
-
let k0 = 0;
|
|
38
|
-
// Tracks the last node in this layer scanned for crossings with a type-1
|
|
39
|
-
// segment.
|
|
40
|
-
let scanPos = 0;
|
|
41
|
-
const prevLayerLength = prevLayer.length;
|
|
42
|
-
const lastNode = layer?.[layer?.length - 1];
|
|
43
|
-
|
|
44
|
-
layer?.forEach((v: ID, i: number) => {
|
|
45
|
-
const w = findOtherInnerSegmentNode(g, v);
|
|
46
|
-
const k1 = w ? g.getNode(w.id)!.data.order! : prevLayerLength;
|
|
47
|
-
|
|
48
|
-
if (w || v === lastNode) {
|
|
49
|
-
layer.slice(scanPos, i + 1)?.forEach((scanNode) => {
|
|
50
|
-
g.getPredecessors(scanNode)?.forEach((u) => {
|
|
51
|
-
const uLabel = g.getNode(u.id)!;
|
|
52
|
-
const uPos = uLabel.data.order!;
|
|
53
|
-
if (
|
|
54
|
-
(uPos < k0 || k1 < uPos) &&
|
|
55
|
-
!(uLabel.data.dummy && g.getNode(scanNode)?.data.dummy)
|
|
56
|
-
) {
|
|
57
|
-
addConflict(conflicts, u.id, scanNode);
|
|
58
|
-
}
|
|
59
|
-
});
|
|
60
|
-
});
|
|
61
|
-
scanPos = i + 1;
|
|
62
|
-
k0 = k1;
|
|
63
|
-
}
|
|
64
|
-
});
|
|
65
|
-
|
|
66
|
-
return layer;
|
|
67
|
-
};
|
|
68
|
-
|
|
69
|
-
if (layering?.length) {
|
|
70
|
-
layering.reduce(visitLayer);
|
|
71
|
-
}
|
|
72
|
-
return conflicts;
|
|
73
|
-
};
|
|
74
|
-
|
|
75
|
-
export const findType2Conflicts = (g: DagreGraph, layering?: ID[][]) => {
|
|
76
|
-
const conflicts = {};
|
|
77
|
-
|
|
78
|
-
function scan(
|
|
79
|
-
south: ID[],
|
|
80
|
-
southPos: number,
|
|
81
|
-
southEnd: number,
|
|
82
|
-
prevNorthBorder: number,
|
|
83
|
-
nextNorthBorder: number,
|
|
84
|
-
) {
|
|
85
|
-
let v: ID;
|
|
86
|
-
for (let i = southPos; i < southEnd; i++) {
|
|
87
|
-
v = south[i];
|
|
88
|
-
if (g.getNode(v)?.data.dummy) {
|
|
89
|
-
g.getPredecessors(v)?.forEach((u) => {
|
|
90
|
-
const uNode = g.getNode(u.id)!;
|
|
91
|
-
if (
|
|
92
|
-
uNode.data.dummy &&
|
|
93
|
-
(uNode.data.order! < prevNorthBorder ||
|
|
94
|
-
uNode.data.order! > nextNorthBorder)
|
|
95
|
-
) {
|
|
96
|
-
addConflict(conflicts, u.id, v);
|
|
97
|
-
}
|
|
98
|
-
});
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
function getScannedKey(params: Parameters<typeof scan>) {
|
|
104
|
-
// south数组可能很大,不适合做key
|
|
105
|
-
return JSON.stringify(params.slice(1));
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
function scanIfNeeded(
|
|
109
|
-
params: Parameters<typeof scan>,
|
|
110
|
-
scanCache: Map<ID, boolean>,
|
|
111
|
-
) {
|
|
112
|
-
const cacheKey = getScannedKey(params);
|
|
113
|
-
|
|
114
|
-
if (scanCache.get(cacheKey)) return;
|
|
115
|
-
|
|
116
|
-
scan(...params);
|
|
117
|
-
scanCache.set(cacheKey, true);
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
const visitLayer = (north: ID[], south: ID[]) => {
|
|
121
|
-
let prevNorthPos = -1;
|
|
122
|
-
let nextNorthPos: number;
|
|
123
|
-
let southPos = 0;
|
|
124
|
-
|
|
125
|
-
const scanned = new Map<ID, boolean>();
|
|
126
|
-
|
|
127
|
-
south?.forEach((v: ID, southLookahead: number) => {
|
|
128
|
-
if (g.getNode(v)?.data.dummy === 'border') {
|
|
129
|
-
const predecessors = g.getPredecessors(v) || [];
|
|
130
|
-
if (predecessors.length) {
|
|
131
|
-
nextNorthPos = g.getNode(predecessors[0].id)!.data.order!;
|
|
132
|
-
scanIfNeeded(
|
|
133
|
-
[south, southPos, southLookahead, prevNorthPos, nextNorthPos],
|
|
134
|
-
scanned,
|
|
135
|
-
);
|
|
136
|
-
southPos = southLookahead;
|
|
137
|
-
prevNorthPos = nextNorthPos;
|
|
138
|
-
}
|
|
139
|
-
}
|
|
140
|
-
scanIfNeeded(
|
|
141
|
-
[south, southPos, south.length, nextNorthPos, north.length],
|
|
142
|
-
scanned,
|
|
143
|
-
);
|
|
144
|
-
});
|
|
145
|
-
|
|
146
|
-
return south;
|
|
147
|
-
};
|
|
148
|
-
|
|
149
|
-
if (layering?.length) {
|
|
150
|
-
layering.reduce(visitLayer);
|
|
151
|
-
}
|
|
152
|
-
return conflicts;
|
|
153
|
-
};
|
|
154
|
-
|
|
155
|
-
export const findOtherInnerSegmentNode = (g: DagreGraph, v: ID) => {
|
|
156
|
-
if (g.getNode(v)?.data.dummy) {
|
|
157
|
-
return g.getPredecessors(v)?.find((u) => g.getNode(u.id).data.dummy);
|
|
158
|
-
}
|
|
159
|
-
};
|
|
160
|
-
|
|
161
|
-
export const addConflict = (conflicts: Conflicts, v: ID, w: ID) => {
|
|
162
|
-
let vv = v;
|
|
163
|
-
let ww = w;
|
|
164
|
-
if (vv > ww) {
|
|
165
|
-
const tmp = vv;
|
|
166
|
-
vv = ww;
|
|
167
|
-
ww = tmp;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
let conflictsV = conflicts[vv];
|
|
171
|
-
if (!conflictsV) {
|
|
172
|
-
conflicts[vv] = conflictsV = {};
|
|
173
|
-
}
|
|
174
|
-
conflictsV[ww] = true;
|
|
175
|
-
};
|
|
176
|
-
|
|
177
|
-
export const hasConflict = (conflicts: Conflicts, v: ID, w: ID) => {
|
|
178
|
-
let vv = v;
|
|
179
|
-
let ww = w;
|
|
180
|
-
if (vv > ww) {
|
|
181
|
-
const tmp = v;
|
|
182
|
-
vv = ww;
|
|
183
|
-
ww = tmp;
|
|
184
|
-
}
|
|
185
|
-
return !!conflicts[vv];
|
|
186
|
-
};
|
|
187
|
-
|
|
188
|
-
/*
|
|
189
|
-
* Try to align nodes into vertical "blocks" where possible. This algorithm
|
|
190
|
-
* attempts to align a node with one of its median neighbors. If the edge
|
|
191
|
-
* connecting a neighbor is a type-1 conflict then we ignore that possibility.
|
|
192
|
-
* If a previous node has already formed a block with a node after the node
|
|
193
|
-
* we're trying to form a block with, we also ignore that possibility - our
|
|
194
|
-
* blocks would be split in that scenario.
|
|
195
|
-
*/
|
|
196
|
-
export const verticalAlignment = (
|
|
197
|
-
g: DagreGraph,
|
|
198
|
-
layering: ID[][],
|
|
199
|
-
conflicts: Conflicts,
|
|
200
|
-
neighborFn: (v: ID) => NodeData[],
|
|
201
|
-
) => {
|
|
202
|
-
const root: Record<ID, ID> = {};
|
|
203
|
-
const align: Record<ID, ID> = {};
|
|
204
|
-
const pos: Record<ID, number> = {};
|
|
205
|
-
|
|
206
|
-
// We cache the position here based on the layering because the graph and
|
|
207
|
-
// layering may be out of sync. The layering matrix is manipulated to
|
|
208
|
-
// generate different extreme alignments.
|
|
209
|
-
layering?.forEach((layer) => {
|
|
210
|
-
layer?.forEach((v, order: number) => {
|
|
211
|
-
root[v] = v;
|
|
212
|
-
align[v] = v;
|
|
213
|
-
pos[v] = order;
|
|
214
|
-
});
|
|
215
|
-
});
|
|
216
|
-
|
|
217
|
-
layering?.forEach((layer) => {
|
|
218
|
-
let prevIdx = -1;
|
|
219
|
-
layer?.forEach((v) => {
|
|
220
|
-
let ws = neighborFn(v).map((n) => n.id);
|
|
221
|
-
|
|
222
|
-
if (ws.length) {
|
|
223
|
-
ws = ws.sort((a: ID, b: ID) => pos[a] - pos[b]);
|
|
224
|
-
const mp = (ws.length - 1) / 2;
|
|
225
|
-
for (let i = Math.floor(mp), il = Math.ceil(mp); i <= il; ++i) {
|
|
226
|
-
const w = ws[i];
|
|
227
|
-
if (
|
|
228
|
-
align[v] === v &&
|
|
229
|
-
prevIdx < pos[w] &&
|
|
230
|
-
!hasConflict(conflicts, v, w)
|
|
231
|
-
) {
|
|
232
|
-
align[w] = v;
|
|
233
|
-
align[v] = root[v] = root[w];
|
|
234
|
-
prevIdx = pos[w];
|
|
235
|
-
}
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
});
|
|
239
|
-
});
|
|
240
|
-
|
|
241
|
-
return { root, align };
|
|
242
|
-
};
|
|
243
|
-
|
|
244
|
-
export const horizontalCompaction = (
|
|
245
|
-
g: DagreGraph,
|
|
246
|
-
layering: ID[][],
|
|
247
|
-
root: Record<ID, ID>,
|
|
248
|
-
align: Record<ID, ID>,
|
|
249
|
-
nodesep: number,
|
|
250
|
-
edgesep: number,
|
|
251
|
-
reverseSep?: boolean,
|
|
252
|
-
) => {
|
|
253
|
-
// This portion of the algorithm differs from BK due to a number of problems.
|
|
254
|
-
// Instead of their algorithm we construct a new block graph and do two
|
|
255
|
-
// sweeps. The first sweep places blocks with the smallest possible
|
|
256
|
-
// coordinates. The second sweep removes unused space by moving blocks to the
|
|
257
|
-
// greatest coordinates without violating separation.
|
|
258
|
-
const xs: Record<ID, number> = {};
|
|
259
|
-
const blockG = buildBlockGraph(
|
|
260
|
-
g,
|
|
261
|
-
layering,
|
|
262
|
-
root,
|
|
263
|
-
nodesep,
|
|
264
|
-
edgesep,
|
|
265
|
-
reverseSep,
|
|
266
|
-
);
|
|
267
|
-
const borderType = reverseSep ? 'borderLeft' : 'borderRight';
|
|
268
|
-
|
|
269
|
-
const iterate = (
|
|
270
|
-
setXsFunc: (param: ID) => void,
|
|
271
|
-
nextNodesFunc: (param: ID) => GraphNode<NodeData>[],
|
|
272
|
-
) => {
|
|
273
|
-
let stack = blockG.getAllNodes();
|
|
274
|
-
let elem = stack.pop();
|
|
275
|
-
const visited: Record<ID, boolean> = {};
|
|
276
|
-
while (elem) {
|
|
277
|
-
if (visited[elem.id]) {
|
|
278
|
-
setXsFunc(elem.id);
|
|
279
|
-
} else {
|
|
280
|
-
visited[elem.id] = true;
|
|
281
|
-
stack.push(elem);
|
|
282
|
-
stack = stack.concat(nextNodesFunc(elem.id));
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
elem = stack.pop();
|
|
286
|
-
}
|
|
287
|
-
};
|
|
288
|
-
|
|
289
|
-
// First pass, assign smallest coordinates
|
|
290
|
-
const pass1 = (elem: ID) => {
|
|
291
|
-
xs[elem] = (blockG.getRelatedEdges(elem, 'in') || []).reduce(
|
|
292
|
-
(acc: number, e) => {
|
|
293
|
-
return Math.max(acc, (xs[e.source] || 0) + e.data.weight!);
|
|
294
|
-
},
|
|
295
|
-
0,
|
|
296
|
-
);
|
|
297
|
-
};
|
|
298
|
-
|
|
299
|
-
// Second pass, assign greatest coordinates
|
|
300
|
-
const pass2 = (elem: ID) => {
|
|
301
|
-
const min = (blockG.getRelatedEdges(elem, 'out') || []).reduce(
|
|
302
|
-
(acc: number, e) => {
|
|
303
|
-
return Math.min(acc, (xs[e.target] || 0) - e.data.weight!);
|
|
304
|
-
},
|
|
305
|
-
Number.POSITIVE_INFINITY,
|
|
306
|
-
);
|
|
307
|
-
|
|
308
|
-
const node = g.getNode(elem)!;
|
|
309
|
-
if (
|
|
310
|
-
min !== Number.POSITIVE_INFINITY &&
|
|
311
|
-
node.data.borderType !== borderType
|
|
312
|
-
) {
|
|
313
|
-
xs[elem] = Math.max(xs[elem], min);
|
|
314
|
-
}
|
|
315
|
-
};
|
|
316
|
-
|
|
317
|
-
iterate(pass1, blockG.getPredecessors.bind(blockG));
|
|
318
|
-
iterate(pass2, blockG.getSuccessors.bind(blockG));
|
|
319
|
-
|
|
320
|
-
// Assign x coordinates to all nodes
|
|
321
|
-
Object.values(align)?.forEach((v) => {
|
|
322
|
-
xs[v] = xs[root[v]];
|
|
323
|
-
});
|
|
324
|
-
|
|
325
|
-
return xs;
|
|
326
|
-
};
|
|
327
|
-
|
|
328
|
-
export const buildBlockGraph = (
|
|
329
|
-
g: DagreGraph,
|
|
330
|
-
layering: ID[][],
|
|
331
|
-
root: Record<ID, ID>,
|
|
332
|
-
nodesep: number,
|
|
333
|
-
edgesep: number,
|
|
334
|
-
reverseSep?: boolean,
|
|
335
|
-
): DagreGraph<NodeData, EdgeData> => {
|
|
336
|
-
const blockGraph = new DagreGraph<NodeData, EdgeData>();
|
|
337
|
-
const sepFn = sep(nodesep, edgesep, reverseSep as boolean);
|
|
338
|
-
|
|
339
|
-
layering?.forEach((layer) => {
|
|
340
|
-
let u: ID;
|
|
341
|
-
layer?.forEach((v) => {
|
|
342
|
-
const vRoot = root[v];
|
|
343
|
-
if (!blockGraph.hasNode(vRoot)) {
|
|
344
|
-
blockGraph.addNode({
|
|
345
|
-
id: vRoot,
|
|
346
|
-
data: {},
|
|
347
|
-
});
|
|
348
|
-
}
|
|
349
|
-
if (u) {
|
|
350
|
-
const uRoot = root[u];
|
|
351
|
-
|
|
352
|
-
const edge = blockGraph
|
|
353
|
-
.getRelatedEdges(uRoot, 'out')
|
|
354
|
-
.find((edge) => edge.target === vRoot);
|
|
355
|
-
if (!edge) {
|
|
356
|
-
blockGraph.addEdge({
|
|
357
|
-
id: `e${Math.random()}`,
|
|
358
|
-
source: uRoot,
|
|
359
|
-
target: vRoot,
|
|
360
|
-
data: {
|
|
361
|
-
weight: Math.max(sepFn(g, v, u), 0),
|
|
362
|
-
},
|
|
363
|
-
});
|
|
364
|
-
} else {
|
|
365
|
-
blockGraph.updateEdgeData(edge.id, {
|
|
366
|
-
...edge.data,
|
|
367
|
-
weight: Math.max(sepFn(g, v, u), edge.data.weight! || 0),
|
|
368
|
-
});
|
|
369
|
-
}
|
|
370
|
-
}
|
|
371
|
-
u = v;
|
|
372
|
-
});
|
|
373
|
-
});
|
|
374
|
-
|
|
375
|
-
return blockGraph;
|
|
376
|
-
};
|
|
377
|
-
/*
|
|
378
|
-
* Returns the alignment that has the smallest width of the given alignments.
|
|
379
|
-
*/
|
|
380
|
-
export const findSmallestWidthAlignment = (
|
|
381
|
-
g: DagreGraph,
|
|
382
|
-
xss: Record<string, Record<string, number>>,
|
|
383
|
-
) => {
|
|
384
|
-
return minBy(Object.values(xss), (xs) => {
|
|
385
|
-
let max = Number.NEGATIVE_INFINITY;
|
|
386
|
-
let min = Number.POSITIVE_INFINITY;
|
|
387
|
-
|
|
388
|
-
Object.keys(xs)?.forEach((v: string) => {
|
|
389
|
-
const x = xs[v];
|
|
390
|
-
const halfWidth = width(g, v) / 2;
|
|
391
|
-
|
|
392
|
-
max = Math.max(x + halfWidth, max);
|
|
393
|
-
min = Math.min(x - halfWidth, min);
|
|
394
|
-
});
|
|
395
|
-
|
|
396
|
-
return max - min;
|
|
397
|
-
});
|
|
398
|
-
};
|
|
399
|
-
|
|
400
|
-
/*
|
|
401
|
-
* Align the coordinates of each of the layout alignments such that
|
|
402
|
-
* left-biased alignments have their minimum coordinate at the same point as
|
|
403
|
-
* the minimum coordinate of the smallest width alignment and right-biased
|
|
404
|
-
* alignments have their maximum coordinate at the same point as the maximum
|
|
405
|
-
* coordinate of the smallest width alignment.
|
|
406
|
-
*/
|
|
407
|
-
export function alignCoordinates(
|
|
408
|
-
xss: Record<string, Record<string, number>>,
|
|
409
|
-
alignTo: Record<string, number>,
|
|
410
|
-
) {
|
|
411
|
-
const alignToVals = Object.values(alignTo);
|
|
412
|
-
const alignToMin = Math.min(...alignToVals);
|
|
413
|
-
const alignToMax = Math.max(...alignToVals);
|
|
414
|
-
|
|
415
|
-
['u', 'd'].forEach((vert) => {
|
|
416
|
-
['l', 'r'].forEach((horiz) => {
|
|
417
|
-
const alignment = vert + horiz;
|
|
418
|
-
const xs = xss[alignment];
|
|
419
|
-
let delta: number;
|
|
420
|
-
if (xs === alignTo) return;
|
|
421
|
-
|
|
422
|
-
const xsVals = Object.values(xs);
|
|
423
|
-
delta =
|
|
424
|
-
horiz === 'l'
|
|
425
|
-
? alignToMin - Math.min(...xsVals)
|
|
426
|
-
: alignToMax - Math.max(...xsVals);
|
|
427
|
-
|
|
428
|
-
if (delta) {
|
|
429
|
-
xss[alignment] = {};
|
|
430
|
-
Object.keys(xs).forEach((key) => {
|
|
431
|
-
xss[alignment][key] = xs[key] + delta;
|
|
432
|
-
});
|
|
433
|
-
}
|
|
434
|
-
});
|
|
435
|
-
});
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
export const balance = (
|
|
439
|
-
xss: Record<string, Record<string, number>>,
|
|
440
|
-
align?: DagreAlign,
|
|
441
|
-
) => {
|
|
442
|
-
const result: Record<string, number> = {};
|
|
443
|
-
Object.keys(xss.ul).forEach((key) => {
|
|
444
|
-
if (align) {
|
|
445
|
-
result[key] = xss[align.toLowerCase()][key];
|
|
446
|
-
} else {
|
|
447
|
-
const values = Object.values(xss).map((x) => x[key]);
|
|
448
|
-
result[key] = (values[0] + values[1]) / 2; // (ur + ul) / 2
|
|
449
|
-
}
|
|
450
|
-
});
|
|
451
|
-
return result;
|
|
452
|
-
};
|
|
453
|
-
|
|
454
|
-
export const positionX = (
|
|
455
|
-
g: DagreGraph,
|
|
456
|
-
options?: Partial<{
|
|
457
|
-
align: DagreAlign;
|
|
458
|
-
nodesep: number;
|
|
459
|
-
edgesep: number;
|
|
460
|
-
}>,
|
|
461
|
-
) => {
|
|
462
|
-
const { align: graphAlign, nodesep = 0, edgesep = 0 } = options || {};
|
|
463
|
-
|
|
464
|
-
const layering = buildLayerMatrix(g);
|
|
465
|
-
const conflicts = Object.assign(
|
|
466
|
-
findType1Conflicts(g, layering),
|
|
467
|
-
findType2Conflicts(g, layering),
|
|
468
|
-
);
|
|
469
|
-
|
|
470
|
-
const xss: Record<string, Record<ID, number>> = {};
|
|
471
|
-
let adjustedLayering: ID[][];
|
|
472
|
-
['u', 'd'].forEach((vert) => {
|
|
473
|
-
adjustedLayering =
|
|
474
|
-
vert === 'u' ? layering : Object.values(layering).reverse();
|
|
475
|
-
['l', 'r'].forEach((horiz) => {
|
|
476
|
-
if (horiz === 'r') {
|
|
477
|
-
adjustedLayering = adjustedLayering.map((inner) =>
|
|
478
|
-
Object.values(inner).reverse(),
|
|
479
|
-
);
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
const neighborFn = (
|
|
483
|
-
vert === 'u' ? g.getPredecessors : g.getSuccessors
|
|
484
|
-
).bind(g);
|
|
485
|
-
const align = verticalAlignment(
|
|
486
|
-
g,
|
|
487
|
-
adjustedLayering,
|
|
488
|
-
conflicts,
|
|
489
|
-
neighborFn,
|
|
490
|
-
);
|
|
491
|
-
const xs = horizontalCompaction(
|
|
492
|
-
g,
|
|
493
|
-
adjustedLayering,
|
|
494
|
-
align.root,
|
|
495
|
-
align.align,
|
|
496
|
-
nodesep,
|
|
497
|
-
edgesep,
|
|
498
|
-
horiz === 'r',
|
|
499
|
-
);
|
|
500
|
-
if (horiz === 'r') {
|
|
501
|
-
Object.keys(xs).forEach((key) => {
|
|
502
|
-
xs[key] = -xs[key];
|
|
503
|
-
});
|
|
504
|
-
}
|
|
505
|
-
xss[vert + horiz] = xs;
|
|
506
|
-
});
|
|
507
|
-
});
|
|
508
|
-
|
|
509
|
-
const smallestWidth = findSmallestWidthAlignment(g, xss);
|
|
510
|
-
alignCoordinates(xss, smallestWidth);
|
|
511
|
-
return balance(xss, graphAlign);
|
|
512
|
-
};
|
|
513
|
-
|
|
514
|
-
export const sep = (nodeSep: number, edgeSep: number, reverseSep: boolean) => {
|
|
515
|
-
return (g: DagreGraph, v: ID, w: ID) => {
|
|
516
|
-
const vLabel = g.getNode(v)!;
|
|
517
|
-
const wLabel = g.getNode(w)!;
|
|
518
|
-
let sum = 0;
|
|
519
|
-
let delta: number = 0;
|
|
520
|
-
|
|
521
|
-
sum += vLabel.data.width! / 2;
|
|
522
|
-
if (vLabel.data.hasOwnProperty('labelpos')) {
|
|
523
|
-
switch (((vLabel.data.labelpos as string) || '').toLowerCase()) {
|
|
524
|
-
case 'l':
|
|
525
|
-
delta = -vLabel.data.width! / 2;
|
|
526
|
-
break;
|
|
527
|
-
case 'r':
|
|
528
|
-
delta = vLabel.data.width! / 2;
|
|
529
|
-
break;
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
if (delta) {
|
|
533
|
-
sum += reverseSep ? delta : -delta;
|
|
534
|
-
}
|
|
535
|
-
delta = 0;
|
|
536
|
-
|
|
537
|
-
sum += (vLabel.data.dummy ? edgeSep : nodeSep) / 2;
|
|
538
|
-
sum += (wLabel.data.dummy ? edgeSep : nodeSep) / 2;
|
|
539
|
-
|
|
540
|
-
sum += wLabel.data.width! / 2;
|
|
541
|
-
if (wLabel.data.labelpos) {
|
|
542
|
-
switch (((wLabel.data.labelpos as string) || '').toLowerCase()) {
|
|
543
|
-
case 'l':
|
|
544
|
-
delta = wLabel.data.width! / 2;
|
|
545
|
-
break;
|
|
546
|
-
case 'r':
|
|
547
|
-
delta = -wLabel.data.width! / 2;
|
|
548
|
-
break;
|
|
549
|
-
}
|
|
550
|
-
}
|
|
551
|
-
if (delta) {
|
|
552
|
-
sum += reverseSep ? delta : -delta;
|
|
553
|
-
}
|
|
554
|
-
delta = 0;
|
|
555
|
-
|
|
556
|
-
return sum;
|
|
557
|
-
};
|
|
558
|
-
};
|
|
559
|
-
|
|
560
|
-
export const width = (g: DagreGraph, v: ID) => g.getNode(v)!.data.width! || 0;
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import type { ID } from '../../types';
|
|
2
|
-
import { DagreGraph } from '../graph';
|
|
3
|
-
import type { DagreAlign } from '../types';
|
|
4
|
-
import { asNonCompoundGraph, buildLayerMatrix } from '../util';
|
|
5
|
-
import {
|
|
6
|
-
alignCoordinates,
|
|
7
|
-
balance,
|
|
8
|
-
findSmallestWidthAlignment,
|
|
9
|
-
findType1Conflicts,
|
|
10
|
-
findType2Conflicts,
|
|
11
|
-
horizontalCompaction,
|
|
12
|
-
verticalAlignment,
|
|
13
|
-
} from './bk';
|
|
14
|
-
|
|
15
|
-
const positionY = (
|
|
16
|
-
g: DagreGraph,
|
|
17
|
-
options?: Partial<{
|
|
18
|
-
ranksep: number;
|
|
19
|
-
}>,
|
|
20
|
-
) => {
|
|
21
|
-
const { ranksep = 0 } = options || {};
|
|
22
|
-
const layering = buildLayerMatrix(g);
|
|
23
|
-
|
|
24
|
-
let prevY = 0;
|
|
25
|
-
layering?.forEach((layer) => {
|
|
26
|
-
const heights = layer.map((v) => g.getNode(v).data.height!);
|
|
27
|
-
const maxHeight = Math.max(...heights, 0);
|
|
28
|
-
layer?.forEach((v: ID) => {
|
|
29
|
-
g.getNode(v).data.y = prevY + maxHeight / 2;
|
|
30
|
-
});
|
|
31
|
-
prevY += maxHeight + ranksep;
|
|
32
|
-
});
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
const positionX = (
|
|
36
|
-
g: DagreGraph,
|
|
37
|
-
options?: Partial<{
|
|
38
|
-
align: DagreAlign;
|
|
39
|
-
nodesep: number;
|
|
40
|
-
edgesep: number;
|
|
41
|
-
}>,
|
|
42
|
-
): Record<ID, number> => {
|
|
43
|
-
const { align: graphAlign, nodesep = 0, edgesep = 0 } = options || {};
|
|
44
|
-
|
|
45
|
-
const layering = buildLayerMatrix(g);
|
|
46
|
-
const conflicts = Object.assign(
|
|
47
|
-
findType1Conflicts(g, layering),
|
|
48
|
-
findType2Conflicts(g, layering),
|
|
49
|
-
);
|
|
50
|
-
|
|
51
|
-
const xss: Record<string, Record<string, number>> = {};
|
|
52
|
-
let adjustedLayering: ID[][] = [];
|
|
53
|
-
['u', 'd'].forEach((vert) => {
|
|
54
|
-
adjustedLayering =
|
|
55
|
-
vert === 'u' ? layering : Object.values(layering).reverse();
|
|
56
|
-
['l', 'r'].forEach((horiz) => {
|
|
57
|
-
if (horiz === 'r') {
|
|
58
|
-
adjustedLayering = adjustedLayering.map((inner) =>
|
|
59
|
-
Object.values(inner).reverse(),
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
const neighborFn = (
|
|
64
|
-
vert === 'u' ? g.getPredecessors : g.getSuccessors
|
|
65
|
-
).bind(g);
|
|
66
|
-
const align = verticalAlignment(
|
|
67
|
-
g,
|
|
68
|
-
adjustedLayering,
|
|
69
|
-
conflicts,
|
|
70
|
-
neighborFn,
|
|
71
|
-
);
|
|
72
|
-
const xs = horizontalCompaction(
|
|
73
|
-
g,
|
|
74
|
-
adjustedLayering,
|
|
75
|
-
align.root,
|
|
76
|
-
align.align,
|
|
77
|
-
nodesep,
|
|
78
|
-
edgesep,
|
|
79
|
-
horiz === 'r',
|
|
80
|
-
);
|
|
81
|
-
if (horiz === 'r') {
|
|
82
|
-
Object.keys(xs).forEach((xsKey) => (xs[xsKey] = -xs[xsKey]));
|
|
83
|
-
}
|
|
84
|
-
xss[vert + horiz] = xs;
|
|
85
|
-
});
|
|
86
|
-
});
|
|
87
|
-
|
|
88
|
-
const smallestWidth = findSmallestWidthAlignment(g, xss);
|
|
89
|
-
smallestWidth && alignCoordinates(xss, smallestWidth);
|
|
90
|
-
return balance(xss, graphAlign);
|
|
91
|
-
};
|
|
92
|
-
|
|
93
|
-
export const position = (
|
|
94
|
-
g: DagreGraph,
|
|
95
|
-
options?: Partial<{
|
|
96
|
-
align: DagreAlign;
|
|
97
|
-
nodesep: number;
|
|
98
|
-
edgesep: number;
|
|
99
|
-
ranksep: number;
|
|
100
|
-
}>,
|
|
101
|
-
) => {
|
|
102
|
-
const ng = asNonCompoundGraph(g);
|
|
103
|
-
|
|
104
|
-
positionY(ng, options);
|
|
105
|
-
const xs = positionX(ng, options);
|
|
106
|
-
Object.keys(xs)?.forEach((key: ID) => {
|
|
107
|
-
ng.getNode(key).data.x = xs[key];
|
|
108
|
-
});
|
|
109
|
-
};
|