@antv/layout 2.0.0-alpha.1 → 2.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1645) hide show
  1. package/README.md +26 -301
  2. package/dist/index.js +815 -814
  3. package/dist/index.js.map +1 -1
  4. package/dist/index.min.js +2 -3
  5. package/dist/index.min.js.map +1 -1
  6. package/dist/worker.js +1 -1
  7. package/dist/worker.js.map +1 -1
  8. package/lib/_virtual/index.js +1 -1
  9. package/lib/_virtual/index2.js +1 -1
  10. package/lib/_virtual/index3.js +1 -1
  11. package/lib/_virtual/matrix.js +1 -1
  12. package/lib/algorithm/antv-dagre/acyclic.js.map +1 -0
  13. package/lib/algorithm/antv-dagre/add-border-segments.js.map +1 -0
  14. package/lib/algorithm/antv-dagre/coordinate-system.js.map +1 -0
  15. package/lib/algorithm/antv-dagre/data/list.js.map +1 -0
  16. package/lib/algorithm/antv-dagre/graph.js.map +1 -0
  17. package/lib/algorithm/antv-dagre/greedy-fas.js.map +1 -0
  18. package/lib/algorithm/antv-dagre/index.d.ts +15 -0
  19. package/lib/algorithm/antv-dagre/index.js +339 -0
  20. package/lib/algorithm/antv-dagre/index.js.map +1 -0
  21. package/lib/algorithm/antv-dagre/layout.js +471 -0
  22. package/lib/algorithm/antv-dagre/layout.js.map +1 -0
  23. package/lib/algorithm/antv-dagre/nesting-graph.js.map +1 -0
  24. package/lib/algorithm/antv-dagre/normalize.js.map +1 -0
  25. package/lib/algorithm/antv-dagre/order/add-subgraph-constraints.js.map +1 -0
  26. package/lib/algorithm/antv-dagre/order/barycenter.js.map +1 -0
  27. package/lib/algorithm/antv-dagre/order/build-layer-graph.js.map +1 -0
  28. package/lib/algorithm/antv-dagre/order/cross-count.js.map +1 -0
  29. package/lib/algorithm/antv-dagre/order/index.js +94 -0
  30. package/lib/algorithm/antv-dagre/order/index.js.map +1 -0
  31. package/lib/algorithm/antv-dagre/order/init-data-order.js.map +1 -0
  32. package/lib/algorithm/antv-dagre/order/init-order.js.map +1 -0
  33. package/lib/algorithm/antv-dagre/order/resolve-conflicts.js.map +1 -0
  34. package/lib/algorithm/antv-dagre/order/sort-subgraph.js.map +1 -0
  35. package/lib/algorithm/antv-dagre/order/sort.js.map +1 -0
  36. package/lib/algorithm/antv-dagre/parent-dummy-chains.js.map +1 -0
  37. package/lib/algorithm/antv-dagre/position/bk.js.map +1 -0
  38. package/lib/algorithm/antv-dagre/position/index.js.map +1 -0
  39. package/lib/algorithm/antv-dagre/rank/feasible-tree.js.map +1 -0
  40. package/lib/algorithm/antv-dagre/rank/index.js.map +1 -0
  41. package/lib/algorithm/antv-dagre/rank/network-simplex.js.map +1 -0
  42. package/lib/algorithm/antv-dagre/rank/util.js.map +1 -0
  43. package/lib/algorithm/antv-dagre/types.d.ts +192 -0
  44. package/lib/algorithm/antv-dagre/util.js +265 -0
  45. package/lib/algorithm/antv-dagre/util.js.map +1 -0
  46. package/lib/algorithm/base-layout.d.ts +49 -0
  47. package/lib/algorithm/base-layout.js +89 -0
  48. package/lib/algorithm/base-layout.js.map +1 -0
  49. package/lib/algorithm/base-simulation.d.ts +20 -0
  50. package/lib/algorithm/base-simulation.js +75 -0
  51. package/lib/algorithm/base-simulation.js.map +1 -0
  52. package/lib/algorithm/circular/index.d.ts +15 -0
  53. package/lib/algorithm/circular/index.js +108 -0
  54. package/lib/algorithm/circular/index.js.map +1 -0
  55. package/lib/algorithm/circular/types.d.ts +105 -0
  56. package/lib/algorithm/combo-combined/index.d.ts +33 -0
  57. package/lib/algorithm/combo-combined/index.js +303 -0
  58. package/lib/algorithm/combo-combined/index.js.map +1 -0
  59. package/lib/algorithm/combo-combined/types.d.ts +37 -0
  60. package/lib/algorithm/concentric/index.d.ts +15 -0
  61. package/lib/algorithm/concentric/index.js +192 -0
  62. package/lib/algorithm/concentric/index.js.map +1 -0
  63. package/lib/algorithm/concentric/types.d.ts +92 -0
  64. package/lib/algorithm/d3-force/force-in-a-box.js +343 -0
  65. package/lib/algorithm/d3-force/force-in-a-box.js.map +1 -0
  66. package/lib/algorithm/d3-force/index.d.ts +53 -0
  67. package/lib/algorithm/d3-force/index.js +514 -0
  68. package/lib/algorithm/d3-force/index.js.map +1 -0
  69. package/lib/algorithm/d3-force/types.d.ts +336 -0
  70. package/lib/algorithm/d3-force-3d/index.js +73 -0
  71. package/lib/algorithm/d3-force-3d/index.js.map +1 -0
  72. package/lib/algorithm/dagre/index.d.ts +22 -0
  73. package/lib/algorithm/dagre/index.js +142 -0
  74. package/lib/algorithm/dagre/index.js.map +1 -0
  75. package/lib/algorithm/dagre/types.d.ts +79 -0
  76. package/lib/algorithm/force/attractive.js.map +1 -0
  77. package/lib/algorithm/force/centripetal.js +87 -0
  78. package/lib/algorithm/force/centripetal.js.map +1 -0
  79. package/lib/algorithm/force/collide.js +172 -0
  80. package/lib/algorithm/force/collide.js.map +1 -0
  81. package/lib/algorithm/force/gravity.js.map +1 -0
  82. package/lib/algorithm/force/index.d.ts +87 -0
  83. package/lib/algorithm/force/index.js +450 -0
  84. package/lib/algorithm/force/index.js.map +1 -0
  85. package/lib/algorithm/force/repulsive.js +142 -0
  86. package/lib/algorithm/force/repulsive.js.map +1 -0
  87. package/lib/algorithm/force/simulation.d.ts +23 -0
  88. package/lib/algorithm/force/simulation.js +137 -0
  89. package/lib/algorithm/force/simulation.js.map +1 -0
  90. package/lib/algorithm/force/types.d.ts +252 -0
  91. package/lib/algorithm/force-atlas2/body.js.map +1 -0
  92. package/lib/algorithm/force-atlas2/index.d.ts +22 -0
  93. package/lib/algorithm/force-atlas2/index.js +155 -0
  94. package/lib/algorithm/force-atlas2/index.js.map +1 -0
  95. package/lib/algorithm/force-atlas2/quad-tree.js.map +1 -0
  96. package/lib/algorithm/force-atlas2/quad.js.map +1 -0
  97. package/lib/algorithm/force-atlas2/simulation.d.ts +39 -0
  98. package/lib/algorithm/force-atlas2/simulation.js +388 -0
  99. package/lib/algorithm/force-atlas2/simulation.js.map +1 -0
  100. package/lib/algorithm/force-atlas2/types.d.ts +109 -0
  101. package/lib/algorithm/fruchterman/index.d.ts +20 -0
  102. package/lib/algorithm/fruchterman/index.js +93 -0
  103. package/lib/algorithm/fruchterman/index.js.map +1 -0
  104. package/lib/algorithm/fruchterman/simulation.js +356 -0
  105. package/lib/algorithm/fruchterman/simulation.js.map +1 -0
  106. package/lib/algorithm/fruchterman/types.d.ts +48 -0
  107. package/lib/algorithm/grid/index.d.ts +16 -0
  108. package/lib/algorithm/grid/index.js +243 -0
  109. package/lib/algorithm/grid/index.js.map +1 -0
  110. package/lib/algorithm/grid/types.d.ts +85 -0
  111. package/lib/algorithm/mds/index.d.ts +15 -0
  112. package/lib/algorithm/mds/index.js +127 -0
  113. package/lib/algorithm/mds/index.js.map +1 -0
  114. package/lib/algorithm/mds/types.d.ts +25 -0
  115. package/lib/algorithm/radial/index.d.ts +16 -0
  116. package/lib/algorithm/radial/index.js +275 -0
  117. package/lib/algorithm/radial/index.js.map +1 -0
  118. package/lib/algorithm/radial/radial-nonoverlap-force.js +129 -0
  119. package/lib/algorithm/radial/radial-nonoverlap-force.js.map +1 -0
  120. package/lib/algorithm/radial/types.d.ts +103 -0
  121. package/lib/algorithm/random/index.d.ts +15 -0
  122. package/lib/algorithm/random/index.js +41 -0
  123. package/lib/algorithm/random/index.js.map +1 -0
  124. package/lib/algorithm/random/types.d.ts +11 -0
  125. package/lib/algorithm/types.d.ts +142 -0
  126. package/lib/index.d.ts +36 -33
  127. package/lib/index.js +19 -17
  128. package/lib/index.js.map +1 -1
  129. package/lib/model/data.d.ts +46 -0
  130. package/lib/model/data.js +281 -0
  131. package/lib/model/data.js.map +1 -0
  132. package/lib/node_modules/@antv/event-emitter/esm/index.js.map +1 -0
  133. package/lib/node_modules/@antv/util/esm/lodash/clone.js.map +1 -0
  134. package/lib/node_modules/@antv/util/esm/lodash/deep-mix.js.map +1 -0
  135. package/lib/node_modules/@antv/util/esm/lodash/each.js.map +1 -0
  136. package/lib/node_modules/@antv/util/esm/lodash/get-type.js.map +1 -0
  137. package/lib/node_modules/@antv/util/esm/lodash/get.js.map +1 -0
  138. package/lib/node_modules/@antv/util/esm/lodash/is-array-like.js.map +1 -0
  139. package/lib/node_modules/@antv/util/esm/lodash/is-array.js.map +1 -0
  140. package/lib/node_modules/@antv/util/esm/lodash/is-boolean.js.map +1 -0
  141. package/lib/node_modules/@antv/util/esm/lodash/is-empty.js.map +1 -0
  142. package/lib/node_modules/@antv/util/esm/lodash/is-function.js.map +1 -0
  143. package/lib/node_modules/@antv/util/esm/lodash/is-nil.js.map +1 -0
  144. package/lib/node_modules/@antv/util/esm/lodash/is-number.js.map +1 -0
  145. package/lib/node_modules/@antv/util/esm/lodash/is-object-like.js.map +1 -0
  146. package/lib/node_modules/@antv/util/esm/lodash/is-object.js.map +1 -0
  147. package/lib/node_modules/@antv/util/esm/lodash/is-plain-object.js.map +1 -0
  148. package/lib/node_modules/@antv/util/esm/lodash/is-prototype.js.map +1 -0
  149. package/lib/node_modules/@antv/util/esm/lodash/is-string.js.map +1 -0
  150. package/lib/node_modules/@antv/util/esm/lodash/is-type.js.map +1 -0
  151. package/lib/node_modules/@antv/util/esm/lodash/pick.js.map +1 -0
  152. package/lib/node_modules/@antv/util/esm/lodash/set.js.map +1 -0
  153. package/lib/node_modules/comlink/dist/esm/comlink.js.map +1 -0
  154. package/lib/node_modules/d3-binarytree/src/add.js.map +1 -0
  155. package/lib/node_modules/d3-binarytree/src/binarytree.js.map +1 -0
  156. package/lib/node_modules/d3-binarytree/src/cover.js.map +1 -0
  157. package/lib/node_modules/d3-binarytree/src/data.js.map +1 -0
  158. package/lib/node_modules/d3-binarytree/src/extent.js.map +1 -0
  159. package/lib/node_modules/d3-binarytree/src/find.js.map +1 -0
  160. package/lib/node_modules/d3-binarytree/src/half.js.map +1 -0
  161. package/lib/node_modules/d3-binarytree/src/remove.js.map +1 -0
  162. package/lib/node_modules/d3-binarytree/src/root.js.map +1 -0
  163. package/lib/node_modules/d3-binarytree/src/size.js.map +1 -0
  164. package/lib/node_modules/d3-binarytree/src/visit.js.map +1 -0
  165. package/lib/node_modules/d3-binarytree/src/visitAfter.js.map +1 -0
  166. package/lib/node_modules/d3-binarytree/src/x.js.map +1 -0
  167. package/lib/node_modules/d3-dispatch/src/dispatch.js.map +1 -0
  168. package/lib/node_modules/d3-force/src/center.js.map +1 -0
  169. package/lib/node_modules/d3-force/src/collide.js +103 -0
  170. package/lib/node_modules/d3-force/src/collide.js.map +1 -0
  171. package/lib/node_modules/d3-force/src/constant.js.map +1 -0
  172. package/lib/node_modules/d3-force/src/jiggle.js.map +1 -0
  173. package/lib/node_modules/d3-force/src/lcg.js.map +1 -0
  174. package/lib/node_modules/d3-force/src/link.js.map +1 -0
  175. package/lib/node_modules/d3-force/src/manyBody.js +119 -0
  176. package/lib/node_modules/d3-force/src/manyBody.js.map +1 -0
  177. package/lib/node_modules/d3-force/src/radial.js.map +1 -0
  178. package/lib/node_modules/d3-force/src/simulation.js +159 -0
  179. package/lib/node_modules/d3-force/src/simulation.js.map +1 -0
  180. package/lib/node_modules/d3-force/src/x.js.map +1 -0
  181. package/lib/node_modules/d3-force/src/y.js.map +1 -0
  182. package/lib/node_modules/d3-force-3d/src/center.js.map +1 -0
  183. package/lib/node_modules/d3-force-3d/src/collide.js +135 -0
  184. package/lib/node_modules/d3-force-3d/src/collide.js.map +1 -0
  185. package/lib/node_modules/d3-force-3d/src/constant.js.map +1 -0
  186. package/lib/node_modules/d3-force-3d/src/jiggle.js.map +1 -0
  187. package/lib/node_modules/d3-force-3d/src/lcg.js.map +1 -0
  188. package/lib/node_modules/d3-force-3d/src/link.js.map +1 -0
  189. package/lib/node_modules/d3-force-3d/src/manyBody.js +142 -0
  190. package/lib/node_modules/d3-force-3d/src/manyBody.js.map +1 -0
  191. package/lib/node_modules/d3-force-3d/src/radial.js.map +1 -0
  192. package/lib/node_modules/d3-force-3d/src/simulation.js +202 -0
  193. package/lib/node_modules/d3-force-3d/src/simulation.js.map +1 -0
  194. package/lib/node_modules/d3-force-3d/src/x.js.map +1 -0
  195. package/lib/node_modules/d3-force-3d/src/y.js.map +1 -0
  196. package/lib/node_modules/d3-force-3d/src/z.js.map +1 -0
  197. package/lib/node_modules/d3-octree/src/add.js.map +1 -0
  198. package/lib/node_modules/d3-octree/src/cover.js.map +1 -0
  199. package/lib/node_modules/d3-octree/src/data.js.map +1 -0
  200. package/lib/node_modules/d3-octree/src/extent.js.map +1 -0
  201. package/lib/node_modules/d3-octree/src/find.js.map +1 -0
  202. package/lib/node_modules/d3-octree/src/findAll.js.map +1 -0
  203. package/lib/node_modules/d3-octree/src/octant.js.map +1 -0
  204. package/lib/node_modules/d3-octree/src/octree.js.map +1 -0
  205. package/lib/node_modules/d3-octree/src/remove.js.map +1 -0
  206. package/lib/node_modules/d3-octree/src/root.js.map +1 -0
  207. package/lib/node_modules/d3-octree/src/size.js.map +1 -0
  208. package/lib/node_modules/d3-octree/src/visit.js.map +1 -0
  209. package/lib/node_modules/d3-octree/src/visitAfter.js.map +1 -0
  210. package/lib/node_modules/d3-octree/src/x.js.map +1 -0
  211. package/lib/node_modules/d3-octree/src/y.js.map +1 -0
  212. package/lib/node_modules/d3-octree/src/z.js.map +1 -0
  213. package/lib/node_modules/d3-quadtree/src/add.js.map +1 -0
  214. package/lib/node_modules/d3-quadtree/src/cover.js.map +1 -0
  215. package/lib/node_modules/d3-quadtree/src/data.js.map +1 -0
  216. package/lib/node_modules/d3-quadtree/src/extent.js.map +1 -0
  217. package/lib/node_modules/d3-quadtree/src/find.js.map +1 -0
  218. package/lib/node_modules/d3-quadtree/src/quad.js.map +1 -0
  219. package/lib/node_modules/d3-quadtree/src/quadtree.js.map +1 -0
  220. package/lib/node_modules/d3-quadtree/src/remove.js.map +1 -0
  221. package/lib/node_modules/d3-quadtree/src/root.js.map +1 -0
  222. package/lib/node_modules/d3-quadtree/src/size.js.map +1 -0
  223. package/lib/node_modules/d3-quadtree/src/visit.js.map +1 -0
  224. package/lib/node_modules/d3-quadtree/src/visitAfter.js.map +1 -0
  225. package/lib/node_modules/d3-quadtree/src/x.js.map +1 -0
  226. package/lib/node_modules/d3-quadtree/src/y.js.map +1 -0
  227. package/lib/node_modules/d3-timer/src/timer.js.map +1 -0
  228. package/lib/node_modules/dagre/index.js.map +1 -0
  229. package/lib/node_modules/dagre/lib/acyclic.js.map +1 -0
  230. package/lib/node_modules/dagre/lib/add-border-segments.js.map +1 -0
  231. package/lib/node_modules/dagre/lib/coordinate-system.js.map +1 -0
  232. package/lib/node_modules/dagre/lib/data/list.js.map +1 -0
  233. package/lib/node_modules/dagre/lib/debug.js.map +1 -0
  234. package/lib/node_modules/dagre/lib/graphlib.js +31 -0
  235. package/lib/node_modules/dagre/lib/graphlib.js.map +1 -0
  236. package/lib/node_modules/dagre/lib/greedy-fas.js.map +1 -0
  237. package/lib/node_modules/dagre/lib/layout.js.map +1 -0
  238. package/lib/node_modules/dagre/lib/lodash.js +83 -0
  239. package/lib/node_modules/dagre/lib/lodash.js.map +1 -0
  240. package/lib/node_modules/dagre/lib/nesting-graph.js.map +1 -0
  241. package/lib/node_modules/dagre/lib/normalize.js.map +1 -0
  242. package/lib/node_modules/dagre/lib/order/add-subgraph-constraints.js.map +1 -0
  243. package/lib/node_modules/dagre/lib/order/barycenter.js.map +1 -0
  244. package/lib/node_modules/dagre/lib/order/build-layer-graph.js.map +1 -0
  245. package/lib/node_modules/dagre/lib/order/cross-count.js.map +1 -0
  246. package/lib/node_modules/dagre/lib/order/index.js.map +1 -0
  247. package/lib/node_modules/dagre/lib/order/init-order.js.map +1 -0
  248. package/lib/node_modules/dagre/lib/order/resolve-conflicts.js.map +1 -0
  249. package/lib/node_modules/dagre/lib/order/sort-subgraph.js.map +1 -0
  250. package/lib/node_modules/dagre/lib/order/sort.js.map +1 -0
  251. package/lib/node_modules/dagre/lib/parent-dummy-chains.js.map +1 -0
  252. package/lib/node_modules/dagre/lib/position/bk.js.map +1 -0
  253. package/lib/node_modules/dagre/lib/position/index.js.map +1 -0
  254. package/lib/node_modules/dagre/lib/rank/feasible-tree.js.map +1 -0
  255. package/lib/node_modules/dagre/lib/rank/index.js.map +1 -0
  256. package/lib/node_modules/dagre/lib/rank/network-simplex.js.map +1 -0
  257. package/lib/node_modules/dagre/lib/rank/util.js.map +1 -0
  258. package/lib/node_modules/dagre/lib/util.js.map +1 -0
  259. package/lib/node_modules/dagre/lib/version.js.map +1 -0
  260. package/lib/node_modules/graphlib/index.js.map +1 -0
  261. package/lib/node_modules/graphlib/lib/alg/components.js.map +1 -0
  262. package/lib/node_modules/graphlib/lib/alg/dfs.js.map +1 -0
  263. package/lib/node_modules/graphlib/lib/alg/dijkstra-all.js.map +1 -0
  264. package/lib/node_modules/graphlib/lib/alg/dijkstra.js.map +1 -0
  265. package/lib/node_modules/graphlib/lib/alg/find-cycles.js.map +1 -0
  266. package/lib/node_modules/graphlib/lib/alg/floyd-warshall.js.map +1 -0
  267. package/lib/node_modules/graphlib/lib/alg/index.js.map +1 -0
  268. package/lib/node_modules/graphlib/lib/alg/is-acyclic.js.map +1 -0
  269. package/lib/node_modules/graphlib/lib/alg/postorder.js.map +1 -0
  270. package/lib/node_modules/graphlib/lib/alg/preorder.js.map +1 -0
  271. package/lib/node_modules/graphlib/lib/alg/prim.js.map +1 -0
  272. package/lib/node_modules/graphlib/lib/alg/tarjan.js.map +1 -0
  273. package/lib/node_modules/graphlib/lib/alg/topsort.js.map +1 -0
  274. package/lib/node_modules/graphlib/lib/data/priority-queue.js.map +1 -0
  275. package/lib/node_modules/graphlib/lib/graph.js.map +1 -0
  276. package/lib/node_modules/graphlib/lib/index.js.map +1 -0
  277. package/lib/node_modules/graphlib/lib/json.js.map +1 -0
  278. package/lib/node_modules/graphlib/lib/lodash.js +63 -0
  279. package/lib/node_modules/graphlib/lib/lodash.js.map +1 -0
  280. package/lib/node_modules/graphlib/lib/version.js.map +1 -0
  281. package/lib/node_modules/is-any-array/lib-esm/index.js.map +1 -0
  282. package/lib/node_modules/lodash/_DataView.js.map +1 -0
  283. package/lib/node_modules/lodash/_Hash.js.map +1 -0
  284. package/lib/node_modules/lodash/_ListCache.js.map +1 -0
  285. package/lib/node_modules/lodash/_Map.js.map +1 -0
  286. package/lib/node_modules/lodash/_MapCache.js.map +1 -0
  287. package/lib/node_modules/lodash/_Promise.js.map +1 -0
  288. package/lib/node_modules/lodash/_Set.js.map +1 -0
  289. package/lib/node_modules/lodash/_SetCache.js.map +1 -0
  290. package/lib/node_modules/lodash/_Stack.js.map +1 -0
  291. package/lib/node_modules/lodash/_Symbol.js.map +1 -0
  292. package/lib/node_modules/lodash/_Uint8Array.js.map +1 -0
  293. package/lib/node_modules/lodash/_WeakMap.js.map +1 -0
  294. package/lib/node_modules/lodash/_apply.js.map +1 -0
  295. package/lib/node_modules/lodash/_arrayEach.js.map +1 -0
  296. package/lib/node_modules/lodash/_arrayFilter.js.map +1 -0
  297. package/lib/node_modules/lodash/_arrayIncludes.js.map +1 -0
  298. package/lib/node_modules/lodash/_arrayIncludesWith.js.map +1 -0
  299. package/lib/node_modules/lodash/_arrayLikeKeys.js.map +1 -0
  300. package/lib/node_modules/lodash/_arrayMap.js.map +1 -0
  301. package/lib/node_modules/lodash/_arrayPush.js.map +1 -0
  302. package/lib/node_modules/lodash/_arrayReduce.js.map +1 -0
  303. package/lib/node_modules/lodash/_arraySome.js.map +1 -0
  304. package/lib/node_modules/lodash/_asciiSize.js.map +1 -0
  305. package/lib/node_modules/lodash/_assignMergeValue.js.map +1 -0
  306. package/lib/node_modules/lodash/_assignValue.js.map +1 -0
  307. package/lib/node_modules/lodash/_assocIndexOf.js.map +1 -0
  308. package/lib/node_modules/lodash/_baseAssign.js.map +1 -0
  309. package/lib/node_modules/lodash/_baseAssignIn.js.map +1 -0
  310. package/lib/node_modules/lodash/_baseAssignValue.js.map +1 -0
  311. package/lib/node_modules/lodash/_baseClone.js.map +1 -0
  312. package/lib/node_modules/lodash/_baseCreate.js.map +1 -0
  313. package/lib/node_modules/lodash/_baseEach.js.map +1 -0
  314. package/lib/node_modules/lodash/_baseExtremum.js.map +1 -0
  315. package/lib/node_modules/lodash/_baseFilter.js.map +1 -0
  316. package/lib/node_modules/lodash/_baseFindIndex.js.map +1 -0
  317. package/lib/node_modules/lodash/_baseFlatten.js.map +1 -0
  318. package/lib/node_modules/lodash/_baseFor.js.map +1 -0
  319. package/lib/node_modules/lodash/_baseForOwn.js.map +1 -0
  320. package/lib/node_modules/lodash/_baseGet.js.map +1 -0
  321. package/lib/node_modules/lodash/_baseGetAllKeys.js.map +1 -0
  322. package/lib/node_modules/lodash/_baseGetTag.js.map +1 -0
  323. package/lib/node_modules/lodash/_baseGt.js.map +1 -0
  324. package/lib/node_modules/lodash/_baseHas.js.map +1 -0
  325. package/lib/node_modules/lodash/_baseHasIn.js.map +1 -0
  326. package/lib/node_modules/lodash/_baseIndexOf.js.map +1 -0
  327. package/lib/node_modules/lodash/_baseIsArguments.js.map +1 -0
  328. package/lib/node_modules/lodash/_baseIsEqual.js.map +1 -0
  329. package/lib/node_modules/lodash/_baseIsEqualDeep.js.map +1 -0
  330. package/lib/node_modules/lodash/_baseIsMap.js.map +1 -0
  331. package/lib/node_modules/lodash/_baseIsMatch.js.map +1 -0
  332. package/lib/node_modules/lodash/_baseIsNaN.js.map +1 -0
  333. package/lib/node_modules/lodash/_baseIsNative.js.map +1 -0
  334. package/lib/node_modules/lodash/_baseIsSet.js.map +1 -0
  335. package/lib/node_modules/lodash/_baseIsTypedArray.js.map +1 -0
  336. package/lib/node_modules/lodash/_baseIteratee.js.map +1 -0
  337. package/lib/node_modules/lodash/_baseKeys.js.map +1 -0
  338. package/lib/node_modules/lodash/_baseKeysIn.js.map +1 -0
  339. package/lib/node_modules/lodash/_baseLt.js.map +1 -0
  340. package/lib/node_modules/lodash/_baseMap.js.map +1 -0
  341. package/lib/node_modules/lodash/_baseMatches.js.map +1 -0
  342. package/lib/node_modules/lodash/_baseMatchesProperty.js.map +1 -0
  343. package/lib/node_modules/lodash/_baseMerge.js.map +1 -0
  344. package/lib/node_modules/lodash/_baseMergeDeep.js.map +1 -0
  345. package/lib/node_modules/lodash/_baseOrderBy.js.map +1 -0
  346. package/lib/node_modules/lodash/_basePick.js.map +1 -0
  347. package/lib/node_modules/lodash/_basePickBy.js.map +1 -0
  348. package/lib/node_modules/lodash/_baseProperty.js.map +1 -0
  349. package/lib/node_modules/lodash/_basePropertyDeep.js.map +1 -0
  350. package/lib/node_modules/lodash/_baseRange.js.map +1 -0
  351. package/lib/node_modules/lodash/_baseReduce.js.map +1 -0
  352. package/lib/node_modules/lodash/_baseRest.js.map +1 -0
  353. package/lib/node_modules/lodash/_baseSet.js.map +1 -0
  354. package/lib/node_modules/lodash/_baseSetToString.js.map +1 -0
  355. package/lib/node_modules/lodash/_baseSortBy.js.map +1 -0
  356. package/lib/node_modules/lodash/_baseTimes.js.map +1 -0
  357. package/lib/node_modules/lodash/_baseToString.js.map +1 -0
  358. package/lib/node_modules/lodash/_baseTrim.js.map +1 -0
  359. package/lib/node_modules/lodash/_baseUnary.js.map +1 -0
  360. package/lib/node_modules/lodash/_baseUniq.js.map +1 -0
  361. package/lib/node_modules/lodash/_baseValues.js.map +1 -0
  362. package/lib/node_modules/lodash/_baseZipObject.js.map +1 -0
  363. package/lib/node_modules/lodash/_cacheHas.js.map +1 -0
  364. package/lib/node_modules/lodash/_castFunction.js.map +1 -0
  365. package/lib/node_modules/lodash/_castPath.js.map +1 -0
  366. package/lib/node_modules/lodash/_cloneArrayBuffer.js.map +1 -0
  367. package/lib/node_modules/lodash/_cloneBuffer.js +52 -0
  368. package/lib/node_modules/lodash/_cloneBuffer.js.map +1 -0
  369. package/lib/node_modules/lodash/_cloneDataView.js.map +1 -0
  370. package/lib/node_modules/lodash/_cloneRegExp.js.map +1 -0
  371. package/lib/node_modules/lodash/_cloneSymbol.js.map +1 -0
  372. package/lib/node_modules/lodash/_cloneTypedArray.js.map +1 -0
  373. package/lib/node_modules/lodash/_compareAscending.js.map +1 -0
  374. package/lib/node_modules/lodash/_compareMultiple.js.map +1 -0
  375. package/lib/node_modules/lodash/_copyArray.js.map +1 -0
  376. package/lib/node_modules/lodash/_copyObject.js.map +1 -0
  377. package/lib/node_modules/lodash/_copySymbols.js.map +1 -0
  378. package/lib/node_modules/lodash/_copySymbolsIn.js.map +1 -0
  379. package/lib/node_modules/lodash/_coreJsData.js.map +1 -0
  380. package/lib/node_modules/lodash/_createAssigner.js.map +1 -0
  381. package/lib/node_modules/lodash/_createBaseEach.js.map +1 -0
  382. package/lib/node_modules/lodash/_createBaseFor.js.map +1 -0
  383. package/lib/node_modules/lodash/_createFind.js.map +1 -0
  384. package/lib/node_modules/lodash/_createRange.js.map +1 -0
  385. package/lib/node_modules/lodash/_createSet.js.map +1 -0
  386. package/lib/node_modules/lodash/_defineProperty.js.map +1 -0
  387. package/lib/node_modules/lodash/_equalArrays.js.map +1 -0
  388. package/lib/node_modules/lodash/_equalByTag.js.map +1 -0
  389. package/lib/node_modules/lodash/_equalObjects.js.map +1 -0
  390. package/lib/node_modules/lodash/_flatRest.js.map +1 -0
  391. package/lib/node_modules/lodash/_freeGlobal.js +18 -0
  392. package/lib/node_modules/lodash/_freeGlobal.js.map +1 -0
  393. package/lib/node_modules/lodash/_getAllKeys.js.map +1 -0
  394. package/lib/node_modules/lodash/_getAllKeysIn.js.map +1 -0
  395. package/lib/node_modules/lodash/_getMapData.js.map +1 -0
  396. package/lib/node_modules/lodash/_getMatchData.js.map +1 -0
  397. package/lib/node_modules/lodash/_getNative.js.map +1 -0
  398. package/lib/node_modules/lodash/_getPrototype.js.map +1 -0
  399. package/lib/node_modules/lodash/_getRawTag.js.map +1 -0
  400. package/lib/node_modules/lodash/_getSymbols.js.map +1 -0
  401. package/lib/node_modules/lodash/_getSymbolsIn.js.map +1 -0
  402. package/lib/node_modules/lodash/_getTag.js.map +1 -0
  403. package/lib/node_modules/lodash/_getValue.js.map +1 -0
  404. package/lib/node_modules/lodash/_hasPath.js.map +1 -0
  405. package/lib/node_modules/lodash/_hasUnicode.js.map +1 -0
  406. package/lib/node_modules/lodash/_hashClear.js.map +1 -0
  407. package/lib/node_modules/lodash/_hashDelete.js.map +1 -0
  408. package/lib/node_modules/lodash/_hashGet.js.map +1 -0
  409. package/lib/node_modules/lodash/_hashHas.js.map +1 -0
  410. package/lib/node_modules/lodash/_hashSet.js.map +1 -0
  411. package/lib/node_modules/lodash/_initCloneArray.js.map +1 -0
  412. package/lib/node_modules/lodash/_initCloneByTag.js.map +1 -0
  413. package/lib/node_modules/lodash/_initCloneObject.js.map +1 -0
  414. package/lib/node_modules/lodash/_isFlattenable.js.map +1 -0
  415. package/lib/node_modules/lodash/_isIndex.js.map +1 -0
  416. package/lib/node_modules/lodash/_isIterateeCall.js.map +1 -0
  417. package/lib/node_modules/lodash/_isKey.js.map +1 -0
  418. package/lib/node_modules/lodash/_isKeyable.js.map +1 -0
  419. package/lib/node_modules/lodash/_isMasked.js.map +1 -0
  420. package/lib/node_modules/lodash/_isPrototype.js.map +1 -0
  421. package/lib/node_modules/lodash/_isStrictComparable.js.map +1 -0
  422. package/lib/node_modules/lodash/_listCacheClear.js.map +1 -0
  423. package/lib/node_modules/lodash/_listCacheDelete.js.map +1 -0
  424. package/lib/node_modules/lodash/_listCacheGet.js.map +1 -0
  425. package/lib/node_modules/lodash/_listCacheHas.js.map +1 -0
  426. package/lib/node_modules/lodash/_listCacheSet.js.map +1 -0
  427. package/lib/node_modules/lodash/_mapCacheClear.js.map +1 -0
  428. package/lib/node_modules/lodash/_mapCacheDelete.js.map +1 -0
  429. package/lib/node_modules/lodash/_mapCacheGet.js.map +1 -0
  430. package/lib/node_modules/lodash/_mapCacheHas.js.map +1 -0
  431. package/lib/node_modules/lodash/_mapCacheSet.js.map +1 -0
  432. package/lib/node_modules/lodash/_mapToArray.js.map +1 -0
  433. package/lib/node_modules/lodash/_matchesStrictComparable.js.map +1 -0
  434. package/lib/node_modules/lodash/_memoizeCapped.js.map +1 -0
  435. package/lib/node_modules/lodash/_nativeCreate.js.map +1 -0
  436. package/lib/node_modules/lodash/_nativeKeys.js.map +1 -0
  437. package/lib/node_modules/lodash/_nativeKeysIn.js.map +1 -0
  438. package/lib/node_modules/lodash/_nodeUtil.js +47 -0
  439. package/lib/node_modules/lodash/_nodeUtil.js.map +1 -0
  440. package/lib/node_modules/lodash/_objectToString.js.map +1 -0
  441. package/lib/node_modules/lodash/_overArg.js.map +1 -0
  442. package/lib/node_modules/lodash/_overRest.js.map +1 -0
  443. package/lib/node_modules/lodash/_root.js.map +1 -0
  444. package/lib/node_modules/lodash/_safeGet.js.map +1 -0
  445. package/lib/node_modules/lodash/_setCacheAdd.js.map +1 -0
  446. package/lib/node_modules/lodash/_setCacheHas.js.map +1 -0
  447. package/lib/node_modules/lodash/_setToArray.js.map +1 -0
  448. package/lib/node_modules/lodash/_setToString.js.map +1 -0
  449. package/lib/node_modules/lodash/_shortOut.js.map +1 -0
  450. package/lib/node_modules/lodash/_stackClear.js.map +1 -0
  451. package/lib/node_modules/lodash/_stackDelete.js.map +1 -0
  452. package/lib/node_modules/lodash/_stackGet.js.map +1 -0
  453. package/lib/node_modules/lodash/_stackHas.js.map +1 -0
  454. package/lib/node_modules/lodash/_stackSet.js.map +1 -0
  455. package/lib/node_modules/lodash/_strictIndexOf.js.map +1 -0
  456. package/lib/node_modules/lodash/_stringSize.js.map +1 -0
  457. package/lib/node_modules/lodash/_stringToPath.js.map +1 -0
  458. package/lib/node_modules/lodash/_toKey.js.map +1 -0
  459. package/lib/node_modules/lodash/_toSource.js.map +1 -0
  460. package/lib/node_modules/lodash/_trimmedEndIndex.js.map +1 -0
  461. package/lib/node_modules/lodash/_unicodeSize.js.map +1 -0
  462. package/lib/node_modules/lodash/clone.js.map +1 -0
  463. package/lib/node_modules/lodash/cloneDeep.js.map +1 -0
  464. package/lib/node_modules/lodash/constant.js.map +1 -0
  465. package/lib/node_modules/lodash/defaults.js.map +1 -0
  466. package/lib/node_modules/lodash/each.js.map +1 -0
  467. package/lib/node_modules/lodash/eq.js.map +1 -0
  468. package/lib/node_modules/lodash/filter.js.map +1 -0
  469. package/lib/node_modules/lodash/find.js.map +1 -0
  470. package/lib/node_modules/lodash/findIndex.js.map +1 -0
  471. package/lib/node_modules/lodash/flatten.js.map +1 -0
  472. package/lib/node_modules/lodash/forEach.js.map +1 -0
  473. package/lib/node_modules/lodash/forIn.js.map +1 -0
  474. package/lib/node_modules/lodash/get.js.map +1 -0
  475. package/lib/node_modules/lodash/has.js.map +1 -0
  476. package/lib/node_modules/lodash/hasIn.js.map +1 -0
  477. package/lib/node_modules/lodash/identity.js.map +1 -0
  478. package/lib/node_modules/lodash/isArguments.js.map +1 -0
  479. package/lib/node_modules/lodash/isArray.js.map +1 -0
  480. package/lib/node_modules/lodash/isArrayLike.js.map +1 -0
  481. package/lib/node_modules/lodash/isArrayLikeObject.js.map +1 -0
  482. package/lib/node_modules/lodash/isBuffer.js +56 -0
  483. package/lib/node_modules/lodash/isBuffer.js.map +1 -0
  484. package/lib/node_modules/lodash/isEmpty.js.map +1 -0
  485. package/lib/node_modules/lodash/isFunction.js.map +1 -0
  486. package/lib/node_modules/lodash/isLength.js.map +1 -0
  487. package/lib/node_modules/lodash/isMap.js.map +1 -0
  488. package/lib/node_modules/lodash/isObject.js.map +1 -0
  489. package/lib/node_modules/lodash/isObjectLike.js.map +1 -0
  490. package/lib/node_modules/lodash/isPlainObject.js.map +1 -0
  491. package/lib/node_modules/lodash/isSet.js.map +1 -0
  492. package/lib/node_modules/lodash/isString.js.map +1 -0
  493. package/lib/node_modules/lodash/isSymbol.js.map +1 -0
  494. package/lib/node_modules/lodash/isTypedArray.js.map +1 -0
  495. package/lib/node_modules/lodash/isUndefined.js.map +1 -0
  496. package/lib/node_modules/lodash/keys.js.map +1 -0
  497. package/lib/node_modules/lodash/keysIn.js.map +1 -0
  498. package/lib/node_modules/lodash/last.js.map +1 -0
  499. package/lib/node_modules/lodash/map.js.map +1 -0
  500. package/lib/node_modules/lodash/mapValues.js.map +1 -0
  501. package/lib/node_modules/lodash/max.js.map +1 -0
  502. package/lib/node_modules/lodash/memoize.js.map +1 -0
  503. package/lib/node_modules/lodash/merge.js.map +1 -0
  504. package/lib/node_modules/lodash/min.js.map +1 -0
  505. package/lib/node_modules/lodash/minBy.js.map +1 -0
  506. package/lib/node_modules/lodash/noop.js.map +1 -0
  507. package/lib/node_modules/lodash/now.js.map +1 -0
  508. package/lib/node_modules/lodash/pick.js.map +1 -0
  509. package/lib/node_modules/lodash/property.js.map +1 -0
  510. package/lib/node_modules/lodash/range.js.map +1 -0
  511. package/lib/node_modules/lodash/reduce.js.map +1 -0
  512. package/lib/node_modules/lodash/size.js.map +1 -0
  513. package/lib/node_modules/lodash/sortBy.js.map +1 -0
  514. package/lib/node_modules/lodash/stubArray.js.map +1 -0
  515. package/lib/node_modules/lodash/stubFalse.js.map +1 -0
  516. package/lib/node_modules/lodash/toFinite.js.map +1 -0
  517. package/lib/node_modules/lodash/toInteger.js.map +1 -0
  518. package/lib/node_modules/lodash/toNumber.js.map +1 -0
  519. package/lib/node_modules/lodash/toPlainObject.js.map +1 -0
  520. package/lib/node_modules/lodash/toString.js.map +1 -0
  521. package/lib/node_modules/lodash/transform.js.map +1 -0
  522. package/lib/node_modules/lodash/union.js.map +1 -0
  523. package/lib/node_modules/lodash/uniqueId.js.map +1 -0
  524. package/lib/node_modules/lodash/values.js.map +1 -0
  525. package/lib/node_modules/lodash/zipObject.js.map +1 -0
  526. package/lib/node_modules/ml-array-max/lib-es6/index.js +37 -0
  527. package/lib/node_modules/ml-array-max/lib-es6/index.js.map +1 -0
  528. package/lib/node_modules/ml-array-min/lib-es6/index.js +37 -0
  529. package/lib/node_modules/ml-array-min/lib-es6/index.js.map +1 -0
  530. package/lib/node_modules/ml-array-rescale/lib-es6/index.js +52 -0
  531. package/lib/node_modules/ml-array-rescale/lib-es6/index.js.map +1 -0
  532. package/lib/node_modules/ml-matrix/matrix.js +8 -0
  533. package/lib/node_modules/ml-matrix/matrix.js.map +1 -0
  534. package/lib/node_modules/ml-matrix/matrix2.js +5660 -0
  535. package/lib/node_modules/ml-matrix/matrix2.js.map +1 -0
  536. package/lib/node_modules/tslib/tslib.es6.js.map +1 -0
  537. package/lib/registry.js +13 -13
  538. package/lib/runtime/context.d.ts +15 -0
  539. package/lib/runtime/context.js +29 -0
  540. package/lib/runtime/context.js.map +1 -0
  541. package/lib/runtime/supervisor.d.ts +25 -0
  542. package/lib/runtime/supervisor.js +75 -0
  543. package/lib/runtime/supervisor.js.map +1 -0
  544. package/lib/types/data.d.ts +13 -10
  545. package/lib/types/edge-label.d.ts +6 -0
  546. package/lib/types/force.d.ts +1 -2
  547. package/lib/util/common.d.ts +2 -2
  548. package/lib/util/common.js.map +1 -1
  549. package/lib/util/format.js +3 -3
  550. package/lib/util/math.d.ts +3 -3
  551. package/lib/util/math.js +1 -1
  552. package/lib/util/math.js.map +1 -1
  553. package/lib/util/object.d.ts +1 -2
  554. package/lib/util/object.js +3 -6
  555. package/lib/util/object.js.map +1 -1
  556. package/lib/util/order.d.ts +5 -5
  557. package/lib/util/order.js +2 -8
  558. package/lib/util/order.js.map +1 -1
  559. package/lib/util/size.js +1 -1
  560. package/lib/worker.js +462 -463
  561. package/lib/worker.js.map +1 -1
  562. package/package.json +30 -11
  563. package/src/algorithm/antv-dagre/acyclic.ts +70 -0
  564. package/src/algorithm/antv-dagre/add-border-segments.ts +55 -0
  565. package/src/algorithm/antv-dagre/coordinate-system.ts +77 -0
  566. package/src/algorithm/antv-dagre/graph.ts +533 -0
  567. package/src/algorithm/antv-dagre/greedy-fas.ts +185 -0
  568. package/src/algorithm/antv-dagre/index.ts +619 -0
  569. package/src/algorithm/antv-dagre/layout.ts +622 -0
  570. package/src/algorithm/antv-dagre/nesting-graph.ts +184 -0
  571. package/src/algorithm/antv-dagre/normalize.ts +125 -0
  572. package/src/algorithm/antv-dagre/order/add-subgraph-constraints.ts +51 -0
  573. package/src/algorithm/antv-dagre/order/barycenter.ts +26 -0
  574. package/src/algorithm/antv-dagre/order/build-layer-graph.ts +109 -0
  575. package/src/algorithm/antv-dagre/order/cross-count.ts +76 -0
  576. package/src/algorithm/antv-dagre/order/index.ts +123 -0
  577. package/src/algorithm/antv-dagre/order/init-data-order.ts +29 -0
  578. package/src/algorithm/antv-dagre/order/init-order.ts +59 -0
  579. package/src/algorithm/antv-dagre/order/resolve-conflicts.ts +153 -0
  580. package/src/algorithm/antv-dagre/order/sort-subgraph.ts +111 -0
  581. package/src/algorithm/antv-dagre/order/sort.ts +94 -0
  582. package/src/algorithm/antv-dagre/parent-dummy-chains.ts +111 -0
  583. package/src/algorithm/antv-dagre/position/bk.ts +560 -0
  584. package/src/algorithm/antv-dagre/position/index.ts +109 -0
  585. package/src/algorithm/antv-dagre/rank/feasible-tree.ts +179 -0
  586. package/src/algorithm/antv-dagre/rank/network-simplex.ts +282 -0
  587. package/src/algorithm/antv-dagre/rank/util.ts +157 -0
  588. package/src/algorithm/antv-dagre/types.ts +197 -0
  589. package/src/algorithm/antv-dagre/util.ts +359 -0
  590. package/src/algorithm/base-layout.ts +137 -0
  591. package/src/algorithm/base-simulation.ts +94 -0
  592. package/src/algorithm/circular/index.ts +123 -0
  593. package/src/algorithm/circular/types.ts +105 -0
  594. package/src/algorithm/combo-combined/index.ts +412 -0
  595. package/src/algorithm/combo-combined/types.ts +39 -0
  596. package/src/algorithm/concentric/index.ts +234 -0
  597. package/src/algorithm/concentric/types.ts +89 -0
  598. package/src/algorithm/d3-force/force-in-a-box.ts +404 -0
  599. package/src/algorithm/d3-force/index.ts +592 -0
  600. package/src/algorithm/d3-force/types.ts +378 -0
  601. package/src/algorithm/dagre/index.ts +172 -0
  602. package/src/algorithm/dagre/types.ts +84 -0
  603. package/src/algorithm/force/attractive.ts +71 -0
  604. package/src/algorithm/force/centripetal.ts +133 -0
  605. package/src/algorithm/force/collide.ts +219 -0
  606. package/src/algorithm/force/gravity.ts +61 -0
  607. package/src/algorithm/force/index.ts +541 -0
  608. package/src/algorithm/force/repulsive.ts +200 -0
  609. package/src/algorithm/force/simulation.ts +172 -0
  610. package/src/algorithm/force/types.ts +265 -0
  611. package/src/algorithm/force-atlas2/index.ts +189 -0
  612. package/src/algorithm/force-atlas2/quad.ts +117 -0
  613. package/src/algorithm/force-atlas2/simulation.ts +445 -0
  614. package/src/algorithm/force-atlas2/types.ts +106 -0
  615. package/src/algorithm/fruchterman/index.ts +116 -0
  616. package/src/algorithm/fruchterman/simulation.ts +447 -0
  617. package/src/algorithm/fruchterman/types.ts +47 -0
  618. package/src/algorithm/grid/index.ts +305 -0
  619. package/src/algorithm/grid/types.ts +120 -0
  620. package/src/algorithm/index.ts +29 -0
  621. package/src/algorithm/mds/index.ts +143 -0
  622. package/src/algorithm/mds/types.ts +23 -0
  623. package/src/algorithm/radial/index.ts +346 -0
  624. package/src/algorithm/radial/radial-nonoverlap-force.ts +210 -0
  625. package/src/algorithm/radial/types.ts +100 -0
  626. package/src/algorithm/random/index.ts +41 -0
  627. package/src/algorithm/random/types.ts +8 -0
  628. package/src/algorithm/types.ts +172 -0
  629. package/src/index.ts +3 -25
  630. package/src/model/data.ts +381 -0
  631. package/src/model/index.ts +1 -0
  632. package/src/registry.ts +13 -13
  633. package/src/runtime/context.ts +49 -0
  634. package/src/runtime/index.ts +2 -0
  635. package/src/runtime/supervisor.ts +80 -0
  636. package/src/types/data.ts +20 -13
  637. package/src/types/edge-label.ts +5 -0
  638. package/src/types/force.ts +2 -2
  639. package/src/types/index.ts +1 -0
  640. package/src/util/common.ts +2 -2
  641. package/src/util/index.ts +0 -1
  642. package/src/util/math.ts +3 -3
  643. package/src/util/object.ts +0 -4
  644. package/src/util/order.ts +13 -20
  645. package/src/worker.ts +2 -2
  646. package/lib/antv-dagre/acyclic.js.map +0 -1
  647. package/lib/antv-dagre/add-border-segments.js.map +0 -1
  648. package/lib/antv-dagre/coordinate-system.js.map +0 -1
  649. package/lib/antv-dagre/data/list.js.map +0 -1
  650. package/lib/antv-dagre/graph.js.map +0 -1
  651. package/lib/antv-dagre/greedy-fas.js.map +0 -1
  652. package/lib/antv-dagre/index.d.ts +0 -15
  653. package/lib/antv-dagre/index.js +0 -337
  654. package/lib/antv-dagre/index.js.map +0 -1
  655. package/lib/antv-dagre/layout.js +0 -471
  656. package/lib/antv-dagre/layout.js.map +0 -1
  657. package/lib/antv-dagre/nesting-graph.js.map +0 -1
  658. package/lib/antv-dagre/normalize.js.map +0 -1
  659. package/lib/antv-dagre/order/add-subgraph-constraints.js.map +0 -1
  660. package/lib/antv-dagre/order/barycenter.js.map +0 -1
  661. package/lib/antv-dagre/order/build-layer-graph.js.map +0 -1
  662. package/lib/antv-dagre/order/cross-count.js.map +0 -1
  663. package/lib/antv-dagre/order/index.js +0 -94
  664. package/lib/antv-dagre/order/index.js.map +0 -1
  665. package/lib/antv-dagre/order/init-data-order.js.map +0 -1
  666. package/lib/antv-dagre/order/init-order.js.map +0 -1
  667. package/lib/antv-dagre/order/resolve-conflicts.js.map +0 -1
  668. package/lib/antv-dagre/order/sort-subgraph.js.map +0 -1
  669. package/lib/antv-dagre/order/sort.js.map +0 -1
  670. package/lib/antv-dagre/parent-dummy-chains.js.map +0 -1
  671. package/lib/antv-dagre/position/bk.js.map +0 -1
  672. package/lib/antv-dagre/position/index.js.map +0 -1
  673. package/lib/antv-dagre/rank/feasible-tree.js.map +0 -1
  674. package/lib/antv-dagre/rank/index.js.map +0 -1
  675. package/lib/antv-dagre/rank/network-simplex.js.map +0 -1
  676. package/lib/antv-dagre/rank/util.js.map +0 -1
  677. package/lib/antv-dagre/types.d.ts +0 -170
  678. package/lib/antv-dagre/util.js +0 -265
  679. package/lib/antv-dagre/util.js.map +0 -1
  680. package/lib/circular/index.d.ts +0 -15
  681. package/lib/circular/index.js +0 -108
  682. package/lib/circular/index.js.map +0 -1
  683. package/lib/circular/types.d.ts +0 -105
  684. package/lib/combo-combined/index.d.ts +0 -33
  685. package/lib/combo-combined/index.js +0 -303
  686. package/lib/combo-combined/index.js.map +0 -1
  687. package/lib/combo-combined/types.d.ts +0 -37
  688. package/lib/concentric/index.d.ts +0 -15
  689. package/lib/concentric/index.js +0 -192
  690. package/lib/concentric/index.js.map +0 -1
  691. package/lib/concentric/types.d.ts +0 -92
  692. package/lib/core/base-layout.d.ts +0 -40
  693. package/lib/core/base-layout.js +0 -88
  694. package/lib/core/base-layout.js.map +0 -1
  695. package/lib/core/base-simulation.d.ts +0 -43
  696. package/lib/core/base-simulation.js +0 -75
  697. package/lib/core/base-simulation.js.map +0 -1
  698. package/lib/core/types.d.ts +0 -89
  699. package/lib/d3-force/force-in-a-box.js +0 -343
  700. package/lib/d3-force/force-in-a-box.js.map +0 -1
  701. package/lib/d3-force/index.d.ts +0 -53
  702. package/lib/d3-force/index.js +0 -552
  703. package/lib/d3-force/index.js.map +0 -1
  704. package/lib/d3-force/types.d.ts +0 -336
  705. package/lib/d3-force-3d/index.js +0 -73
  706. package/lib/d3-force-3d/index.js.map +0 -1
  707. package/lib/dagre/index.d.ts +0 -22
  708. package/lib/dagre/index.js +0 -142
  709. package/lib/dagre/index.js.map +0 -1
  710. package/lib/dagre/types.d.ts +0 -79
  711. package/lib/force/attractive.js.map +0 -1
  712. package/lib/force/centripetal.js +0 -87
  713. package/lib/force/centripetal.js.map +0 -1
  714. package/lib/force/collide.js +0 -172
  715. package/lib/force/collide.js.map +0 -1
  716. package/lib/force/gravity.js.map +0 -1
  717. package/lib/force/index.d.ts +0 -87
  718. package/lib/force/index.js +0 -450
  719. package/lib/force/index.js.map +0 -1
  720. package/lib/force/repulsive.js +0 -142
  721. package/lib/force/repulsive.js.map +0 -1
  722. package/lib/force/simulation.d.ts +0 -23
  723. package/lib/force/simulation.js +0 -137
  724. package/lib/force/simulation.js.map +0 -1
  725. package/lib/force/types.d.ts +0 -252
  726. package/lib/force-atlas2/body.js.map +0 -1
  727. package/lib/force-atlas2/index.d.ts +0 -22
  728. package/lib/force-atlas2/index.js +0 -155
  729. package/lib/force-atlas2/index.js.map +0 -1
  730. package/lib/force-atlas2/quad-tree.js.map +0 -1
  731. package/lib/force-atlas2/quad.js.map +0 -1
  732. package/lib/force-atlas2/simulation.d.ts +0 -39
  733. package/lib/force-atlas2/simulation.js +0 -388
  734. package/lib/force-atlas2/simulation.js.map +0 -1
  735. package/lib/force-atlas2/types.d.ts +0 -109
  736. package/lib/fruchterman/index.d.ts +0 -20
  737. package/lib/fruchterman/index.js +0 -93
  738. package/lib/fruchterman/index.js.map +0 -1
  739. package/lib/fruchterman/simulation.js +0 -356
  740. package/lib/fruchterman/simulation.js.map +0 -1
  741. package/lib/fruchterman/types.d.ts +0 -48
  742. package/lib/grid/index.d.ts +0 -16
  743. package/lib/grid/index.js +0 -243
  744. package/lib/grid/index.js.map +0 -1
  745. package/lib/grid/types.d.ts +0 -85
  746. package/lib/mds/index.d.ts +0 -15
  747. package/lib/mds/index.js +0 -127
  748. package/lib/mds/index.js.map +0 -1
  749. package/lib/mds/types.d.ts +0 -25
  750. package/lib/node_modules/.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv/event-emitter/esm/index.js.map +0 -1
  751. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/clone.js.map +0 -1
  752. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/deep-mix.js.map +0 -1
  753. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/each.js.map +0 -1
  754. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get-type.js.map +0 -1
  755. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get.js.map +0 -1
  756. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array-like.js.map +0 -1
  757. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array.js.map +0 -1
  758. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-boolean.js.map +0 -1
  759. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-empty.js.map +0 -1
  760. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-function.js.map +0 -1
  761. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-nil.js.map +0 -1
  762. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-number.js.map +0 -1
  763. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object-like.js.map +0 -1
  764. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object.js.map +0 -1
  765. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-plain-object.js.map +0 -1
  766. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-prototype.js.map +0 -1
  767. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-string.js.map +0 -1
  768. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-type.js.map +0 -1
  769. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/pick.js.map +0 -1
  770. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/set.js.map +0 -1
  771. 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
  772. package/lib/node_modules/.pnpm/comlink@4.4.2/node_modules/comlink/dist/esm/comlink.js.map +0 -1
  773. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/add.js.map +0 -1
  774. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/binarytree.js.map +0 -1
  775. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/cover.js.map +0 -1
  776. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/data.js.map +0 -1
  777. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/extent.js.map +0 -1
  778. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/find.js.map +0 -1
  779. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/half.js.map +0 -1
  780. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/remove.js.map +0 -1
  781. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/root.js.map +0 -1
  782. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/size.js.map +0 -1
  783. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visit.js.map +0 -1
  784. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visitAfter.js.map +0 -1
  785. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/x.js.map +0 -1
  786. package/lib/node_modules/.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch/src/dispatch.js.map +0 -1
  787. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/center.js.map +0 -1
  788. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js +0 -135
  789. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js.map +0 -1
  790. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/constant.js.map +0 -1
  791. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/jiggle.js.map +0 -1
  792. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/lcg.js.map +0 -1
  793. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/link.js.map +0 -1
  794. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js +0 -142
  795. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js.map +0 -1
  796. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/radial.js.map +0 -1
  797. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js +0 -202
  798. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js.map +0 -1
  799. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/x.js.map +0 -1
  800. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/y.js.map +0 -1
  801. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/z.js.map +0 -1
  802. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/center.js.map +0 -1
  803. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js +0 -103
  804. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js.map +0 -1
  805. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/constant.js.map +0 -1
  806. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/jiggle.js.map +0 -1
  807. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/lcg.js.map +0 -1
  808. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/link.js.map +0 -1
  809. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js +0 -119
  810. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js.map +0 -1
  811. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/radial.js.map +0 -1
  812. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js +0 -159
  813. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js.map +0 -1
  814. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/x.js.map +0 -1
  815. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/y.js.map +0 -1
  816. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/add.js.map +0 -1
  817. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/cover.js.map +0 -1
  818. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/data.js.map +0 -1
  819. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/extent.js.map +0 -1
  820. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/find.js.map +0 -1
  821. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/findAll.js.map +0 -1
  822. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octant.js.map +0 -1
  823. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octree.js.map +0 -1
  824. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/remove.js.map +0 -1
  825. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/root.js.map +0 -1
  826. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/size.js.map +0 -1
  827. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visit.js.map +0 -1
  828. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visitAfter.js.map +0 -1
  829. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/x.js.map +0 -1
  830. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/y.js.map +0 -1
  831. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/z.js.map +0 -1
  832. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/add.js.map +0 -1
  833. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/cover.js.map +0 -1
  834. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/data.js.map +0 -1
  835. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/extent.js.map +0 -1
  836. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/find.js.map +0 -1
  837. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quad.js.map +0 -1
  838. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quadtree.js.map +0 -1
  839. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/remove.js.map +0 -1
  840. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/root.js.map +0 -1
  841. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/size.js.map +0 -1
  842. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visit.js.map +0 -1
  843. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visitAfter.js.map +0 -1
  844. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/x.js.map +0 -1
  845. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/y.js.map +0 -1
  846. package/lib/node_modules/.pnpm/d3-timer@3.0.1/node_modules/d3-timer/src/timer.js.map +0 -1
  847. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/index.js.map +0 -1
  848. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/acyclic.js.map +0 -1
  849. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/add-border-segments.js.map +0 -1
  850. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/coordinate-system.js.map +0 -1
  851. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/data/list.js.map +0 -1
  852. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/debug.js.map +0 -1
  853. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js +0 -31
  854. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js.map +0 -1
  855. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/greedy-fas.js.map +0 -1
  856. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/layout.js.map +0 -1
  857. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js +0 -83
  858. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js.map +0 -1
  859. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/nesting-graph.js.map +0 -1
  860. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/normalize.js.map +0 -1
  861. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/add-subgraph-constraints.js.map +0 -1
  862. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/barycenter.js.map +0 -1
  863. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/build-layer-graph.js.map +0 -1
  864. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/cross-count.js.map +0 -1
  865. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/index.js.map +0 -1
  866. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/init-order.js.map +0 -1
  867. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/resolve-conflicts.js.map +0 -1
  868. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort-subgraph.js.map +0 -1
  869. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort.js.map +0 -1
  870. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/parent-dummy-chains.js.map +0 -1
  871. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/bk.js.map +0 -1
  872. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/index.js.map +0 -1
  873. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/feasible-tree.js.map +0 -1
  874. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/index.js.map +0 -1
  875. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/network-simplex.js.map +0 -1
  876. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/util.js.map +0 -1
  877. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/util.js.map +0 -1
  878. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/version.js.map +0 -1
  879. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/index.js.map +0 -1
  880. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/components.js.map +0 -1
  881. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dfs.js.map +0 -1
  882. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra-all.js.map +0 -1
  883. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra.js.map +0 -1
  884. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/find-cycles.js.map +0 -1
  885. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/floyd-warshall.js.map +0 -1
  886. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/index.js.map +0 -1
  887. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/is-acyclic.js.map +0 -1
  888. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/postorder.js.map +0 -1
  889. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/preorder.js.map +0 -1
  890. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/prim.js.map +0 -1
  891. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/tarjan.js.map +0 -1
  892. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/topsort.js.map +0 -1
  893. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/data/priority-queue.js.map +0 -1
  894. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/graph.js.map +0 -1
  895. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/index.js.map +0 -1
  896. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/json.js.map +0 -1
  897. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js +0 -63
  898. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js.map +0 -1
  899. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/version.js.map +0 -1
  900. package/lib/node_modules/.pnpm/is-any-array@2.0.1/node_modules/is-any-array/lib-esm/index.js.map +0 -1
  901. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_DataView.js.map +0 -1
  902. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Hash.js.map +0 -1
  903. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_ListCache.js.map +0 -1
  904. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Map.js.map +0 -1
  905. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_MapCache.js.map +0 -1
  906. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Promise.js.map +0 -1
  907. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Set.js.map +0 -1
  908. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_SetCache.js.map +0 -1
  909. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Stack.js.map +0 -1
  910. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Symbol.js.map +0 -1
  911. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Uint8Array.js.map +0 -1
  912. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_WeakMap.js.map +0 -1
  913. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_apply.js.map +0 -1
  914. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayEach.js.map +0 -1
  915. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayFilter.js.map +0 -1
  916. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludes.js.map +0 -1
  917. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludesWith.js.map +0 -1
  918. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayLikeKeys.js.map +0 -1
  919. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayMap.js.map +0 -1
  920. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayPush.js.map +0 -1
  921. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayReduce.js.map +0 -1
  922. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arraySome.js.map +0 -1
  923. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_asciiSize.js.map +0 -1
  924. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignMergeValue.js.map +0 -1
  925. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignValue.js.map +0 -1
  926. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assocIndexOf.js.map +0 -1
  927. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssign.js.map +0 -1
  928. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignIn.js.map +0 -1
  929. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignValue.js.map +0 -1
  930. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseClone.js.map +0 -1
  931. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseCreate.js.map +0 -1
  932. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseEach.js.map +0 -1
  933. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseExtremum.js.map +0 -1
  934. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFilter.js.map +0 -1
  935. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFindIndex.js.map +0 -1
  936. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFlatten.js.map +0 -1
  937. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFor.js.map +0 -1
  938. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseForOwn.js.map +0 -1
  939. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGet.js.map +0 -1
  940. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetAllKeys.js.map +0 -1
  941. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetTag.js.map +0 -1
  942. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGt.js.map +0 -1
  943. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js.map +0 -1
  944. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHasIn.js.map +0 -1
  945. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIndexOf.js.map +0 -1
  946. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsArguments.js.map +0 -1
  947. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqual.js.map +0 -1
  948. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqualDeep.js.map +0 -1
  949. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMap.js.map +0 -1
  950. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMatch.js.map +0 -1
  951. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNaN.js.map +0 -1
  952. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNative.js.map +0 -1
  953. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsSet.js.map +0 -1
  954. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsTypedArray.js.map +0 -1
  955. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIteratee.js.map +0 -1
  956. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeys.js.map +0 -1
  957. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeysIn.js.map +0 -1
  958. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseLt.js.map +0 -1
  959. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMap.js.map +0 -1
  960. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatches.js.map +0 -1
  961. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatchesProperty.js.map +0 -1
  962. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMerge.js.map +0 -1
  963. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMergeDeep.js.map +0 -1
  964. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js.map +0 -1
  965. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js.map +0 -1
  966. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePickBy.js.map +0 -1
  967. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseProperty.js.map +0 -1
  968. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyDeep.js.map +0 -1
  969. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRange.js.map +0 -1
  970. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseReduce.js.map +0 -1
  971. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRest.js.map +0 -1
  972. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSet.js.map +0 -1
  973. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSetToString.js.map +0 -1
  974. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js.map +0 -1
  975. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTimes.js.map +0 -1
  976. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseToString.js.map +0 -1
  977. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTrim.js.map +0 -1
  978. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUnary.js.map +0 -1
  979. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUniq.js.map +0 -1
  980. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseValues.js.map +0 -1
  981. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseZipObject.js.map +0 -1
  982. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cacheHas.js.map +0 -1
  983. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castFunction.js.map +0 -1
  984. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castPath.js.map +0 -1
  985. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneArrayBuffer.js.map +0 -1
  986. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js +0 -52
  987. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js.map +0 -1
  988. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneDataView.js.map +0 -1
  989. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneRegExp.js.map +0 -1
  990. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneSymbol.js.map +0 -1
  991. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneTypedArray.js.map +0 -1
  992. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js.map +0 -1
  993. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js.map +0 -1
  994. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyArray.js.map +0 -1
  995. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyObject.js.map +0 -1
  996. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbols.js.map +0 -1
  997. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbolsIn.js.map +0 -1
  998. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_coreJsData.js.map +0 -1
  999. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createAssigner.js.map +0 -1
  1000. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseEach.js.map +0 -1
  1001. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseFor.js.map +0 -1
  1002. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createFind.js.map +0 -1
  1003. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createRange.js.map +0 -1
  1004. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createSet.js.map +0 -1
  1005. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_defineProperty.js.map +0 -1
  1006. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalArrays.js.map +0 -1
  1007. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalByTag.js.map +0 -1
  1008. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalObjects.js.map +0 -1
  1009. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_flatRest.js.map +0 -1
  1010. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js +0 -18
  1011. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js.map +0 -1
  1012. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeys.js.map +0 -1
  1013. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeysIn.js.map +0 -1
  1014. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMapData.js.map +0 -1
  1015. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMatchData.js.map +0 -1
  1016. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getNative.js.map +0 -1
  1017. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getPrototype.js.map +0 -1
  1018. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getRawTag.js.map +0 -1
  1019. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbols.js.map +0 -1
  1020. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbolsIn.js.map +0 -1
  1021. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getTag.js.map +0 -1
  1022. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getValue.js.map +0 -1
  1023. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasPath.js.map +0 -1
  1024. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasUnicode.js.map +0 -1
  1025. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashClear.js.map +0 -1
  1026. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashDelete.js.map +0 -1
  1027. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashGet.js.map +0 -1
  1028. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashHas.js.map +0 -1
  1029. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashSet.js.map +0 -1
  1030. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneArray.js.map +0 -1
  1031. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneByTag.js.map +0 -1
  1032. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneObject.js.map +0 -1
  1033. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isFlattenable.js.map +0 -1
  1034. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIndex.js.map +0 -1
  1035. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIterateeCall.js.map +0 -1
  1036. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKey.js.map +0 -1
  1037. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKeyable.js.map +0 -1
  1038. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isMasked.js.map +0 -1
  1039. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isPrototype.js.map +0 -1
  1040. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isStrictComparable.js.map +0 -1
  1041. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheClear.js.map +0 -1
  1042. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheDelete.js.map +0 -1
  1043. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheGet.js.map +0 -1
  1044. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheHas.js.map +0 -1
  1045. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheSet.js.map +0 -1
  1046. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheClear.js.map +0 -1
  1047. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheDelete.js.map +0 -1
  1048. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheGet.js.map +0 -1
  1049. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheHas.js.map +0 -1
  1050. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheSet.js.map +0 -1
  1051. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapToArray.js.map +0 -1
  1052. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_matchesStrictComparable.js.map +0 -1
  1053. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_memoizeCapped.js.map +0 -1
  1054. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeCreate.js.map +0 -1
  1055. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeys.js.map +0 -1
  1056. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeysIn.js.map +0 -1
  1057. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js +0 -47
  1058. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js.map +0 -1
  1059. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_objectToString.js.map +0 -1
  1060. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overArg.js.map +0 -1
  1061. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overRest.js.map +0 -1
  1062. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_root.js.map +0 -1
  1063. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_safeGet.js.map +0 -1
  1064. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheAdd.js.map +0 -1
  1065. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheHas.js.map +0 -1
  1066. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToArray.js.map +0 -1
  1067. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToString.js.map +0 -1
  1068. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_shortOut.js.map +0 -1
  1069. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackClear.js.map +0 -1
  1070. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackDelete.js.map +0 -1
  1071. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackGet.js.map +0 -1
  1072. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackHas.js.map +0 -1
  1073. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackSet.js.map +0 -1
  1074. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_strictIndexOf.js.map +0 -1
  1075. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringSize.js.map +0 -1
  1076. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringToPath.js.map +0 -1
  1077. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toKey.js.map +0 -1
  1078. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toSource.js.map +0 -1
  1079. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_trimmedEndIndex.js.map +0 -1
  1080. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_unicodeSize.js.map +0 -1
  1081. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/clone.js.map +0 -1
  1082. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/cloneDeep.js.map +0 -1
  1083. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/constant.js.map +0 -1
  1084. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/defaults.js.map +0 -1
  1085. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/each.js.map +0 -1
  1086. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/eq.js.map +0 -1
  1087. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/filter.js.map +0 -1
  1088. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/find.js.map +0 -1
  1089. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/findIndex.js.map +0 -1
  1090. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/flatten.js.map +0 -1
  1091. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forEach.js.map +0 -1
  1092. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forIn.js.map +0 -1
  1093. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/get.js.map +0 -1
  1094. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js.map +0 -1
  1095. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/hasIn.js.map +0 -1
  1096. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/identity.js.map +0 -1
  1097. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArguments.js.map +0 -1
  1098. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArray.js.map +0 -1
  1099. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLike.js.map +0 -1
  1100. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLikeObject.js.map +0 -1
  1101. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js +0 -56
  1102. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js.map +0 -1
  1103. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js.map +0 -1
  1104. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isFunction.js.map +0 -1
  1105. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isLength.js.map +0 -1
  1106. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isMap.js.map +0 -1
  1107. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObject.js.map +0 -1
  1108. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObjectLike.js.map +0 -1
  1109. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isPlainObject.js.map +0 -1
  1110. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSet.js.map +0 -1
  1111. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isString.js.map +0 -1
  1112. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSymbol.js.map +0 -1
  1113. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isTypedArray.js.map +0 -1
  1114. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js.map +0 -1
  1115. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keys.js.map +0 -1
  1116. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keysIn.js.map +0 -1
  1117. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/last.js.map +0 -1
  1118. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/map.js.map +0 -1
  1119. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js.map +0 -1
  1120. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/max.js.map +0 -1
  1121. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/memoize.js.map +0 -1
  1122. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/merge.js.map +0 -1
  1123. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/min.js.map +0 -1
  1124. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/minBy.js.map +0 -1
  1125. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/noop.js.map +0 -1
  1126. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/now.js.map +0 -1
  1127. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js.map +0 -1
  1128. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/property.js.map +0 -1
  1129. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/range.js.map +0 -1
  1130. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/reduce.js.map +0 -1
  1131. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/size.js.map +0 -1
  1132. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/sortBy.js.map +0 -1
  1133. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubArray.js.map +0 -1
  1134. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubFalse.js.map +0 -1
  1135. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toFinite.js.map +0 -1
  1136. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toInteger.js.map +0 -1
  1137. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toNumber.js.map +0 -1
  1138. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toPlainObject.js.map +0 -1
  1139. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toString.js.map +0 -1
  1140. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/transform.js.map +0 -1
  1141. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/union.js.map +0 -1
  1142. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/uniqueId.js.map +0 -1
  1143. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/values.js.map +0 -1
  1144. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/zipObject.js.map +0 -1
  1145. package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js +0 -37
  1146. package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js.map +0 -1
  1147. package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js +0 -37
  1148. package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js.map +0 -1
  1149. package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js +0 -52
  1150. package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js.map +0 -1
  1151. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js +0 -8
  1152. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js.map +0 -1
  1153. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js +0 -5660
  1154. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js.map +0 -1
  1155. package/lib/radial/index.d.ts +0 -16
  1156. package/lib/radial/index.js +0 -275
  1157. package/lib/radial/index.js.map +0 -1
  1158. package/lib/radial/radial-nonoverlap-force.js +0 -129
  1159. package/lib/radial/radial-nonoverlap-force.js.map +0 -1
  1160. package/lib/radial/types.d.ts +0 -103
  1161. package/lib/random/index.d.ts +0 -15
  1162. package/lib/random/index.js +0 -36
  1163. package/lib/random/index.js.map +0 -1
  1164. package/lib/random/types.d.ts +0 -11
  1165. package/lib/supervisor.d.ts +0 -25
  1166. package/lib/supervisor.js +0 -71
  1167. package/lib/supervisor.js.map +0 -1
  1168. package/lib/util/model.d.ts +0 -45
  1169. package/lib/util/model.js +0 -273
  1170. package/lib/util/model.js.map +0 -1
  1171. package/src/antv-dagre/acyclic.ts +0 -70
  1172. package/src/antv-dagre/add-border-segments.ts +0 -55
  1173. package/src/antv-dagre/coordinate-system.ts +0 -77
  1174. package/src/antv-dagre/graph.ts +0 -533
  1175. package/src/antv-dagre/greedy-fas.ts +0 -185
  1176. package/src/antv-dagre/index.ts +0 -620
  1177. package/src/antv-dagre/layout.ts +0 -622
  1178. package/src/antv-dagre/nesting-graph.ts +0 -184
  1179. package/src/antv-dagre/normalize.ts +0 -125
  1180. package/src/antv-dagre/order/add-subgraph-constraints.ts +0 -51
  1181. package/src/antv-dagre/order/barycenter.ts +0 -26
  1182. package/src/antv-dagre/order/build-layer-graph.ts +0 -109
  1183. package/src/antv-dagre/order/cross-count.ts +0 -76
  1184. package/src/antv-dagre/order/index.ts +0 -123
  1185. package/src/antv-dagre/order/init-data-order.ts +0 -29
  1186. package/src/antv-dagre/order/init-order.ts +0 -59
  1187. package/src/antv-dagre/order/resolve-conflicts.ts +0 -153
  1188. package/src/antv-dagre/order/sort-subgraph.ts +0 -111
  1189. package/src/antv-dagre/order/sort.ts +0 -94
  1190. package/src/antv-dagre/parent-dummy-chains.ts +0 -111
  1191. package/src/antv-dagre/position/bk.ts +0 -560
  1192. package/src/antv-dagre/position/index.ts +0 -109
  1193. package/src/antv-dagre/rank/feasible-tree.ts +0 -179
  1194. package/src/antv-dagre/rank/network-simplex.ts +0 -282
  1195. package/src/antv-dagre/rank/util.ts +0 -157
  1196. package/src/antv-dagre/types.ts +0 -175
  1197. package/src/antv-dagre/util.ts +0 -359
  1198. package/src/circular/index.ts +0 -123
  1199. package/src/circular/types.ts +0 -105
  1200. package/src/combo-combined/index.ts +0 -412
  1201. package/src/combo-combined/types.ts +0 -39
  1202. package/src/concentric/index.ts +0 -234
  1203. package/src/concentric/types.ts +0 -89
  1204. package/src/core/base-layout.ts +0 -126
  1205. package/src/core/base-simulation.ts +0 -115
  1206. package/src/core/types.ts +0 -145
  1207. package/src/d3-force/force-in-a-box.ts +0 -404
  1208. package/src/d3-force/index.ts +0 -642
  1209. package/src/d3-force/types.ts +0 -378
  1210. package/src/dagre/index.ts +0 -172
  1211. package/src/dagre/types.ts +0 -85
  1212. package/src/force/attractive.ts +0 -71
  1213. package/src/force/centripetal.ts +0 -133
  1214. package/src/force/collide.ts +0 -219
  1215. package/src/force/gravity.ts +0 -61
  1216. package/src/force/index.ts +0 -539
  1217. package/src/force/repulsive.ts +0 -200
  1218. package/src/force/simulation.ts +0 -172
  1219. package/src/force/types.ts +0 -265
  1220. package/src/force-atlas2/index.ts +0 -188
  1221. package/src/force-atlas2/quad.ts +0 -117
  1222. package/src/force-atlas2/simulation.ts +0 -445
  1223. package/src/force-atlas2/types.ts +0 -106
  1224. package/src/fruchterman/index.ts +0 -116
  1225. package/src/fruchterman/simulation.ts +0 -447
  1226. package/src/fruchterman/types.ts +0 -47
  1227. package/src/grid/index.ts +0 -305
  1228. package/src/grid/types.ts +0 -120
  1229. package/src/mds/index.ts +0 -143
  1230. package/src/mds/types.ts +0 -23
  1231. package/src/radial/index.ts +0 -345
  1232. package/src/radial/radial-nonoverlap-force.ts +0 -209
  1233. package/src/radial/types.ts +0 -100
  1234. package/src/random/index.ts +0 -35
  1235. package/src/random/types.ts +0 -8
  1236. package/src/supervisor.ts +0 -77
  1237. package/src/util/model.ts +0 -372
  1238. /package/lib/{antv-dagre → algorithm/antv-dagre}/acyclic.js +0 -0
  1239. /package/lib/{antv-dagre → algorithm/antv-dagre}/add-border-segments.js +0 -0
  1240. /package/lib/{antv-dagre → algorithm/antv-dagre}/coordinate-system.js +0 -0
  1241. /package/lib/{antv-dagre → algorithm/antv-dagre}/data/list.js +0 -0
  1242. /package/lib/{antv-dagre → algorithm/antv-dagre}/graph.js +0 -0
  1243. /package/lib/{antv-dagre → algorithm/antv-dagre}/greedy-fas.js +0 -0
  1244. /package/lib/{antv-dagre → algorithm/antv-dagre}/nesting-graph.js +0 -0
  1245. /package/lib/{antv-dagre → algorithm/antv-dagre}/normalize.js +0 -0
  1246. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/add-subgraph-constraints.js +0 -0
  1247. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/barycenter.js +0 -0
  1248. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/build-layer-graph.js +0 -0
  1249. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/cross-count.js +0 -0
  1250. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/init-data-order.js +0 -0
  1251. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/init-order.js +0 -0
  1252. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/resolve-conflicts.js +0 -0
  1253. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/sort-subgraph.js +0 -0
  1254. /package/lib/{antv-dagre → algorithm/antv-dagre}/order/sort.js +0 -0
  1255. /package/lib/{antv-dagre → algorithm/antv-dagre}/parent-dummy-chains.js +0 -0
  1256. /package/lib/{antv-dagre → algorithm/antv-dagre}/position/bk.js +0 -0
  1257. /package/lib/{antv-dagre → algorithm/antv-dagre}/position/index.js +0 -0
  1258. /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/feasible-tree.js +0 -0
  1259. /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/index.js +0 -0
  1260. /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/network-simplex.js +0 -0
  1261. /package/lib/{antv-dagre → algorithm/antv-dagre}/rank/util.js +0 -0
  1262. /package/lib/{d3-force-3d → algorithm/d3-force-3d}/index.d.ts +0 -0
  1263. /package/lib/{d3-force-3d → algorithm/d3-force-3d}/types.d.ts +0 -0
  1264. /package/lib/{force → algorithm/force}/attractive.js +0 -0
  1265. /package/lib/{force → algorithm/force}/gravity.js +0 -0
  1266. /package/lib/{force-atlas2 → algorithm/force-atlas2}/body.js +0 -0
  1267. /package/lib/{force-atlas2 → algorithm/force-atlas2}/quad-tree.js +0 -0
  1268. /package/lib/{force-atlas2 → algorithm/force-atlas2}/quad.js +0 -0
  1269. /package/lib/node_modules/{.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv → @antv}/event-emitter/esm/index.js +0 -0
  1270. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/clone.js +0 -0
  1271. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/deep-mix.js +0 -0
  1272. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/each.js +0 -0
  1273. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/get-type.js +0 -0
  1274. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/get.js +0 -0
  1275. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-array-like.js +0 -0
  1276. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-array.js +0 -0
  1277. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-boolean.js +0 -0
  1278. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-empty.js +0 -0
  1279. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-function.js +0 -0
  1280. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-nil.js +0 -0
  1281. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-number.js +0 -0
  1282. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-object-like.js +0 -0
  1283. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-object.js +0 -0
  1284. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-plain-object.js +0 -0
  1285. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-prototype.js +0 -0
  1286. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-string.js +0 -0
  1287. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/is-type.js +0 -0
  1288. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/pick.js +0 -0
  1289. /package/lib/node_modules/{.pnpm/@antv_util@3.3.11/node_modules/@antv → @antv}/util/esm/lodash/set.js +0 -0
  1290. /package/lib/node_modules/{.pnpm/comlink@4.4.2/node_modules/comlink → comlink}/dist/esm/comlink.js +0 -0
  1291. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/add.js +0 -0
  1292. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/binarytree.js +0 -0
  1293. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/cover.js +0 -0
  1294. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/data.js +0 -0
  1295. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/extent.js +0 -0
  1296. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/find.js +0 -0
  1297. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/half.js +0 -0
  1298. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/remove.js +0 -0
  1299. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/root.js +0 -0
  1300. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/size.js +0 -0
  1301. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/visit.js +0 -0
  1302. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/visitAfter.js +0 -0
  1303. /package/lib/node_modules/{.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree → d3-binarytree}/src/x.js +0 -0
  1304. /package/lib/node_modules/{.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch → d3-dispatch}/src/dispatch.js +0 -0
  1305. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/center.js +0 -0
  1306. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/constant.js +0 -0
  1307. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/jiggle.js +0 -0
  1308. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/lcg.js +0 -0
  1309. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/link.js +0 -0
  1310. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/radial.js +0 -0
  1311. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/x.js +0 -0
  1312. /package/lib/node_modules/{.pnpm/d3-force@3.0.0/node_modules/d3-force → d3-force}/src/y.js +0 -0
  1313. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/center.js +0 -0
  1314. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/constant.js +0 -0
  1315. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/jiggle.js +0 -0
  1316. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/lcg.js +0 -0
  1317. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/link.js +0 -0
  1318. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/radial.js +0 -0
  1319. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/x.js +0 -0
  1320. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/y.js +0 -0
  1321. /package/lib/node_modules/{.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d → d3-force-3d}/src/z.js +0 -0
  1322. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/add.js +0 -0
  1323. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/cover.js +0 -0
  1324. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/data.js +0 -0
  1325. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/extent.js +0 -0
  1326. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/find.js +0 -0
  1327. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/findAll.js +0 -0
  1328. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/octant.js +0 -0
  1329. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/octree.js +0 -0
  1330. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/remove.js +0 -0
  1331. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/root.js +0 -0
  1332. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/size.js +0 -0
  1333. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/visit.js +0 -0
  1334. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/visitAfter.js +0 -0
  1335. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/x.js +0 -0
  1336. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/y.js +0 -0
  1337. /package/lib/node_modules/{.pnpm/d3-octree@1.1.0/node_modules/d3-octree → d3-octree}/src/z.js +0 -0
  1338. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/add.js +0 -0
  1339. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/cover.js +0 -0
  1340. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/data.js +0 -0
  1341. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/extent.js +0 -0
  1342. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/find.js +0 -0
  1343. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/quad.js +0 -0
  1344. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/quadtree.js +0 -0
  1345. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/remove.js +0 -0
  1346. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/root.js +0 -0
  1347. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/size.js +0 -0
  1348. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/visit.js +0 -0
  1349. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/visitAfter.js +0 -0
  1350. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/x.js +0 -0
  1351. /package/lib/node_modules/{.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree → d3-quadtree}/src/y.js +0 -0
  1352. /package/lib/node_modules/{.pnpm/d3-timer@3.0.1/node_modules/d3-timer → d3-timer}/src/timer.js +0 -0
  1353. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/index.js +0 -0
  1354. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/acyclic.js +0 -0
  1355. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/add-border-segments.js +0 -0
  1356. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/coordinate-system.js +0 -0
  1357. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/data/list.js +0 -0
  1358. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/debug.js +0 -0
  1359. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/greedy-fas.js +0 -0
  1360. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/layout.js +0 -0
  1361. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/nesting-graph.js +0 -0
  1362. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/normalize.js +0 -0
  1363. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/add-subgraph-constraints.js +0 -0
  1364. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/barycenter.js +0 -0
  1365. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/build-layer-graph.js +0 -0
  1366. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/cross-count.js +0 -0
  1367. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/index.js +0 -0
  1368. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/init-order.js +0 -0
  1369. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/resolve-conflicts.js +0 -0
  1370. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/sort-subgraph.js +0 -0
  1371. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/order/sort.js +0 -0
  1372. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/parent-dummy-chains.js +0 -0
  1373. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/position/bk.js +0 -0
  1374. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/position/index.js +0 -0
  1375. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/feasible-tree.js +0 -0
  1376. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/index.js +0 -0
  1377. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/network-simplex.js +0 -0
  1378. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/rank/util.js +0 -0
  1379. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/util.js +0 -0
  1380. /package/lib/node_modules/{.pnpm/dagre@0.8.5/node_modules/dagre → dagre}/lib/version.js +0 -0
  1381. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/index.js +0 -0
  1382. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/components.js +0 -0
  1383. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dfs.js +0 -0
  1384. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dijkstra-all.js +0 -0
  1385. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/dijkstra.js +0 -0
  1386. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/find-cycles.js +0 -0
  1387. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/floyd-warshall.js +0 -0
  1388. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/index.js +0 -0
  1389. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/is-acyclic.js +0 -0
  1390. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/postorder.js +0 -0
  1391. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/preorder.js +0 -0
  1392. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/prim.js +0 -0
  1393. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/tarjan.js +0 -0
  1394. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/alg/topsort.js +0 -0
  1395. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/data/priority-queue.js +0 -0
  1396. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/graph.js +0 -0
  1397. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/index.js +0 -0
  1398. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/json.js +0 -0
  1399. /package/lib/node_modules/{.pnpm/graphlib@2.1.8/node_modules/graphlib → graphlib}/lib/version.js +0 -0
  1400. /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
  1401. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_DataView.js +0 -0
  1402. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Hash.js +0 -0
  1403. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_ListCache.js +0 -0
  1404. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Map.js +0 -0
  1405. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_MapCache.js +0 -0
  1406. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Promise.js +0 -0
  1407. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Set.js +0 -0
  1408. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_SetCache.js +0 -0
  1409. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Stack.js +0 -0
  1410. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Symbol.js +0 -0
  1411. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_Uint8Array.js +0 -0
  1412. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_WeakMap.js +0 -0
  1413. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_apply.js +0 -0
  1414. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayEach.js +0 -0
  1415. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayFilter.js +0 -0
  1416. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayIncludes.js +0 -0
  1417. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayIncludesWith.js +0 -0
  1418. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayLikeKeys.js +0 -0
  1419. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayMap.js +0 -0
  1420. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayPush.js +0 -0
  1421. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arrayReduce.js +0 -0
  1422. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_arraySome.js +0 -0
  1423. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_asciiSize.js +0 -0
  1424. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assignMergeValue.js +0 -0
  1425. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assignValue.js +0 -0
  1426. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_assocIndexOf.js +0 -0
  1427. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssign.js +0 -0
  1428. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssignIn.js +0 -0
  1429. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseAssignValue.js +0 -0
  1430. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseClone.js +0 -0
  1431. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseCreate.js +0 -0
  1432. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseEach.js +0 -0
  1433. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseExtremum.js +0 -0
  1434. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFilter.js +0 -0
  1435. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFindIndex.js +0 -0
  1436. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFlatten.js +0 -0
  1437. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseFor.js +0 -0
  1438. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseForOwn.js +0 -0
  1439. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGet.js +0 -0
  1440. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGetAllKeys.js +0 -0
  1441. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGetTag.js +0 -0
  1442. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseGt.js +0 -0
  1443. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseHas.js +0 -0
  1444. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseHasIn.js +0 -0
  1445. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIndexOf.js +0 -0
  1446. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsArguments.js +0 -0
  1447. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsEqual.js +0 -0
  1448. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsEqualDeep.js +0 -0
  1449. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsMap.js +0 -0
  1450. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsMatch.js +0 -0
  1451. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsNaN.js +0 -0
  1452. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsNative.js +0 -0
  1453. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsSet.js +0 -0
  1454. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIsTypedArray.js +0 -0
  1455. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseIteratee.js +0 -0
  1456. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseKeys.js +0 -0
  1457. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseKeysIn.js +0 -0
  1458. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseLt.js +0 -0
  1459. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMap.js +0 -0
  1460. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMatches.js +0 -0
  1461. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMatchesProperty.js +0 -0
  1462. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMerge.js +0 -0
  1463. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseMergeDeep.js +0 -0
  1464. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseOrderBy.js +0 -0
  1465. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePick.js +0 -0
  1466. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePickBy.js +0 -0
  1467. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseProperty.js +0 -0
  1468. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_basePropertyDeep.js +0 -0
  1469. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseRange.js +0 -0
  1470. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseReduce.js +0 -0
  1471. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseRest.js +0 -0
  1472. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSet.js +0 -0
  1473. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSetToString.js +0 -0
  1474. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseSortBy.js +0 -0
  1475. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseTimes.js +0 -0
  1476. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseToString.js +0 -0
  1477. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseTrim.js +0 -0
  1478. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseUnary.js +0 -0
  1479. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseUniq.js +0 -0
  1480. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseValues.js +0 -0
  1481. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_baseZipObject.js +0 -0
  1482. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cacheHas.js +0 -0
  1483. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_castFunction.js +0 -0
  1484. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_castPath.js +0 -0
  1485. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneArrayBuffer.js +0 -0
  1486. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneDataView.js +0 -0
  1487. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneRegExp.js +0 -0
  1488. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneSymbol.js +0 -0
  1489. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_cloneTypedArray.js +0 -0
  1490. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_compareAscending.js +0 -0
  1491. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_compareMultiple.js +0 -0
  1492. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copyArray.js +0 -0
  1493. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copyObject.js +0 -0
  1494. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copySymbols.js +0 -0
  1495. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_copySymbolsIn.js +0 -0
  1496. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_coreJsData.js +0 -0
  1497. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createAssigner.js +0 -0
  1498. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createBaseEach.js +0 -0
  1499. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createBaseFor.js +0 -0
  1500. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createFind.js +0 -0
  1501. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createRange.js +0 -0
  1502. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_createSet.js +0 -0
  1503. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_defineProperty.js +0 -0
  1504. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalArrays.js +0 -0
  1505. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalByTag.js +0 -0
  1506. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_equalObjects.js +0 -0
  1507. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_flatRest.js +0 -0
  1508. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getAllKeys.js +0 -0
  1509. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getAllKeysIn.js +0 -0
  1510. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getMapData.js +0 -0
  1511. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getMatchData.js +0 -0
  1512. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getNative.js +0 -0
  1513. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getPrototype.js +0 -0
  1514. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getRawTag.js +0 -0
  1515. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getSymbols.js +0 -0
  1516. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getSymbolsIn.js +0 -0
  1517. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getTag.js +0 -0
  1518. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_getValue.js +0 -0
  1519. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hasPath.js +0 -0
  1520. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hasUnicode.js +0 -0
  1521. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashClear.js +0 -0
  1522. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashDelete.js +0 -0
  1523. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashGet.js +0 -0
  1524. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashHas.js +0 -0
  1525. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_hashSet.js +0 -0
  1526. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneArray.js +0 -0
  1527. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneByTag.js +0 -0
  1528. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_initCloneObject.js +0 -0
  1529. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isFlattenable.js +0 -0
  1530. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isIndex.js +0 -0
  1531. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isIterateeCall.js +0 -0
  1532. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isKey.js +0 -0
  1533. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isKeyable.js +0 -0
  1534. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isMasked.js +0 -0
  1535. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isPrototype.js +0 -0
  1536. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_isStrictComparable.js +0 -0
  1537. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheClear.js +0 -0
  1538. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheDelete.js +0 -0
  1539. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheGet.js +0 -0
  1540. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheHas.js +0 -0
  1541. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_listCacheSet.js +0 -0
  1542. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheClear.js +0 -0
  1543. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheDelete.js +0 -0
  1544. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheGet.js +0 -0
  1545. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheHas.js +0 -0
  1546. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapCacheSet.js +0 -0
  1547. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_mapToArray.js +0 -0
  1548. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_matchesStrictComparable.js +0 -0
  1549. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_memoizeCapped.js +0 -0
  1550. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeCreate.js +0 -0
  1551. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeKeys.js +0 -0
  1552. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_nativeKeysIn.js +0 -0
  1553. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_objectToString.js +0 -0
  1554. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_overArg.js +0 -0
  1555. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_overRest.js +0 -0
  1556. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_root.js +0 -0
  1557. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_safeGet.js +0 -0
  1558. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setCacheAdd.js +0 -0
  1559. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setCacheHas.js +0 -0
  1560. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setToArray.js +0 -0
  1561. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_setToString.js +0 -0
  1562. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_shortOut.js +0 -0
  1563. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackClear.js +0 -0
  1564. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackDelete.js +0 -0
  1565. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackGet.js +0 -0
  1566. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackHas.js +0 -0
  1567. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stackSet.js +0 -0
  1568. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_strictIndexOf.js +0 -0
  1569. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stringSize.js +0 -0
  1570. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_stringToPath.js +0 -0
  1571. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_toKey.js +0 -0
  1572. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_toSource.js +0 -0
  1573. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_trimmedEndIndex.js +0 -0
  1574. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/_unicodeSize.js +0 -0
  1575. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/clone.js +0 -0
  1576. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/cloneDeep.js +0 -0
  1577. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/constant.js +0 -0
  1578. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/defaults.js +0 -0
  1579. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/each.js +0 -0
  1580. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/eq.js +0 -0
  1581. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/filter.js +0 -0
  1582. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/find.js +0 -0
  1583. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/findIndex.js +0 -0
  1584. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/flatten.js +0 -0
  1585. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/forEach.js +0 -0
  1586. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/forIn.js +0 -0
  1587. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/get.js +0 -0
  1588. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/has.js +0 -0
  1589. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/hasIn.js +0 -0
  1590. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/identity.js +0 -0
  1591. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArguments.js +0 -0
  1592. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArray.js +0 -0
  1593. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArrayLike.js +0 -0
  1594. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isArrayLikeObject.js +0 -0
  1595. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isEmpty.js +0 -0
  1596. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isFunction.js +0 -0
  1597. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isLength.js +0 -0
  1598. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isMap.js +0 -0
  1599. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isObject.js +0 -0
  1600. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isObjectLike.js +0 -0
  1601. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isPlainObject.js +0 -0
  1602. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isSet.js +0 -0
  1603. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isString.js +0 -0
  1604. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isSymbol.js +0 -0
  1605. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isTypedArray.js +0 -0
  1606. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/isUndefined.js +0 -0
  1607. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/keys.js +0 -0
  1608. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/keysIn.js +0 -0
  1609. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/last.js +0 -0
  1610. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/map.js +0 -0
  1611. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/mapValues.js +0 -0
  1612. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/max.js +0 -0
  1613. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/memoize.js +0 -0
  1614. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/merge.js +0 -0
  1615. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/min.js +0 -0
  1616. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/minBy.js +0 -0
  1617. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/noop.js +0 -0
  1618. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/now.js +0 -0
  1619. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/pick.js +0 -0
  1620. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/property.js +0 -0
  1621. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/range.js +0 -0
  1622. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/reduce.js +0 -0
  1623. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/size.js +0 -0
  1624. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/sortBy.js +0 -0
  1625. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/stubArray.js +0 -0
  1626. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/stubFalse.js +0 -0
  1627. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toFinite.js +0 -0
  1628. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toInteger.js +0 -0
  1629. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toNumber.js +0 -0
  1630. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toPlainObject.js +0 -0
  1631. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/toString.js +0 -0
  1632. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/transform.js +0 -0
  1633. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/union.js +0 -0
  1634. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/uniqueId.js +0 -0
  1635. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/values.js +0 -0
  1636. /package/lib/node_modules/{.pnpm/lodash@4.17.21/node_modules/lodash → lodash}/zipObject.js +0 -0
  1637. /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
  1638. /package/src/{antv-dagre → algorithm/antv-dagre}/data/list.ts +0 -0
  1639. /package/src/{antv-dagre → algorithm/antv-dagre}/rank/index.ts +0 -0
  1640. /package/src/{d3-force-3d → algorithm/d3-force-3d}/index.ts +0 -0
  1641. /package/src/{d3-force-3d → algorithm/d3-force-3d}/types.ts +0 -0
  1642. /package/src/{d3-force-3d → algorithm/d3-force-3d}/typing.d.ts +0 -0
  1643. /package/src/{force → algorithm/force}/typing.d.ts +0 -0
  1644. /package/src/{force-atlas2 → algorithm/force-atlas2}/body.ts +0 -0
  1645. /package/src/{force-atlas2 → algorithm/force-atlas2}/quad-tree.ts +0 -0
