@antv/layout 1.2.14-beta.8 → 2.0.0-alpha.1

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 (1184) hide show
  1. package/README.md +3 -3
  2. package/dist/index.js +32778 -0
  3. package/dist/index.js.map +1 -0
  4. package/dist/index.min.js +8 -2
  5. package/dist/index.min.js.map +1 -1
  6. package/dist/worker.js +8 -0
  7. package/dist/worker.js.map +1 -0
  8. package/lib/_virtual/_cloneBuffer.js +4 -0
  9. package/lib/_virtual/_cloneBuffer.js.map +1 -0
  10. package/lib/_virtual/_commonjs-dynamic-modules.js +6 -0
  11. package/lib/_virtual/_commonjs-dynamic-modules.js.map +1 -0
  12. package/lib/_virtual/_commonjsHelpers.js +37 -0
  13. package/lib/_virtual/_commonjsHelpers.js.map +1 -0
  14. package/lib/_virtual/_nodeUtil.js +4 -0
  15. package/lib/_virtual/_nodeUtil.js.map +1 -0
  16. package/lib/_virtual/index.js +8 -0
  17. package/lib/_virtual/index.js.map +1 -0
  18. package/lib/_virtual/index2.js +7 -0
  19. package/lib/_virtual/index2.js.map +1 -0
  20. package/lib/_virtual/index3.js +7 -0
  21. package/lib/_virtual/index3.js.map +1 -0
  22. package/lib/_virtual/isBuffer.js +4 -0
  23. package/lib/_virtual/isBuffer.js.map +1 -0
  24. package/lib/_virtual/matrix.js +8 -0
  25. package/lib/_virtual/matrix.js.map +1 -0
  26. package/lib/_virtual/matrix2.js +4 -0
  27. package/lib/_virtual/matrix2.js.map +1 -0
  28. package/lib/antv-dagre/acyclic.js +8 -29
  29. package/lib/antv-dagre/acyclic.js.map +1 -1
  30. package/lib/antv-dagre/add-border-segments.js +10 -5
  31. package/lib/antv-dagre/add-border-segments.js.map +1 -1
  32. package/lib/antv-dagre/coordinate-system.js +4 -3
  33. package/lib/antv-dagre/coordinate-system.js.map +1 -1
  34. package/lib/antv-dagre/data/list.js +5 -3
  35. package/lib/antv-dagre/data/list.js.map +1 -1
  36. package/lib/antv-dagre/graph.js +429 -0
  37. package/lib/antv-dagre/graph.js.map +1 -0
  38. package/lib/antv-dagre/greedy-fas.js +9 -6
  39. package/lib/antv-dagre/greedy-fas.js.map +1 -1
  40. package/lib/antv-dagre/index.d.ts +15 -0
  41. package/lib/antv-dagre/index.js +337 -0
  42. package/lib/antv-dagre/index.js.map +1 -0
  43. package/lib/antv-dagre/layout.js +29 -26
  44. package/lib/antv-dagre/layout.js.map +1 -1
  45. package/lib/antv-dagre/nesting-graph.js +6 -4
  46. package/lib/antv-dagre/nesting-graph.js.map +1 -1
  47. package/lib/antv-dagre/normalize.js +4 -2
  48. package/lib/antv-dagre/normalize.js.map +1 -1
  49. package/lib/antv-dagre/order/add-subgraph-constraints.js +4 -2
  50. package/lib/antv-dagre/order/add-subgraph-constraints.js.map +1 -1
  51. package/lib/antv-dagre/order/barycenter.js +4 -2
  52. package/lib/antv-dagre/order/barycenter.js.map +1 -1
  53. package/lib/antv-dagre/order/build-layer-graph.js +10 -13
  54. package/lib/antv-dagre/order/build-layer-graph.js.map +1 -1
  55. package/lib/antv-dagre/order/cross-count.js +6 -3
  56. package/lib/antv-dagre/order/cross-count.js.map +1 -1
  57. package/lib/antv-dagre/order/index.js +14 -11
  58. package/lib/antv-dagre/order/index.js.map +1 -1
  59. package/lib/antv-dagre/order/init-data-order.js +4 -2
  60. package/lib/antv-dagre/order/init-data-order.js.map +1 -1
  61. package/lib/antv-dagre/order/init-order.js +4 -2
  62. package/lib/antv-dagre/order/init-order.js.map +1 -1
  63. package/lib/antv-dagre/order/resolve-conflicts.js +3 -2
  64. package/lib/antv-dagre/order/resolve-conflicts.js.map +1 -1
  65. package/lib/antv-dagre/order/sort-subgraph.js +8 -5
  66. package/lib/antv-dagre/order/sort-subgraph.js.map +1 -1
  67. package/lib/antv-dagre/order/sort.js +6 -3
  68. package/lib/antv-dagre/order/sort.js.map +1 -1
  69. package/lib/antv-dagre/parent-dummy-chains.js +4 -2
  70. package/lib/antv-dagre/parent-dummy-chains.js.map +1 -1
  71. package/lib/antv-dagre/position/bk.js +20 -49
  72. package/lib/antv-dagre/position/bk.js.map +1 -1
  73. package/lib/antv-dagre/position/index.js +7 -4
  74. package/lib/antv-dagre/position/index.js.map +1 -1
  75. package/lib/antv-dagre/rank/feasible-tree.js +8 -6
  76. package/lib/antv-dagre/rank/feasible-tree.js.map +1 -1
  77. package/lib/antv-dagre/rank/index.js +9 -6
  78. package/lib/antv-dagre/rank/index.js.map +1 -1
  79. package/lib/antv-dagre/rank/network-simplex.js +17 -14
  80. package/lib/antv-dagre/rank/network-simplex.js.map +1 -1
  81. package/lib/antv-dagre/rank/util.js +2 -1
  82. package/lib/antv-dagre/rank/util.js.map +1 -1
  83. package/lib/antv-dagre/types.d.ts +170 -2
  84. package/lib/antv-dagre/util.js +26 -42
  85. package/lib/antv-dagre/util.js.map +1 -1
  86. package/lib/circular/index.d.ts +15 -0
  87. package/lib/circular/index.js +108 -0
  88. package/lib/circular/index.js.map +1 -0
  89. package/lib/circular/types.d.ts +105 -0
  90. package/lib/combo-combined/index.d.ts +33 -0
  91. package/lib/combo-combined/index.js +303 -0
  92. package/lib/combo-combined/index.js.map +1 -0
  93. package/lib/combo-combined/types.d.ts +37 -0
  94. package/lib/concentric/index.d.ts +15 -0
  95. package/lib/concentric/index.js +192 -0
  96. package/lib/concentric/index.js.map +1 -0
  97. package/lib/concentric/types.d.ts +92 -0
  98. package/lib/core/base-layout.d.ts +40 -0
  99. package/lib/core/base-layout.js +88 -0
  100. package/lib/core/base-layout.js.map +1 -0
  101. package/lib/core/base-simulation.d.ts +43 -0
  102. package/lib/core/base-simulation.js +75 -0
  103. package/lib/core/base-simulation.js.map +1 -0
  104. package/lib/core/types.d.ts +89 -0
  105. package/lib/d3-force/force-in-a-box.js +343 -0
  106. package/lib/d3-force/force-in-a-box.js.map +1 -0
  107. package/lib/d3-force/index.d.ts +47 -29
  108. package/lib/d3-force/index.js +483 -104
  109. package/lib/d3-force/index.js.map +1 -1
  110. package/lib/d3-force/types.d.ts +221 -32
  111. package/lib/d3-force-3d/index.d.ts +11 -10
  112. package/lib/d3-force-3d/index.js +34 -8
  113. package/lib/d3-force-3d/index.js.map +1 -1
  114. package/lib/d3-force-3d/types.d.ts +12 -5
  115. package/lib/dagre/index.d.ts +22 -0
  116. package/lib/dagre/index.js +142 -0
  117. package/lib/dagre/index.js.map +1 -0
  118. package/lib/dagre/types.d.ts +79 -0
  119. package/lib/force/attractive.js +60 -0
  120. package/lib/force/attractive.js.map +1 -0
  121. package/lib/force/centripetal.js +87 -0
  122. package/lib/force/centripetal.js.map +1 -0
  123. package/lib/force/collide.js +172 -0
  124. package/lib/force/collide.js.map +1 -0
  125. package/lib/force/gravity.js +50 -0
  126. package/lib/force/gravity.js.map +1 -0
  127. package/lib/force/index.d.ts +64 -105
  128. package/lib/force/index.js +293 -611
  129. package/lib/force/index.js.map +1 -1
  130. package/lib/force/{force-n-body.js → repulsive.js} +40 -18
  131. package/lib/force/repulsive.js.map +1 -0
  132. package/lib/force/simulation.d.ts +23 -0
  133. package/lib/force/simulation.js +137 -0
  134. package/lib/force/simulation.js.map +1 -0
  135. package/lib/force/types.d.ts +236 -27
  136. package/lib/force-atlas2/body.js +4 -2
  137. package/lib/force-atlas2/body.js.map +1 -1
  138. package/lib/force-atlas2/index.d.ts +19 -93
  139. package/lib/force-atlas2/index.js +112 -497
  140. package/lib/force-atlas2/index.js.map +1 -1
  141. package/lib/force-atlas2/quad-tree.js +4 -2
  142. package/lib/force-atlas2/quad-tree.js.map +1 -1
  143. package/lib/force-atlas2/quad.js +4 -2
  144. package/lib/force-atlas2/quad.js.map +1 -1
  145. package/lib/force-atlas2/simulation.d.ts +39 -0
  146. package/lib/force-atlas2/simulation.js +388 -0
  147. package/lib/force-atlas2/simulation.js.map +1 -0
  148. package/lib/force-atlas2/types.d.ts +109 -0
  149. package/lib/fruchterman/index.d.ts +20 -0
  150. package/lib/fruchterman/index.js +93 -0
  151. package/lib/fruchterman/index.js.map +1 -0
  152. package/lib/fruchterman/simulation.js +356 -0
  153. package/lib/fruchterman/simulation.js.map +1 -0
  154. package/lib/fruchterman/types.d.ts +48 -0
  155. package/lib/grid/index.d.ts +16 -0
  156. package/lib/grid/index.js +243 -0
  157. package/lib/grid/index.js.map +1 -0
  158. package/lib/grid/types.d.ts +85 -0
  159. package/lib/index.d.ts +47 -2
  160. package/lib/index.js +26 -3
  161. package/lib/index.js.map +1 -1
  162. package/lib/mds/index.d.ts +15 -0
  163. package/lib/mds/index.js +127 -0
  164. package/lib/mds/index.js.map +1 -0
  165. package/lib/mds/types.d.ts +25 -0
  166. package/lib/node_modules/.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv/event-emitter/esm/index.js +107 -0
  167. package/lib/node_modules/.pnpm/@antv_event-emitter@0.1.3/node_modules/@antv/event-emitter/esm/index.js.map +1 -0
  168. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/clone.js +34 -0
  169. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/clone.js.map +1 -0
  170. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/deep-mix.js +54 -0
  171. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/deep-mix.js.map +1 -0
  172. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/each.js +30 -0
  173. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/each.js.map +1 -0
  174. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get-type.js +10 -0
  175. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get-type.js.map +1 -0
  176. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get.js +19 -0
  177. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/get.js.map +1 -0
  178. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array-like.js +12 -0
  179. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array-like.js.map +1 -0
  180. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array.js +10 -0
  181. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-array.js.map +1 -0
  182. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-boolean.js +14 -0
  183. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-boolean.js.map +1 -0
  184. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-empty.js +39 -0
  185. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-empty.js.map +1 -0
  186. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-function.js +10 -0
  187. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-function.js.map +1 -0
  188. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-nil.js +10 -0
  189. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-nil.js.map +1 -0
  190. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-number.js +10 -0
  191. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-number.js.map +1 -0
  192. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object-like.js +12 -0
  193. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object-like.js.map +1 -0
  194. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object.js +13 -0
  195. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-object.js.map +1 -0
  196. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-plain-object.js +25 -0
  197. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-plain-object.js.map +1 -0
  198. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-prototype.js +9 -0
  199. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-prototype.js.map +1 -0
  200. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-string.js +10 -0
  201. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-string.js.map +1 -0
  202. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-type.js +5 -0
  203. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/is-type.js.map +1 -0
  204. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/pick.js +19 -0
  205. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/pick.js.map +1 -0
  206. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/set.js +30 -0
  207. package/lib/node_modules/.pnpm/@antv_util@3.3.11/node_modules/@antv/util/esm/lodash/set.js.map +1 -0
  208. 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 +46 -0
  209. 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 +1 -0
  210. package/lib/node_modules/.pnpm/comlink@4.4.2/node_modules/comlink/dist/esm/comlink.js +351 -0
  211. package/lib/node_modules/.pnpm/comlink@4.4.2/node_modules/comlink/dist/esm/comlink.js.map +1 -0
  212. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/add.js +71 -0
  213. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/add.js.map +1 -0
  214. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/binarytree.js +71 -0
  215. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/binarytree.js.map +1 -0
  216. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/cover.js +39 -0
  217. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/cover.js.map +1 -0
  218. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/data.js +10 -0
  219. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/data.js.map +1 -0
  220. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/extent.js +8 -0
  221. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/extent.js.map +1 -0
  222. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/find.js +61 -0
  223. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/find.js.map +1 -0
  224. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/half.js +8 -0
  225. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/half.js.map +1 -0
  226. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/remove.js +59 -0
  227. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/remove.js.map +1 -0
  228. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/root.js +6 -0
  229. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/root.js.map +1 -0
  230. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/size.js +10 -0
  231. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/size.js.map +1 -0
  232. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visit.js +17 -0
  233. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visit.js.map +1 -0
  234. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visitAfter.js +22 -0
  235. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/visitAfter.js.map +1 -0
  236. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/x.js +10 -0
  237. package/lib/node_modules/.pnpm/d3-binarytree@1.0.2/node_modules/d3-binarytree/src/x.js.map +1 -0
  238. package/lib/node_modules/.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch/src/dispatch.js +85 -0
  239. package/lib/node_modules/.pnpm/d3-dispatch@3.0.1/node_modules/d3-dispatch/src/dispatch.js.map +1 -0
  240. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/center.js +52 -0
  241. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/center.js.map +1 -0
  242. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js +135 -0
  243. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/collide.js.map +1 -0
  244. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/constant.js +8 -0
  245. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/constant.js.map +1 -0
  246. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/jiggle.js +6 -0
  247. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/jiggle.js.map +1 -0
  248. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/lcg.js +12 -0
  249. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/lcg.js.map +1 -0
  250. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/link.js +127 -0
  251. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/link.js.map +1 -0
  252. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js +142 -0
  253. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/manyBody.js.map +1 -0
  254. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/radial.js +70 -0
  255. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/radial.js.map +1 -0
  256. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js +202 -0
  257. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/simulation.js.map +1 -0
  258. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/x.js +44 -0
  259. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/x.js.map +1 -0
  260. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/y.js +44 -0
  261. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/y.js.map +1 -0
  262. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/z.js +44 -0
  263. package/lib/node_modules/.pnpm/d3-force-3d@3.0.6/node_modules/d3-force-3d/src/z.js.map +1 -0
  264. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/center.js +43 -0
  265. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/center.js.map +1 -0
  266. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js +103 -0
  267. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/collide.js.map +1 -0
  268. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/constant.js +8 -0
  269. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/constant.js.map +1 -0
  270. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/jiggle.js +6 -0
  271. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/jiggle.js.map +1 -0
  272. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/lcg.js +12 -0
  273. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/lcg.js.map +1 -0
  274. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/link.js +120 -0
  275. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/link.js.map +1 -0
  276. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js +119 -0
  277. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/manyBody.js.map +1 -0
  278. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/radial.js +60 -0
  279. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/radial.js.map +1 -0
  280. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js +159 -0
  281. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/simulation.js.map +1 -0
  282. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/x.js +44 -0
  283. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/x.js.map +1 -0
  284. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/y.js +44 -0
  285. package/lib/node_modules/.pnpm/d3-force@3.0.0/node_modules/d3-force/src/y.js.map +1 -0
  286. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/add.js +101 -0
  287. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/add.js.map +1 -0
  288. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/cover.js +55 -0
  289. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/cover.js.map +1 -0
  290. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/data.js +10 -0
  291. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/data.js.map +1 -0
  292. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/extent.js +8 -0
  293. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/extent.js.map +1 -0
  294. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/find.js +85 -0
  295. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/find.js.map +1 -0
  296. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/findAll.js +29 -0
  297. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/findAll.js.map +1 -0
  298. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octant.js +12 -0
  299. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octant.js.map +1 -0
  300. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octree.js +83 -0
  301. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/octree.js.map +1 -0
  302. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/remove.js +71 -0
  303. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/remove.js.map +1 -0
  304. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/root.js +6 -0
  305. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/root.js.map +1 -0
  306. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/size.js +10 -0
  307. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/size.js.map +1 -0
  308. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visit.js +23 -0
  309. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visit.js.map +1 -0
  310. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visitAfter.js +28 -0
  311. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/visitAfter.js.map +1 -0
  312. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/x.js +10 -0
  313. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/x.js.map +1 -0
  314. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/y.js +10 -0
  315. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/y.js.map +1 -0
  316. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/z.js +10 -0
  317. package/lib/node_modules/.pnpm/d3-octree@1.1.0/node_modules/d3-octree/src/z.js.map +1 -0
  318. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/add.js +87 -0
  319. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/add.js.map +1 -0
  320. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/cover.js +46 -0
  321. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/cover.js.map +1 -0
  322. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/data.js +10 -0
  323. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/data.js.map +1 -0
  324. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/extent.js +8 -0
  325. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/extent.js.map +1 -0
  326. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/find.js +73 -0
  327. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/find.js.map +1 -0
  328. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quad.js +10 -0
  329. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quad.js.map +1 -0
  330. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quadtree.js +76 -0
  331. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/quadtree.js.map +1 -0
  332. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/remove.js +65 -0
  333. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/remove.js.map +1 -0
  334. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/root.js +6 -0
  335. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/root.js.map +1 -0
  336. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/size.js +10 -0
  337. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/size.js.map +1 -0
  338. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visit.js +19 -0
  339. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visit.js.map +1 -0
  340. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visitAfter.js +24 -0
  341. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/visitAfter.js.map +1 -0
  342. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/x.js +10 -0
  343. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/x.js.map +1 -0
  344. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/y.js +10 -0
  345. package/lib/node_modules/.pnpm/d3-quadtree@3.0.1/node_modules/d3-quadtree/src/y.js.map +1 -0
  346. package/lib/node_modules/.pnpm/d3-timer@3.0.1/node_modules/d3-timer/src/timer.js +113 -0
  347. package/lib/node_modules/.pnpm/d3-timer@3.0.1/node_modules/d3-timer/src/timer.js.map +1 -0
  348. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/index.js +50 -0
  349. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/index.js.map +1 -0
  350. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/acyclic.js +80 -0
  351. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/acyclic.js.map +1 -0
  352. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/add-border-segments.js +52 -0
  353. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/add-border-segments.js.map +1 -0
  354. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/coordinate-system.js +84 -0
  355. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/coordinate-system.js.map +1 -0
  356. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/data/list.js +67 -0
  357. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/data/list.js.map +1 -0
  358. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/debug.js +49 -0
  359. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/debug.js.map +1 -0
  360. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js +31 -0
  361. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/graphlib.js.map +1 -0
  362. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/greedy-fas.js +133 -0
  363. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/greedy-fas.js.map +1 -0
  364. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/layout.js +415 -0
  365. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/layout.js.map +1 -0
  366. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js +83 -0
  367. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/lodash.js.map +1 -0
  368. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/nesting-graph.js +146 -0
  369. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/nesting-graph.js.map +1 -0
  370. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/normalize.js +103 -0
  371. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/normalize.js.map +1 -0
  372. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/add-subgraph-constraints.js +66 -0
  373. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/add-subgraph-constraints.js.map +1 -0
  374. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/barycenter.js +40 -0
  375. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/barycenter.js.map +1 -0
  376. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/build-layer-graph.js +87 -0
  377. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/build-layer-graph.js.map +1 -0
  378. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/cross-count.js +79 -0
  379. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/cross-count.js.map +1 -0
  380. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/index.js +98 -0
  381. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/index.js.map +1 -0
  382. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/init-order.js +50 -0
  383. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/init-order.js.map +1 -0
  384. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/resolve-conflicts.js +134 -0
  385. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/resolve-conflicts.js.map +1 -0
  386. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort-subgraph.js +92 -0
  387. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort-subgraph.js.map +1 -0
  388. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort.js +71 -0
  389. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/order/sort.js.map +1 -0
  390. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/parent-dummy-chains.js +99 -0
  391. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/parent-dummy-chains.js.map +1 -0
  392. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/bk.js +433 -0
  393. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/bk.js.map +1 -0
  394. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/index.js +43 -0
  395. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/position/index.js.map +1 -0
  396. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/feasible-tree.js +103 -0
  397. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/feasible-tree.js.map +1 -0
  398. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/index.js +62 -0
  399. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/index.js.map +1 -0
  400. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/network-simplex.js +250 -0
  401. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/network-simplex.js.map +1 -0
  402. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/util.js +75 -0
  403. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/rank/util.js.map +1 -0
  404. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/util.js +251 -0
  405. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/util.js.map +1 -0
  406. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/version.js +12 -0
  407. package/lib/node_modules/.pnpm/dagre@0.8.5/node_modules/dagre/lib/version.js.map +1 -0
  408. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/index.js +53 -0
  409. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/index.js.map +1 -0
  410. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/components.js +40 -0
  411. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/components.js.map +1 -0
  412. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dfs.js +55 -0
  413. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dfs.js.map +1 -0
  414. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra-all.js +24 -0
  415. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra-all.js.map +1 -0
  416. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra.js +68 -0
  417. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/dijkstra.js.map +1 -0
  418. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/find-cycles.js +24 -0
  419. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/find-cycles.js.map +1 -0
  420. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/floyd-warshall.js +63 -0
  421. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/floyd-warshall.js.map +1 -0
  422. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/index.js +36 -0
  423. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/index.js.map +1 -0
  424. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/is-acyclic.js +28 -0
  425. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/is-acyclic.js.map +1 -0
  426. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/postorder.js +20 -0
  427. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/postorder.js.map +1 -0
  428. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/preorder.js +20 -0
  429. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/preorder.js.map +1 -0
  430. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/prim.js +67 -0
  431. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/prim.js.map +1 -0
  432. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/tarjan.js +60 -0
  433. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/tarjan.js.map +1 -0
  434. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/topsort.js +48 -0
  435. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/alg/topsort.js.map +1 -0
  436. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/data/priority-queue.js +165 -0
  437. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/data/priority-queue.js.map +1 -0
  438. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/graph.js +544 -0
  439. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/graph.js.map +1 -0
  440. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/index.js +19 -0
  441. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/index.js.map +1 -0
  442. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/json.js +80 -0
  443. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/json.js.map +1 -0
  444. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js +63 -0
  445. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/lodash.js.map +1 -0
  446. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/version.js +12 -0
  447. package/lib/node_modules/.pnpm/graphlib@2.1.8/node_modules/graphlib/lib/version.js.map +1 -0
  448. package/lib/node_modules/.pnpm/is-any-array@2.0.1/node_modules/is-any-array/lib-esm/index.js +15 -0
  449. package/lib/node_modules/.pnpm/is-any-array@2.0.1/node_modules/is-any-array/lib-esm/index.js.map +1 -0
  450. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_DataView.js +21 -0
  451. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_DataView.js.map +1 -0
  452. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Hash.js +49 -0
  453. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Hash.js.map +1 -0
  454. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_ListCache.js +49 -0
  455. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_ListCache.js.map +1 -0
  456. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Map.js +21 -0
  457. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Map.js.map +1 -0
  458. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_MapCache.js +49 -0
  459. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_MapCache.js.map +1 -0
  460. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Promise.js +21 -0
  461. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Promise.js.map +1 -0
  462. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Set.js +21 -0
  463. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Set.js.map +1 -0
  464. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_SetCache.js +42 -0
  465. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_SetCache.js.map +1 -0
  466. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Stack.js +45 -0
  467. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Stack.js.map +1 -0
  468. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Symbol.js +19 -0
  469. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Symbol.js.map +1 -0
  470. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Uint8Array.js +19 -0
  471. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_Uint8Array.js.map +1 -0
  472. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_WeakMap.js +21 -0
  473. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_WeakMap.js.map +1 -0
  474. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_apply.js +33 -0
  475. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_apply.js.map +1 -0
  476. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayEach.js +34 -0
  477. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayEach.js.map +1 -0
  478. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayFilter.js +37 -0
  479. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayFilter.js.map +1 -0
  480. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludes.js +30 -0
  481. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludes.js.map +1 -0
  482. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludesWith.js +34 -0
  483. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayIncludesWith.js.map +1 -0
  484. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayLikeKeys.js +67 -0
  485. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayLikeKeys.js.map +1 -0
  486. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayMap.js +33 -0
  487. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayMap.js.map +1 -0
  488. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayPush.js +32 -0
  489. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayPush.js.map +1 -0
  490. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayReduce.js +38 -0
  491. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arrayReduce.js.map +1 -0
  492. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arraySome.js +35 -0
  493. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_arraySome.js.map +1 -0
  494. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_asciiSize.js +25 -0
  495. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_asciiSize.js.map +1 -0
  496. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignMergeValue.js +34 -0
  497. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignMergeValue.js.map +1 -0
  498. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignValue.js +42 -0
  499. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assignValue.js.map +1 -0
  500. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assocIndexOf.js +34 -0
  501. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_assocIndexOf.js.map +1 -0
  502. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssign.js +31 -0
  503. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssign.js.map +1 -0
  504. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignIn.js +31 -0
  505. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignIn.js.map +1 -0
  506. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignValue.js +38 -0
  507. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseAssignValue.js.map +1 -0
  508. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseClone.js +200 -0
  509. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseClone.js.map +1 -0
  510. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseCreate.js +43 -0
  511. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseCreate.js.map +1 -0
  512. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseEach.js +28 -0
  513. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseEach.js.map +1 -0
  514. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseExtremum.js +45 -0
  515. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseExtremum.js.map +1 -0
  516. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFilter.js +34 -0
  517. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFilter.js.map +1 -0
  518. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFindIndex.js +36 -0
  519. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFindIndex.js.map +1 -0
  520. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFlatten.js +52 -0
  521. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFlatten.js.map +1 -0
  522. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFor.js +29 -0
  523. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseFor.js.map +1 -0
  524. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseForOwn.js +30 -0
  525. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseForOwn.js.map +1 -0
  526. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGet.js +38 -0
  527. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGet.js.map +1 -0
  528. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetAllKeys.js +34 -0
  529. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetAllKeys.js.map +1 -0
  530. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetTag.js +43 -0
  531. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGetTag.js.map +1 -0
  532. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGt.js +26 -0
  533. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseGt.js.map +1 -0
  534. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js +31 -0
  535. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHas.js.map +1 -0
  536. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHasIn.js +25 -0
  537. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseHasIn.js.map +1 -0
  538. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIndexOf.js +35 -0
  539. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIndexOf.js.map +1 -0
  540. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsArguments.js +32 -0
  541. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsArguments.js.map +1 -0
  542. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqual.js +42 -0
  543. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqual.js.map +1 -0
  544. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqualDeep.js +103 -0
  545. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsEqualDeep.js.map +1 -0
  546. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMap.js +32 -0
  547. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMap.js.map +1 -0
  548. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMatch.js +76 -0
  549. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsMatch.js.map +1 -0
  550. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNaN.js +24 -0
  551. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNaN.js.map +1 -0
  552. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNative.js +63 -0
  553. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsNative.js.map +1 -0
  554. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsSet.js +32 -0
  555. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsSet.js.map +1 -0
  556. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsTypedArray.js +75 -0
  557. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIsTypedArray.js.map +1 -0
  558. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIteratee.js +48 -0
  559. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseIteratee.js.map +1 -0
  560. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeys.js +44 -0
  561. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeys.js.map +1 -0
  562. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeysIn.js +48 -0
  563. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseKeysIn.js.map +1 -0
  564. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseLt.js +26 -0
  565. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseLt.js.map +1 -0
  566. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMap.js +36 -0
  567. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMap.js.map +1 -0
  568. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatches.js +37 -0
  569. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatches.js.map +1 -0
  570. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatchesProperty.js +52 -0
  571. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMatchesProperty.js.map +1 -0
  572. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMerge.js +61 -0
  573. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMerge.js.map +1 -0
  574. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMergeDeep.js +121 -0
  575. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseMergeDeep.js.map +1 -0
  576. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js +70 -0
  577. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseOrderBy.js.map +1 -0
  578. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js +33 -0
  579. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePick.js.map +1 -0
  580. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePickBy.js +45 -0
  581. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePickBy.js.map +1 -0
  582. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseProperty.js +26 -0
  583. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseProperty.js.map +1 -0
  584. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyDeep.js +29 -0
  585. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_basePropertyDeep.js.map +1 -0
  586. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRange.js +40 -0
  587. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRange.js.map +1 -0
  588. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseReduce.js +35 -0
  589. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseReduce.js.map +1 -0
  590. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRest.js +32 -0
  591. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseRest.js.map +1 -0
  592. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSet.js +68 -0
  593. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSet.js.map +1 -0
  594. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSetToString.js +37 -0
  595. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSetToString.js.map +1 -0
  596. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js +33 -0
  597. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseSortBy.js.map +1 -0
  598. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTimes.js +32 -0
  599. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTimes.js.map +1 -0
  600. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseToString.js +50 -0
  601. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseToString.js.map +1 -0
  602. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTrim.js +32 -0
  603. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseTrim.js.map +1 -0
  604. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUnary.js +26 -0
  605. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUnary.js.map +1 -0
  606. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUniq.js +90 -0
  607. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseUniq.js.map +1 -0
  608. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseValues.js +32 -0
  609. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseValues.js.map +1 -0
  610. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseZipObject.js +35 -0
  611. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_baseZipObject.js.map +1 -0
  612. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cacheHas.js +25 -0
  613. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cacheHas.js.map +1 -0
  614. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castFunction.js +27 -0
  615. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castFunction.js.map +1 -0
  616. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castPath.js +37 -0
  617. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_castPath.js.map +1 -0
  618. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneArrayBuffer.js +29 -0
  619. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneArrayBuffer.js.map +1 -0
  620. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js +52 -0
  621. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneBuffer.js.map +1 -0
  622. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneDataView.js +29 -0
  623. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneDataView.js.map +1 -0
  624. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneRegExp.js +29 -0
  625. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneRegExp.js.map +1 -0
  626. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneSymbol.js +31 -0
  627. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneSymbol.js.map +1 -0
  628. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneTypedArray.js +29 -0
  629. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_cloneTypedArray.js.map +1 -0
  630. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js +54 -0
  631. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareAscending.js.map +1 -0
  632. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js +57 -0
  633. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_compareMultiple.js.map +1 -0
  634. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyArray.js +32 -0
  635. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyArray.js.map +1 -0
  636. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyObject.js +54 -0
  637. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copyObject.js.map +1 -0
  638. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbols.js +30 -0
  639. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbols.js.map +1 -0
  640. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbolsIn.js +30 -0
  641. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_copySymbolsIn.js.map +1 -0
  642. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_coreJsData.js +19 -0
  643. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_coreJsData.js.map +1 -0
  644. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createAssigner.js +51 -0
  645. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createAssigner.js.map +1 -0
  646. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseEach.js +45 -0
  647. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseEach.js.map +1 -0
  648. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseFor.js +37 -0
  649. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createBaseFor.js.map +1 -0
  650. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createFind.js +40 -0
  651. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createFind.js.map +1 -0
  652. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createRange.js +45 -0
  653. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createRange.js.map +1 -0
  654. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createSet.js +34 -0
  655. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_createSet.js.map +1 -0
  656. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_defineProperty.js +24 -0
  657. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_defineProperty.js.map +1 -0
  658. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalArrays.js +99 -0
  659. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalArrays.js.map +1 -0
  660. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalByTag.js +130 -0
  661. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalByTag.js.map +1 -0
  662. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalObjects.js +103 -0
  663. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_equalObjects.js.map +1 -0
  664. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_flatRest.js +31 -0
  665. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_flatRest.js.map +1 -0
  666. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js +18 -0
  667. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_freeGlobal.js.map +1 -0
  668. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeys.js +31 -0
  669. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeys.js.map +1 -0
  670. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeysIn.js +32 -0
  671. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getAllKeysIn.js.map +1 -0
  672. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMapData.js +31 -0
  673. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMapData.js.map +1 -0
  674. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMatchData.js +38 -0
  675. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getMatchData.js.map +1 -0
  676. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getNative.js +31 -0
  677. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getNative.js.map +1 -0
  678. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getPrototype.js +19 -0
  679. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getPrototype.js.map +1 -0
  680. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getRawTag.js +59 -0
  681. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getRawTag.js.map +1 -0
  682. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbols.js +44 -0
  683. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbols.js.map +1 -0
  684. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbolsIn.js +41 -0
  685. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getSymbolsIn.js.map +1 -0
  686. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getTag.js +77 -0
  687. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getTag.js.map +1 -0
  688. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getValue.js +25 -0
  689. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_getValue.js.map +1 -0
  690. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasPath.js +57 -0
  691. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasPath.js.map +1 -0
  692. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasUnicode.js +38 -0
  693. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hasUnicode.js.map +1 -0
  694. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashClear.js +28 -0
  695. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashClear.js.map +1 -0
  696. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashDelete.js +29 -0
  697. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashDelete.js.map +1 -0
  698. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashGet.js +43 -0
  699. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashGet.js.map +1 -0
  700. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashHas.js +36 -0
  701. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashHas.js.map +1 -0
  702. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashSet.js +36 -0
  703. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_hashSet.js.map +1 -0
  704. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneArray.js +38 -0
  705. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneArray.js.map +1 -0
  706. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneByTag.js +94 -0
  707. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneByTag.js.map +1 -0
  708. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneObject.js +33 -0
  709. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_initCloneObject.js.map +1 -0
  710. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isFlattenable.js +35 -0
  711. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isFlattenable.js.map +1 -0
  712. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIndex.js +37 -0
  713. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIndex.js.map +1 -0
  714. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIterateeCall.js +46 -0
  715. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isIterateeCall.js.map +1 -0
  716. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKey.js +43 -0
  717. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKey.js.map +1 -0
  718. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKeyable.js +27 -0
  719. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isKeyable.js.map +1 -0
  720. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isMasked.js +33 -0
  721. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isMasked.js.map +1 -0
  722. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isPrototype.js +30 -0
  723. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isPrototype.js.map +1 -0
  724. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isStrictComparable.js +28 -0
  725. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_isStrictComparable.js.map +1 -0
  726. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheClear.js +25 -0
  727. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheClear.js.map +1 -0
  728. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheDelete.js +48 -0
  729. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheDelete.js.map +1 -0
  730. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheGet.js +32 -0
  731. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheGet.js.map +1 -0
  732. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheHas.js +29 -0
  733. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheHas.js.map +1 -0
  734. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheSet.js +39 -0
  735. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_listCacheSet.js.map +1 -0
  736. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheClear.js +36 -0
  737. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheClear.js.map +1 -0
  738. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheDelete.js +31 -0
  739. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheDelete.js.map +1 -0
  740. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheGet.js +29 -0
  741. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheGet.js.map +1 -0
  742. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheHas.js +29 -0
  743. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheHas.js.map +1 -0
  744. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheSet.js +35 -0
  745. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapCacheSet.js.map +1 -0
  746. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapToArray.js +30 -0
  747. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_mapToArray.js.map +1 -0
  748. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_matchesStrictComparable.js +32 -0
  749. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_matchesStrictComparable.js.map +1 -0
  750. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_memoizeCapped.js +39 -0
  751. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_memoizeCapped.js.map +1 -0
  752. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeCreate.js +19 -0
  753. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeCreate.js.map +1 -0
  754. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeys.js +19 -0
  755. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeys.js.map +1 -0
  756. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeysIn.js +32 -0
  757. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nativeKeysIn.js.map +1 -0
  758. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js +47 -0
  759. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_nodeUtil.js.map +1 -0
  760. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_objectToString.js +34 -0
  761. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_objectToString.js.map +1 -0
  762. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overArg.js +27 -0
  763. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overArg.js.map +1 -0
  764. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overRest.js +49 -0
  765. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_overRest.js.map +1 -0
  766. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_root.js +22 -0
  767. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_root.js.map +1 -0
  768. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_safeGet.js +33 -0
  769. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_safeGet.js.map +1 -0
  770. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheAdd.js +31 -0
  771. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheAdd.js.map +1 -0
  772. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheHas.js +26 -0
  773. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setCacheHas.js.map +1 -0
  774. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToArray.js +30 -0
  775. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToArray.js.map +1 -0
  776. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToString.js +28 -0
  777. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_setToString.js.map +1 -0
  778. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_shortOut.js +49 -0
  779. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_shortOut.js.map +1 -0
  780. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackClear.js +28 -0
  781. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackClear.js.map +1 -0
  782. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackDelete.js +30 -0
  783. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackDelete.js.map +1 -0
  784. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackGet.js +26 -0
  785. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackGet.js.map +1 -0
  786. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackHas.js +26 -0
  787. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackHas.js.map +1 -0
  788. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackSet.js +49 -0
  789. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stackSet.js.map +1 -0
  790. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_strictIndexOf.js +35 -0
  791. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_strictIndexOf.js.map +1 -0
  792. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringSize.js +33 -0
  793. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringSize.js.map +1 -0
  794. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringToPath.js +40 -0
  795. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_stringToPath.js.map +1 -0
  796. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toKey.js +31 -0
  797. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toKey.js.map +1 -0
  798. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toSource.js +38 -0
  799. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_toSource.js.map +1 -0
  800. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_trimmedEndIndex.js +31 -0
  801. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_trimmedEndIndex.js.map +1 -0
  802. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_unicodeSize.js +56 -0
  803. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/_unicodeSize.js.map +1 -0
  804. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/clone.js +49 -0
  805. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/clone.js.map +1 -0
  806. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/cloneDeep.js +42 -0
  807. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/cloneDeep.js.map +1 -0
  808. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/constant.js +38 -0
  809. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/constant.js.map +1 -0
  810. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/defaults.js +80 -0
  811. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/defaults.js.map +1 -0
  812. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/each.js +14 -0
  813. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/each.js.map +1 -0
  814. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/eq.js +49 -0
  815. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/eq.js.map +1 -0
  816. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/filter.js +68 -0
  817. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/filter.js.map +1 -0
  818. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/find.js +56 -0
  819. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/find.js.map +1 -0
  820. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/findIndex.js +70 -0
  821. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/findIndex.js.map +1 -0
  822. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/flatten.js +35 -0
  823. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/flatten.js.map +1 -0
  824. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forEach.js +57 -0
  825. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forEach.js.map +1 -0
  826. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forIn.js +54 -0
  827. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/forIn.js.map +1 -0
  828. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/get.js +46 -0
  829. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/get.js.map +1 -0
  830. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js +49 -0
  831. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/has.js.map +1 -0
  832. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/hasIn.js +48 -0
  833. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/hasIn.js.map +1 -0
  834. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/identity.js +33 -0
  835. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/identity.js.map +1 -0
  836. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArguments.js +50 -0
  837. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArguments.js.map +1 -0
  838. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArray.js +38 -0
  839. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArray.js.map +1 -0
  840. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLike.js +47 -0
  841. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLike.js.map +1 -0
  842. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLikeObject.js +47 -0
  843. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isArrayLikeObject.js.map +1 -0
  844. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js +56 -0
  845. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isBuffer.js.map +1 -0
  846. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js +97 -0
  847. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isEmpty.js.map +1 -0
  848. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isFunction.js +51 -0
  849. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isFunction.js.map +1 -0
  850. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isLength.js +47 -0
  851. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isLength.js.map +1 -0
  852. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isMap.js +42 -0
  853. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isMap.js.map +1 -0
  854. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObject.js +43 -0
  855. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObject.js.map +1 -0
  856. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObjectLike.js +41 -0
  857. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isObjectLike.js.map +1 -0
  858. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isPlainObject.js +77 -0
  859. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isPlainObject.js.map +1 -0
  860. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSet.js +42 -0
  861. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSet.js.map +1 -0
  862. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isString.js +45 -0
  863. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isString.js.map +1 -0
  864. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSymbol.js +43 -0
  865. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isSymbol.js.map +1 -0
  866. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isTypedArray.js +42 -0
  867. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isTypedArray.js.map +1 -0
  868. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js +34 -0
  869. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/isUndefined.js.map +1 -0
  870. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keys.js +52 -0
  871. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keys.js.map +1 -0
  872. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keysIn.js +47 -0
  873. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/keysIn.js.map +1 -0
  874. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/last.js +32 -0
  875. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/last.js.map +1 -0
  876. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/map.js +69 -0
  877. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/map.js.map +1 -0
  878. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js +58 -0
  879. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/mapValues.js.map +1 -0
  880. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/max.js +44 -0
  881. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/max.js.map +1 -0
  882. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/memoize.js +86 -0
  883. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/memoize.js.map +1 -0
  884. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/merge.js +53 -0
  885. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/merge.js.map +1 -0
  886. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/min.js +44 -0
  887. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/min.js.map +1 -0
  888. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/minBy.js +49 -0
  889. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/minBy.js.map +1 -0
  890. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/noop.js +29 -0
  891. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/noop.js.map +1 -0
  892. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/now.js +36 -0
  893. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/now.js.map +1 -0
  894. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js +39 -0
  895. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/pick.js.map +1 -0
  896. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/property.js +48 -0
  897. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/property.js.map +1 -0
  898. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/range.js +59 -0
  899. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/range.js.map +1 -0
  900. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/reduce.js +68 -0
  901. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/reduce.js.map +1 -0
  902. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/size.js +63 -0
  903. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/size.js.map +1 -0
  904. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/sortBy.js +64 -0
  905. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/sortBy.js.map +1 -0
  906. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubArray.js +35 -0
  907. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubArray.js.map +1 -0
  908. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubFalse.js +30 -0
  909. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/stubFalse.js.map +1 -0
  910. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toFinite.js +55 -0
  911. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toFinite.js.map +1 -0
  912. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toInteger.js +49 -0
  913. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toInteger.js.map +1 -0
  914. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toNumber.js +79 -0
  915. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toNumber.js.map +1 -0
  916. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toPlainObject.js +46 -0
  917. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toPlainObject.js.map +1 -0
  918. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toString.js +41 -0
  919. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/toString.js.map +1 -0
  920. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/transform.js +87 -0
  921. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/transform.js.map +1 -0
  922. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/union.js +42 -0
  923. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/union.js.map +1 -0
  924. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/uniqueId.js +41 -0
  925. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/uniqueId.js.map +1 -0
  926. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/values.js +48 -0
  927. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/values.js.map +1 -0
  928. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/zipObject.js +38 -0
  929. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/zipObject.js.map +1 -0
  930. package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js +37 -0
  931. package/lib/node_modules/.pnpm/ml-array-max@1.2.4/node_modules/ml-array-max/lib-es6/index.js.map +1 -0
  932. package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js +37 -0
  933. package/lib/node_modules/.pnpm/ml-array-min@1.2.3/node_modules/ml-array-min/lib-es6/index.js.map +1 -0
  934. package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js +52 -0
  935. package/lib/node_modules/.pnpm/ml-array-rescale@1.3.7/node_modules/ml-array-rescale/lib-es6/index.js.map +1 -0
  936. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js +8 -0
  937. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix.js.map +1 -0
  938. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js +5660 -0
  939. package/lib/node_modules/.pnpm/ml-matrix@6.12.1/node_modules/ml-matrix/matrix2.js.map +1 -0
  940. package/lib/radial/index.d.ts +8 -14
  941. package/lib/radial/index.js +169 -232
  942. package/lib/radial/index.js.map +1 -1
  943. package/lib/radial/radial-nonoverlap-force.js +82 -52
  944. package/lib/radial/radial-nonoverlap-force.js.map +1 -1
  945. package/lib/radial/types.d.ts +103 -0
  946. package/lib/random/index.d.ts +15 -0
  947. package/lib/random/index.js +36 -0
  948. package/lib/random/index.js.map +1 -0
  949. package/lib/random/types.d.ts +11 -0
  950. package/lib/registry.d.ts +3 -2
  951. package/lib/registry.js +27 -26
  952. package/lib/registry.js.map +1 -1
  953. package/lib/supervisor.d.ts +18 -43
  954. package/lib/supervisor.js +63 -83
  955. package/lib/supervisor.js.map +1 -1
  956. package/lib/types/common.d.ts +4 -0
  957. package/lib/types/data.d.ts +56 -0
  958. package/lib/types/force.d.ts +47 -0
  959. package/lib/types/id.d.ts +3 -0
  960. package/lib/types/point.d.ts +9 -0
  961. package/lib/types/position.d.ts +10 -0
  962. package/lib/types/size.d.ts +4 -0
  963. package/lib/util/array.d.ts +3 -1
  964. package/lib/util/array.js +4 -2
  965. package/lib/util/array.js.map +1 -1
  966. package/lib/util/common.d.ts +8 -8
  967. package/lib/util/common.js +14 -25
  968. package/lib/util/common.js.map +1 -1
  969. package/lib/util/format.js +72 -0
  970. package/lib/util/format.js.map +1 -0
  971. package/lib/util/math.d.ts +30 -12
  972. package/lib/util/math.js +178 -55
  973. package/lib/util/math.js.map +1 -1
  974. package/lib/util/model.d.ts +45 -0
  975. package/lib/util/model.js +273 -0
  976. package/lib/util/model.js.map +1 -0
  977. package/lib/util/object.d.ts +22 -7
  978. package/lib/util/object.js +46 -40
  979. package/lib/util/object.js.map +1 -1
  980. package/lib/util/order.d.ts +20 -0
  981. package/lib/util/order.js +112 -0
  982. package/lib/util/order.js.map +1 -0
  983. package/lib/util/point.d.ts +6 -0
  984. package/lib/util/point.js +11 -0
  985. package/lib/util/point.js.map +1 -0
  986. package/lib/util/size.d.ts +5 -3
  987. package/lib/util/size.js +7 -4
  988. package/lib/util/size.js.map +1 -1
  989. package/lib/util/viewport.d.ts +16 -0
  990. package/lib/util/viewport.js +17 -0
  991. package/lib/util/viewport.js.map +1 -0
  992. package/lib/worker.js +32267 -33
  993. package/lib/worker.js.map +1 -1
  994. package/package.json +56 -10
  995. package/src/antv-dagre/acyclic.ts +70 -0
  996. package/src/antv-dagre/add-border-segments.ts +55 -0
  997. package/src/antv-dagre/coordinate-system.ts +77 -0
  998. package/src/antv-dagre/data/list.ts +60 -0
  999. package/src/antv-dagre/graph.ts +533 -0
  1000. package/src/antv-dagre/greedy-fas.ts +185 -0
  1001. package/src/antv-dagre/index.ts +620 -0
  1002. package/src/antv-dagre/layout.ts +622 -0
  1003. package/src/antv-dagre/nesting-graph.ts +184 -0
  1004. package/src/antv-dagre/normalize.ts +125 -0
  1005. package/src/antv-dagre/order/add-subgraph-constraints.ts +51 -0
  1006. package/src/antv-dagre/order/barycenter.ts +26 -0
  1007. package/src/antv-dagre/order/build-layer-graph.ts +109 -0
  1008. package/src/antv-dagre/order/cross-count.ts +76 -0
  1009. package/src/antv-dagre/order/index.ts +123 -0
  1010. package/src/antv-dagre/order/init-data-order.ts +29 -0
  1011. package/src/antv-dagre/order/init-order.ts +59 -0
  1012. package/src/antv-dagre/order/resolve-conflicts.ts +153 -0
  1013. package/src/antv-dagre/order/sort-subgraph.ts +111 -0
  1014. package/src/antv-dagre/order/sort.ts +94 -0
  1015. package/src/antv-dagre/parent-dummy-chains.ts +111 -0
  1016. package/src/antv-dagre/position/bk.ts +560 -0
  1017. package/src/antv-dagre/position/index.ts +109 -0
  1018. package/src/antv-dagre/rank/feasible-tree.ts +179 -0
  1019. package/src/antv-dagre/rank/index.ts +55 -0
  1020. package/src/antv-dagre/rank/network-simplex.ts +282 -0
  1021. package/src/antv-dagre/rank/util.ts +157 -0
  1022. package/src/antv-dagre/types.ts +175 -0
  1023. package/src/antv-dagre/util.ts +359 -0
  1024. package/src/circular/index.ts +123 -0
  1025. package/src/circular/types.ts +105 -0
  1026. package/src/combo-combined/index.ts +412 -0
  1027. package/src/combo-combined/types.ts +39 -0
  1028. package/src/concentric/index.ts +234 -0
  1029. package/src/concentric/types.ts +89 -0
  1030. package/src/core/base-layout.ts +126 -0
  1031. package/src/core/base-simulation.ts +115 -0
  1032. package/src/core/types.ts +145 -0
  1033. package/src/d3-force/force-in-a-box.ts +404 -0
  1034. package/src/d3-force/index.ts +642 -0
  1035. package/src/d3-force/types.ts +378 -0
  1036. package/src/d3-force-3d/index.ts +88 -0
  1037. package/src/d3-force-3d/types.ts +68 -0
  1038. package/src/d3-force-3d/typing.d.ts +301 -0
  1039. package/src/dagre/index.ts +172 -0
  1040. package/src/dagre/types.ts +85 -0
  1041. package/src/force/attractive.ts +71 -0
  1042. package/src/force/centripetal.ts +133 -0
  1043. package/src/force/collide.ts +219 -0
  1044. package/src/force/gravity.ts +61 -0
  1045. package/src/force/index.ts +539 -0
  1046. package/src/force/repulsive.ts +200 -0
  1047. package/src/force/simulation.ts +172 -0
  1048. package/src/force/types.ts +265 -0
  1049. package/src/force/typing.d.ts +76 -0
  1050. package/src/force-atlas2/body.ts +115 -0
  1051. package/src/force-atlas2/index.ts +188 -0
  1052. package/src/force-atlas2/quad-tree.ts +109 -0
  1053. package/src/force-atlas2/quad.ts +117 -0
  1054. package/src/force-atlas2/simulation.ts +445 -0
  1055. package/src/force-atlas2/types.ts +106 -0
  1056. package/src/fruchterman/index.ts +116 -0
  1057. package/src/fruchterman/simulation.ts +447 -0
  1058. package/src/fruchterman/types.ts +47 -0
  1059. package/src/grid/index.ts +305 -0
  1060. package/src/grid/types.ts +120 -0
  1061. package/src/index.ts +28 -0
  1062. package/src/mds/index.ts +143 -0
  1063. package/src/mds/types.ts +23 -0
  1064. package/src/radial/index.ts +345 -0
  1065. package/src/radial/radial-nonoverlap-force.ts +209 -0
  1066. package/src/radial/types.ts +100 -0
  1067. package/src/random/index.ts +35 -0
  1068. package/src/random/types.ts +8 -0
  1069. package/src/registry.ts +29 -0
  1070. package/src/supervisor.ts +77 -0
  1071. package/src/types/common.ts +3 -0
  1072. package/src/types/data.ts +72 -0
  1073. package/src/types/force.ts +49 -0
  1074. package/src/types/id.ts +1 -0
  1075. package/src/types/index.ts +7 -0
  1076. package/src/types/point.ts +9 -0
  1077. package/src/types/position.ts +11 -0
  1078. package/src/types/size.ts +3 -0
  1079. package/src/util/array.ts +1 -0
  1080. package/src/util/common.ts +25 -0
  1081. package/src/util/format.ts +92 -0
  1082. package/src/util/index.ts +9 -0
  1083. package/src/util/math.ts +312 -0
  1084. package/src/util/model.ts +372 -0
  1085. package/src/util/object.ts +54 -0
  1086. package/src/util/order.ts +150 -0
  1087. package/src/util/point.ts +9 -0
  1088. package/src/util/size.ts +10 -0
  1089. package/src/util/viewport.ts +27 -0
  1090. package/src/worker.ts +50 -0
  1091. package/dist/8983d9a23c2708350fbd.worker.js +0 -2
  1092. package/dist/8983d9a23c2708350fbd.worker.js.map +0 -1
  1093. package/lib/antv-dagre/acyclic.d.ts +0 -4
  1094. package/lib/antv-dagre/add-border-segments.d.ts +0 -2
  1095. package/lib/antv-dagre/coordinate-system.d.ts +0 -5
  1096. package/lib/antv-dagre/data/list.d.ts +0 -12
  1097. package/lib/antv-dagre/greedy-fas.d.ts +0 -3
  1098. package/lib/antv-dagre/layout.d.ts +0 -19
  1099. package/lib/antv-dagre/nesting-graph.d.ts +0 -8
  1100. package/lib/antv-dagre/normalize.d.ts +0 -5
  1101. package/lib/antv-dagre/order/add-subgraph-constraints.d.ts +0 -3
  1102. package/lib/antv-dagre/order/barycenter.d.ts +0 -14
  1103. package/lib/antv-dagre/order/build-layer-graph.d.ts +0 -3
  1104. package/lib/antv-dagre/order/cross-count.d.ts +0 -3
  1105. package/lib/antv-dagre/order/index.d.ts +0 -2
  1106. package/lib/antv-dagre/order/init-data-order.d.ts +0 -6
  1107. package/lib/antv-dagre/order/init-order.d.ts +0 -3
  1108. package/lib/antv-dagre/order/resolve-conflicts.d.ts +0 -20
  1109. package/lib/antv-dagre/order/sort-subgraph.d.ts +0 -7
  1110. package/lib/antv-dagre/order/sort.d.ts +0 -7
  1111. package/lib/antv-dagre/parent-dummy-chains.d.ts +0 -3
  1112. package/lib/antv-dagre/position/bk.d.ts +0 -26
  1113. package/lib/antv-dagre/position/index.d.ts +0 -8
  1114. package/lib/antv-dagre/rank/feasible-tree.d.ts +0 -5
  1115. package/lib/antv-dagre/rank/index.d.ts +0 -2
  1116. package/lib/antv-dagre/rank/network-simplex.d.ts +0 -16
  1117. package/lib/antv-dagre/rank/util.d.ts +0 -6
  1118. package/lib/antv-dagre/types.js +0 -2
  1119. package/lib/antv-dagre/types.js.map +0 -1
  1120. package/lib/antv-dagre/util.d.ts +0 -35
  1121. package/lib/antv-dagre.d.ts +0 -204
  1122. package/lib/antv-dagre.js +0 -528
  1123. package/lib/antv-dagre.js.map +0 -1
  1124. package/lib/bundle-entry.d.ts +0 -2
  1125. package/lib/bundle-entry.js +0 -3
  1126. package/lib/bundle-entry.js.map +0 -1
  1127. package/lib/bundle-supervisor.d.ts +0 -33
  1128. package/lib/bundle-supervisor.js +0 -95
  1129. package/lib/bundle-supervisor.js.map +0 -1
  1130. package/lib/bundle-worker.d.ts +0 -3
  1131. package/lib/bundle-worker.js +0 -51
  1132. package/lib/bundle-worker.js.map +0 -1
  1133. package/lib/circular.d.ts +0 -20
  1134. package/lib/circular.js +0 -232
  1135. package/lib/circular.js.map +0 -1
  1136. package/lib/combo-combined.d.ts +0 -22
  1137. package/lib/combo-combined.js +0 -415
  1138. package/lib/combo-combined.js.map +0 -1
  1139. package/lib/concentric.d.ts +0 -20
  1140. package/lib/concentric.js +0 -209
  1141. package/lib/concentric.js.map +0 -1
  1142. package/lib/d3-force/types.js +0 -2
  1143. package/lib/d3-force/types.js.map +0 -1
  1144. package/lib/d3-force-3d/types.js +0 -2
  1145. package/lib/d3-force-3d/types.js.map +0 -1
  1146. package/lib/dagre.d.ts +0 -20
  1147. package/lib/dagre.js +0 -69
  1148. package/lib/dagre.js.map +0 -1
  1149. package/lib/exports.d.ts +0 -20
  1150. package/lib/exports.js +0 -18
  1151. package/lib/exports.js.map +0 -1
  1152. package/lib/force/force-n-body.d.ts +0 -7
  1153. package/lib/force/force-n-body.js.map +0 -1
  1154. package/lib/force/types.js +0 -2
  1155. package/lib/force/types.js.map +0 -1
  1156. package/lib/force-atlas2/body.d.ts +0 -33
  1157. package/lib/force-atlas2/quad-tree.d.ts +0 -20
  1158. package/lib/force-atlas2/quad.d.ts +0 -27
  1159. package/lib/fruchterman.d.ts +0 -43
  1160. package/lib/fruchterman.js +0 -346
  1161. package/lib/fruchterman.js.map +0 -1
  1162. package/lib/grid.d.ts +0 -20
  1163. package/lib/grid.js +0 -288
  1164. package/lib/grid.js.map +0 -1
  1165. package/lib/mds.d.ts +0 -20
  1166. package/lib/mds.js +0 -117
  1167. package/lib/mds.js.map +0 -1
  1168. package/lib/radial/mds.d.ts +0 -2
  1169. package/lib/radial/mds.js +0 -31
  1170. package/lib/radial/mds.js.map +0 -1
  1171. package/lib/radial/radial-nonoverlap-force.d.ts +0 -16
  1172. package/lib/random.d.ts +0 -20
  1173. package/lib/random.js +0 -75
  1174. package/lib/random.js.map +0 -1
  1175. package/lib/types.d.ts +0 -1283
  1176. package/lib/types.js +0 -4
  1177. package/lib/types.js.map +0 -1
  1178. package/lib/util/function.d.ts +0 -26
  1179. package/lib/util/function.js +0 -124
  1180. package/lib/util/function.js.map +0 -1
  1181. package/lib/util/index.d.ts +0 -4
  1182. package/lib/util/index.js +0 -5
  1183. package/lib/util/index.js.map +0 -1
  1184. package/lib/worker.d.ts +0 -1
