@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
package/lib/types.d.ts DELETED
@@ -1,1283 +0,0 @@
1
- import { Edge as IEdge, Graph as IGraph, Node as INode } from '@antv/graphlib';
2
- /**
3
- * <zh/> 节点数据
4
- *
5
- * <en/> Node data
6
- */
7
- export interface NodeData {
8
- /**
9
- * <zh/> 节点x轴坐标
10
- *
11
- * <en/> Node x coordinate
12
- */
13
- x?: number;
14
- /**
15
- * <zh/> 节点y轴坐标
16
- *
17
- * <en/> Node y coordinate
18
- */
19
- y?: number;
20
- /**
21
- * <zh/> 节点z轴坐标
22
- *
23
- * <en/> Node z coordinate
24
- */
25
- z?: number;
26
- /**
27
- * <zh/> 节点大小(直径)
28
- *
29
- * <en/> Node size (diameter)
30
- */
31
- size?: number | number[];
32
- [key: string]: any;
33
- }
34
- /**
35
- * <zh/> 边数据
36
- *
37
- * <en/> Edge data
38
- */
39
- export interface EdgeData {
40
- weight?: number;
41
- [keys: string]: any;
42
- }
43
- export interface OutNodeData extends NodeData {
44
- x: number;
45
- y: number;
46
- }
47
- export interface OutEdgeData extends EdgeData {
48
- }
49
- export type Node = INode<NodeData>;
50
- export type Edge = IEdge<EdgeData>;
51
- export type OutNode = INode<OutNodeData>;
52
- export type OutEdge = IEdge<OutEdgeData>;
53
- export type IndexMap = {
54
- [nodeId: string]: number;
55
- };
56
- export type Graph = IGraph<NodeData, EdgeData>;
57
- export type PointTuple = [number, number] | [number, number, number];
58
- export type Point = {
59
- x: number;
60
- y: number;
61
- z?: number;
62
- };
63
- export type Matrix = number[];
64
- export type LayoutMapping = {
65
- nodes: OutNode[];
66
- edges: OutEdge[];
67
- };
68
- export interface Layout<LayoutOptions> {
69
- /**
70
- * <zh/> 传入数据并执行布局计算,结果写入原始数据
71
- *
72
- * <en/> Passes in the data and performs the layout calculation, modifying the original data
73
- * @param graph - <zh/> 规范化数据 | <en/> Normalized data
74
- * @param options - <zh/> 布局配置 | <en/> Layout options
75
- * @returns Promise<void>
76
- */
77
- assign(graph: Graph, options?: LayoutOptions): Promise<void>;
78
- /**
79
- * <zh/> 传入数据并执行布局计算,且结果不写入原始数据,作为返回值
80
- *
81
- * <en/> Passes in the data and performs the layout calculation, and the result is not written to the original data, but returned as a value
82
- * @param graph - <zh/> 规范化数据 | <en/> Normalized data
83
- * @param options - <zh/> 布局配置 | <en/> Layout options
84
- * @returns <zh/> 布局结果 | <en/> Layout result
85
- */
86
- execute(graph: Graph, options?: LayoutOptions): Promise<LayoutMapping>;
87
- /**
88
- * <zh/> 布局计算的配置项
89
- *
90
- * <en/> Layout calculation configuration item
91
- */
92
- options: LayoutOptions;
93
- /**
94
- * <zh/> 布局id
95
- *
96
- * <en/> Layout id
97
- */
98
- id: string;
99
- }
100
- export declare function isLayoutWithIterations(layout: any): layout is LayoutWithIterations<any>;
101
- export interface LayoutWithIterations<LayoutOptions> extends Layout<LayoutOptions> {
102
- /**
103
- * Some layout algorithm has n iterations so that the simulation needs to be stopped at any time.
104
- * This method is useful for running the simulation manually.
105
- * @see https://github.com/d3/d3-force#simulation_stop
106
- */
107
- stop: () => void;
108
- /**
109
- * Manually steps the simulation by the specified number of iterations.
110
- * @see https://github.com/d3/d3-force#simulation_tick
111
- */
112
- tick: (iterations?: number) => LayoutMapping;
113
- }
114
- export interface LayoutSupervisor {
115
- execute(): Promise<LayoutMapping>;
116
- stop(): void;
117
- kill(): void;
118
- isRunning(): boolean;
119
- }
120
- /**
121
- * <zh/> 环形 Circular 布局配置
122
- *
123
- * <en/> Circular layout configuration
124
- */
125
- export interface CircularLayoutOptions {
126
- /**
127
- * <zh/> 布局的中心
128
- *
129
- * <en/> Layout center
130
- */
131
- center?: PointTuple;
132
- /**
133
- * <zh/> 布局的宽度
134
- *
135
- * <en/> Layout width
136
- */
137
- width?: number;
138
- /**
139
- * <zh/> 布局的高度
140
- *
141
- * <en/> Layout height
142
- */
143
- height?: number;
144
- /**
145
- * <zh/> 圆的半径
146
- *
147
- * <en/> Circle radius
148
- * @remarks
149
- * <zh/> 若设置了 radius,则 startRadius 与 endRadius 不生效
150
- *
151
- * <en/> If radius is set, startRadius and endRadius will not take effect
152
- * @defaultValue null
153
- */
154
- radius?: number | null;
155
- /**
156
- * <zh/> 螺旋状布局的起始半径
157
- *
158
- * <en/> Spiral layout start radius
159
- * @defaultValue null
160
- */
161
- startRadius?: number | null;
162
- /**
163
- * <zh/> 螺旋状布局的结束半径
164
- *
165
- * <en/> Spiral layout end radius
166
- * @defaultValue null
167
- */
168
- endRadius?: number | null;
169
- /**
170
- * <zh/> 是否顺时针排列
171
- *
172
- * <en/> Whether to arrange clockwise
173
- * @defaultValue true
174
- */
175
- clockwise?: boolean;
176
- /**
177
- * <zh/> 节点在环上的分段数(几个段将均匀分布)
178
- *
179
- * <en/> Number of segments (how many segments will be evenly distributed)
180
- * @remarks
181
- * <zh/> 在 endRadius - startRadius != 0 时生效
182
- *
183
- * <en/> It takes effect when endRadius - startRadius != 0
184
- * @defaultValue 1
185
- */
186
- divisions?: number;
187
- /**
188
- * <zh/> 节点在环上排序的依据
189
- * - null: 直接使用数据中的顺序
190
- * - 'topology': 按照拓扑排序
191
- * - 'topology-directed': 按照拓扑排序(有向图)
192
- * - 'degree': 按照度数大小排序
193
- * <en/> Sorting basis of nodes on the ring
194
- * - null: Use the order in the data directly
195
- * - 'topology': Sort according to topological order
196
- * - 'topology-directed': Sort according to topological order (directed graph)
197
- * - 'degree': Sort according to degree size
198
- * @defaultValue null
199
- */
200
- ordering?: 'topology' | 'topology-directed' | 'degree' | null;
201
- /**
202
- * <zh/> 从第一个节点到最后节点之间相隔多少个 2*PI
203
- *
204
- * <en/> The distance between the first node and the last node is separated by how many 2*PI
205
- * @defaultValue 1
206
- */
207
- angleRatio?: number;
208
- /**
209
- * <zh/> 起始角度
210
- *
211
- * <en/> Start angle
212
- */
213
- startAngle?: number;
214
- /**
215
- * <zh/> 结束角度
216
- *
217
- * <en/> End angle
218
- */
219
- endAngle?: number;
220
- /**
221
- * <zh/> 环与环之间最小间距,用于调整半径
222
- *
223
- * <en/> Minimum spacing between rings, used to adjust the radius
224
- */
225
- nodeSpacing?: ((node?: Node) => number) | number;
226
- /**
227
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
228
- *
229
- * <en/> Node size (diameter). Used for collision detection when nodes overlap
230
- */
231
- nodeSize?: number | number[] | ((nodeData: Node) => number);
232
- }
233
- export interface GridLayoutOptions {
234
- /**
235
- * <zh/> 网格布局的总宽度
236
- *
237
- * <en/> Total width of grid layout
238
- * @remarks
239
- * <zh/> 在 G6 中使用当前容器的宽度作为 grid 布局 width 的默认值。单独使用此布局时默认值为 300
240
- *
241
- * <en/> The width of the grid layout is the default value of the current container width in G6. The default value is 300 when this layout is used alone
242
- * @defaultValue 300
243
- */
244
- width?: number;
245
- /**
246
- * <zh/> 网格布局的总高度
247
- *
248
- * <en/> Total height of grid layout
249
- * @remarks
250
- * <zh/> 在 G6 中使用当前容器的高度作为 grid 布局 height 的默认值。单独使用此布局时默认值为 300
251
- *
252
- * <en/> The height of the grid layout is the default value of the current container height in G6. The default value is 300 when this layout is used alone
253
- * @defaultValue 300
254
- */
255
- height?: number;
256
- /**
257
- * <zh/> 网格开始位置(左上角)
258
- *
259
- * <en/> Grid layout starting position (upper left corner)
260
- * @defaultValue [0, 0]
261
- *
262
- */
263
- begin?: PointTuple;
264
- /**
265
- * <zh/> 是否防止重叠
266
- *
267
- * <en/> Whether to prevent overlap
268
- * @remarks
269
- * <zh/> 必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
270
- *
271
- * <en/> Must be used with the following properties: nodeSize or data.size in the data. When data.size is set or nodeSize is configured with the same value as the current graph node size in the layout, the collision detection of node overlap can be performed
272
- * @defaultValue false
273
- */
274
- preventOverlap?: boolean;
275
- /**
276
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
277
- *
278
- * <en/> Node size (diameter). Used for collision detection when nodes overlap
279
- */
280
- nodeSize?: number | number[] | ((nodeData: Node) => number);
281
- /**
282
- * <zh/> 避免重叠时节点的间距 padding。preventOverlap 为 true 时生效
283
- *
284
- * <en/> Padding between nodes to prevent overlap. It takes effect when preventOverlap is true
285
- * @defaultValue 10
286
- */
287
- preventOverlapPadding?: number;
288
- /**
289
- * <zh/> 为 false 时表示利用所有可用画布空间,为 true 时表示利用最小的画布空间
290
- *
291
- * <en/> When false, it means to use all available canvas space. When true, it means to use the smallest canvas space
292
- * @defaultValue false
293
- */
294
- condense?: boolean;
295
- /**
296
- * <zh/> 网格的行数,为 undefined 时算法根据节点数量、布局空间、cols(若指定)自动计算
297
- *
298
- * <en/> Number of rows in the grid. It is calculated automatically when it is undefined and the number of nodes, layout space, and cols (if specified) are specified
299
- * @defaultValue 10
300
- */
301
- rows?: number;
302
- /**
303
- * <zh/> 网格的列数,为 undefined 时算法根据节点数量、布局空间、rows(若指定)自动计算
304
- *
305
- * <en/> Number of columns in the grid. It is calculated automatically when it is undefined and the number of nodes, layout space, and rows (if specified) are specified
306
- * @defaultValue undefined
307
- */
308
- cols?: number;
309
- /**
310
- * <zh/> 指定排序的依据(节点属性名),数值越高则该节点被放置得越中心。若为 undefined,则会计算节点的度数,度数越高,节点将被放置得越中心
311
- *
312
- * <en/> Specify the basis for sorting (node attribute name). The higher the value, the more the node will be placed in the center. If it is undefined, the degree of the node will be calculated, and the higher the degree, the more the node will be placed in the center
313
- * @defaultValue undefined
314
- */
315
- sortBy?: string;
316
- /**
317
- * <zh/> 指定每个节点所在的行和列
318
- *
319
- * <en/> Specify the row and column where each node is located
320
- * @defaultValue undefined
321
- */
322
- position?: (node?: Node) => {
323
- row?: number;
324
- col?: number;
325
- };
326
- /**
327
- * <zh/> 环与环之间最小间距,用于调整半径
328
- *
329
- * <en/> Minimum spacing between rings, used to adjust the radius
330
- */
331
- nodeSpacing?: ((node?: Node) => number) | number;
332
- }
333
- /**
334
- * <zh/> 随机布局配置
335
- *
336
- * <en/> Random layout configuration
337
- */
338
- export interface RandomLayoutOptions {
339
- /**
340
- * <zh/> 布局的中心
341
- *
342
- * <en/> Layout center
343
- */
344
- center?: PointTuple;
345
- /**
346
- * <zh/> 布局的宽度范围
347
- *
348
- * <en/> Layout width range
349
- */
350
- width?: number;
351
- /**
352
- * <zh/> 布局的高度范围
353
- *
354
- * <en/> Layout height range
355
- */
356
- height?: number;
357
- }
358
- /**
359
- * <zh/> MDS 高维数据降维布局配置
360
- *
361
- * <en/> MDS layout configuration for high-dimensional data dimensionality reduction
362
- */
363
- export interface MDSLayoutOptions {
364
- /**
365
- * <zh/> 圆形布局的中心位置
366
- *
367
- * <en/> Center position of circular layout
368
- */
369
- center?: PointTuple;
370
- /**
371
- * <zh/> 边的理想长度,可以理解为边作为弹簧在不受力下的长度
372
- *
373
- * <en/> Ideal length of the edge, which can be understood as the length of the edge as a spring under no force
374
- * @defaultValue 200
375
- */
376
- linkDistance?: number;
377
- }
378
- /**
379
- * <zh/> Concentric 同心圆布局配置
380
- *
381
- * <en/> Concentric layout configuration
382
- */
383
- export interface ConcentricLayoutOptions {
384
- /**
385
- * <zh/> 圆形布局的中心位置,默认为当前容器的中心位置
386
- *
387
- * <en/> Center position of circular layout, defaults to the center position of the current container
388
- */
389
- center?: PointTuple;
390
- /**
391
- * <zh/> 是否防止重叠
392
- *
393
- * <en/> Whether to prevent overlap
394
- * @remarks
395
- * <zh/> 必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
396
- *
397
- * <en/> Must be used with the following properties, and only when the data.size property is set in the data or the nodeSize value configured with the same size as the current graph node is configured in the layout, can the node overlap collision detection be performed
398
- * @defaultValue false
399
- */
400
- preventOverlap?: boolean;
401
- /**
402
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
403
- *
404
- * <en/> Node size (diameter). Used for collision detection when preventing node overlap
405
- */
406
- nodeSize?: number | PointTuple | ((nodeData: Node) => number);
407
- /**
408
- * <zh/> 第一个节点与最后一个节点之间的弧度差
409
- *
410
- * <en/> The difference in radians between the first and last nodes
411
- * @remarks
412
- * <zh/> 若为 undefined ,则将会被设置为 2 * Math.PI * (1 - 1 / |level.nodes|) ,其中 level.nodes 为该算法计算出的每一层的节点,|level.nodes| 代表该层节点数量
413
- *
414
- * <en/> If undefined, it will be set to 2 * Math.PI * (1 - 1 / |level.nodes|), where level.nodes is the number of nodes in each layer calculated by this algorithm, and |level.nodes| represents the number of nodes in this layer
415
- * @defaultValue undefined
416
- */
417
- sweep?: number;
418
- /**
419
- * <zh/> 环与环之间的距离是否相等
420
- *
421
- * <en/> Whether the distance between rings is equal
422
- * @defaultValue false
423
- */
424
- equidistant?: boolean;
425
- /**
426
- * <zh/> 开始布局节点的弧度
427
- *
428
- * <en/> The starting angle of the layout node
429
- * @defaultValue 3 / 2 * Math.PI
430
- */
431
- startAngle?: number;
432
- /**
433
- * <zh/> 是否按照顺时针排列
434
- *
435
- * <en/> Whether to arrange in clockwise order
436
- * @defaultValue false
437
- */
438
- clockwise?: boolean;
439
- /**
440
- * <zh/> 每一层同心值的求和
441
- *
442
- * <en/> The sum of the concentric values of each layer
443
- * @remarks
444
- * <zh/> 若为 undefined,则将会被设置为 maxValue / 4 ,其中 maxValue 为最大的排序依据的属性值。例如,若 sortBy 为 'degree',则 maxValue 为所有节点中度数最大的节点的度数
445
- *
446
- * <en/> If undefined, it will be set to maxValue / 4, where maxValue is the largest value of the sortBy attribute. For example, if sortBy is 'degree', maxValue is the degree of the node with the largest degree in all nodes
447
- * @defaultValue undefined
448
- */
449
- maxLevelDiff?: number;
450
- /**
451
- * <zh/> 指定排序的依据(节点属性名)
452
- *
453
- * <en/> Specify the basis for sorting (node attribute name)
454
- * @remarks
455
- * <zh/> 数值越高则该节点被放置得越中心。若为 undefined,则会计算节点的度数,度数越高,节点将被放置得越中心
456
- *
457
- * <en/> The higher the value, the more the node will be placed in the center. If undefined, the degree of the node will be calculated, and the higher the degree, the more the node will be placed in the center
458
- * @defaultValue undefined
459
- */
460
- sortBy?: string;
461
- /**
462
- * <zh/> 布局的宽度,默认使用容器宽度
463
- *
464
- * <en/> The width of the layout, defaults to the container width
465
- */
466
- width?: number;
467
- /**
468
- * <zh/> 布局的高度,默认使用容器高度
469
- *
470
- * <en/> The height of the layout, defaults to the container height
471
- */
472
- height?: number;
473
- /**
474
- * <zh/> 环与环之间最小间距,用于调整半径
475
- *
476
- * <en/> Minimum spacing between rings, used to adjust the radius
477
- * @defaultValue 10
478
- */
479
- nodeSpacing?: number | number[] | ((node?: Node) => number);
480
- }
481
- /**
482
- * <zh/> Radial 辐射布局的配置项
483
- *
484
- * <en/> Configuration items for Radial layout
485
- */
486
- export interface RadialLayoutOptions {
487
- /**
488
- * <zh/> 圆形布局的中心位置,默认为当前容器的中心位置
489
- *
490
- * <en/> The center position of the circular layout, defaults to the center position of the current container
491
- */
492
- center?: PointTuple;
493
- /**
494
- * <zh/> 布局的宽度,默认使用容器宽度
495
- *
496
- * <en/> The width of the layout, defaults to the container width
497
- */
498
- width?: number;
499
- /**
500
- * <zh/> 布局的高度,默认使用容器高度
501
- *
502
- * <en/> The height of the layout, defaults to the container height
503
- */
504
- height?: number;
505
- /**
506
- * <zh/> 边长度
507
- *
508
- * <en/> Edge length
509
- * @defaultValue 50
510
- */
511
- linkDistance?: number;
512
- /**
513
- * <zh/> 停止迭代到最大迭代数
514
- *
515
- * <en/> Stop iterating until the maximum iteration number is reached
516
- * @defaultValue 1000
517
- */
518
- maxIteration?: number;
519
- /**
520
- * <zh/> 辐射的中心点
521
- * - string: 节点 id
522
- * - Node: 节点本身
523
- * - null: 数据中第一个节点
524
- * <en/> The center point of the radiation
525
- * - string: node id
526
- * - Node: node itself
527
- * - null: the first node in the data
528
- */
529
- focusNode?: string | Node | null;
530
- /**
531
- * <zh/> 每一圈距离上一圈的距离。默认填充整个画布,即根据图的大小决定
532
- *
533
- * <en/> The distance between each ring. Defaults to filling the entire canvas, i.e., determined by the size of the graph
534
- * @defaultValue 100
535
- */
536
- unitRadius?: number | null;
537
- /**
538
- * <zh/> 是否防止重叠
539
- *
540
- * <en/> Whether to prevent overlap
541
- * @remarks
542
- * <zh/> 必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
543
- *
544
- * <en/> Must be used with the following properties: nodeSize or data.size in the node data. Only when data.size or nodeSize with the same value as the current graph node size is set in the layout configuration, can the collision detection of node overlap be performed
545
- * @defaultValue false
546
- */
547
- preventOverlap?: boolean;
548
- /**
549
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
550
- *
551
- * <en/> Node size (diameter). Used for collision detection when preventing node overlap
552
- */
553
- nodeSize?: number | number[] | ((nodeData: Node) => number);
554
- /**
555
- * <zh/> preventOverlap 为 true 时生效, 防止重叠时节点边缘间距的最小值。可以是回调函数, 为不同节点设置不同的最小间距
556
- *
557
- * <en/> Effective when preventOverlap is true. The minimum edge spacing when preventing node overlap. It can be a callback function, and set different minimum spacing for different nodes
558
- * @defaultValue 10
559
- */
560
- nodeSpacing?: number | Function;
561
- /**
562
- * <zh/> 防止重叠步骤的最大迭代次数
563
- *
564
- * <en/> Maximum iteration number of the prevent overlap step
565
- * @defaultValue 200
566
- */
567
- maxPreventOverlapIteration?: number;
568
- /**
569
- * <zh/> 是否必须是严格的 radial 布局,及每一层的节点严格布局在一个环上。preventOverlap 为 true 时生效。
570
- *
571
- * <en/> Whether it must be a strict radial layout, that is, each layer of nodes strictly layout on a ring. Effective when preventOverlap is true.
572
- * @remarks
573
- * <zh/> 当 preventOverlap 为 true,且 strictRadial 为 false 时,有重叠的节点严格沿着所在的环展开,但在一个环上若节点过多,可能无法完全避免节点重叠 当 preventOverlap 为 true,且 strictRadial 为 true 时,允许同环上重叠的节点不严格沿着该环布局,可以在该环的前后偏移以避免重叠
574
- *
575
- * <en/> When preventOverlap is true and strictRadial is false, overlapping nodes are strictly laid out along the ring they are in. However, if there are too many nodes on a ring, it may not be possible to completely avoid node overlap. When preventOverlap is true and strictRadial is true, overlapping nodes on the same ring are allowed to be laid out not strictly along the ring, and can be offset before and after the ring to avoid overlap
576
- * @defaultValue true
577
- */
578
- strictRadial?: boolean;
579
- /**
580
- * <zh/> 同层节点布局后相距远近的依据
581
- *
582
- * <en/> The basis for the distance between nodes in the same layer after layout
583
- * @remarks
584
- * <zh/> 默认 undefined ,表示根据数据的拓扑结构(节点间最短路径)排布,即关系越近/点对间最短路径越小的节点将会被尽可能排列在一起;'data' 表示按照节点在数据中的顺序排列,即在数据顺序上靠近的节点将会尽可能排列在一起;也可以指定为节点数据中的某个字段名,例如 'cluster'、'name' 等(必须在数据的 data 中存在)
585
- *
586
- * <en/> The default is undefined, which means arranging based on the topological structure of the data (the shortest path between nodes). Nodes that are closer in proximity or have a smaller shortest path between them will be arranged as close together as possible. 'data' indicates arranging based on the order of nodes in the data, so nodes that are closer in the data order will be arranged as close together as possible. You can also specify a field name in the node data, such as 'cluster' or 'name' (it must exist in the data of the graph)
587
- * @defaultValue undefined
588
- */
589
- sortBy?: string;
590
- /**
591
- * <zh/> 同层节点根据 sortBy 排列的强度,数值越大,sortBy 指定的方式计算出距离越小的越靠近。sortBy 不为 undefined 时生效
592
- *
593
- * <en/> The strength of arranging nodes according to sortBy. The larger the value, the closer the nodes that sortBy specifies are arranged. It takes effect when sortBy is not undefined
594
- * @defaultValue 10
595
- */
596
- sortStrength?: number;
597
- }
598
- /**
599
- * <zh/> D3 Force 力导布局配置项
600
- *
601
- * <en/> D3 Force layout configuration item
602
- */
603
- export interface D3ForceLayoutOptions {
604
- /**
605
- * <zh/> 布局的中心位置,默认为当前容器的中心位置
606
- *
607
- * <en/> The center position of the layout, the default is the center position of the current container
608
- */
609
- center?: PointTuple;
610
- /**
611
- * <zh/> 边长度
612
- * - number: 边长度固定值
613
- * - (edge: Edge) => number: 边长度回调函数,根据不同边设置不同的边长度
614
- * <en/> Edge length
615
- * - number: fixed edge length
616
- * - (edge: Edge) => number: edge length callback function, set different edge lengths according to different edges
617
- * @defaultValue 50
618
- */
619
- linkDistance?: number | ((edge?: Edge) => number);
620
- /**
621
- * <zh/> 边的作用力,范围是 0 到 1,默认根据节点的出入度自适应
622
- * - number: 边的作用力固定值
623
- * - (edge: Edge) => number: 边的作用力回调函数,根据不同边设置不同的边作用力
624
- * <en/> Edge strength, the range is 0 to 1, and it adapts automatically according to the in-out degree of the node
625
- * - number: fixed edge strength
626
- * - (edge: Edge) => number: edge strength callback function, set different edge strengths according to different edges
627
- */
628
- edgeStrength?: number | ((edge?: Edge) => number);
629
- /**
630
- * <zh/> 聚类节点作用力。负数代表斥力
631
- * - number: 聚类节点作用力固定值
632
- * - (node: Node) => number: 聚类节点作用力回调函数,根据不同节点设置不同的聚类节点作用力
633
- * <en/> Cluster node strength. Negative numbers represent repulsion
634
- * - number: fixed cluster node strength
635
- * - (node: Node) => number: cluster node strength callback function, set different cluster node strengths according to different nodes
636
- * @defaultValue -1
637
- */
638
- nodeStrength?: number | ((node?: Node) => number);
639
- /**
640
- * <zh/> 是否防止重叠
641
- *
642
- * <en/> Whether to prevent overlap
643
- * @remarks
644
- * <zh/> 必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
645
- *
646
- * <en/> Must be used with the following properties: nodeSize or data.size in the node data. Only when data.size or nodeSize with the same value as the current graph node size is set in the layout configuration, can the collision detection of node overlapping be performed
647
- * @defaultValue false
648
- */
649
- preventOverlap?: boolean;
650
- /**
651
- * <zh/> 防止重叠的力强度,范围 [0, 1]
652
- *
653
- * <en/> The force strength of preventing overlap, the range is [0, 1]
654
- * @defaultValue 1
655
- */
656
- collideStrength?: number;
657
- /**
658
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
659
- *
660
- * <en/> Node size (diameter). Used for collision detection when preventing node overlapping
661
- */
662
- nodeSize?: number | number[] | ((node?: Node) => number);
663
- /**
664
- * <zh/> preventOverlap 为 true 时生效, 防止重叠时节点边缘间距的最小值。可以是回调函数, 为不同节点设置不同的最小间距
665
- *
666
- * <en/> It takes effect when preventOverlap is true. The minimum spacing of the node edge when preventing node overlapping. It can be a callback function, and set different minimum spacing for different nodes
667
- */
668
- nodeSpacing?: number | number[] | ((node?: Node) => number);
669
- /**
670
- * <zh/> 当前的迭代收敛阈值
671
- *
672
- * <en/> The convergence threshold of the current iteration
673
- * @defaultValue 0.3
674
- */
675
- alpha?: number;
676
- /**
677
- * <zh/> 迭代阈值的衰减率。范围 [0, 1]。0.028 对应迭代数为 300
678
- *
679
- * <en/> The decay rate of the iteration threshold. The range is [0, 1]. 0.028 corresponds to iteration number 300
680
- * @defaultValue 0.028
681
- */
682
- alphaDecay?: number;
683
- /**
684
- * <zh/> 停止迭代的阈值
685
- *
686
- * <en/> The threshold to stop iteration
687
- * @defaultValue 0.001
688
- */
689
- alphaMin?: number;
690
- /**
691
- * <zh/> 是否按照聚类信息布局
692
- *
693
- * <en/> Whether to layout according to the clustering information
694
- * @defaultValue false
695
- */
696
- clustering?: boolean;
697
- /**
698
- * <zh/> 聚类节点作用力。负数代表斥力
699
- *
700
- * <en/> Clustering node force. Negative numbers represent repulsion
701
- * @defaultValue -1
702
- */
703
- clusterNodeStrength?: number;
704
- /**
705
- * <zh/> 聚类边作用力
706
- *
707
- * <en/> Clustering edge force
708
- * @defaultValue 0.1
709
- */
710
- clusterEdgeStrength?: number;
711
- /**
712
- * <zh/> 聚类边长度
713
- *
714
- * <en/> Clustering edge length
715
- * @defaultValue 100
716
- */
717
- clusterEdgeDistance?: number;
718
- /**
719
- * <zh/> 聚类节点大小 / 直径,直径越大,越分散
720
- *
721
- * <en/> Clustering node size / diameter. Diameter larger means more scattered
722
- * @defaultValue 10
723
- */
724
- clusterNodeSize?: number;
725
- /**
726
- * <zh/> 用于 foci 的力
727
- *
728
- * <en/> Force for foci
729
- * @defaultValue 0.8
730
- */
731
- clusterFociStrength?: number;
732
- /**
733
- * <zh/> 自定义 force 方法,若不指定,则使用 d3.js 的方法
734
- *
735
- * <en/> Custom force method, if not specified, use the method of d3.js
736
- */
737
- forceSimulation?: any;
738
- /**
739
- * <zh/> 每一次迭代的回调函数,返回值为这一次迭代的布局结果
740
- *
741
- * <en/> The callback function called every iteration, and the return value is the layout result of this iteration
742
- * @param data - <zh/> 布局结果,包含节点和边的位置信息
743
- */
744
- onTick?: (data: LayoutMapping) => void;
745
- }
746
- /**
747
- * <zh/> 向心力配置,包括叶子节点、离散点、其他节点的向心中心及向心力大小
748
- *
749
- * <en/> Centripetal configuration, including the center of the leaf node, the center of the scattered point, and the center of the other nodes
750
- */
751
- export interface CentripetalOptions {
752
- /**
753
- * <zh/> 叶子节点(即度数为 1 的节点)受到的向心力大小
754
- * - number: 固定向心力大小
755
- * - ((node: Node, nodes: Node[], edges: Edge[]) => number): 可根据节点、边的情况返回不同的值
756
- * <en/> The centripetal force of the leaf node (i.e., the node with degree 1)
757
- * - number: fixed centripetal force size
758
- * - ((node: Node, nodes: Node[], edges: Edge[]) => number): return different values according to the node, edge, and situation
759
- * @defaultValue 2
760
- */
761
- leaf?: number | ((node: Node, nodes: Node[], edges: Edge[]) => number);
762
- /**
763
- * <zh/> 离散节点(即度数为 0 的节点)受到的向心力大小
764
- * - number: 固定向心力大小
765
- * - ((node: Node, nodes: Node[], edges: Edge[]) => number): 可根据节点情况返回不同的值
766
- * <en/> The centripetal force of the scattered node (i.e., the node with degree 0)
767
- * - number: fixed centripetal force size
768
- * - ((node: Node) => number): return different values according to the node situation
769
- * @defaultValue 2
770
- */
771
- single?: number | ((node: Node) => number);
772
- /**
773
- * <zh/> 除离散节点、叶子节点以外的其他节点(即度数 > 1 的节点)受到的向心力大小
774
- * - number: 固定向心力大小
775
- * - ((node: Node) => number): 可根据节点的情况返回不同的值
776
- * <en/> The centripetal force of the other nodes (i.e., the node with degree > 1)
777
- * - number: fixed centripetal force size
778
- * - ((node: Node) => number): return different values according to the node situation
779
- * @defaultValue 1
780
- */
781
- others?: number | ((node: Node) => number);
782
- /**
783
- * <zh/> 向心力发出的位置,可根据节点、边的情况返回不同的值、默认为图的中心
784
- *
785
- * <en/> The position where the centripetal force is emitted, which can return different values according to the node, edge, and situation. The default is the center of the graph
786
- */
787
- center?: (node: Node, nodes: Node[], edges: Edge[], width: number, height: number) => {
788
- x: number;
789
- y: number;
790
- z?: number;
791
- centerStrength?: number;
792
- };
793
- }
794
- /**
795
- * <zh/>ComboCombined 复合布局配置项
796
- *
797
- * <en/> ComboCombined layout configuration item
798
- */
799
- export interface ComboCombinedLayoutOptions {
800
- /**
801
- * <zh/> 布局的中心、默认为图的中心
802
- *
803
- * <en/> The center of the layout, default to the center of the graph
804
- */
805
- center?: PointTuple;
806
- /**
807
- * <zh/> 节点大小(直径)。用于碰撞检测
808
- *
809
- * <en/> The size of the node (diameter). Used for collision detection
810
- * @remarks
811
- * <zh/> 若不指定,则根据传入的节点的 size 属性计算。若即不指定,节点中也没有 size,则默认大小为 10
812
- *
813
- * <en/> If not specified, it will be calculated based on the size attribute of the incoming node. If neither is specified, the default size is 10
814
- * @defaultValue 10
815
- */
816
- nodeSize?: number | number[] | ((d?: Node) => number);
817
- /**
818
- * <zh/> preventNodeOverlap 或 preventOverlap 为 true 时生效, 防止重叠时节点/ combo 边缘间距的最小值。可以是回调函数, 为不同节点设置不同的最小间距
819
- *
820
- * <en/> It takes effect when preventNodeOverlap or preventOverlap is true. The minimum spacing between nodes when overlapping is prevented. It can be a callback function, and different minimum spacing can be set for different nodes
821
- */
822
- spacing?: number | ((d?: Node) => number);
823
- /**
824
- * <zh/> 最外层的布局算法,默认为 force
825
- *
826
- * <en/> The outermost layout algorithm, default to force
827
- * @example
828
- * ```ts
829
- * import { ForceLayout } from '@antv/layout';
830
- *
831
- * outerLayout: new ForceLayout({
832
- * gravity: 1,
833
- * factor: 2,
834
- * linkDistance: (edge: any, source: any, target: any) => {
835
- * const nodeSize = ((source.size?.[0] || 30) + (target.size?.[0] || 30)) / 2;
836
- * return Math.min(nodeSize * 1.5, 700);
837
- * }
838
- * });
839
- * ```
840
- * @defaultValue ForceLayout
841
- */
842
- outerLayout?: Layout<any>;
843
- /**
844
- * <zh/> combo 内部的布局算法,需要使用同步的布局算法,默认为 concentric
845
- *
846
- * <en/> The layout algorithm inside the combo, which needs to use a synchronized layout algorithm, default to concentric
847
- * @example
848
- * ```ts
849
- * import { ConcentricLayout } from '@antv/layout';
850
- *
851
- * innerLayout: new ConcentricLayout({
852
- * sortBy: 'id'
853
- * });
854
- * ```
855
- * @defaultValue ConcentricLayout
856
- */
857
- innerLayout?: Layout<any>;
858
- /**
859
- * <zh/> Combo 内部的 padding 值,不用于渲染,仅用于计算力。推荐设置为与视图上 combo 内部 padding 值相同的值
860
- *
861
- * <en/> The padding value inside the combo, which is not used for rendering, but only for calculating force. It is recommended to set it to the same value as the combo internal padding value on the view
862
- * @defaultValue 10
863
- */
864
- comboPadding?: ((d?: unknown) => number) | number | number[] | undefined;
865
- /**
866
- * <zh/> treeKey
867
- *
868
- * <en/> treeKey
869
- */
870
- treeKey?: string;
871
- }
872
- /**
873
- * <zh/> 公共力导向布局配置项
874
- *
875
- * <en/> Common force layout configuration items
876
- */
877
- interface CommonForceLayoutOptions {
878
- /**
879
- * <zh/> 布局的维度,2D 渲染时指定为 2;若为 3D 渲染可指定为 3,则将多计算 z 轴的布局
880
- *
881
- * <en/> The dimensions of the layout, specify 2 for 2D rendering; if it is 3D rendering, specify 3 to calculate the layout of the z axis
882
- * @defaultValue 2
883
- */
884
- dimensions?: number;
885
- /**
886
- * <zh/> 布局的中心点,默认为图的中心
887
- *
888
- * <en/> The center point of the layout, default to the center of the graph
889
- */
890
- center?: PointTuple;
891
- /**
892
- * <zh/> 当一次迭代的平均/最大/最小(根据distanceThresholdMode决定)移动长度小于该值时停止迭代。数字越小,布局越收敛,所用时间将越长
893
- *
894
- * <en/> When the average/max/min (depending on distanceThresholdMode) movement length of one iteration is less than this value, the iteration will stop. The smaller the number, the more converged the layout, and the longer the time it takes to use
895
- * @defaultValue 0.4
896
- */
897
- minMovement?: number;
898
- /**
899
- * <zh/> 最大迭代次数,若为 0 则将自动调整
900
- *
901
- * <en/> Maximum number of iterations, if it is 0, it will be automatically adjusted
902
- * @defaultValue 0
903
- */
904
- maxIteration?: number;
905
- /**
906
- * <zh/> minMovement 的使用条件
907
- * - 'mean': 平均移动距离小于 minMovement 时停止迭代
908
- * - 'max': 最大移动距离小于时 minMovement 时停止迭代
909
- * - 'min': 最小移动距离小于时 minMovement 时停止迭代
910
- * <en/> The condition for using minMovement
911
- * - 'mean': The average movement distance is less than minMovement when stopped iterating
912
- * - 'max': The maximum movement distance is less than minMovement when stopped iterating
913
- * - 'min': The minimum movement distance is less than minMovement when stopped iterating
914
- * @defaultValue 'mean'
915
- */
916
- distanceThresholdMode?: 'mean' | 'max' | 'min';
917
- /**
918
- * <zh/> 最大距离
919
- *
920
- * <en/> Maximum distance
921
- */
922
- maxDistance?: number;
923
- }
924
- export interface ForceLayoutOptions extends CommonForceLayoutOptions {
925
- /**
926
- * <zh/> 布局的宽度、默认为画布宽度
927
- *
928
- * <en/> The width of the layout, default to the width of the canvas
929
- */
930
- width?: number;
931
- /**
932
- * <zh/> 布局的高度、默认为画布高度
933
- *
934
- * <en/> The height of the layout, default to the height of the canvas
935
- */
936
- height?: number;
937
- /**
938
- * <zh/> 边的长度
939
- * - number: 固定长度
940
- * - ((edge?: Edge, source?: any, target?: any) => number): 根据边的信息返回长度
941
- * <en/> The length of the edge
942
- * - number: fixed length
943
- * - ((edge?: Edge, source?: any, target?: any) => number): return length according to the edge information
944
- * @defaultValue 200
945
- */
946
- linkDistance?: number | ((edge?: Edge, source?: any, target?: any) => number);
947
- /**
948
- * <zh/> 节点作用力,正数代表节点之间的引力作用,负数代表节点之间的斥力作用
949
- *
950
- * <en/> The force of the node, positive numbers represent the attraction force between nodes, and negative numbers represent the repulsion force between nodes
951
- * @defaultValue 1000
952
- */
953
- nodeStrength?: number | ((d?: Node) => number);
954
- /**
955
- * <zh/> 边的作用力(引力)大小
956
- *
957
- * <en/> The size of the force of the edge (attraction)
958
- * @defaultValue 50
959
- */
960
- edgeStrength?: number | ((d?: Edge) => number);
961
- /**
962
- * <zh/> 是否防止重叠,必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
963
- *
964
- * <en/> Whether to prevent overlap, must be used with the following properties nodeSize or data.size in the node data, and only when the data.size is set in the data or the nodeSize value is configured with the same value as the current graph node size in the layout configuration, can the node overlap collision detection be performed
965
- * @defaultValue true
966
- */
967
- preventOverlap?: boolean;
968
- /**
969
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
970
- *
971
- * <en/> The size of the node (diameter). Used for collision detection when preventing node overlap
972
- */
973
- nodeSize?: number | number[] | ((d?: Node) => number);
974
- /**
975
- * <zh/> preventOverlap 为 true 时生效, 防止重叠时节点边缘间距的最小值。可以是回调函数, 为不同节点设置不同的最小间距
976
- *
977
- * <en/> It is effective when preventOverlap is true. The minimum spacing of the node edge when preventing overlap. It can be a callback function to set different minimum spacing for different nodes
978
- */
979
- nodeSpacing?: number | ((d?: Node) => number);
980
- /**
981
- * <zh/> 阻尼系数,取值范围 [0, 1]。数字越大,速度降低得越慢
982
- *
983
- * <en/> Damping coefficient, the range of the value is [0, 1]. The larger the number, the slower the speed will decrease
984
- * @defaultValue 0.9
985
- */
986
- damping?: number;
987
- /**
988
- * <zh/> 一次迭代的最大移动长度
989
- *
990
- * <en/> The maximum movement length of one iteration
991
- * @defaultValue 200
992
- */
993
- maxSpeed?: number;
994
- /**
995
- * <zh/> 库伦系数,斥力的一个系数,数字越大,节点之间的斥力越大
996
- *
997
- * <en/> Coulomb's coefficient, a coefficient of repulsion, the larger the number, the larger the repulsion between nodes
998
- * @defaultValue 0.005
999
- */
1000
- coulombDisScale?: number;
1001
- /**
1002
- * <zh/> 中心力大小,指所有节点被吸引到 center 的力。数字越大,布局越紧凑
1003
- *
1004
- * <en/> The size of the center force, which attracts all nodes to the center. The larger the number, the more compact the layout
1005
- * @defaultValue 10
1006
- */
1007
- gravity?: number;
1008
- /**
1009
- * <zh/> 斥力系数,数值越大,斥力越大
1010
- *
1011
- * <en/> The repulsion coefficient, the larger the number, the larger the repulsion
1012
- * @defaultValue 1
1013
- */
1014
- factor?: number;
1015
- /**
1016
- * <zh/> 控制每个迭代节点的移动速度
1017
- *
1018
- * <en/> Control the movement speed of each iteration node
1019
- * @defaultValue 0.02
1020
- */
1021
- interval?: number;
1022
- /**
1023
- * <zh/> 向心力配置,包括叶子节点、离散点、其他节点的向心中心及向心力大小
1024
- *
1025
- * <en/> Centripetal configuration, including the centripetal center of leaf nodes, discrete points, and the centripetal center of other nodes
1026
- */
1027
- centripetalOptions?: CentripetalOptions;
1028
- /**
1029
- * <zh/> 是否需要叶子结点聚类
1030
- *
1031
- * <en/> Whether to cluster leaf nodes
1032
- * @remarks
1033
- * <zh/> 若为 true,则 centripetalOptions.single 将为 100;centripetalOptions.leaf 将使用 getClusterNodeStrength 返回值;getClusterNodeStrength.center 将为叶子节点返回当前所有叶子节点的平均中心
1034
- *
1035
- * <en/> If it is true, centripetalOptions.single will be 100; centripetalOptions.leaf will use the return value of getClusterNodeStrength; getClusterNodeStrength.center will be the average center of all leaf nodes
1036
- * @defaultValue false
1037
- */
1038
- leafCluster?: boolean;
1039
- /**
1040
- * <zh/> 是否需要全部节点聚类
1041
- *
1042
- * <en/> Whether to cluster all nodes
1043
- * @remarks
1044
- * <zh/> 若为 true,将使用 nodeClusterBy 配置的节点数据中的字段作为聚类依据。 centripetalOptions.single、centripetalOptions.leaf、centripetalOptions.others 将使用 getClusterNodeStrength 返回值;leaf、centripetalOptions.center 将使用当前节点所属聚类中所有节点的平均中心
1045
- *
1046
- * <en/> If it is true, the node data configured by nodeClusterBy will be used as the clustering basis. centripetalOptions.single, centripetalOptions.leaf, centripetalOptions.others will use the return value of getClusterNodeStrength; leaf、centripetalOptions.center will use the average center of all nodes in the current cluster
1047
- * @defaultValue false
1048
- */
1049
- clustering?: boolean;
1050
- /**
1051
- * <zh/> 指定节点数据中的字段名称作为节点聚类的依据,clustering 为 true 时生效,自动生成 centripetalOptions,可配合 clusterNodeStrength 使用
1052
- *
1053
- * <en/> Specify the field name of the node data as the clustering basis for the node, and it takes effect when clustering is true. You can combine it with clusterNodeStrength to use it
1054
- */
1055
- nodeClusterBy?: string;
1056
- /**
1057
- * <zh/> 配合 clustering 和 nodeClusterBy 使用,指定聚类向心力的大小
1058
- *
1059
- * <en/> Use it with clustering and nodeClusterBy to specify the size of the centripetal force of the cluster
1060
- * @defaultValue 20
1061
- */
1062
- clusterNodeStrength?: number | ((node: Node) => number);
1063
- /**
1064
- * <zh/> 防止重叠的力强度,范围 [0, 1]
1065
- *
1066
- * <en/> The strength of the force that prevents overlap, range [0, 1]
1067
- * @defaultValue 1
1068
- */
1069
- collideStrength?: number;
1070
- /**
1071
- * <zh/> 每一次迭代的回调函数
1072
- *
1073
- * <en/> The callback function for each iteration
1074
- * @param data - <zh/> 布局数据 | <en/> Layout data
1075
- */
1076
- onTick?: (data: LayoutMapping) => void;
1077
- /**
1078
- * <zh/> 每个节点质量的回调函数,如参为节点内部流转数据,返回值为质量大小
1079
- *
1080
- * <en/> The callback function for the mass of each node, if the parameter is the internal circulation data of the node, the return value is the size of the mass
1081
- * @param node - <zh/> 节点数据 | <en/> Node data
1082
- * @returns <zh/> 节点质量大小 | <en/> Mass size of the node
1083
- */
1084
- getMass?: (node?: Node) => number;
1085
- /**
1086
- * <zh/> 每个节点中心力的 x、y、强度的回调函数,若不指定,则没有额外中心力
1087
- *
1088
- * <en/> The callback function for the center force of each node, if not specified, there will be no additional center force
1089
- * @param node - <zh/> 节点数据 | <en/> Node data
1090
- * @param degree - <zh/> 节点度数 | <en/> Node degree
1091
- * @returns <zh/> 中心力 x、y、强度 | <en/> Center force x、y、strength
1092
- */
1093
- getCenter?: (node?: Node, degree?: number) => number[];
1094
- /**
1095
- * <zh/> 每个迭代的监控信息回调,energy 表示布局的收敛能量。若配置可能带来额外的计算能量性能消耗,不配置则不计算
1096
- *
1097
- * <en/> The callback function for monitoring information of each iteration, energy indicates the convergence energy of the layout. If not configured, it will not calculate
1098
- * @param params - <zh/> 监控信息 | <en/> Monitoring information
1099
- */
1100
- monitor?: (params: {
1101
- energy: number;
1102
- nodes: Node[];
1103
- edges: Edge[];
1104
- iterations: number;
1105
- }) => void;
1106
- }
1107
- /**
1108
- * <zh/> ForceAtlas2 力导向布局配置
1109
- *
1110
- * <en/> ForceAtlas2 layout configuration
1111
- */
1112
- export interface ForceAtlas2LayoutOptions extends CommonForceLayoutOptions {
1113
- /**
1114
- * <zh/> 布局的宽度,默认使用容器宽度
1115
- *
1116
- * <en/> The width of the layout, default to use the container width
1117
- */
1118
- width?: number;
1119
- /**
1120
- * <zh/> 布局的高度,默认使用容器高度
1121
- *
1122
- * <en/> The height of the layout, default to use the container height
1123
- */
1124
- height?: number;
1125
- /**
1126
- * <zh/> 斥力系数,可用于调整布局的紧凑程度。kr 越大,布局越松散
1127
- *
1128
- * <en/> The repulsive coefficient, which can be used to adjust the compactness of the layout. The larger kr is, the more relaxed the layout is
1129
- * @defaultValue 5
1130
- */
1131
- kr?: number;
1132
- /**
1133
- * <zh/> 重力系数。kg 越大,布局越聚集在中心
1134
- *
1135
- * <en/> The gravitational coefficient. The larger kg is, the more clustered the layout is in the center
1136
- * @defaultValue 1
1137
- */
1138
- kg?: number;
1139
- /**
1140
- * <zh/> 控制迭代过程中,节点移动的速度
1141
- *
1142
- * <en/> Control the speed of node movement during iteration
1143
- * @defaultValue 0.1
1144
- */
1145
- ks?: number;
1146
- /**
1147
- * <zh/> 迭代过程中,最大的节点移动的速度上限
1148
- *
1149
- * <en/> The upper limit of the maximum node movement speed during iteration
1150
- * @defaultValue 10
1151
- */
1152
- ksmax?: number;
1153
- /**
1154
- * <zh/> 迭代接近收敛时停止震荡的容忍度
1155
- *
1156
- * <en/> The tolerance for stopping oscillation when iteration is close to convergence
1157
- * @defaultValue 0.1
1158
- */
1159
- tao?: number;
1160
- /**
1161
- * <zh/> 聚类模式、'linlog' 模式下,聚类将更加紧凑
1162
- * - 'nornal':普通模式
1163
- * - 'linlog':linlog模式
1164
- * <en/> Clustering mode, the clustering will be more compact in the 'linlog' mode
1165
- * - 'normal':normal mode
1166
- * - 'linlog':linlog mode
1167
- * @defaultValue 'normal'
1168
- */
1169
- mode?: 'normal' | 'linlog';
1170
- /**
1171
- * <zh/> 是否防止重叠
1172
- *
1173
- * <en/> Whether to prevent overlap
1174
- * @remarks
1175
- * <zh/> 必须配合下面属性 nodeSize 或节点数据中的 data.size 属性,只有在数据中设置了 data.size 或在该布局中配置了与当前图节点大小相同的 nodeSize 值,才能够进行节点重叠的碰撞检测
1176
- *
1177
- * <en/> Must be used with the following properties: nodeSize or data.size in the node data. Only when data.size or nodeSize with the same value as the current graph node size is set in the layout configuration, can the collision detection of node overlap be performed
1178
- * @defaultValue false
1179
- */
1180
- preventOverlap?: boolean;
1181
- /**
1182
- * <zh/> 是否打开 hub 模式。若为 true,相比与出度大的节点,入度大的节点将会有更高的优先级被放置在中心位置
1183
- *
1184
- * <en/> Whether to open the hub mode. If true, nodes with high out-degree will have higher priority than nodes with high in-degree to be placed in the center
1185
- * @defaultValue false
1186
- */
1187
- dissuadeHubs?: boolean;
1188
- /**
1189
- * <zh/> 是否打开 barnes hut 加速,即四叉树加速
1190
- *
1191
- * <en/> Whether to open the barnes hut acceleration, that is, the quad tree acceleration
1192
- * @remarks
1193
- * <zh/> 由于每次迭代需要更新构建四叉树,建议在较大规模图上打开。默认情况下为 undefined,当节点数量大于 250 时它将会被激活。设置为 false 则不会自动被激活
1194
- *
1195
- * <en/> It is recommended to open it on large-scale graphs. By default, it will be activated when the number of nodes is greater than 250. Setting it to false will not be activated automatically
1196
- */
1197
- barnesHut?: boolean;
1198
- /**
1199
- * <zh/> 是否开启自动剪枝模式
1200
- *
1201
- * <en/> Whether to enable the automatic pruning mode
1202
- * @remarks
1203
- * <zh/> 默认情况下为 undefined,当节点数量大于 100 时它将会被激活。注意,剪枝能够提高收敛速度,但可能会降低图的布局质量。设置为 false 则不会自动被激活
1204
- *
1205
- * <en/> By default, it will be activated when the number of nodes is greater than 100. Note that pruning can improve the convergence speed, but it may reduce the layout quality of the graph. Setting it to false will not be activated automatically
1206
- */
1207
- prune?: boolean;
1208
- /**
1209
- * <zh/> 节点大小(直径)。用于防止节点重叠时的碰撞检测
1210
- *
1211
- * <en/> Node size (diameter). Used for collision detection when preventing node overlap
1212
- */
1213
- nodeSize?: number | number[] | ((node?: Node) => number);
1214
- /**
1215
- * <zh/> 每一次迭代的回调函数
1216
- *
1217
- * <en/> The callback function for each iteration
1218
- * @param data - <zh/> 当前迭代的布局数据 | <en/> Current layout data
1219
- */
1220
- onTick?: (data: LayoutMapping) => void;
1221
- }
1222
- /**
1223
- * <zh/> Fruchterman 力导布局配置项
1224
- *
1225
- * <en/> Fruchterman force layout configuration
1226
- */
1227
- export interface FruchtermanLayoutOptions extends CommonForceLayoutOptions {
1228
- /**
1229
- * <zh/> 布局的宽度,默认使用容器宽度
1230
- *
1231
- * <en/> The width of the layout, defaults to the container width
1232
- */
1233
- width?: number;
1234
- /**
1235
- * <zh/> 布局的高度,默认使用容器高度
1236
- *
1237
- * <en/> The height of the layout, defaults to the container height
1238
- */
1239
- height?: number;
1240
- /**
1241
- * <zh/> 中心力大小,指所有节点被吸引到 center 的力。数字越大,布局越紧凑
1242
- *
1243
- * <en/> The size of the center force, which means the force that all nodes are attracted to the center. The larger the number, the more compact the layout
1244
- * @defaultValue 10
1245
- */
1246
- gravity?: number;
1247
- /**
1248
- * <zh/> 每次迭代节点移动的速度。速度太快可能会导致强烈震荡
1249
- *
1250
- * <en/> The speed at which the node moves in each iteration. A speed that is too fast may cause strong oscillations
1251
- * @defaultValue 5
1252
- */
1253
- speed?: number;
1254
- /**
1255
- * <zh/> 是否按照聚类布局
1256
- *
1257
- * <en/> Whether to layout according to clustering
1258
- * @defaultValue false
1259
- */
1260
- clustering?: boolean;
1261
- /**
1262
- * <zh/> 聚类内部的重力大小,影响聚类的紧凑程度,在 clustering 为 true 时生效
1263
- *
1264
- * <en/> The size of the gravity inside the cluster, which affects the compactness of the cluster, and it takes effect when clustering is true
1265
- * @defaultValue 10
1266
- */
1267
- clusterGravity?: number;
1268
- /**
1269
- * <zh/> 聚类布局依据的节点数据 data 中的字段名,cluster: true 时使用
1270
- *
1271
- * <en/> The field name of the node data data in the data, which is used when cluster is true
1272
- * @defaultValue 'cluster'
1273
- */
1274
- nodeClusterBy?: string;
1275
- /**
1276
- * <zh/> 每一次迭代的回调函数
1277
- *
1278
- * <en/> The callback function for each iteration
1279
- * @param data - <zh/> 当前迭代的布局数据 | <en/> Current layout data
1280
- */
1281
- onTick?: (data: LayoutMapping) => void;
1282
- }
1283
- export {};