package/dist/index.js CHANGED
@@ -357,421 +357,6 @@
357
357
  return result;
358
358
  });
359
359
 
360
- /**
361
- * @license
362
- * Copyright 2019 Google LLC
363
- * SPDX-License-Identifier: Apache-2.0
364
- */
365
- const proxyMarker = Symbol("Comlink.proxy");
366
- const createEndpoint = Symbol("Comlink.endpoint");
367
- const releaseProxy = Symbol("Comlink.releaseProxy");
368
- const finalizer = Symbol("Comlink.finalizer");
369
- const throwMarker = Symbol("Comlink.thrown");
370
- const isObject = (val) => (typeof val === "object" && val !== null) || typeof val === "function";
371
- /**
372
- * Internal transfer handle to handle objects marked to proxy.
373
- */
374
- const proxyTransferHandler = {
375
- canHandle: (val) => isObject(val) && val[proxyMarker],
376
- serialize(obj) {
377
- const { port1, port2 } = new MessageChannel();
378
- expose(obj, port1);
379
- return [port2, [port2]];
380
- },
381
- deserialize(port) {
382
- port.start();
383
- return wrap(port);
384
- },
385
- };
386
- /**
387
- * Internal transfer handler to handle thrown exceptions.
388
- */
389
- const throwTransferHandler = {
390
- canHandle: (value) => isObject(value) && throwMarker in value,
391
- serialize({ value }) {
392
- let serialized;
393
- if (value instanceof Error) {
394
- serialized = {
395
- isError: true,
396
- value: {
397
- message: value.message,
398
- name: value.name,
399
- stack: value.stack,
400
- },
401
- };
402
- }
403
- else {
404
- serialized = { isError: false, value };
405
- }
406
- return [serialized, []];
407
- },
408
- deserialize(serialized) {
409
- if (serialized.isError) {
410
- throw Object.assign(new Error(serialized.value.message), serialized.value);
411
- }
412
- throw serialized.value;
413
- },
414
- };
415
- /**
416
- * Allows customizing the serialization of certain values.
417
- */
418
- const transferHandlers = new Map([
419
- ["proxy", proxyTransferHandler],
420
- ["throw", throwTransferHandler],
421
- ]);
422
- function isAllowedOrigin(allowedOrigins, origin) {
423
- for (const allowedOrigin of allowedOrigins) {
424
- if (origin === allowedOrigin || allowedOrigin === "*") {
425
- return true;
426
- }
427
- if (allowedOrigin instanceof RegExp && allowedOrigin.test(origin)) {
428
- return true;
429
- }
430
- }
431
- return false;
432
- }
433
- function expose(obj, ep = globalThis, allowedOrigins = ["*"]) {
434
- ep.addEventListener("message", function callback(ev) {
435
- if (!ev || !ev.data) {
436
- return;
437
- }
438
- if (!isAllowedOrigin(allowedOrigins, ev.origin)) {
439
- console.warn(`Invalid origin '${ev.origin}' for comlink proxy`);
440
- return;
441
- }
442
- const { id, type, path } = Object.assign({ path: [] }, ev.data);
443
- const argumentList = (ev.data.argumentList || []).map(fromWireValue);
444
- let returnValue;
445
- try {
446
- const parent = path.slice(0, -1).reduce((obj, prop) => obj[prop], obj);
447
- const rawValue = path.reduce((obj, prop) => obj[prop], obj);
448
- switch (type) {
449
- case "GET" /* MessageType.GET */:
450
- {
451
- returnValue = rawValue;
452
- }
453
- break;
454
- case "SET" /* MessageType.SET */:
455
- {
456
- parent[path.slice(-1)[0]] = fromWireValue(ev.data.value);
457
- returnValue = true;
458
- }
459
- break;
460
- case "APPLY" /* MessageType.APPLY */:
461
- {
462
- returnValue = rawValue.apply(parent, argumentList);
463
- }
464
- break;
465
- case "CONSTRUCT" /* MessageType.CONSTRUCT */:
466
- {
467
- const value = new rawValue(...argumentList);
468
- returnValue = proxy(value);
469
- }
470
- break;
471
- case "ENDPOINT" /* MessageType.ENDPOINT */:
472
- {
473
- const { port1, port2 } = new MessageChannel();
474
- expose(obj, port2);
475
- returnValue = transfer(port1, [port1]);
476
- }
477
- break;
478
- case "RELEASE" /* MessageType.RELEASE */:
479
- {
480
- returnValue = undefined;
481
- }
482
- break;
483
- default:
484
- return;
485
- }
486
- }
487
- catch (value) {
488
- returnValue = { value, [throwMarker]: 0 };
489
- }
490
- Promise.resolve(returnValue)
491
- .catch((value) => {
492
- return { value, [throwMarker]: 0 };
493
- })
494
- .then((returnValue) => {
495
- const [wireValue, transferables] = toWireValue(returnValue);
496
- ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);
497
- if (type === "RELEASE" /* MessageType.RELEASE */) {
498
- // detach and deactive after sending release response above.
499
- ep.removeEventListener("message", callback);
500
- closeEndPoint(ep);
501
- if (finalizer in obj && typeof obj[finalizer] === "function") {
502
- obj[finalizer]();
503
- }
504
- }
505
- })
506
- .catch((error) => {
507
- // Send Serialization Error To Caller
508
- const [wireValue, transferables] = toWireValue({
509
- value: new TypeError("Unserializable return value"),
510
- [throwMarker]: 0,
511
- });
512
- ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);
513
- });
514
- });
515
- if (ep.start) {
516
- ep.start();
517
- }
518
- }
519
- function isMessagePort(endpoint) {
520
- return endpoint.constructor.name === "MessagePort";
521
- }
522
- function closeEndPoint(endpoint) {
523
- if (isMessagePort(endpoint))
524
- endpoint.close();
525
- }
526
- function wrap(ep, target) {
527
- const pendingListeners = new Map();
528
- ep.addEventListener("message", function handleMessage(ev) {
529
- const { data } = ev;
530
- if (!data || !data.id) {
531
- return;
532
- }
533
- const resolver = pendingListeners.get(data.id);
534
- if (!resolver) {
535
- return;
536
- }
537
- try {
538
- resolver(data);
539
- }
540
- finally {
541
- pendingListeners.delete(data.id);
542
- }
543
- });
544
- return createProxy(ep, pendingListeners, [], target);
545
- }
546
- function throwIfProxyReleased(isReleased) {
547
- if (isReleased) {
548
- throw new Error("Proxy has been released and is not useable");
549
- }
550
- }
551
- function releaseEndpoint(ep) {
552
- return requestResponseMessage(ep, new Map(), {
553
- type: "RELEASE" /* MessageType.RELEASE */,
554
- }).then(() => {
555
- closeEndPoint(ep);
556
- });
557
- }
558
- const proxyCounter = new WeakMap();
559
- const proxyFinalizers = "FinalizationRegistry" in globalThis &&
560
- new FinalizationRegistry((ep) => {
561
- const newCount = (proxyCounter.get(ep) || 0) - 1;
562
- proxyCounter.set(ep, newCount);
563
- if (newCount === 0) {
564
- releaseEndpoint(ep);
565
- }
566
- });
567
- function registerProxy(proxy, ep) {
568
- const newCount = (proxyCounter.get(ep) || 0) + 1;
569
- proxyCounter.set(ep, newCount);
570
- if (proxyFinalizers) {
571
- proxyFinalizers.register(proxy, ep, proxy);
572
- }
573
- }
574
- function unregisterProxy(proxy) {
575
- if (proxyFinalizers) {
576
- proxyFinalizers.unregister(proxy);
577
- }
578
- }
579
- function createProxy(ep, pendingListeners, path = [], target = function () { }) {
580
- let isProxyReleased = false;
581
- const proxy = new Proxy(target, {
582
- get(_target, prop) {
583
- throwIfProxyReleased(isProxyReleased);
584
- if (prop === releaseProxy) {
585
- return () => {
586
- unregisterProxy(proxy);
587
- releaseEndpoint(ep);
588
- pendingListeners.clear();
589
- isProxyReleased = true;
590
- };
591
- }
592
- if (prop === "then") {
593
- if (path.length === 0) {
594
- return { then: () => proxy };
595
- }
596
- const r = requestResponseMessage(ep, pendingListeners, {
597
- type: "GET" /* MessageType.GET */,
598
- path: path.map((p) => p.toString()),
599
- }).then(fromWireValue);
600
- return r.then.bind(r);
601
- }
602
- return createProxy(ep, pendingListeners, [...path, prop]);
603
- },
604
- set(_target, prop, rawValue) {
605
- throwIfProxyReleased(isProxyReleased);
606
- // FIXME: ES6 Proxy Handler `set` methods are supposed to return a
607
- // boolean. To show good will, we return true asynchronously ¯\_(ツ)_/¯
608
- const [value, transferables] = toWireValue(rawValue);
609
- return requestResponseMessage(ep, pendingListeners, {
610
- type: "SET" /* MessageType.SET */,
611
- path: [...path, prop].map((p) => p.toString()),
612
- value,
613
- }, transferables).then(fromWireValue);
614
- },
615
- apply(_target, _thisArg, rawArgumentList) {
616
- throwIfProxyReleased(isProxyReleased);
617
- const last = path[path.length - 1];
618
- if (last === createEndpoint) {
619
- return requestResponseMessage(ep, pendingListeners, {
620
- type: "ENDPOINT" /* MessageType.ENDPOINT */,
621
- }).then(fromWireValue);
622
- }
623
- // We just pretend that `bind()` didn’t happen.
624
- if (last === "bind") {
625
- return createProxy(ep, pendingListeners, path.slice(0, -1));
626
- }
627
- const [argumentList, transferables] = processArguments(rawArgumentList);
628
- return requestResponseMessage(ep, pendingListeners, {
629
- type: "APPLY" /* MessageType.APPLY */,
630
- path: path.map((p) => p.toString()),
631
- argumentList,
632
- }, transferables).then(fromWireValue);
633
- },
634
- construct(_target, rawArgumentList) {
635
- throwIfProxyReleased(isProxyReleased);
636
- const [argumentList, transferables] = processArguments(rawArgumentList);
637
- return requestResponseMessage(ep, pendingListeners, {
638
- type: "CONSTRUCT" /* MessageType.CONSTRUCT */,
639
- path: path.map((p) => p.toString()),
640
- argumentList,
641
- }, transferables).then(fromWireValue);
642
- },
643
- });
644
- registerProxy(proxy, ep);
645
- return proxy;
646
- }
647
- function myFlat(arr) {
648
- return Array.prototype.concat.apply([], arr);
649
- }
650
- function processArguments(argumentList) {
651
- const processed = argumentList.map(toWireValue);
652
- return [processed.map((v) => v[0]), myFlat(processed.map((v) => v[1]))];
653
- }
654
- const transferCache = new WeakMap();
655
- function transfer(obj, transfers) {
656
- transferCache.set(obj, transfers);
657
- return obj;
658
- }
659
- function proxy(obj) {
660
- return Object.assign(obj, { [proxyMarker]: true });
661
- }
662
- function toWireValue(value) {
663
- for (const [name, handler] of transferHandlers) {
664
- if (handler.canHandle(value)) {
665
- const [serializedValue, transferables] = handler.serialize(value);
666
- return [
667
- {
668
- type: "HANDLER" /* WireValueType.HANDLER */,
669
- name,
670
- value: serializedValue,
671
- },
672
- transferables,
673
- ];
674
- }
675
- }
676
- return [
677
- {
678
- type: "RAW" /* WireValueType.RAW */,
679
- value,
680
- },
681
- transferCache.get(value) || [],
682
- ];
683
- }
684
- function fromWireValue(value) {
685
- switch (value.type) {
686
- case "HANDLER" /* WireValueType.HANDLER */:
687
- return transferHandlers.get(value.name).deserialize(value.value);
688
- case "RAW" /* WireValueType.RAW */:
689
- return value.value;
690
- }
691
- }
692
- function requestResponseMessage(ep, pendingListeners, msg, transfers) {
693
- return new Promise((resolve) => {
694
- const id = generateUUID();
695
- pendingListeners.set(id, resolve);
696
- if (ep.start) {
697
- ep.start();
698
- }
699
- ep.postMessage(Object.assign({ id }, msg), transfers);
700
- });
701
- }
702
- function generateUUID() {
703
- return new Array(4)
704
- .fill(0)
705
- .map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))
706
- .join("-");
707
- }
708
-
709
- class Supervisor {
710
- constructor() {
711
- this.worker = null;
712
- this.workerApi = null;
713
- }
714
- /**
715
- * Execute layout in worker
716
- */
717
- execute(layoutId, data, options) {
718
- return __awaiter(this, void 0, void 0, function* () {
719
- if (!this.worker) {
720
- yield this.initWorker();
721
- }
722
- if (!this.workerApi) {
723
- throw new Error('Worker API not initialized');
724
- }
725
- const result = yield this.workerApi.execute(layoutId, data, options);
726
- return result;
727
- });
728
- }
729
- /**
730
- * Destroy worker
731
- */
732
- destroy() {
733
- if (this.workerApi) {
734
- this.workerApi.destroy();
735
- }
736
- if (this.worker) {
737
- this.worker.terminate();
738
- this.worker = null;
739
- this.workerApi = null;
740
- }
741
- }
742
- /**
743
- * Initialize worker
744
- */
745
- initWorker() {
746
- return __awaiter(this, void 0, void 0, function* () {
747
- const workerPath = this.resolveWorkerPath();
748
- const isESM = workerPath.includes('/lib/') || workerPath.endsWith('.mjs');
749
- const type = isESM ? 'module' : 'classic';
750
- this.worker = new Worker(workerPath, { type });
751
- this.workerApi = wrap(this.worker);
752
- });
753
- }
754
- /**
755
- * Resolve worker script path which works in both ESM and UMD environments
756
- */
757
- resolveWorkerPath() {
758
- if (typeof ({ url: (typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href)) }) !== 'undefined' && (typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href))) {
759
- const currentUrl = new URL((typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href)));
760
- return currentUrl.href.replace(/\/[^/]+\.js$/, '/worker.js');
761
- }
762
- if (typeof document !== 'undefined') {
763
- const scripts = document.getElementsByTagName('script');
764
- for (let i = scripts.length - 1; i >= 0; i--) {
765
- const src = scripts[i].src;
766
- if (src && (src.includes('index.js') || src.includes('index.min.js'))) {
767
- return src.replace(/index(\.min)?\.js/, 'worker.js');
768
- }
769
- }
770
- }
771
- return './worker.js';
772
- }
773
- }
774
-
775
360
  const isArray = Array.isArray;