@@ -0,0 +1,179 @@
1
+ import type { EdgeData, ID } from '../../types';
2
+ import { DagreGraph, GraphEdge } from '../graph';
3
+ import { minBy } from '../util';
4
+ import { slack } from './util';
5
+
6
+ /*
7
+ * Constructs a spanning tree with tight edges and adjusted the input node's
8
+ * ranks to achieve this. A tight edge is one that is has a length that matches
9
+ * its "minlen" attribute.
10
+ *
11
+ * The basic structure for this function is derived from Gansner, et al., "A
12
+ * Technique for Drawing Directed Graphs."
13
+ *
14
+ * Pre-conditions:
15
+ *
16
+ * 1. Graph must be a DAG.
17
+ * 2. Graph must be connected.
18
+ * 3. Graph must have at least one node.
19
+ * 5. Graph nodes must have been previously assigned a "rank" property that
20
+ * respects the "minlen" property of incident edges.
21
+ * 6. Graph edges must have a "minlen" property.
22
+ *
23
+ * Post-conditions:
24
+ *
25
+ * - Graph nodes will have their rank adjusted to ensure that all edges are
26
+ * tight.
27
+ *
28
+ * Returns a tree (undirected graph) that is constructed using only "tight"
29
+ * edges.
30
+ */
31
+ const feasibleTree = (g: DagreGraph) => {
32
+ const t = new DagreGraph({
33
+ tree: [],
34
+ });
35
+
36
+ // Choose arbitrary node from which to start our tree
37
+ const start = g.getAllNodes()[0];
38
+ const size = g.getAllNodes().length;
39
+ t.addNode(start);
40
+
41
+ let edge: GraphEdge<EdgeData>;
42
+ let delta: number;
43
+ while (tightTree(t, g) < size) {
44
+ edge = findMinSlackEdge(t, g);
45
+ delta = t.hasNode(edge.source) ? slack(g, edge) : -slack(g, edge);
46
+ shiftRanks(t, g, delta);
47
+ }
48
+
49
+ return t;
50
+ };
51
+
52
+ /*
53
+ * Finds a maximal tree of tight edges and returns the number of nodes in the
54
+ * tree.
55
+ */
56
+ const tightTree = (t: DagreGraph, g: DagreGraph) => {
57
+ const dfs = (v: ID) => {
58
+ g.getRelatedEdges(v, 'both').forEach((e) => {
59
+ const edgeV = e.source;
60
+ const w = v === edgeV ? e.target : edgeV;
61
+ if (!t.hasNode(w) && !slack(g, e)) {
62
+ t.addNode({
63
+ id: w,
64
+ data: {},
65
+ });
66
+ t.addEdge({
67
+ id: e.id,
68
+ source: v,
69
+ target: w,
70
+ data: {},
71
+ });
72
+ dfs(w);
73
+ }
74
+ });
75
+ };
76
+
77
+ t.getAllNodes().forEach((n) => dfs(n.id));
78
+ return t.getAllNodes().length;
79
+ };
80
+
81
+ /*
82
+ * Constructs a spanning tree with tight edges and adjusted the input node's
83
+ * ranks to achieve this. A tight edge is one that is has a length that matches
84
+ * its "minlen" attribute.
85
+ *
86
+ * The basic structure for this function is derived from Gansner, et al., "A
87
+ * Technique for Drawing Directed Graphs."
88
+ *
89
+ * Pre-conditions:
90
+ *
91
+ * 1. Graph must be a DAG.
92
+ * 2. Graph must be connected.
93
+ * 3. Graph must have at least one node.
94
+ * 5. Graph nodes must have been previously assigned a "rank" property that
95
+ * respects the "minlen" property of incident edges.
96
+ * 6. Graph edges must have a "minlen" property.
97
+ *
98
+ * Post-conditions:
99
+ *
100
+ * - Graph nodes will have their rank adjusted to ensure that all edges are
101
+ * tight.
102
+ *
103
+ * Returns a tree (undirected graph) that is constructed using only "tight"
104
+ * edges.
105
+ */
106
+ const feasibleTreeWithLayer = (g: DagreGraph) => {
107
+ const t = new DagreGraph({ tree: [] });
108
+
109
+ // Choose arbitrary node from which to start our tree
110
+ const start = g.getAllNodes()[0];
111
+ const size = g.getAllNodes().length;
112
+ t.addNode(start);
113
+
114
+ let edge: GraphEdge<EdgeData>;
115
+ let delta: number;
116
+ while (tightTreeWithLayer(t, g)! < size) {
117
+ edge = findMinSlackEdge(t, g);
118
+ delta = t.hasNode(edge.source) ? slack(g, edge) : -slack(g, edge);
119
+ shiftRanks(t, g, delta);
120
+ }
121
+
122
+ return t;
123
+ };
124
+
125
+ /*
126
+ * Finds a maximal tree of tight edges and returns the number of nodes in the
127
+ * tree.
128
+ */
129
+ const tightTreeWithLayer = (t: DagreGraph, g: DagreGraph) => {
130
+ const dfs = (v: ID) => {
131
+ g.getRelatedEdges(v, 'both')?.forEach((e) => {
132
+ const edgeV = e.source;
133
+ const w = v === edgeV ? e.target : edgeV;
134
+ // 对于指定layer的,直接加入tight-tree,不参与调整
135
+ if (
136
+ !t.hasNode(w) &&
137
+ (g.getNode(w)!.data.layer !== undefined || !slack(g, e))
138
+ ) {
139
+ t.addNode({
140
+ id: w,
141
+ data: {},
142
+ });
143
+ t.addEdge({
144
+ id: e.id,
145
+ source: v,
146
+ target: w,
147
+ data: {},
148
+ });
149
+ dfs(w);
150
+ }
151
+ });
152
+ };
153
+
154
+ t.getAllNodes().forEach((n) => dfs(n.id));
155
+ return t.getAllNodes().length;
156
+ };
157
+
158
+ /*
159
+ * Finds the edge with the smallest slack that is incident on tree and returns
160
+ * it.
161
+ */
162
+ const findMinSlackEdge = (t: DagreGraph, g: DagreGraph) => {
163
+ return minBy(g.getAllEdges(), (e) => {
164
+ if (t.hasNode(e.source) !== t.hasNode(e.target)) {
165
+ return slack(g, e);
166
+ }
167
+ return Infinity;
168
+ });
169
+ };
170
+
171
+ const shiftRanks = (t: DagreGraph, g: DagreGraph, delta: number) => {
172
+ t.getAllNodes().forEach((tn) => {
173
+ const v = g.getNode(tn.id);
174
+ if (!v.data.rank) v.data.rank = 0;
175
+ v.data.rank! += delta;
176
+ });
177
+ };
178
+
179
+ export { feasibleTree, feasibleTreeWithLayer };
@@ -0,0 +1,55 @@
1
+ import { DagreGraph } from '../graph';
2
+ import { feasibleTreeWithLayer as feasibleTree } from './feasible-tree';
3
+ import { networkSimplex } from './network-simplex';
4
+ import { longestPath, longestPathWithLayer } from './util';
5
+
6
+ /*
7
+ * Assigns a rank to each node in the input graph that respects the "minlen"
8
+ * constraint specified on edges between nodes.
9
+ *
10
+ * This basic structure is derived from Gansner, et al., "A Technique for
11
+ * Drawing Directed Graphs."
12
+ *
13
+ * Pre-conditions:
14
+ *
15
+ * 1. Graph must be a connected DAG
16
+ * 2. Graph nodes must be objects
17
+ * 3. Graph edges must have "weight" and "minlen" attributes
18
+ *
19
+ * Post-conditions:
20
+ *
21
+ * 1. Graph nodes will have a "rank" attribute based on the results of the
22
+ * algorithm. Ranks can start at any index (including negative), we'll
23
+ * fix them up later.
24
+ */
25
+ export const rank = (
26
+ g: DagreGraph,
27
+ ranker: 'network-simplex' | 'tight-tree' | 'longest-path',
28
+ ) => {
29
+ switch (ranker) {
30
+ case 'network-simplex':
31
+ networkSimplexRanker(g);
32
+ break;
33
+ case 'tight-tree':
34
+ tightTreeRanker(g);
35
+ break;
36
+ case 'longest-path':
37
+ longestPathRanker(g);
38
+ break;
39
+ // default: networkSimplexRanker(g);
40
+ default:
41
+ tightTreeRanker(g);
42
+ }
43
+ };
44
+
45
+ // A fast and simple ranker, but results are far from optimal.
46
+ const longestPathRanker = longestPath;
47
+
48
+ const tightTreeRanker = (g: DagreGraph) => {
49
+ longestPathWithLayer(g);
50
+ feasibleTree(g);
51
+ };
52
+
53
+ const networkSimplexRanker = (g: DagreGraph) => {
54
+ networkSimplex(g);
55
+ };
@@ -0,0 +1,282 @@
1
+ import type { EdgeData, ID, NodeData } from '../../types';
2
+ import { DagreGraph } from '../graph';
3
+ import { dfs, minBy, simplify } from '../util';
4
+ import { feasibleTree } from './feasible-tree';
5
+ import { longestPath as initRank, slack } from './util';
6
+
7
+ /*
8
+ * The network simplex algorithm assigns ranks to each node in the input graph
9
+ * and iteratively improves the ranking to reduce the length of edges.
10
+ *
11
+ * Preconditions:
12
+ *
13
+ * 1. The input graph must be a DAG.
14
+ * 2. All nodes in the graph must have an object value.
15
+ * 3. All edges in the graph must have "minlen" and "weight" attributes.
16
+ *
17
+ * Postconditions:
18
+ *
19
+ * 1. All nodes in the graph will have an assigned "rank" attribute that has
20
+ * been optimized by the network simplex algorithm. Ranks start at 0.
21
+ *
22
+ *
23
+ * A rough sketch of the algorithm is as follows:
24
+ *
25
+ * 1. Assign initial ranks to each node. We use the longest path algorithm,
26
+ * which assigns ranks to the lowest position possible. In general this
27
+ * leads to very wide bottom ranks and unnecessarily long edges.
28
+ * 2. Construct a feasible tight tree. A tight tree is one such that all
29
+ * edges in the tree have no slack (difference between length of edge
30
+ * and minlen for the edge). This by itself greatly improves the assigned
31
+ * rankings by shorting edges.
32
+ * 3. Iteratively find edges that have negative cut values. Generally a
33
+ * negative cut value indicates that the edge could be removed and a new
34
+ * tree edge could be added to produce a more compact graph.
35
+ *
36
+ * Much of the algorithms here are derived from Gansner, et al., "A Technique
37
+ * for Drawing Directed Graphs." The structure of the file roughly follows the
38
+ * structure of the overall algorithm.
39
+ */
40
+ export const networkSimplex = (og: DagreGraph) => {
41
+ const g = simplify(og);
42
+ initRank(g);
43
+ const t = feasibleTree(g);
44
+ initLowLimValues(t);
45
+ initCutValues(t, g);
46
+
47
+ let e: EdgeData | undefined;
48
+ let f: EdgeData;
49
+ while ((e = leaveEdge(t))) {
50
+ f = enterEdge(t, g, e);
51
+ exchangeEdges(t, g, e, f);
52
+ }
53
+ };
54
+
55
+ /*
56
+ * Initializes cut values for all edges in the tree.
57
+ */
58
+ export const initCutValues = (t: DagreGraph, g: DagreGraph) => {
59
+ let vs = dfs(t, t.getAllNodes(), 'post', false);
60
+ vs = vs.slice(0, vs?.length - 1);
61
+ vs.forEach((v: ID) => {
62
+ assignCutValue(t, g, v);
63
+ });
64
+ };
65
+
66
+ const assignCutValue = (t: DagreGraph, g: DagreGraph, child: ID) => {
67
+ const childLab = t.getNode(child)!;
68
+ const parent = childLab.data.parent! as ID;
69
+
70
+ // FIXME: use undirected edge?
71
+ const edge = t
72
+ .getRelatedEdges(child, 'both')
73
+ .find((e) => e.target === parent || e.source === parent)!;
74
+ edge.data.cutvalue = calcCutValue(t, g, child);
75
+ };
76
+
77
+ /*
78
+ * Given the tight tree, its graph, and a child in the graph calculate and
79
+ * return the cut value for the edge between the child and its parent.
80
+ */
81
+ export const calcCutValue = (t: DagreGraph, g: DagreGraph, child: ID) => {
82
+ const childLab = t.getNode(child)!;
83
+ const parent = childLab.data.parent as ID;
84
+ // True if the child is on the tail end of the edge in the directed graph
85
+ let childIsTail = true;
86
+ // The graph's view of the tree edge we're inspecting
87
+
88
+ let graphEdge = g
89
+ .getRelatedEdges(child, 'out')
90
+ .find((e) => e.target === parent)!;
91
+ // The accumulated cut value for the edge between this node and its parent
92
+ let cutValue = 0;
93
+
94
+ if (!graphEdge) {
95
+ childIsTail = false;
96
+ graphEdge = g
97
+ .getRelatedEdges(parent, 'out')
98
+ .find((e) => e.target === child)!;
99
+ }
100
+
101
+ cutValue = graphEdge.data.weight!;
102
+
103
+ g.getRelatedEdges(child, 'both').forEach((e) => {
104
+ const isOutEdge = e.source === child;
105
+ const other = isOutEdge ? e.target : e.source;
106
+
107
+ if (other !== parent) {
108
+ const pointsToHead = isOutEdge === childIsTail;
109
+ const otherWeight = e.data.weight!;
110
+
111
+ cutValue += pointsToHead ? otherWeight : -otherWeight;
112
+ if (isTreeEdge(t, child, other)) {
113
+ // FIXME: use undirected edge?
114
+ const otherCutValue = t
115
+ .getRelatedEdges(child, 'both')
116
+ .find((e) => e.source === other || e.target === other)!.data
117
+ .cutvalue!;
118
+ cutValue += pointsToHead ? -otherCutValue : otherCutValue;
119
+ }
120
+ }
121
+ });
122
+
123
+ return cutValue;
124
+ };
125
+
126
+ export const initLowLimValues = (
127
+ tree: DagreGraph,
128
+ root: ID = tree.getAllNodes()[0].id,
129
+ ) => {
130
+ dfsAssignLowLim(tree, {}, 1, root);
131
+ };
132
+
133
+ const dfsAssignLowLim = (
134
+ tree: DagreGraph,
135
+ visited: Record<ID, boolean>,
136
+ nextLim: number,
137
+ v: ID,
138
+ parent?: ID,
139
+ ) => {
140
+ const low = nextLim;
141
+ let useNextLim = nextLim;
142
+ const label = tree.getNode(v)!;
143
+
144
+ visited[v] = true;
145
+ tree.getNeighbors(v)?.forEach((w) => {
146
+ if (!visited[w.id]) {
147
+ useNextLim = dfsAssignLowLim(tree, visited, useNextLim, w.id, v);
148
+ }
149
+ });
150
+
151
+ label.data.low = low;
152
+ label.data.lim = useNextLim++;
153
+ if (parent) {
154
+ label.data.parent = parent;
155
+ } else {
156
+ // TODO should be able to remove this when we incrementally update low lim
157
+ delete label.data.parent;
158
+ }
159
+
160
+ return useNextLim;
161
+ };
162
+
163
+ export const leaveEdge = (tree: DagreGraph) => {
164
+ return tree.getAllEdges().find((e) => {
165
+ return e.data.cutvalue! < 0;
166
+ });
167
+ };
168
+
169
+ export const enterEdge = (t: DagreGraph, g: DagreGraph, edge: EdgeData) => {
170
+ let v = edge.source;
171
+ let w = edge.target;
172
+
173
+ // For the rest of this function we assume that v is the tail and w is the
174
+ // head, so if we don't have this edge in the graph we should flip it to
175
+ // match the correct orientation.
176
+ if (!g.getRelatedEdges(v, 'out').find((e) => e.target === w)) {
177
+ v = edge.target;
178
+ w = edge.source;
179
+ }
180
+
181
+ const vLabel = t.getNode(v)!;
182
+ const wLabel = t.getNode(w)!;
183
+ let tailLabel = vLabel;
184
+ let flip = false;
185
+
186
+ // If the root is in the tail of the edge then we need to flip the logic that
187
+ // checks for the head and tail nodes in the candidates function below.
188
+ if (vLabel.data.lim! > wLabel.data.lim!) {
189
+ tailLabel = wLabel;
190
+ flip = true;
191
+ }
192
+
193
+ const candidates = g.getAllEdges().filter((edge) => {
194
+ return (
195
+ flip === isDescendant(t.getNode(edge.source), tailLabel) &&
196
+ flip !== isDescendant(t.getNode(edge.target), tailLabel)
197
+ );
198
+ });
199
+
200
+ return minBy(candidates, (edge) => {
201
+ return slack(g, edge);
202
+ });
203
+ };
204
+
205
+ /**
206
+ *
207
+ * @param t
208
+ * @param g
209
+ * @param e edge to remove
210
+ * @param f edge to add
211
+ */
212
+ export const exchangeEdges = (
213
+ t: DagreGraph,
214
+ g: DagreGraph,
215
+ e: EdgeData,
216
+ f: EdgeData,
217
+ ) => {
218
+ // FIXME: use undirected edge?
219
+ const existed = t
220
+ .getRelatedEdges(e.source, 'both')
221
+ .find((edge) => edge.source === e.target || edge.target === e.target);
222
+ if (existed) {
223
+ t.removeEdge(existed.id);
224
+ }
225
+
226
+ t.addEdge({
227
+ id: `e${Math.random()}`,
228
+ source: f.source,
229
+ target: f.target,
230
+ data: {},
231
+ });
232
+
233
+ initLowLimValues(t);
234
+ initCutValues(t, g);
235
+ updateRanks(t, g);
236
+ };
237
+
238
+ const updateRanks = (t: DagreGraph, g: DagreGraph) => {
239
+ const root = t.getAllNodes().find((v) => {
240
+ return !v.data.parent;
241
+ })!;
242
+
243
+ let vs = dfs(t, root, 'pre', false);
244
+ vs = vs.slice(1);
245
+ vs.forEach((v: ID) => {
246
+ const parent = t.getNode(v).data.parent as ID;
247
+ let edge = g.getRelatedEdges(v, 'out').find((e) => e.target === parent);
248
+ // let edge = g.edgeFromArgs(v, parent);
249
+ let flipped = false;
250
+
251
+ if (!edge && g.hasNode(parent)) {
252
+ // edge = g.edgeFromArgs(parent, v)!;
253
+ edge = g.getRelatedEdges(parent, 'out').find((e) => e.target === v);
254
+ flipped = true;
255
+ }
256
+
257
+ g.getNode(v).data.rank =
258
+ ((g.hasNode(parent) && g.getNode(parent).data.rank!) || 0) +
259
+ (flipped ? edge?.data.minlen! : -edge?.data.minlen!);
260
+ });
261
+ };
262
+
263
+ /*
264
+ * Returns true if the edge is in the tree.
265
+ */
266
+ const isTreeEdge = (tree: DagreGraph, u: ID, v: ID) => {
267
+ // FIXME: use undirected edge?
268
+ return tree
269
+ .getRelatedEdges(u, 'both')
270
+ .find((e) => e.source === v || e.target === v);
271
+ };
272
+
273
+ /*
274
+ * Returns true if the specified node is descendant of the root node per the
275
+ * assigned low and lim attributes in the tree.
276
+ */
277
+ const isDescendant = (vLabel: NodeData, rootLabel: NodeData) => {
278
+ return (
279
+ rootLabel.data.low! <= vLabel.data.lim! &&
280
+ vLabel.data.lim! <= rootLabel.data.lim!
281
+ );
282
+ };
@@ -0,0 +1,157 @@
1
+ import type { EdgeData, ID } from '../../types';
2
+ import { DagreGraph, GraphEdge } from '../graph';
3
+
4
+ /*
5
+ * Initializes ranks for the input graph using the longest path algorithm. This
6
+ * algorithm scales well and is fast in practice, it yields rather poor
7
+ * solutions. Nodes are pushed to the lowest layer possible, leaving the bottom
8
+ * ranks wide and leaving edges longer than necessary. However, due to its
9
+ * speed, this algorithm is good for getting an initial ranking that can be fed
10
+ * into other algorithms.
11
+ *
12
+ * This algorithm does not normalize layers because it will be used by other
13
+ * algorithms in most cases. If using this algorithm directly, be sure to
14
+ * run normalize at the end.
15
+ *
16
+ * Pre-conditions:
17
+ *
18
+ * 1. Input graph is a DAG.
19
+ * 2. Input graph node labels can be assigned properties.
20
+ *
21
+ * Post-conditions:
22
+ *
23
+ * 1. Each node will be assign an (unnormalized) "rank" property.
24
+ */
25
+ const longestPath = (g: DagreGraph) => {
26
+ const visited: Record<ID, boolean> = {};
27
+
28
+ const dfs = (v: ID) => {
29
+ const label = g.getNode(v)!;
30
+ if (!label) return 0;
31
+ if (visited[v]) {
32
+ return label.data.rank!;
33
+ }
34
+ visited[v] = true;
35
+
36
+ let rank: number;
37
+
38
+ g.getRelatedEdges(v, 'out')?.forEach((e) => {
39
+ const wRank = dfs(e.target);
40
+ const minLen = e.data.minlen!;
41
+ const r = wRank - minLen;
42
+ if (r) {
43
+ if (rank === undefined || r < rank) {
44
+ rank = r;
45
+ }
46
+ }
47
+ });
48
+
49
+ if (!rank!) {
50
+ rank = 0;
51
+ }
52
+
53
+ label.data.rank = rank;
54
+ return rank;
55
+ };
56
+
57
+ g.getAllNodes()
58
+ .filter((n) => g.getRelatedEdges(n.id, 'in').length === 0)
59
+ .forEach((source) => dfs(source.id));
60
+ };
61
+
62
+ const longestPathWithLayer = (g: DagreGraph) => {
63
+ // 用longest path,找出最深的点
64
+ const visited: Record<ID, boolean> = {};
65
+ let minRank: number;
66
+
67
+ const dfs = (v: ID) => {
68
+ const label = g.getNode(v)!;
69
+ if (!label) return 0;
70
+ if (visited[v]) {
71
+ return label.data.rank!;
72
+ }
73
+ visited[v] = true;
74
+
75
+ let rank: number;
76
+
77
+ g.getRelatedEdges(v, 'out')?.forEach((e) => {
78
+ const wRank = dfs(e.target);
79
+ const minLen = e.data.minlen!;
80
+ const r = wRank - minLen;
81
+ if (r) {
82
+ if (rank === undefined || r < rank) {
83
+ rank = r;
84
+ }
85
+ }
86
+ });
87
+
88
+ if (!rank!) {
89
+ rank = 0;
90
+ }
91
+
92
+ if (minRank === undefined || rank < minRank) {
93
+ minRank = rank;
94
+ }
95
+
96
+ label.data.rank = rank;
97
+ return rank;
98
+ };
99
+
100
+ g.getAllNodes()
101
+ .filter((n) => g.getRelatedEdges(n.id, 'in').length === 0)
102
+ .forEach((source) => {
103
+ if (source) dfs(source.id);
104
+ });
105
+
106
+ if (minRank! === undefined) {
107
+ minRank = 0;
108
+ }
109
+
110
+ // minRank += 1; // NOTE: 最小的层级是dummy root,+1
111
+
112
+ // forward一遍,赋值层级
113
+ const forwardVisited: Record<string, boolean> = {};
114
+ const dfsForward = (v: ID, nextRank: number) => {
115
+ const label = g.getNode(v)!;
116
+
117
+ const currRank = !isNaN(label.data.layer!) ? label.data.layer! : nextRank;
118
+
119
+ // 没有指定,取最大值
120
+ if (label.data.rank === undefined || label.data.rank! < currRank) {
121
+ label.data.rank = currRank;
122
+ }
123
+
124
+ if (forwardVisited[v]) return;
125
+ forwardVisited[v] = true;
126
+
127
+ // DFS遍历子节点
128
+ g.getRelatedEdges(v, 'out')?.forEach((e) => {
129
+ dfsForward(e.target, currRank + e.data.minlen!);
130
+ });
131
+ };
132
+
133
+ // 指定层级的,更新下游
134
+ g.getAllNodes().forEach((n) => {
135
+ const label = n.data;
136
+ if (!label) return;
137
+ if (!isNaN(label.layer!)) {
138
+ dfsForward(n.id, label.layer!); // 默认的dummy root所在层的rank是-1
139
+ } else {
140
+ label.rank! -= minRank;
141
+ }
142
+ });
143
+ };
144
+
145
+ /*
146
+ * Returns the amount of slack for the given edge. The slack is defined as the
147
+ * difference between the length of the edge and its minimum length.
148
+ */
149
+ const slack = (g: DagreGraph, e: GraphEdge<EdgeData>) => {
150
+ return (
151
+ g.getNode(e.target).data.rank! -
152
+ g.getNode(e.source).data.rank! -
153
+ e.data.minlen!
154
+ );
155
+ };
156
+
157
+ export { longestPath, longestPathWithLayer, slack };