@antv/layout 2.0.0-alpha.1 → 2.0.0-alpha.2
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 +938 -900
- 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 +337 -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 +170 -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 +48 -0
- package/lib/algorithm/base-layout.js +87 -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 +552 -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 +35 -32
- package/lib/index.js +18 -16
- 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.js +2 -2
- 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 +279 -244
- 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 +620 -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 +175 -0
- package/src/algorithm/antv-dagre/util.ts +359 -0
- package/src/algorithm/base-layout.ts +132 -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 +642 -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/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
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { ID } from '../../../types';
|
|
2
|
+
import { DagreGraph } from '../graph';
|
|
3
|
+
|
|
4
|
+
/**
|
|
5
|
+
* 按照数据中的结果设置fixorder
|
|
6
|
+
*/
|
|
7
|
+
export const initDataOrder = (g: DagreGraph, nodeOrder?: ID[]) => {
|
|
8
|
+
const simpleNodes = g.getAllNodes().filter((v) => {
|
|
9
|
+
return !g.getChildren(v.id)?.length;
|
|
10
|
+
});
|
|
11
|
+
const ranks = simpleNodes.map((v) => v.data.rank!);
|
|
12
|
+
const maxRank = Math.max(...ranks);
|
|
13
|
+
const layers: ID[][] = [];
|
|
14
|
+
for (let i = 0; i < maxRank + 1; i++) {
|
|
15
|
+
layers[i] = [];
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
nodeOrder?.forEach((n) => {
|
|
19
|
+
const node = g.getNode(n);
|
|
20
|
+
// 只考虑原有节点,dummy节点需要按照后续算法排出
|
|
21
|
+
if (!node || node.data.dummy) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
if (!isNaN(node.data.rank!)) {
|
|
25
|
+
node.data.fixorder = layers[node.data.rank!].length; // 设置fixorder为当层的顺序
|
|
26
|
+
layers[node.data.rank!].push(n);
|
|
27
|
+
}
|
|
28
|
+
});
|
|
29
|
+
};
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import type { ID } from '../../../types';
|
|
2
|
+
import { DagreGraph } from '../graph';
|
|
3
|
+
|
|
4
|
+
/*
|
|
5
|
+
* Assigns an initial order value for each node by performing a DFS search
|
|
6
|
+
* starting from nodes in the first rank. Nodes are assigned an order in their
|
|
7
|
+
* rank as they are first visited.
|
|
8
|
+
*
|
|
9
|
+
* This approach comes from Gansner, et al., "A Technique for Drawing Directed
|
|
10
|
+
* Graphs."
|
|
11
|
+
*
|
|
12
|
+
* Returns a layering matrix with an array per layer and each layer sorted by
|
|
13
|
+
* the order of its nodes.
|
|
14
|
+
*/
|
|
15
|
+
export const initOrder = (g: DagreGraph) => {
|
|
16
|
+
const visited: Record<string, boolean> = {};
|
|
17
|
+
// const simpleNodes = g.getAllNodes().filter((v) => {
|
|
18
|
+
// return !g.getChildren(v.id)?.length;
|
|
19
|
+
// });
|
|
20
|
+
const simpleNodes = g.getAllNodes();
|
|
21
|
+
const nodeRanks = simpleNodes.map((v) => v.data.rank! ?? -Infinity);
|
|
22
|
+
|
|
23
|
+
const maxRank = Math.max(...nodeRanks);
|
|
24
|
+
const layers: ID[][] = [];
|
|
25
|
+
for (let i = 0; i < maxRank + 1; i++) {
|
|
26
|
+
layers.push([]);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
const orderedVs = simpleNodes.sort(
|
|
30
|
+
(a, b) => g.getNode(a.id).data.rank! - g.getNode(b.id).data.rank!,
|
|
31
|
+
);
|
|
32
|
+
// const orderedVs = _.sortBy(simpleNodes, function(v) { return g.node(v)!.rank; });
|
|
33
|
+
|
|
34
|
+
// 有fixOrder的,直接排序好放进去
|
|
35
|
+
const beforeSort = orderedVs.filter((n) => {
|
|
36
|
+
return g.getNode(n.id).data.fixorder !== undefined;
|
|
37
|
+
});
|
|
38
|
+
const fixOrderNodes = beforeSort.sort(
|
|
39
|
+
(a, b) => g.getNode(a.id).data.fixorder! - g.getNode(b.id).data.fixorder!,
|
|
40
|
+
);
|
|
41
|
+
fixOrderNodes?.forEach((n) => {
|
|
42
|
+
if (!isNaN(g.getNode(n.id).data.rank!)) {
|
|
43
|
+
layers[g.getNode(n.id).data.rank!].push(n.id);
|
|
44
|
+
}
|
|
45
|
+
visited[n.id] = true;
|
|
46
|
+
});
|
|
47
|
+
|
|
48
|
+
orderedVs?.forEach((n) =>
|
|
49
|
+
g.dfsTree(n.id, (node) => {
|
|
50
|
+
if (visited.hasOwnProperty(node.id)) return true;
|
|
51
|
+
visited[node.id] = true;
|
|
52
|
+
if (!isNaN(node.data.rank!)) {
|
|
53
|
+
layers[node.data.rank!].push(node.id);
|
|
54
|
+
}
|
|
55
|
+
}),
|
|
56
|
+
);
|
|
57
|
+
|
|
58
|
+
return layers;
|
|
59
|
+
};
|
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Given a list of entries of the form {v, barycenter, weight} and a
|
|
3
|
+
* constraint graph this function will resolve any conflicts between the
|
|
4
|
+
* constraint graph and the barycenters for the entries. If the barycenters for
|
|
5
|
+
* an entry would violate a constraint in the constraint graph then we coalesce
|
|
6
|
+
* the nodes in the conflict into a new node that respects the contraint and
|
|
7
|
+
* aggregates barycenter and weight information.
|
|
8
|
+
*
|
|
9
|
+
* This implementation is based on the description in Forster, "A Fast and
|
|
10
|
+
* Simple Hueristic for Constrained Two-Level Crossing Reduction," thought it
|
|
11
|
+
* differs in some specific details.
|
|
12
|
+
*
|
|
13
|
+
* Pre-conditions:
|
|
14
|
+
*
|
|
15
|
+
* 1. Each entry has the form {v, barycenter, weight}, or if the node has
|
|
16
|
+
* no barycenter, then {v}.
|
|
17
|
+
*
|
|
18
|
+
* Returns:
|
|
19
|
+
*
|
|
20
|
+
* A new list of entries of the form {vs, i, barycenter, weight}. The list
|
|
21
|
+
* `vs` may either be a singleton or it may be an aggregation of nodes
|
|
22
|
+
* ordered such that they do not violate constraints from the constraint
|
|
23
|
+
* graph. The property `i` is the lowest original index of any of the
|
|
24
|
+
* elements in `vs`.
|
|
25
|
+
*/
|
|
26
|
+
|
|
27
|
+
import type { ID } from '../../../types';
|
|
28
|
+
import { DagreGraph } from '../graph';
|
|
29
|
+
|
|
30
|
+
export type ConflictEntry = {
|
|
31
|
+
i: number;
|
|
32
|
+
indegree?: number;
|
|
33
|
+
in?: ConflictEntry[];
|
|
34
|
+
out?: ConflictEntry[];
|
|
35
|
+
vs: ID[];
|
|
36
|
+
barycenter?: number;
|
|
37
|
+
weight?: number;
|
|
38
|
+
merged?: boolean;
|
|
39
|
+
fixorder?: number;
|
|
40
|
+
order?: number;
|
|
41
|
+
};
|
|
42
|
+
|
|
43
|
+
const resolveConflicts = (
|
|
44
|
+
entries: {
|
|
45
|
+
v: ID;
|
|
46
|
+
barycenter?: number;
|
|
47
|
+
weight?: number;
|
|
48
|
+
}[],
|
|
49
|
+
cg: DagreGraph,
|
|
50
|
+
) => {
|
|
51
|
+
const mappedEntries: Record<string, ConflictEntry> = {};
|
|
52
|
+
entries?.forEach((entry, i: number) => {
|
|
53
|
+
mappedEntries[entry.v] = {
|
|
54
|
+
i,
|
|
55
|
+
indegree: 0,
|
|
56
|
+
in: [],
|
|
57
|
+
out: [],
|
|
58
|
+
vs: [entry.v],
|
|
59
|
+
};
|
|
60
|
+
const tmp = mappedEntries[entry.v];
|
|
61
|
+
if (entry.barycenter !== undefined) {
|
|
62
|
+
tmp.barycenter = entry.barycenter;
|
|
63
|
+
tmp.weight = entry.weight;
|
|
64
|
+
}
|
|
65
|
+
});
|
|
66
|
+
|
|
67
|
+
cg.getAllEdges()?.forEach((e) => {
|
|
68
|
+
const entryV = mappedEntries[e.source];
|
|
69
|
+
const entryW = mappedEntries[e.target];
|
|
70
|
+
if (entryV !== undefined && entryW !== undefined) {
|
|
71
|
+
entryW.indegree!++;
|
|
72
|
+
entryV.out!.push(mappedEntries[e.target]);
|
|
73
|
+
}
|
|
74
|
+
});
|
|
75
|
+
|
|
76
|
+
const sourceSet = Object.values(mappedEntries).filter?.(
|
|
77
|
+
(entry: ConflictEntry) => !entry.indegree,
|
|
78
|
+
);
|
|
79
|
+
|
|
80
|
+
return doResolveConflicts(sourceSet);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
const doResolveConflicts = (sourceSet: ConflictEntry[]) => {
|
|
84
|
+
const entries = [];
|
|
85
|
+
|
|
86
|
+
const handleIn = (vEntry: ConflictEntry) => {
|
|
87
|
+
return (uEntry: ConflictEntry) => {
|
|
88
|
+
if (uEntry.merged) return;
|
|
89
|
+
if (
|
|
90
|
+
uEntry.barycenter === undefined ||
|
|
91
|
+
vEntry.barycenter === undefined ||
|
|
92
|
+
uEntry.barycenter >= vEntry.barycenter
|
|
93
|
+
) {
|
|
94
|
+
mergeEntries(vEntry, uEntry);
|
|
95
|
+
}
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
|
|
99
|
+
const handleOut = (vEntry: ConflictEntry) => {
|
|
100
|
+
return (wEntry: ConflictEntry) => {
|
|
101
|
+
wEntry['in']!.push(vEntry);
|
|
102
|
+
if (--wEntry.indegree! === 0) {
|
|
103
|
+
sourceSet.push(wEntry);
|
|
104
|
+
}
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
|
|
108
|
+
while (sourceSet?.length) {
|
|
109
|
+
const entry = sourceSet.pop()!;
|
|
110
|
+
entries.push(entry);
|
|
111
|
+
entry['in']!.reverse()?.forEach((e: ConflictEntry) => handleIn(entry)(e));
|
|
112
|
+
entry.out?.forEach((e: ConflictEntry) => handleOut(entry)(e));
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
const filtered = entries.filter((entry) => !entry.merged);
|
|
116
|
+
const keys: ('vs' | 'i' | 'barycenter' | 'weight')[] = [
|
|
117
|
+
'vs',
|
|
118
|
+
'i',
|
|
119
|
+
'barycenter',
|
|
120
|
+
'weight',
|
|
121
|
+
];
|
|
122
|
+
return filtered.map((entry) => {
|
|
123
|
+
const picked: Record<string, any> = {};
|
|
124
|
+
keys?.forEach((key) => {
|
|
125
|
+
if (entry[key] === undefined) return;
|
|
126
|
+
picked[key] = entry[key];
|
|
127
|
+
});
|
|
128
|
+
return picked as ConflictEntry;
|
|
129
|
+
});
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
const mergeEntries = (target: ConflictEntry, source: ConflictEntry) => {
|
|
133
|
+
let sum = 0;
|
|
134
|
+
let weight = 0;
|
|
135
|
+
|
|
136
|
+
if (target.weight) {
|
|
137
|
+
sum += target.barycenter! * target.weight;
|
|
138
|
+
weight += target.weight;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if (source.weight) {
|
|
142
|
+
sum += source.barycenter! * source.weight;
|
|
143
|
+
weight += source.weight;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
target.vs = source.vs?.concat(target.vs);
|
|
147
|
+
target.barycenter = sum / weight;
|
|
148
|
+
target.weight = weight;
|
|
149
|
+
target.i = Math.min(source.i, target.i);
|
|
150
|
+
source.merged = true;
|
|
151
|
+
};
|
|
152
|
+
|
|
153
|
+
export default resolveConflicts;
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { ID } from '../../../types';
|
|
2
|
+
import { DagreGraph } from '../graph';
|
|
3
|
+
import { barycenter } from './barycenter';
|
|
4
|
+
import resolveConflicts, { ConflictEntry } from './resolve-conflicts';
|
|
5
|
+
import { sort } from './sort';
|
|
6
|
+
|
|
7
|
+
export const sortSubgraph = (
|
|
8
|
+
g: DagreGraph,
|
|
9
|
+
v: ID,
|
|
10
|
+
cg: DagreGraph,
|
|
11
|
+
biasRight?: boolean,
|
|
12
|
+
usePrev?: boolean,
|
|
13
|
+
keepNodeOrder?: boolean,
|
|
14
|
+
) => {
|
|
15
|
+
let movable = g.getChildren(v).map((n) => n.id);
|
|
16
|
+
// fixorder的点不参与排序(这个方案不合适,只排了新增节点,和原来的分离)
|
|
17
|
+
const node = g.getNode(v)!;
|
|
18
|
+
const bl = node ? (node.data.borderLeft as ID) : undefined;
|
|
19
|
+
const br = node ? (node.data.borderRight as ID) : undefined;
|
|
20
|
+
const subgraphs: Record<string, Partial<ConflictEntry>> = {};
|
|
21
|
+
|
|
22
|
+
if (bl) {
|
|
23
|
+
movable = movable?.filter((w) => {
|
|
24
|
+
return w !== bl && w !== br;
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
const barycenters = barycenter(g, movable || []);
|
|
29
|
+
barycenters?.forEach((entry) => {
|
|
30
|
+
if (g.getChildren(entry.v)?.length) {
|
|
31
|
+
const subgraphResult = sortSubgraph(
|
|
32
|
+
g,
|
|
33
|
+
entry.v,
|
|
34
|
+
cg,
|
|
35
|
+
biasRight,
|
|
36
|
+
keepNodeOrder,
|
|
37
|
+
);
|
|
38
|
+
subgraphs[entry.v] = subgraphResult;
|
|
39
|
+
if (subgraphResult.hasOwnProperty('barycenter')) {
|
|
40
|
+
mergeBarycenters(entry, subgraphResult);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
});
|
|
44
|
+
|
|
45
|
+
const entries = resolveConflicts(barycenters, cg);
|
|
46
|
+
expandSubgraphs(entries, subgraphs);
|
|
47
|
+
|
|
48
|
+
// 添加fixorder信息到entries里边
|
|
49
|
+
// TODO: 不考虑复合情况,只用第一个点的fixorder信息,后续考虑更完备的实现
|
|
50
|
+
entries
|
|
51
|
+
.filter((e) => e.vs.length > 0)
|
|
52
|
+
?.forEach((e) => {
|
|
53
|
+
const node = g.getNode(e.vs[0])!;
|
|
54
|
+
if (node) {
|
|
55
|
+
e.fixorder = node.data.fixorder!;
|
|
56
|
+
e.order = node.data.order!;
|
|
57
|
+
}
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
const result = sort(entries, biasRight, usePrev, keepNodeOrder);
|
|
61
|
+
|
|
62
|
+
if (bl) {
|
|
63
|
+
result.vs = [bl, result.vs, br].flat() as ID[];
|
|
64
|
+
if (g.getPredecessors(bl)?.length) {
|
|
65
|
+
const blPred = g.getNode(g.getPredecessors(bl)?.[0].id || '')!;
|
|
66
|
+
const brPred = g.getNode(g.getPredecessors(br!)?.[0].id || '')!;
|
|
67
|
+
if (!result.hasOwnProperty('barycenter')) {
|
|
68
|
+
result.barycenter = 0;
|
|
69
|
+
result.weight = 0;
|
|
70
|
+
}
|
|
71
|
+
result.barycenter =
|
|
72
|
+
(result.barycenter! * result.weight! +
|
|
73
|
+
blPred.data.order! +
|
|
74
|
+
brPred.data.order!) /
|
|
75
|
+
(result.weight! + 2);
|
|
76
|
+
result.weight! += 2;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
return result;
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
const expandSubgraphs = (
|
|
84
|
+
entries: ConflictEntry[],
|
|
85
|
+
subgraphs: Record<string, Partial<ConflictEntry>>,
|
|
86
|
+
) => {
|
|
87
|
+
entries?.forEach((entry) => {
|
|
88
|
+
const vss = entry.vs?.map((v: ID) => {
|
|
89
|
+
if (subgraphs[v]) {
|
|
90
|
+
return subgraphs[v].vs!;
|
|
91
|
+
}
|
|
92
|
+
return v;
|
|
93
|
+
});
|
|
94
|
+
entry.vs = vss.flat();
|
|
95
|
+
});
|
|
96
|
+
};
|
|
97
|
+
|
|
98
|
+
const mergeBarycenters = (
|
|
99
|
+
target: { weight?: number; barycenter?: number },
|
|
100
|
+
other: { weight?: number; barycenter?: number },
|
|
101
|
+
) => {
|
|
102
|
+
if (target.barycenter !== undefined) {
|
|
103
|
+
target.barycenter =
|
|
104
|
+
(target.barycenter * target.weight! + other.barycenter! * other.weight!) /
|
|
105
|
+
(target.weight! + other.weight!);
|
|
106
|
+
target.weight! += other.weight!;
|
|
107
|
+
} else {
|
|
108
|
+
target.barycenter = other.barycenter;
|
|
109
|
+
target.weight = other.weight;
|
|
110
|
+
}
|
|
111
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import type { ID } from '../../../types';
|
|
2
|
+
import { partition } from '../util';
|
|
3
|
+
import { ConflictEntry } from './resolve-conflicts';
|
|
4
|
+
|
|
5
|
+
export const sort = (
|
|
6
|
+
entries: ConflictEntry[],
|
|
7
|
+
biasRight?: boolean,
|
|
8
|
+
usePrev?: boolean,
|
|
9
|
+
keepNodeOrder?: boolean,
|
|
10
|
+
) => {
|
|
11
|
+
const parts = partition(entries, (entry) => {
|
|
12
|
+
const hasFixOrder =
|
|
13
|
+
entry.hasOwnProperty('fixorder') && !isNaN(entry.fixorder!);
|
|
14
|
+
if (keepNodeOrder) {
|
|
15
|
+
return !hasFixOrder && entry.hasOwnProperty('barycenter');
|
|
16
|
+
}
|
|
17
|
+
// NOTE: 有fixorder的也可以排
|
|
18
|
+
return hasFixOrder || entry.hasOwnProperty('barycenter');
|
|
19
|
+
});
|
|
20
|
+
const sortable = parts.lhs;
|
|
21
|
+
const unsortable = parts.rhs.sort((a, b) => -a.i - -b.i);
|
|
22
|
+
const vs: ID[][] = [];
|
|
23
|
+
let sum = 0;
|
|
24
|
+
let weight = 0;
|
|
25
|
+
let vsIndex = 0;
|
|
26
|
+
|
|
27
|
+
sortable?.sort(compareWithBias(!!biasRight, !!usePrev));
|
|
28
|
+
|
|
29
|
+
vsIndex = consumeUnsortable(vs, unsortable, vsIndex);
|
|
30
|
+
|
|
31
|
+
sortable?.forEach((entry) => {
|
|
32
|
+
vsIndex += entry.vs?.length;
|
|
33
|
+
vs.push(entry.vs);
|
|
34
|
+
sum += entry.barycenter! * entry.weight!;
|
|
35
|
+
weight += entry.weight!;
|
|
36
|
+
vsIndex = consumeUnsortable(vs, unsortable, vsIndex);
|
|
37
|
+
});
|
|
38
|
+
|
|
39
|
+
const result: { vs: ID[]; barycenter?: number; weight?: number } = {
|
|
40
|
+
vs: vs.flat(),
|
|
41
|
+
};
|
|
42
|
+
if (weight) {
|
|
43
|
+
result.barycenter = sum / weight;
|
|
44
|
+
result.weight = weight;
|
|
45
|
+
}
|
|
46
|
+
return result;
|
|
47
|
+
};
|
|
48
|
+
|
|
49
|
+
const consumeUnsortable = (
|
|
50
|
+
vs: ID[][],
|
|
51
|
+
unsortable: ConflictEntry[],
|
|
52
|
+
index: number,
|
|
53
|
+
) => {
|
|
54
|
+
let iindex = index;
|
|
55
|
+
let last;
|
|
56
|
+
while (
|
|
57
|
+
unsortable.length &&
|
|
58
|
+
(last = unsortable[unsortable.length - 1]).i <= iindex
|
|
59
|
+
) {
|
|
60
|
+
unsortable.pop();
|
|
61
|
+
vs?.push(last.vs);
|
|
62
|
+
iindex++;
|
|
63
|
+
}
|
|
64
|
+
return iindex;
|
|
65
|
+
};
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* 配置是否考虑使用之前的布局结果
|
|
69
|
+
*/
|
|
70
|
+
const compareWithBias = (bias: boolean, usePrev: boolean) => {
|
|
71
|
+
return (entryV: ConflictEntry, entryW: ConflictEntry) => {
|
|
72
|
+
// 排序的时候先判断fixorder,不行再判断重心
|
|
73
|
+
if (entryV.fixorder !== undefined && entryW.fixorder !== undefined) {
|
|
74
|
+
return entryV.fixorder - entryW.fixorder;
|
|
75
|
+
}
|
|
76
|
+
if (entryV.barycenter! < entryW.barycenter!) {
|
|
77
|
+
return -1;
|
|
78
|
+
}
|
|
79
|
+
if (entryV.barycenter! > entryW.barycenter!) {
|
|
80
|
+
return 1;
|
|
81
|
+
}
|
|
82
|
+
// 重心相同,考虑之前排好的顺序
|
|
83
|
+
if (usePrev && entryV.order !== undefined && entryW.order !== undefined) {
|
|
84
|
+
if (entryV.order < entryW.order) {
|
|
85
|
+
return -1;
|
|
86
|
+
}
|
|
87
|
+
if (entryV.order > entryW.order) {
|
|
88
|
+
return 1;
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return !bias ? entryV.i - entryW.i : entryW.i - entryV.i;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import type { ID } from '../../types';
|
|
2
|
+
import { DagreGraph } from './graph';
|
|
3
|
+
|
|
4
|
+
type OrderItem = { low: number; lim: number };
|
|
5
|
+
|
|
6
|
+
// deep first search with both order low for pre, lim for post
|
|
7
|
+
const dfsBothOrder = (g: DagreGraph) => {
|
|
8
|
+
const result: Record<ID, OrderItem> = {};
|
|
9
|
+
let lim = 0;
|
|
10
|
+
|
|
11
|
+
const dfs = (v: ID) => {
|
|
12
|
+
const low = lim;
|
|
13
|
+
g.getChildren(v).forEach((n) => dfs(n.id));
|
|
14
|
+
result[v] = { low, lim: lim++ };
|
|
15
|
+
};
|
|
16
|
+
g.getRoots().forEach((n) => dfs(n.id));
|
|
17
|
+
|
|
18
|
+
return result;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
// Find a path from v to w through the lowest common ancestor (LCA). Return the
|
|
22
|
+
// full path and the LCA.
|
|
23
|
+
const findPath = (
|
|
24
|
+
g: DagreGraph,
|
|
25
|
+
postorderNums: Record<ID, OrderItem>,
|
|
26
|
+
v: ID,
|
|
27
|
+
w: ID,
|
|
28
|
+
) => {
|
|
29
|
+
const vPath: ID[] = [];
|
|
30
|
+
const wPath: ID[] = [];
|
|
31
|
+
const low = Math.min(postorderNums[v].low, postorderNums[w].low);
|
|
32
|
+
const lim = Math.max(postorderNums[v].lim, postorderNums[w].lim);
|
|
33
|
+
let parent: ID | undefined;
|
|
34
|
+
let lca: ID | undefined;
|
|
35
|
+
|
|
36
|
+
// Traverse up from v to find the LCA
|
|
37
|
+
parent = v;
|
|
38
|
+
do {
|
|
39
|
+
parent = g.getParent(parent)?.id;
|
|
40
|
+
vPath.push(parent!);
|
|
41
|
+
} while (
|
|
42
|
+
parent &&
|
|
43
|
+
(postorderNums[parent].low > low || lim > postorderNums[parent].lim)
|
|
44
|
+
);
|
|
45
|
+
lca = parent;
|
|
46
|
+
|
|
47
|
+
// Traverse from w to LCA
|
|
48
|
+
parent = w;
|
|
49
|
+
while (parent && parent !== lca) {
|
|
50
|
+
wPath.push(parent);
|
|
51
|
+
parent = g.getParent(parent)?.id;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
return { lca, path: vPath.concat(wPath.reverse()) };
|
|
55
|
+
};
|
|
56
|
+
|
|
57
|
+
export const parentDummyChains = (g: DagreGraph, dummyChains: ID[]) => {
|
|
58
|
+
const postorderNums = dfsBothOrder(g);
|
|
59
|
+
|
|
60
|
+
dummyChains.forEach((startV) => {
|
|
61
|
+
let v = startV;
|
|
62
|
+
let node = g.getNode(v)!;
|
|
63
|
+
const originalEdge = node.data.originalEdge;
|
|
64
|
+
if (!originalEdge) return;
|
|
65
|
+
const pathData = findPath(
|
|
66
|
+
g,
|
|
67
|
+
postorderNums,
|
|
68
|
+
originalEdge.source,
|
|
69
|
+
originalEdge.target,
|
|
70
|
+
);
|
|
71
|
+
const path = pathData.path;
|
|
72
|
+
const lca = pathData.lca;
|
|
73
|
+
let pathIdx = 0;
|
|
74
|
+
let pathV = path[pathIdx]!;
|
|
75
|
+
let ascending = true;
|
|
76
|
+
|
|
77
|
+
while (v !== originalEdge.target) {
|
|
78
|
+
node = g.getNode(v)!;
|
|
79
|
+
|
|
80
|
+
if (ascending) {
|
|
81
|
+
while (
|
|
82
|
+
pathV !== lca &&
|
|
83
|
+
g.getNode(pathV)?.data.maxRank! < node.data.rank!
|
|
84
|
+
) {
|
|
85
|
+
pathIdx++;
|
|
86
|
+
pathV = path[pathIdx]!;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
if (pathV === lca) {
|
|
90
|
+
ascending = false;
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if (!ascending) {
|
|
95
|
+
while (
|
|
96
|
+
pathIdx < path.length - 1 &&
|
|
97
|
+
g.getNode(path[pathIdx + 1]!)?.data.minRank! <= node.data.rank!
|
|
98
|
+
) {
|
|
99
|
+
pathIdx++;
|
|
100
|
+
}
|
|
101
|
+
pathV = path[pathIdx]!;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (g.hasNode(pathV)) {
|
|
105
|
+
g.setParent(v, pathV);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
v = g.getSuccessors(v)![0].id;
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
};
|