776
361
 
777
362
  /**
@@ -1008,58 +593,302 @@
1008
593
  }
1009
594
  }
1010
595
  }
1011
- return dist;
596
+ return dist;
597
+ }
598
+ class MinHeap {
599
+ constructor() {
600
+ this.data = [];
601
+ }
602
+ push(item) {
603
+ this.data.push(item);
604
+ this.bubbleUp(this.data.length - 1);
605
+ }
606
+ pop() {
607
+ const top = this.data[0];
608
+ const end = this.data.pop();
609
+ if (this.data.length > 0) {
610
+ this.data[0] = end;
611
+ this.bubbleDown(0);
612
+ }
613
+ return top;
614
+ }
615
+ empty() {
616
+ return this.data.length === 0;
617
+ }
618
+ bubbleUp(pos) {
619
+ const data = this.data;
620
+ while (pos > 0) {
621
+ const parent = (pos - 1) >> 1;
622
+ if (data[parent][0] <= data[pos][0])
623
+ break;
624
+ [data[parent], data[pos]] = [data[pos], data[parent]];
625
+ pos = parent;
626
+ }
627
+ }
628
+ bubbleDown(pos) {
629
+ const data = this.data;
630
+ const length = data.length;
631
+ while (true) {
632
+ const left = pos * 2 + 1;
633
+ const right = pos * 2 + 2;
634
+ let min = pos;
635
+ if (left < length && data[left][0] < data[min][0])
636
+ min = left;
637
+ if (right < length && data[right][0] < data[min][0])
638
+ min = right;
639
+ if (min === pos)
640
+ break;
641
+ [data[pos], data[min]] = [data[min], data[pos]];
642
+ pos = min;
643
+ }
644
+ }
645
+ }
646
+
647
+ /**
648
+ * Get nested property value
649
+ * For example: getNestedValue(obj, 'a.b.c') will return obj.a.b.c
650
+ */
651
+ function getNestedValue(obj, path) {
652
+ const keys = String(path).split('.');
653
+ return get$1(obj, keys);
654
+ }
655
+ /**
656
+ * Set nested property value
657
+ * For example: setNestedValue(obj, 'a.b.c', value) will set obj.a.b.c = value
658
+ */
659
+ function setNestedValue(obj, path, value) {
660
+ const keys = String(path).split('.');
661
+ set$1(obj, keys, value);
662
+ }
663
+ /**
664
+ * Merge objects, but undefined values in source objects will not override existing values
665
+ * @param target - The target object
666
+ * @param sources - Source objects to merge
667
+ * @returns A new merged object
668
+ *
669
+ * @example
670
+ * assignDefined({ a: 1, b: 2 }, { b: undefined, c: 3 })
671
+ * // Returns: { a: 1, b: 2, c: 3 }
672
+ */
673
+ function assignDefined(target, ...sources) {
674
+ sources.forEach((source) => {
675
+ if (source) {
676
+ Object.keys(source).forEach((key) => {
677
+ const value = source[key];
678
+ if (value !== undefined) {
679
+ target[key] = value;
680
+ }
681
+ });
682
+ }
683
+ });
684
+ return target;
685
+ }
686
+
687
+ /**
688
+ * 通用排序核心函数
689
+ */
690
+ function sort$1(model, compareFn) {
691
+ const nodes = model.nodes();
692
+ nodes.sort(compareFn);
693
+ model.setNodeOrder(nodes);
694
+ return model;
695
+ }
696
+ function orderByDegree(model) {
697
+ return sort$1(model, (nodeA, nodeB) => {
698
+ const degreeA = model.degree(nodeA.id);
699
+ const degreeB = model.degree(nodeB.id);
700
+ return degreeB - degreeA; // descending order
701
+ });
702
+ }
703
+ /**
704
+ * 按 ID 排序
705
+ */
706
+ function orderById(model) {
707
+ return sort$1(model, (nodeA, nodeB) => {
708
+ const idA = nodeA.id;
709
+ const idB = nodeB.id;
710
+ if (typeof idA === 'number' && typeof idB === 'number') {
711
+ return idA - idB;
712
+ }
713
+ return String(idA).localeCompare(String(idB));
714
+ });
715
+ }
716
+ /**
717
+ * 按自定义比较函数排序
718
+ */
719
+ function orderBySorter(model, sorter) {
720
+ return sort$1(model, (nodeA, nodeB) => {
721
+ const a = model.originalNode(nodeA.id);
722
+ const b = model.originalNode(nodeB.id);
723
+ return sorter(a, b);
724
+ });
725
+ }
726
+ /**
727
+ * Order nodes according to graph topology
728
+ */
729
+ function orderByTopology(model, directed = false) {
730
+ const n = model.nodeCount();
731
+ if (n === 0)
732
+ return model;
733
+ const nodes = model.nodes();
734
+ const orderedNodes = [nodes[0]];
735
+ const pickFlags = {};
736
+ pickFlags[nodes[0].id] = true;
737
+ let k = 0;
738
+ let i = 0;
739
+ model.forEachNode((node) => {
740
+ if (i !== 0) {
741
+ const currentDegree = model.degree(node.id, 'both');
742
+ const nextDegree = i < n - 1 ? model.degree(nodes[i + 1].id, 'both') : 0;
743
+ const currentNodeId = orderedNodes[k].id;
744
+ const isNeighbor = model
745
+ .neighbors(currentNodeId, 'both')
746
+ .includes(node.id);
747
+ if ((i === n - 1 || currentDegree !== nextDegree || isNeighbor) &&
748
+ !pickFlags[node.id]) {
749
+ orderedNodes.push(node);
750
+ pickFlags[node.id] = true;
751
+ k++;
752
+ }
753
+ else {
754
+ const children = directed
755
+ ? model.successors(currentNodeId)
756
+ : model.neighbors(currentNodeId);
757
+ let foundChild = false;
758
+ for (let j = 0; j < children.length; j++) {
759
+ const childId = children[j];
760
+ const child = model.node(childId);
761
+ if (child &&
762
+ model.degree(childId) === model.degree(node.id) &&
763
+ !pickFlags[childId]) {
764
+ orderedNodes.push(child);
765
+ pickFlags[childId] = true;
766
+ foundChild = true;
767
+ break;
768
+ }
769
+ }
770
+ let ii = 0;
771
+ while (!foundChild) {
772
+ if (!pickFlags[nodes[ii].id]) {
773
+ orderedNodes.push(nodes[ii]);
774
+ pickFlags[nodes[ii].id] = true;
775
+ foundChild = true;
776
+ }
777
+ ii++;
778
+ if (ii === n) {
779
+ break;
780
+ }
781
+ }
782
+ }
783
+ }
784
+ i++;
785
+ });
786
+ // Update model with ordered nodes
787
+ model.setNodeOrder(orderedNodes);
788
+ return model;
789
+ }
790
+
791
+ function parsePoint(point) {
792
+ var _a;
793
+ return [point.x, point.y, (_a = point.z) !== null && _a !== void 0 ? _a : 0];
794
+ }
795
+ function toPointObject(point) {
796
+ var _a;
797
+ return { x: point[0], y: point[1], z: (_a = point[2]) !== null && _a !== void 0 ? _a : 0 };
798
+ }
799
+
800
+ function parseSize(size) {
801
+ if (!size)
802
+ return [0, 0, 0];
803
+ if (isNumber(size))
804
+ return [size, size, size];
805
+ else if (Array.isArray(size) && size.length === 0)
806
+ return [0, 0, 0];
807
+ const [x, y = x, z = x] = size;
808
+ return [x, y, z];
809
+ }
810
+
811
+ /**
812
+ * Viewport configuration such as width, height and center point.
813
+ */
814
+ const normalizeViewport = (options) => {
815
+ const { width, height, center } = options;
816
+ const normalizedWidth = width !== null && width !== void 0 ? width : (typeof window !== 'undefined' ? window.innerWidth : 0);
817
+ const normalizedHeight = height !== null && height !== void 0 ? height : (typeof window !== 'undefined' ? window.innerHeight : 0);
818
+ const centerPoint = center !== null && center !== void 0 ? center : [normalizedWidth / 2, normalizedHeight / 2];
819
+ return {
820
+ width: normalizedWidth,
821
+ height: normalizedHeight,
822
+ center: centerPoint,
823
+ };
824
+ };
825
+
826
+ /**
827
+ * Format value with multiple types into a function that returns a number
828
+ * @param value The value to be formatted
829
+ * @param defaultValue The default value when value is invalid
830
+ * @returns A function that returns a number
831
+ */
832
+ function formatNumberFn(value, defaultValue) {
833
+ // If value is a function, return it directly
834
+ if (isFunction(value)) {
835
+ return value;
836
+ }
837
+ // If value is a number, return a function that returns this number
838
+ if (isNumber(value)) {
839
+ return () => value;
840
+ }
841
+ // For other cases (undefined or invalid values), return default value function
842
+ return () => defaultValue;
1012
843
  }
1013
- class MinHeap {
1014
- constructor() {
1015
- this.data = [];
1016
- }
1017
- push(item) {
1018
- this.data.push(item);
1019
- this.bubbleUp(this.data.length - 1);
844
+ /**
845
+ * Format size config with multiple types into a function that returns a size
846
+ * @param value The value to be formatted
847
+ * @param defaultValue The default value when value is invalid
848
+ * @param resultIsNumber Whether to return a number (max of width/height) or size array
849
+ * @returns A function that returns a size
850
+ */
851
+ function formatSizeFn(value, defaultValue = 10) {
852
+ // If value is undefined, return default value function
853
+ if (!value) {
854
+ return () => defaultValue;
1020
855
  }
1021
- pop() {
1022
- const top = this.data[0];
1023
- const end = this.data.pop();
1024
- if (this.data.length > 0) {
1025
- this.data[0] = end;
1026
- this.bubbleDown(0);
1027
- }
1028
- return top;
856
+ // If value is a function, return it directly
857
+ if (isFunction(value)) {
858
+ return value;
1029
859
  }
1030
- empty() {
1031
- return this.data.length === 0;
860
+ // If value is a number, return a function that returns this number
861
+ if (isNumber(value)) {
862
+ return () => value;
1032
863
  }
1033
- bubbleUp(pos) {
1034
- const data = this.data;
1035
- while (pos > 0) {
1036
- const parent = (pos - 1) >> 1;
1037
- if (data[parent][0] <= data[pos][0])
1038
- break;
1039
- [data[parent], data[pos]] = [data[pos], data[parent]];
1040
- pos = parent;
1041
- }
864
+ // If value is an array, return max or the array itself
865
+ if (Array.isArray(value)) {
866
+ return () => value;
1042
867
  }
1043
- bubbleDown(pos) {
1044
- const data = this.data;
1045
- const length = data.length;
1046
- while (true) {
1047
- const left = pos * 2 + 1;
1048
- const right = pos * 2 + 2;
1049
- let min = pos;
1050
- if (left < length && data[left][0] < data[min][0])
1051
- min = left;
1052
- if (right < length && data[right][0] < data[min][0])
1053
- min = right;
1054
- if (min === pos)
1055
- break;
1056
- [data[pos], data[min]] = [data[min], data[pos]];
1057
- pos = min;
1058
- }
868
+ // If value is an object with width and height
869
+ if (isObject$1(value) && value.width && value.height) {
870
+ return () => [value.width, value.height];
1059
871
  }
872
+ return () => defaultValue;
1060
873
  }
874
+ /**
875
+ * Format nodeSize and nodeSpacing into a function that returns the total size
876
+ * @param nodeSize The size of the node
877
+ * @param nodeSpacing The spacing around the node
878
+ * @param defaultNodeSize The default node size when value is invalid
879
+ * @returns A function that returns the total size (node size + spacing)
880
+ */
881
+ const formatNodeSizeFn = (nodeSize, nodeSpacing, defaultNodeSize = 10) => {
882
+ const nodeSpacingFunc = formatNumberFn(nodeSpacing, 0);
883
+ const nodeSizeFunc = formatSizeFn(nodeSize, defaultNodeSize);
884
+ return (node) => {
885
+ const size = nodeSizeFunc(node);
886
+ const spacing = nodeSpacingFunc(node);
887
+ return Math.max(...parseSize(size)) + spacing;
888
+ };
889
+ };
1061
890
 
1062
- class LayoutModel {
891
+ class GraphLib {
1063
892
  constructor(data, options = {}) {
1064
893
  this.edgeIdCounter = new Map();
1065
894
  this.nodeMap = extractNodeData(data.nodes, options.node);
@@ -1068,7 +897,7 @@
1068
897
  data() {
1069
898
  return { nodes: this.nodeMap, edges: this.edgeMap };
1070
899
  }
1071
- apply(result) {
900
+ replace(result) {
1072
901
  this.nodeMap = result.nodes;
1073
902
  this.edgeMap = result.edges;
1074
903
  this.clearCache();
@@ -1177,6 +1006,14 @@
1177
1006
  predecessors(nodeId) {
1178
1007
  return this.neighbors(nodeId, 'in');
1179
1008
  }
1009
+ setNodeOrder(nodes) {
1010
+ const next = new Map();
1011
+ for (const node of nodes)
1012
+ next.set(node.id, node);
1013
+ this.nodeMap = next;
1014
+ this.nodeIndexCache = undefined;
1015
+ this.indexNodeCache = undefined;
1016
+ }
1180
1017
  clearCache() {
1181
1018
  this.degreeCache = undefined;
1182
1019
  this.inAdjacencyCache = undefined;
@@ -1314,7 +1151,7 @@
1314
1151
  }
1315
1152
  return result;
1316
1153
  }
1317
- function initModelNodePosition(model, width, height, dimensions = 2) {
1154
+ function initNodePosition(model, width, height, dimensions = 2) {
1318
1155
  model.forEachNode((node) => {
1319
1156
  if (isNil(node.x)) {
1320
1157
  node.x = Math.random() * width;
@@ -1327,194 +1164,450 @@
1327
1164
  }
1328
1165
  });
1329
1166
  }
1330
-
1331
- /**
1332
- * Get nested property value
1333
- * For example: getNestedValue(obj, 'a.b.c') will return obj.a.b.c
1334
- */
1335
- function getNestedValue(obj, path) {
1336
- const keys = String(path).split('.');
1337
- return get$1(obj, keys);
1167
+
1168
+ class RuntimeContext {
1169
+ constructor(data, options = {}) {
1170
+ this.graph = new GraphLib(data, options);
1171
+ }
1172
+ export() {
1173
+ return this.graph.data();
1174
+ }
1175
+ replace(result) {
1176
+ this.graph.replace(result);
1177
+ }
1178
+ forEachNode(callback) {
1179
+ this.graph.forEachNode(callback);
1180
+ }
1181
+ forEachEdge(callback) {
1182
+ this.graph.forEachEdge((edge, i) => {
1183
+ edge.sourceNode = this.graph.node(edge.source);
1184
+ edge.targetNode = this.graph.node(edge.target);
1185
+ callback(edge, i);
1186
+ });
1187
+ }
1188
+ destroy() {
1189
+ this.graph.destroy();
1190
+ }
1191
+ }
1192
+
1193
+ /**
1194
+ * @license
1195
+ * Copyright 2019 Google LLC
1196
+ * SPDX-License-Identifier: Apache-2.0
1197
+ */
1198
+ const proxyMarker = Symbol("Comlink.proxy");
1199
+ const createEndpoint = Symbol("Comlink.endpoint");
1200
+ const releaseProxy = Symbol("Comlink.releaseProxy");
1201
+ const finalizer = Symbol("Comlink.finalizer");
1202
+ const throwMarker = Symbol("Comlink.thrown");
1203
+ const isObject = (val) => (typeof val === "object" && val !== null) || typeof val === "function";
1204
+ /**
1205
+ * Internal transfer handle to handle objects marked to proxy.
1206
+ */
1207
+ const proxyTransferHandler = {
1208
+ canHandle: (val) => isObject(val) && val[proxyMarker],
1209
+ serialize(obj) {
1210
+ const { port1, port2 } = new MessageChannel();
1211
+ expose(obj, port1);
1212
+ return [port2, [port2]];
1213
+ },
1214
+ deserialize(port) {
1215
+ port.start();
1216
+ return wrap(port);
1217
+ },
1218
+ };
1219
+ /**
1220
+ * Internal transfer handler to handle thrown exceptions.
1221
+ */
1222
+ const throwTransferHandler = {
1223
+ canHandle: (value) => isObject(value) && throwMarker in value,
1224
+ serialize({ value }) {
1225
+ let serialized;
1226
+ if (value instanceof Error) {
1227
+ serialized = {
1228
+ isError: true,
1229
+ value: {
1230
+ message: value.message,
1231
+ name: value.name,
1232
+ stack: value.stack,
1233
+ },
1234
+ };
1235
+ }
1236
+ else {
1237
+ serialized = { isError: false, value };
1238
+ }
1239
+ return [serialized, []];
1240
+ },
1241
+ deserialize(serialized) {
1242
+ if (serialized.isError) {
1243
+ throw Object.assign(new Error(serialized.value.message), serialized.value);
1244
+ }
1245
+ throw serialized.value;
1246
+ },
1247
+ };
1248
+ /**
1249
+ * Allows customizing the serialization of certain values.
1250
+ */
1251
+ const transferHandlers = new Map([
1252
+ ["proxy", proxyTransferHandler],
1253
+ ["throw", throwTransferHandler],
1254
+ ]);
1255
+ function isAllowedOrigin(allowedOrigins, origin) {
1256
+ for (const allowedOrigin of allowedOrigins) {
1257
+ if (origin === allowedOrigin || allowedOrigin === "*") {
1258
+ return true;
1259
+ }
1260
+ if (allowedOrigin instanceof RegExp && allowedOrigin.test(origin)) {
1261
+ return true;
1262
+ }
1263
+ }
1264
+ return false;
1265
+ }
1266
+ function expose(obj, ep = globalThis, allowedOrigins = ["*"]) {
1267
+ ep.addEventListener("message", function callback(ev) {
1268
+ if (!ev || !ev.data) {
1269
+ return;
1270
+ }
1271
+ if (!isAllowedOrigin(allowedOrigins, ev.origin)) {
1272
+ console.warn(`Invalid origin '${ev.origin}' for comlink proxy`);
1273
+ return;
1274
+ }
1275
+ const { id, type, path } = Object.assign({ path: [] }, ev.data);
1276
+ const argumentList = (ev.data.argumentList || []).map(fromWireValue);
1277
+ let returnValue;
1278
+ try {
1279
+ const parent = path.slice(0, -1).reduce((obj, prop) => obj[prop], obj);
1280
+ const rawValue = path.reduce((obj, prop) => obj[prop], obj);
1281
+ switch (type) {
1282
+ case "GET" /* MessageType.GET */:
1283
+ {
1284
+ returnValue = rawValue;
1285
+ }
1286
+ break;
1287
+ case "SET" /* MessageType.SET */:
1288
+ {
1289
+ parent[path.slice(-1)[0]] = fromWireValue(ev.data.value);
1290
+ returnValue = true;
1291
+ }
1292
+ break;
1293
+ case "APPLY" /* MessageType.APPLY */:
1294
+ {
1295
+ returnValue = rawValue.apply(parent, argumentList);
1296
+ }
1297
+ break;
1298
+ case "CONSTRUCT" /* MessageType.CONSTRUCT */:
1299
+ {
1300
+ const value = new rawValue(...argumentList);
1301
+ returnValue = proxy(value);
1302
+ }
1303
+ break;
1304
+ case "ENDPOINT" /* MessageType.ENDPOINT */:
1305
+ {
1306
+ const { port1, port2 } = new MessageChannel();
1307
+ expose(obj, port2);
1308
+ returnValue = transfer(port1, [port1]);
1309
+ }
1310
+ break;
1311
+ case "RELEASE" /* MessageType.RELEASE */:
1312
+ {
1313
+ returnValue = undefined;
1314
+ }
1315
+ break;
1316
+ default:
1317
+ return;
1318
+ }
1319
+ }
1320
+ catch (value) {
1321
+ returnValue = { value, [throwMarker]: 0 };
1322
+ }
1323
+ Promise.resolve(returnValue)
1324
+ .catch((value) => {
1325
+ return { value, [throwMarker]: 0 };
1326
+ })
1327
+ .then((returnValue) => {
1328
+ const [wireValue, transferables] = toWireValue(returnValue);
1329
+ ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);
1330
+ if (type === "RELEASE" /* MessageType.RELEASE */) {
1331
+ // detach and deactive after sending release response above.
1332
+ ep.removeEventListener("message", callback);
1333
+ closeEndPoint(ep);
1334
+ if (finalizer in obj && typeof obj[finalizer] === "function") {
1335
+ obj[finalizer]();
1336
+ }
1337
+ }
1338
+ })
1339
+ .catch((error) => {
1340
+ // Send Serialization Error To Caller
1341
+ const [wireValue, transferables] = toWireValue({
1342
+ value: new TypeError("Unserializable return value"),
1343
+ [throwMarker]: 0,
1344
+ });
1345
+ ep.postMessage(Object.assign(Object.assign({}, wireValue), { id }), transferables);
1346
+ });
1347
+ });
1348
+ if (ep.start) {
1349
+ ep.start();
1350
+ }
1351
+ }
1352
+ function isMessagePort(endpoint) {
1353
+ return endpoint.constructor.name === "MessagePort";
1338
1354
  }
1339
- /**
1340
- * Set nested property value
1341
- * For example: setNestedValue(obj, 'a.b.c', value) will set obj.a.b.c = value
1342
- */
1343
- function setNestedValue(obj, path, value) {
1344
- const keys = String(path).split('.');
1345
- set$1(obj, keys, value);
1355
+ function closeEndPoint(endpoint) {
1356
+ if (isMessagePort(endpoint))
1357
+ endpoint.close();
1346
1358
  }
1347
- /**
1348
- * Merge objects, but undefined values in source objects will not override existing values
1349
- * @param target - The target object
1350
- * @param sources - Source objects to merge
1351
- * @returns A new merged object
1352
- *
1353
- * @example
1354
- * assignDefined({ a: 1, b: 2 }, { b: undefined, c: 3 })
1355
- * // Returns: { a: 1, b: 2, c: 3 }
1356
- */
1357
- function assignDefined(target, ...sources) {
1358
- sources.forEach((source) => {
1359
- if (source) {
1360
- Object.keys(source).forEach((key) => {
1361
- const value = source[key];
1362
- if (value !== undefined) {
1363
- target[key] = value;
1364
- }
1365
- });
1359
+ function wrap(ep, target) {
1360
+ const pendingListeners = new Map();
1361
+ ep.addEventListener("message", function handleMessage(ev) {
1362
+ const { data } = ev;
1363
+ if (!data || !data.id) {
1364
+ return;
1365
+ }
1366
+ const resolver = pendingListeners.get(data.id);
1367
+ if (!resolver) {
1368
+ return;
1369
+ }
1370
+ try {
1371
+ resolver(data);
1372
+ }
1373
+ finally {
1374
+ pendingListeners.delete(data.id);
1366
1375
  }
1367
1376
  });
1368
- return target;
1369
- }
1370
- function mergeOptions(base, patch) {
1371
- return Object.assign({}, base, patch || {});
1377
+ return createProxy(ep, pendingListeners, [], target);
1372
1378
  }
1373
-
1374
- /**
1375
- * 通用排序核心函数
1376
- */
1377
- function sort$1(model, compareFn) {
1378
- const nodes = model.nodes();
1379
- nodes.sort(compareFn);
1380
- model.nodeMap.clear();
1381
- nodes.forEach((node) => {
1382
- model.nodeMap.set(node.id, node);
1383
- });
1384
- return model;
1379
+ function throwIfProxyReleased(isReleased) {
1380
+ if (isReleased) {
1381
+ throw new Error("Proxy has been released and is not useable");
1382
+ }
1385
1383
  }
1386
- function orderByDegree(model) {
1387
- return sort$1(model, (nodeA, nodeB) => {
1388
- const degreeA = model.degree(nodeA.id);
1389
- const degreeB = model.degree(nodeB.id);
1390
- return degreeB - degreeA; // descending order
1384
+ function releaseEndpoint(ep) {
1385
+ return requestResponseMessage(ep, new Map(), {
1386
+ type: "RELEASE" /* MessageType.RELEASE */,
1387
+ }).then(() => {
1388
+ closeEndPoint(ep);
1391
1389
  });
1392
1390
  }
1393
- /**
1394
- * ID 排序
1395
- */
1396
- function orderById(model) {
1397
- return sort$1(model, (nodeA, nodeB) => {
1398
- const idA = nodeA.id;
1399
- const idB = nodeB.id;
1400
- if (typeof idA === 'number' && typeof idB === 'number') {
1401
- return idA - idB;
1391
+ const proxyCounter = new WeakMap();
1392
+ const proxyFinalizers = "FinalizationRegistry" in globalThis &&
1393
+ new FinalizationRegistry((ep) => {
1394
+ const newCount = (proxyCounter.get(ep) || 0) - 1;
1395
+ proxyCounter.set(ep, newCount);
1396
+ if (newCount === 0) {
1397
+ releaseEndpoint(ep);
1402
1398
  }
1403
- return String(idA).localeCompare(String(idB));
1404
1399
  });
1400
+ function registerProxy(proxy, ep) {
1401
+ const newCount = (proxyCounter.get(ep) || 0) + 1;
1402
+ proxyCounter.set(ep, newCount);
1403
+ if (proxyFinalizers) {
1404
+ proxyFinalizers.register(proxy, ep, proxy);
1405
+ }
1405
1406
  }
1406
- /**
1407
- * 按自定义比较函数排序
1408
- */
1409
- function orderBySorter(model, sorter) {
1410
- return sort$1(model, (nodeA, nodeB) => {
1411
- const a = model.originalNode(nodeA.id);
1412
- const b = model.originalNode(nodeB.id);
1413
- return sorter(a, b);
1414
- });
1407
+ function unregisterProxy(proxy) {
1408
+ if (proxyFinalizers) {
1409
+ proxyFinalizers.unregister(proxy);
1410
+ }
1415
1411
  }
1416
- /**
1417
- * Order nodes according to graph topology
1418
- */
1419
- function orderByTopology(model, directed = false) {
1420
- const n = model.nodeCount();
1421
- if (n === 0)
1422
- return model;
1423
- const nodes = model.nodes();
1424
- const orderedNodes = [nodes[0]];
1425
- const pickFlags = {};
1426
- pickFlags[nodes[0].id] = true;
1427
- let k = 0;
1428
- let i = 0;
1429
- model.forEachNode((node) => {
1430
- if (i !== 0) {
1431
- const currentDegree = model.degree(node.id, 'both');
1432
- const nextDegree = i < n - 1 ? model.degree(nodes[i + 1].id, 'both') : 0;
1433
- const currentNodeId = orderedNodes[k].id;
1434
- const isNeighbor = model
1435
- .neighbors(currentNodeId, 'both')
1436
- .includes(node.id);
1437
- if ((i === n - 1 || currentDegree !== nextDegree || isNeighbor) &&
1438
- !pickFlags[node.id]) {
1439
- orderedNodes.push(node);
1440
- pickFlags[node.id] = true;
1441
- k++;
1412
+ function createProxy(ep, pendingListeners, path = [], target = function () { }) {
1413
+ let isProxyReleased = false;
1414
+ const proxy = new Proxy(target, {
1415
+ get(_target, prop) {
1416
+ throwIfProxyReleased(isProxyReleased);
1417
+ if (prop === releaseProxy) {
1418
+ return () => {
1419
+ unregisterProxy(proxy);
1420
+ releaseEndpoint(ep);
1421
+ pendingListeners.clear();
1422
+ isProxyReleased = true;
1423
+ };
1442
1424
  }
1443
- else {
1444
- const children = directed
1445
- ? model.successors(currentNodeId)
1446
- : model.neighbors(currentNodeId);
1447
- let foundChild = false;
1448
- for (let j = 0; j < children.length; j++) {
1449
- const childId = children[j];
1450
- const child = model.node(childId);
1451
- if (child &&
1452
- model.degree(childId) === model.degree(node.id) &&
1453
- !pickFlags[childId]) {
1454
- orderedNodes.push(child);
1455
- pickFlags[childId] = true;
1456
- foundChild = true;
1457
- break;
1458
- }
1459
- }
1460
- let ii = 0;
1461
- while (!foundChild) {
1462
- if (!pickFlags[nodes[ii].id]) {
1463
- orderedNodes.push(nodes[ii]);
1464
- pickFlags[nodes[ii].id] = true;
1465
- foundChild = true;
1466
- }
1467
- ii++;
1468
- if (ii === n) {
1469
- break;
1470
- }
1425
+ if (prop === "then") {
1426
+ if (path.length === 0) {
1427
+ return { then: () => proxy };
1471
1428
  }
1429
+ const r = requestResponseMessage(ep, pendingListeners, {
1430
+ type: "GET" /* MessageType.GET */,
1431
+ path: path.map((p) => p.toString()),
1432
+ }).then(fromWireValue);
1433
+ return r.then.bind(r);
1434
+ }
1435
+ return createProxy(ep, pendingListeners, [...path, prop]);
1436
+ },
1437
+ set(_target, prop, rawValue) {
1438
+ throwIfProxyReleased(isProxyReleased);
1439
+ // FIXME: ES6 Proxy Handler `set` methods are supposed to return a
1440
+ // boolean. To show good will, we return true asynchronously ¯\_(ツ)_/¯
1441
+ const [value, transferables] = toWireValue(rawValue);
1442
+ return requestResponseMessage(ep, pendingListeners, {
1443
+ type: "SET" /* MessageType.SET */,
1444
+ path: [...path, prop].map((p) => p.toString()),
1445
+ value,
1446
+ }, transferables).then(fromWireValue);
1447
+ },
1448
+ apply(_target, _thisArg, rawArgumentList) {
1449
+ throwIfProxyReleased(isProxyReleased);
1450
+ const last = path[path.length - 1];
1451
+ if (last === createEndpoint) {
1452
+ return requestResponseMessage(ep, pendingListeners, {
1453
+ type: "ENDPOINT" /* MessageType.ENDPOINT */,
1454
+ }).then(fromWireValue);
1455
+ }
1456
+ // We just pretend that `bind()` didn’t happen.
1457
+ if (last === "bind") {
1458
+ return createProxy(ep, pendingListeners, path.slice(0, -1));
1472
1459
  }
1460
+ const [argumentList, transferables] = processArguments(rawArgumentList);
1461
+ return requestResponseMessage(ep, pendingListeners, {
1462
+ type: "APPLY" /* MessageType.APPLY */,
1463
+ path: path.map((p) => p.toString()),
1464
+ argumentList,
1465
+ }, transferables).then(fromWireValue);
1466
+ },
1467
+ construct(_target, rawArgumentList) {
1468
+ throwIfProxyReleased(isProxyReleased);
1469
+ const [argumentList, transferables] = processArguments(rawArgumentList);
1470
+ return requestResponseMessage(ep, pendingListeners, {
1471
+ type: "CONSTRUCT" /* MessageType.CONSTRUCT */,
1472
+ path: path.map((p) => p.toString()),
1473
+ argumentList,
1474
+ }, transferables).then(fromWireValue);
1475
+ },
1476
+ });
1477
+ registerProxy(proxy, ep);
1478
+ return proxy;
1479
+ }
1480
+ function myFlat(arr) {
1481
+ return Array.prototype.concat.apply([], arr);
1482
+ }
1483
+ function processArguments(argumentList) {
1484
+ const processed = argumentList.map(toWireValue);
1485
+ return [processed.map((v) => v[0]), myFlat(processed.map((v) => v[1]))];
1486
+ }
1487
+ const transferCache = new WeakMap();
1488
+ function transfer(obj, transfers) {
1489
+ transferCache.set(obj, transfers);
1490
+ return obj;
1491
+ }
1492
+ function proxy(obj) {
1493
+ return Object.assign(obj, { [proxyMarker]: true });
1494
+ }
1495
+ function toWireValue(value) {
1496
+ for (const [name, handler] of transferHandlers) {
1497
+ if (handler.canHandle(value)) {
1498
+ const [serializedValue, transferables] = handler.serialize(value);
1499
+ return [
1500
+ {
1501
+ type: "HANDLER" /* WireValueType.HANDLER */,
1502
+ name,
1503
+ value: serializedValue,
1504
+ },
1505
+ transferables,
1506
+ ];
1473
1507
  }
1474
- i++;
1475
- });
1476
- // Update model with ordered nodes
1477
- model.nodeMap.clear();
1478
- orderedNodes.forEach((node) => {
1479
- model.nodeMap.set(node.id, node);
1480
- });
1481
- return model;
1508
+ }
1509
+ return [
1510
+ {
1511
+ type: "RAW" /* WireValueType.RAW */,
1512
+ value,
1513
+ },
1514
+ transferCache.get(value) || [],
1515
+ ];
1482
1516
  }
1483
-
1484
- function parsePoint(point) {
1485
- var _a;
1486
- return [point.x, point.y, (_a = point.z) !== null && _a !== void 0 ? _a : 0];
1517
+ function fromWireValue(value) {
1518
+ switch (value.type) {
1519
+ case "HANDLER" /* WireValueType.HANDLER */:
1520
+ return transferHandlers.get(value.name).deserialize(value.value);
1521
+ case "RAW" /* WireValueType.RAW */:
1522
+ return value.value;
1523
+ }
1487
1524
  }
1488
- function toPointObject(point) {
1489
- var _a;
1490
- return { x: point[0], y: point[1], z: (_a = point[2]) !== null && _a !== void 0 ? _a : 0 };
1525
+ function requestResponseMessage(ep, pendingListeners, msg, transfers) {
1526
+ return new Promise((resolve) => {
1527
+ const id = generateUUID();
1528
+ pendingListeners.set(id, resolve);
1529
+ if (ep.start) {
1530
+ ep.start();
1531
+ }
1532
+ ep.postMessage(Object.assign({ id }, msg), transfers);
1533
+ });
1491
1534
  }
1492
-
1493
- function parseSize(size) {
1494
- if (!size)
1495
- return [0, 0, 0];
1496
- if (isNumber(size))
1497
- return [size, size, size];
1498
- else if (Array.isArray(size) && size.length === 0)
1499
- return [0, 0, 0];
1500
- const [x, y = x, z = x] = size;
1501
- return [x, y, z];
1535
+ function generateUUID() {
1536
+ return new Array(4)
1537
+ .fill(0)
1538
+ .map(() => Math.floor(Math.random() * Number.MAX_SAFE_INTEGER).toString(16))
1539
+ .join("-");
1502
1540
  }
1503
1541
 
1504
- /**
1505
- * Viewport configuration such as width, height and center point.
1506
- */
1507
- const normalizeViewport = (options) => {
1508
- const { width, height, center } = options;
1509
- const normalizedWidth = width !== null && width !== void 0 ? width : (typeof window !== 'undefined' ? window.innerWidth : 0);
1510
- const normalizedHeight = height !== null && height !== void 0 ? height : (typeof window !== 'undefined' ? window.innerHeight : 0);
1511
- const centerPoint = center !== null && center !== void 0 ? center : [normalizedWidth / 2, normalizedHeight / 2];
1512
- return {
1513
- width: normalizedWidth,
1514
- height: normalizedHeight,
1515
- center: centerPoint,
1516
- };
1517
- };
1542
+ class Supervisor {
1543
+ constructor() {
1544
+ this.worker = null;
1545
+ this.workerApi = null;
1546
+ }
1547
+ /**
1548
+ * Execute layout in worker
1549
+ */
1550
+ execute(layoutId, data, options) {
1551
+ return __awaiter(this, void 0, void 0, function* () {
1552
+ if (!this.worker) {
1553
+ yield this.initWorker();
1554
+ }
1555
+ if (!this.workerApi) {
1556
+ throw new Error('Worker API not initialized');
1557
+ }
1558
+ return yield this.workerApi.execute(layoutId, data, options);
1559
+ });
1560
+ }
1561
+ /**
1562
+ * Destroy worker
1563
+ */
1564
+ destroy() {
1565
+ if (this.workerApi) {
1566
+ this.workerApi.destroy();
1567
+ }
1568
+ if (this.worker) {
1569
+ this.worker.terminate();
1570
+ this.worker = null;
1571
+ this.workerApi = null;
1572
+ }
1573
+ }
1574
+ /**
1575
+ * Initialize worker
1576
+ */
1577
+ initWorker() {
1578
+ return __awaiter(this, void 0, void 0, function* () {
1579
+ const workerPath = this.resolveWorkerPath();
1580
+ const isESM = workerPath.includes('/lib/') || workerPath.endsWith('.mjs');
1581
+ const type = isESM ? 'module' : 'classic';
1582
+ this.worker = new Worker(workerPath, { type });
1583
+ this.workerApi = wrap(this.worker);
1584
+ });
1585
+ }
1586
+ /**
1587
+ * Resolve worker script path which works in both ESM and UMD environments
1588
+ */
1589
+ resolveWorkerPath() {
1590
+ if (typeof ({ url: (typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href)) }) !== 'undefined' && (typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href))) {
1591
+ const currentUrl = new URL((typeof document === 'undefined' && typeof location === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : typeof document === 'undefined' ? location.href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('index.js', document.baseURI).href)));
1592
+ // e.g. `.../lib/runtime/supervisor.js` -> `.../lib/worker.js`
1593
+ const asRoot = currentUrl.href.replace(/\/runtime\/[^/]+\.js$/, '/worker.js');
1594
+ if (asRoot !== currentUrl.href)
1595
+ return asRoot;
1596
+ // Fallback: keep legacy behavior (same directory)
1597
+ return currentUrl.href.replace(/\/[^/]+\.js$/, '/worker.js');
1598
+ }
1599
+ if (typeof document !== 'undefined') {
1600
+ const scripts = document.getElementsByTagName('script');
1601
+ for (let i = scripts.length - 1; i >= 0; i--) {
1602
+ const src = scripts[i].src;
1603
+ if (src && (src.includes('index.js') || src.includes('index.min.js'))) {
1604
+ return src.replace(/index(\.min)?\.js/, 'worker.js');
1605
+ }
1606
+ }
1607
+ }
1608
+ return './worker.js';
1609
+ }
1610
+ }
1518
1611
 
1519
1612
  /**
1520
1613
  * <zh/> 布局基类
@@ -1524,16 +1617,20 @@
1524
1617
  class BaseLayout {
1525
1618
  constructor(options) {
1526
1619
  this.supervisor = null;
1527
- this.initialOptions = mergeOptions(this.getDefaultOptions(), options);
1620
+ this.initialOptions = this.mergeOptions(this.getDefaultOptions(), options);
1528
1621
  }
1529
1622
  get options() {
1530
1623
  return this.runtimeOptions || this.initialOptions;
1531
1624
  }
1625
+ mergeOptions(base, patch) {
1626
+ return Object.assign({}, base, patch || {});
1627
+ }
1532
1628
  execute(data, userOptions) {
1533
1629
  return __awaiter(this, void 0, void 0, function* () {
1534
- this.runtimeOptions = mergeOptions(this.initialOptions, userOptions);
1630
+ this.runtimeOptions = this.mergeOptions(this.initialOptions, userOptions);
1535
1631
  const { node, edge, enableWorker } = this.runtimeOptions;
1536
- this.model = new LayoutModel(data, { node, edge });
1632
+ this.context = new RuntimeContext(data, { node, edge });
1633
+ this.model = this.context.graph;
1537
1634
  const shouldUseWorker = enableWorker && typeof Worker !== 'undefined';
1538
1635
  if (shouldUseWorker) {
1539
1636
  yield this.layoutInWorker(data, this.runtimeOptions);
@@ -1551,7 +1648,7 @@
1551
1648
  this.supervisor = new Supervisor();
1552
1649
  }
1553
1650
  const result = yield this.supervisor.execute(this.id, data, options);
1554
- (_a = this.model) === null || _a === void 0 ? void 0 : _a.apply(result);
1651
+ (_a = this.context) === null || _a === void 0 ? void 0 : _a.replace(result);
1555
1652
  }
1556
1653
  catch (error) {
1557
1654
  console.error('Layout in worker failed, fallback to main thread layout.', error);
@@ -1561,20 +1658,18 @@
1561
1658
  });
1562
1659
  }
1563
1660
  forEachNode(callback) {
1564
- this.model.forEachNode(callback);
1661
+ this.context.forEachNode(callback);
1565
1662
  }
1566
1663
  forEachEdge(callback) {
1567
- this.model.forEachEdge((edge, i) => {
1568
- edge.sourceNode = this.model.nodeMap.get(edge.source);
1569
- edge.targetNode = this.model.nodeMap.get(edge.target);
1570
- callback(edge, i);
1571
- });
1664
+ this.context.forEachEdge(callback);
1572
1665
  }
1573
1666
  destroy() {
1574
1667
  var _a;
1575
- (_a = this.model) === null || _a === void 0 ? void 0 : _a.destroy();
1668
+ (_a = this.context) === null || _a === void 0 ? void 0 : _a.destroy();
1576
1669
  // @ts-ignore
1577
1670
  this.model = null;
1671
+ // @ts-ignore
1672
+ this.context = null;
1578
1673
  if (this.supervisor) {
1579
1674
  this.supervisor.destroy();
1580
1675
  this.supervisor = null;
@@ -1597,71 +1692,6 @@
1597
1692
  return !!layout.tick && !!layout.stop;
1598
1693
  }
1599
1694
 
1600
- /**
1601
- * Format value with multiple types into a function that returns a number
1602
- * @param value The value to be formatted
1603
- * @param defaultValue The default value when value is invalid
1604
- * @returns A function that returns a number
1605
- */
1606
- function formatNumberFn(value, defaultValue) {
1607
- // If value is a function, return it directly
1608
- if (isFunction(value)) {
1609
- return value;
1610
- }
1611
- // If value is a number, return a function that returns this number
1612
- if (isNumber(value)) {
1613
- return () => value;
1614
- }
1615
- // For other cases (undefined or invalid values), return default value function
1616
- return () => defaultValue;
1617
- }
1618
- /**
1619
- * Format size config with multiple types into a function that returns a size
1620
- * @param value The value to be formatted
1621
- * @param defaultValue The default value when value is invalid
1622
- * @param resultIsNumber Whether to return a number (max of width/height) or size array
1623
- * @returns A function that returns a size
1624
- */
1625
- function formatSizeFn(value, defaultValue = 10) {
1626
- // If value is undefined, return default value function
1627
- if (!value) {
1628
- return () => defaultValue;
1629
- }
1630
- // If value is a function, return it directly
1631
- if (isFunction(value)) {
1632
- return value;
1633
- }
1634
- // If value is a number, return a function that returns this number
1635
- if (isNumber(value)) {
1636
- return () => value;
1637
- }
1638
- // If value is an array, return max or the array itself
1639
- if (Array.isArray(value)) {
1640
- return () => value;
1641
- }
1642
- // If value is an object with width and height
1643
- if (isObject$1(value) && value.width && value.height) {
1644
- return () => [value.width, value.height];
1645
- }
1646
- return () => defaultValue;
1647
- }
1648
- /**
1649
- * Format nodeSize and nodeSpacing into a function that returns the total size
1650
- * @param nodeSize The size of the node
1651
- * @param nodeSpacing The spacing around the node
1652
- * @param defaultNodeSize The default node size when value is invalid
1653
- * @returns A function that returns the total size (node size + spacing)
1654
- */
1655
- const formatNodeSizeFn = (nodeSize, nodeSpacing, defaultNodeSize = 10) => {
1656
- const nodeSpacingFunc = formatNumberFn(nodeSpacing, 0);
1657
- const nodeSizeFunc = formatSizeFn(nodeSize, defaultNodeSize);
1658
- return (node) => {
1659
- const size = nodeSizeFunc(node);
1660
- const spacing = nodeSpacingFunc(node);
1661
- return Math.max(...parseSize(size)) + spacing;
1662
- };
1663
- };
1664
-
1665
1695
  /**
1666
1696
  * <zh/> 内部图数据结构,用于 antv-dagre 布局算法
1667
1697
  *
@@ -5101,9 +5131,9 @@
5101
5131
  return __awaiter(this, void 0, void 0, function* () {
5102
5132
  const { nodeSize, align, rankdir = 'TB', ranksep, nodesep, edgeLabelSpace, ranker = 'tight-tree', nodeOrder, begin, controlPoints, radial, sortByCombo,
5103
5133
  // focusNode,
5104
- preset, } = options;
5105
- const ranksepfunc = formatNumberFn(ranksep, DEFAULTS_LAYOUT_OPTIONS$8.ranksep);
5106
- const nodesepfunc = formatNumberFn(nodesep, DEFAULTS_LAYOUT_OPTIONS$8.nodesep);
5134
+ preset, ranksepFunc, nodesepFunc, } = options;
5135
+ const ranksepfunc = formatNumberFn(ranksepFunc, ranksep !== null && ranksep !== void 0 ? ranksep : 50);
5136
+ const nodesepfunc = formatNumberFn(nodesepFunc, nodesep !== null && nodesep !== void 0 ? nodesep : 50);
5107
5137
  let horisep = nodesepfunc;
5108
5138
  let vertisep = ranksepfunc;
5109
5139
  if (rankdir === 'LR' || rankdir === 'RL') {
@@ -5118,9 +5148,10 @@
5118
5148
  const edges = this.model.edges();
5119
5149
  nodes.forEach((node) => {
5120
5150
  var _a;
5121
- const size = parseSize(nodeSizeFunc(node));
5122
- const verti = vertisep(node);
5123
- const hori = horisep(node);
5151
+ const raw = node._original;
5152
+ const size = parseSize(nodeSizeFunc(raw));
5153
+ const verti = vertisep(raw);
5154
+ const hori = horisep(raw);
5124
5155
  const width = size[0] + 2 * hori;
5125
5156
  const height = size[1] + 2 * verti;
5126
5157
  const layer = (_a = node.data) === null || _a === void 0 ? void 0 : _a.layer;
@@ -5186,6 +5217,7 @@
5186
5217
  acyclicer: 'greedy',
5187
5218
  ranker,
5188
5219
  rankdir,
5220
+ nodesep,
5189
5221
  align,
5190
5222
  });
5191
5223
  const layoutTopLeft = [0, 0];
@@ -7290,25 +7322,17 @@
7290
7322
  }
7291
7323
 
7292
7324
  const DEFAULTS_LAYOUT_OPTIONS$6 = {
7293
- centerStrength: 1,
7294
- edgeId: (d) => String(d.id),
7295
- linkDistance: 30,
7296
- edgeStrength: undefined,
7297
- edgeIterations: 1,
7325
+ link: {
7326
+ id: (d) => String(d.id),
7327
+ },
7328
+ manyBody: {
7329
+ strength: -30,
7330
+ },
7298
7331
  preventOverlap: false,
7299
7332
  nodeSize: 10,
7300
7333
  nodeSpacing: 0,
7301
- collideStrength: 1,
7302
- collideIterations: 1,
7303
- nodeStrength: -30,
7304
- distanceMin: undefined,
7305
- distanceMax: undefined,
7306
- theta: undefined,
7307
- alpha: 1,
7308
- alphaMin: 0.001,
7309
- alphaDecay: 1 - Math.pow(0.001, 1 / 300),
7310
- alphaTarget: 0,
7311
- velocityDecay: 0.4,
7334
+ x: false,
7335
+ y: false,
7312
7336
  clustering: false,
7313
7337
  clusterNodeStrength: -1,
7314
7338
  clusterEdgeStrength: 0.1,
@@ -7525,20 +7549,17 @@
7525
7549
  this.setupClusterForce(simulation, options);
7526
7550
  }
7527
7551
  getCenterOptions(options) {
7528
- if (!options.width ||
7529
- !options.height ||
7530
- options.centerStrength !== undefined) {
7531
- const viewport = normalizeViewport({
7532
- width: options.width,
7533
- height: options.height,
7534
- });
7535
- return assignDefined({}, options.center || {}, {
7536
- x: viewport.width / 2,
7537
- y: viewport.height / 2,
7538
- strength: options.centerStrength,
7539
- });
7540
- }
7541
- return undefined;
7552
+ if (options.center === false)
7553
+ return undefined;
7554
+ const viewport = normalizeViewport({
7555
+ width: options.width,
7556
+ height: options.height,
7557
+ });
7558
+ return assignDefined({}, options.center || {}, {
7559
+ x: viewport.width / 2,
7560
+ y: viewport.height / 2,
7561
+ strength: options.centerStrength,
7562
+ });
7542
7563
  }
7543
7564
  setupCenterForce(simulation, options) {
7544
7565
  const center = this.getCenterOptions(options);
@@ -7562,19 +7583,14 @@
7562
7583
  }
7563
7584
  }
7564
7585
  getManyBodyOptions(options) {
7565
- if (options.manyBody !== undefined ||
7566
- options.nodeStrength !== undefined ||
7567
- options.distanceMin !== undefined ||
7568
- options.distanceMax !== undefined ||
7569
- options.theta !== undefined) {
7570
- return assignDefined({}, options.manyBody || {}, {
7571
- strength: options.nodeStrength,
7572
- distanceMin: options.distanceMin,
7573
- distanceMax: options.distanceMax,
7574
- theta: options.theta,
7575
- });
7576
- }
7577
- return undefined;
7586
+ if (options.manyBody === false)
7587
+ return undefined;
7588
+ return assignDefined({}, options.manyBody || {}, {
7589
+ strength: options.nodeStrength,
7590
+ distanceMin: options.distanceMin,
7591
+ distanceMax: options.distanceMax,
7592
+ theta: options.theta,
7593
+ });
7578
7594
  }
7579
7595
  setupManyBodyForce(simulation, options) {
7580
7596
  const manyBody = this.getManyBodyOptions(options);
@@ -7600,19 +7616,14 @@
7600
7616
  }
7601
7617
  }
7602
7618
  getLinkOptions(options) {
7603
- if (options.link ||
7604
- options.edgeId !== undefined ||
7605
- options.linkDistance !== undefined ||
7606
- options.edgeStrength !== undefined ||
7607
- options.edgeIterations !== undefined) {
7608
- return assignDefined({}, options.link || {}, {
7609
- id: options.edgeId,
7610
- distance: options.linkDistance,
7611
- strength: options.edgeStrength,
7612
- iterations: options.edgeIterations,
7613
- });
7614
- }
7615
- return undefined;
7619
+ if (options.link === false)
7620
+ return undefined;
7621
+ return assignDefined({}, options.link || {}, {
7622
+ id: options.edgeId,
7623
+ distance: options.linkDistance,
7624
+ strength: options.edgeStrength,
7625
+ iterations: options.edgeIterations,
7626
+ });
7616
7627
  }
7617
7628
  setupLinkForce(simulation, options) {
7618
7629
  const edges = this.model.edges();
@@ -7639,23 +7650,16 @@
7639
7650
  }
7640
7651
  }
7641
7652
  getCollisionOptions(options) {
7642
- if (!options.preventOverlap)
7653
+ if (options.preventOverlap === false || options.collide === false)
7643
7654
  return undefined;
7644
- if (options.collide !== undefined ||
7645
- options.nodeSize !== undefined ||
7646
- options.nodeSpacing !== undefined ||
7647
- options.collideStrength !== undefined ||
7648
- options.collideIterations !== undefined) {
7649
- const radius = options.nodeSize || options.nodeSpacing
7650
- ? (d) => formatNodeSizeFn(options.nodeSize, options.nodeSpacing)(d._original) / 2
7651
- : undefined;
7652
- return assignDefined({}, options.collide || {}, {
7653
- radius,
7654
- strength: options.collideStrength,
7655
- iterations: options.collideIterations,
7656
- });
7657
- }
7658
- return undefined;
7655
+ const radius = options.nodeSize || options.nodeSpacing
7656
+ ? (d) => formatNodeSizeFn(options.nodeSize, options.nodeSpacing)(d._original) / 2
7657
+ : undefined;
7658
+ return assignDefined({}, options.collide || {}, {
7659
+ radius: options.collide || radius,
7660
+ strength: options.collideStrength,
7661
+ iterations: options.collideIterations,
7662
+ });
7659
7663
  }
7660
7664
  setupCollisionForce(simulation, options) {
7661
7665
  const collide = this.getCollisionOptions(options);
@@ -7680,18 +7684,13 @@
7680
7684
  }
7681
7685
  getXForceOptions(options) {
7682
7686
  var _a;
7683
- if (options.x !== undefined ||
7684
- options.forceXPosition !== undefined ||
7685
- options.forceXStrength !== undefined ||
7686
- options.width !== undefined ||
7687
- options.height !== undefined) {
7688
- const center = this.getCenterOptions(options);
7689
- return assignDefined({}, options.x || {}, {
7690
- x: (_a = options.forceXPosition) !== null && _a !== void 0 ? _a : (center && center.x),
7691
- strength: options.forceXStrength,
7692
- });
7693
- }
7694
- return undefined;
7687
+ if (options.x === false)
7688
+ return undefined;
7689
+ const center = this.getCenterOptions(options);
7690
+ return assignDefined({}, options.x || {}, {
7691
+ x: (_a = options.forceXPosition) !== null && _a !== void 0 ? _a : (center && center.x),
7692
+ strength: options.forceXStrength,
7693
+ });
7695
7694
  }
7696
7695
  setupXForce(simulation, options) {
7697
7696
  const x = this.getXForceOptions(options);
@@ -7714,18 +7713,13 @@
7714
7713
  }
7715
7714
  getYForceOptions(options) {
7716
7715
  var _a;
7717
- if (options.y !== undefined ||
7718
- options.forceYPosition !== undefined ||
7719
- options.forceYStrength !== undefined ||
7720
- options.width !== undefined ||
7721
- options.height !== undefined) {
7722
- const center = this.getCenterOptions(options);
7723
- return assignDefined({}, options.y || {}, {
7724
- y: (_a = options.forceYPosition) !== null && _a !== void 0 ? _a : (center && center.y),
7725
- strength: options.forceYStrength,
7726
- });
7727
- }
7728
- return undefined;
7716
+ if (options.y === false)
7717
+ return undefined;
7718
+ const center = this.getCenterOptions(options);
7719
+ return assignDefined({}, options.y || {}, {
7720
+ y: (_a = options.forceYPosition) !== null && _a !== void 0 ? _a : (center && center.y),
7721
+ strength: options.forceYStrength,
7722
+ });
7729
7723
  }
7730
7724
  setupYForce(simulation, options) {
7731
7725
  const y = this.getYForceOptions(options);
@@ -24213,7 +24207,7 @@
24213
24207
  const options = this.parseOptions(this.options);
24214
24208
  const { width, height, dimensions } = options;
24215
24209
  this.initializePhysicsData(this.model, options);
24216
- initModelNodePosition(this.model, width, height, dimensions);
24210
+ initNodePosition(this.model, width, height, dimensions);
24217
24211
  if (!((_a = this.model.nodes()) === null || _a === void 0 ? void 0 : _a.length))
24218
24212
  return;
24219
24213
  const simulation = this.setSimulation(options);
@@ -25305,7 +25299,7 @@
25305
25299
  if (!n || n === 1) {
25306
25300
  return applySingleNodeLayout(this.model, center);
25307
25301
  }
25308
- initModelNodePosition(this.model, width, height);
25302
+ initNodePosition(this.model, width, height);
25309
25303
  const sizes = this.getSizes(merged.nodeSize, merged.nodeSpacing);
25310
25304
  const simulation = this.setSimulation();
25311
25305
  simulation.data(this.model, sizes);
@@ -25809,7 +25803,7 @@
25809
25803
  applySingleNodeLayout(this.model, center, dimensions);
25810
25804
  return;
25811
25805
  }
25812
- initModelNodePosition(this.model, width, height, dimensions);
25806
+ initNodePosition(this.model, width, height, dimensions);
25813
25807
  const simulation = this.setSimulation();
25814
25808
  simulation.data(this.model);
25815
25809
  simulation.initialize(options);
@@ -32413,8 +32407,6 @@ ${indent}columns: ${matrix.columns}
32413
32407
  layout() {
32414
32408
  return __awaiter(this, void 0, void 0, function* () {
32415
32409
  const { width, height, center } = normalizeViewport(this.options);
32416
- const layoutScale = 0.9;
32417
- const randomCoord = (size) => (Math.random() - 0.5) * layoutScale * size;
32418
32410
  this.model.forEachNode((node) => {
32419
32411
  node.x = randomCoord(width) + center[0];
32420
32412
  node.y = randomCoord(height) + center[1];
@@ -32422,6 +32414,13 @@ ${indent}columns: ${matrix.columns}
32422
32414
  });
32423
32415
  }
32424
32416
  }
32417
+ const layoutScale = 0.9;
32418
+ /**
32419
+ * <zh/> 生成随机坐标
32420
+ *
32421
+ * <en/> Generate random coordinates
32422
+ */
32423
+ const randomCoord = (size) => (Math.random() - 0.5) * layoutScale * size;
32425
32424
 
32426
32425
  const registry = {
32427
32426
  'antv-dagre': AntVDagreLayout,
@@ -32744,11 +32743,13 @@ ${indent}columns: ${matrix.columns}
32744
32743
  exports.ForceAtlas2Layout = ForceAtlas2Layout;
32745
32744
  exports.ForceLayout = ForceLayout;
32746
32745
  exports.FruchtermanLayout = FruchtermanLayout;
32746
+ exports.GraphLib = GraphLib;
32747
32747
  exports.GridLayout = GridLayout;
32748
- exports.LayoutModel = LayoutModel;
32749
32748
  exports.MDSLayout = MDSLayout;
32750
32749
  exports.RadialLayout = RadialLayout;
32751
32750
  exports.RandomLayout = RandomLayout;
32751
+ exports.RuntimeContext = RuntimeContext;
32752
+ exports.Supervisor = Supervisor;
32752
32753
  exports.applySingleNodeLayout = applySingleNodeLayout;
32753
32754
  exports.assignDefined = assignDefined;
32754
32755
  exports.floydWarshall = floydWarshall;
@@ -32758,10 +32759,10 @@ ${indent}columns: ${matrix.columns}
32758
32759
  exports.getLayoutBBox = getLayoutBBox;
32759
32760
  exports.getNestedValue = getNestedValue;
32760
32761
  exports.graphTreeDfs = graphTreeDfs;
32761
- exports.initModelNodePosition = initModelNodePosition;
32762
+ exports.initNodePosition = initNodePosition;
32762
32763
  exports.isArray = isArray;
32764
+ exports.isLayoutWithIterations = isLayoutWithIterations;
32763
32765
  exports.johnson = johnson;
32764
- exports.mergeOptions = mergeOptions;
32765
32766
  exports.normalizeViewport = normalizeViewport;
32766
32767
  exports.orderByDegree = orderByDegree;
32767
32768
  exports.orderById = orderById;