@foblex/flow 18.4.0 → 18.5.0

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 (1337) hide show
  1. package/README.md +4 -3
  2. package/domain/f-canvas/redraw-canvas-with-animation/e-canvas-redraw-context.d.ts +4 -0
  3. package/domain/f-canvas/redraw-canvas-with-animation/index.d.ts +1 -0
  4. package/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation-request.d.ts +4 -2
  5. package/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store-request.d.ts +1 -1
  6. package/domain/f-connection/create-connection-markers/create-connection-markers.d.ts +0 -1
  7. package/domain/f-connection/providers.d.ts +6 -6
  8. package/domain/f-connection/redraw-connections/index.d.ts +5 -0
  9. package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render-request.d.ts +8 -0
  10. package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render.d.ts +15 -0
  11. package/domain/f-connection/redraw-connections/main-thread/apply-connection-render/index.d.ts +2 -0
  12. package/domain/f-connection/redraw-connections/main-thread/index.d.ts +5 -0
  13. package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/index.d.ts +2 -0
  14. package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected-request.d.ts +7 -0
  15. package/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected.d.ts +9 -0
  16. package/domain/f-connection/redraw-connections/main-thread/render-connection/index.d.ts +2 -0
  17. package/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection-request.d.ts +8 -0
  18. package/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection.d.ts +9 -0
  19. package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/index.d.ts +2 -0
  20. package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry-request.d.ts +8 -0
  21. package/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry.d.ts +9 -0
  22. package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/index.d.ts +2 -0
  23. package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line-request.d.ts +11 -0
  24. package/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line.d.ts +9 -0
  25. package/domain/f-connection/redraw-connections/models/connection-redraw-state.d.ts +11 -0
  26. package/domain/f-connection/redraw-connections/models/connection-worker-state.d.ts +13 -0
  27. package/domain/f-connection/redraw-connections/models/i-connection-endpoints.d.ts +5 -0
  28. package/domain/f-connection/redraw-connections/models/i-connection-geometry.d.ts +6 -0
  29. package/domain/f-connection/redraw-connections/models/i-connection-redraw-session.d.ts +5 -0
  30. package/domain/f-connection/redraw-connections/models/i-connection-worker-batch-item.d.ts +8 -0
  31. package/domain/f-connection/redraw-connections/models/i-connection-worker-batch.d.ts +6 -0
  32. package/domain/f-connection/redraw-connections/models/i-connection-worker-payload-item.d.ts +13 -0
  33. package/{f-connection-worker/model/i-f-connection-worker-rect.d.ts → domain/f-connection/redraw-connections/models/i-connection-worker-rect.d.ts} +1 -1
  34. package/domain/f-connection/redraw-connections/models/i-connection-worker-response.d.ts +6 -0
  35. package/{f-connection-worker/model/i-f-connection-worker-result-item.d.ts → domain/f-connection/redraw-connections/models/i-connection-worker-result-item.d.ts} +2 -2
  36. package/domain/f-connection/redraw-connections/models/index.d.ts +12 -0
  37. package/domain/f-connection/redraw-connections/models/t-connection-worker-pending-request.d.ts +5 -0
  38. package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw-request.d.ts +6 -0
  39. package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw.d.ts +10 -0
  40. package/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/index.d.ts +2 -0
  41. package/domain/f-connection/redraw-connections/pipeline/index.d.ts +4 -0
  42. package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/index.d.ts +2 -0
  43. package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current-request.d.ts +6 -0
  44. package/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current.d.ts +10 -0
  45. package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/index.d.ts +2 -0
  46. package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice-request.d.ts +13 -0
  47. package/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice.d.ts +14 -0
  48. package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/index.d.ts +2 -0
  49. package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw-request.d.ts +3 -0
  50. package/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw.d.ts +11 -0
  51. package/domain/f-connection/redraw-connections/redraw-connections.d.ts +6 -25
  52. package/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line-request.d.ts +8 -0
  53. package/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line.d.ts +12 -0
  54. package/domain/f-connection/redraw-connections/shared/build-connection-line/index.d.ts +2 -0
  55. package/domain/f-connection/redraw-connections/shared/index.d.ts +4 -0
  56. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/index.d.ts +2 -0
  57. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect-request.d.ts +8 -0
  58. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect.d.ts +12 -0
  59. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/index.d.ts +2 -0
  60. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints-request.d.ts +6 -0
  61. package/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints.d.ts +10 -0
  62. package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/index.d.ts +2 -0
  63. package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry-request.d.ts +8 -0
  64. package/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry.d.ts +12 -0
  65. package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result-request.d.ts +7 -0
  66. package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result.d.ts +11 -0
  67. package/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/index.d.ts +2 -0
  68. package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch-request.d.ts +8 -0
  69. package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch.d.ts +11 -0
  70. package/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/index.d.ts +2 -0
  71. package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item-request.d.ts +9 -0
  72. package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item.d.ts +10 -0
  73. package/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/index.d.ts +2 -0
  74. package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/disable-connection-worker-request.d.ts +1 -1
  75. package/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message-request.d.ts +6 -0
  76. package/domain/f-connection/redraw-connections/worker/index.d.ts +13 -0
  77. package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/reset-connection-worker-runtime-request.d.ts +1 -1
  78. package/domain/f-connection/redraw-connections/worker/run-connection-worker/index.d.ts +2 -0
  79. package/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker-request.d.ts +6 -0
  80. package/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker.d.ts +12 -0
  81. package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/index.d.ts +2 -0
  82. package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch-request.d.ts +6 -0
  83. package/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch.d.ts +10 -0
  84. package/domain/f-connection/redraw-connections/worker/runtime/index.d.ts +1 -0
  85. package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/should-use-connection-worker-request.d.ts +1 -1
  86. package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/index.d.ts +2 -0
  87. package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw-request.d.ts +10 -0
  88. package/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw.d.ts +10 -0
  89. package/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store-request.d.ts +1 -1
  90. package/domain/f-flow/add-flow-to-store/add-flow-to-store-request.d.ts +2 -2
  91. package/domain/f-flow/add-flow-to-store/add-flow-to-store.d.ts +2 -1
  92. package/domain/f-flow/calculate-flow-state/calculate-flow-state-request.d.ts +2 -0
  93. package/domain/f-flow/calculate-flow-state/calculate-flow-state.d.ts +1 -1
  94. package/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state-request.d.ts +2 -1
  95. package/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state.d.ts +2 -1
  96. package/domain/f-flow/calculate-flow-state/i-f-flow-state-node.d.ts +1 -0
  97. package/domain/f-flow/calculate-flow-state/i-f-flow-state-options.d.ts +3 -0
  98. package/domain/f-flow/calculate-flow-state/index.d.ts +1 -0
  99. package/domain/f-flow/index.d.ts +1 -0
  100. package/domain/f-flow/providers.d.ts +2 -1
  101. package/domain/f-flow/remove-flow-from-store/remove-flow-from-store-request.d.ts +3 -0
  102. package/domain/f-flow/remove-flow-from-store/remove-flow-from-store.d.ts +2 -1
  103. package/domain/f-flow/render-lifecycle/index.d.ts +6 -0
  104. package/domain/f-flow/render-lifecycle/notify-full-rendered/index.d.ts +2 -0
  105. package/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered-request.d.ts +3 -0
  106. package/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered.d.ts +10 -0
  107. package/domain/f-flow/render-lifecycle/notify-nodes-rendered/index.d.ts +2 -0
  108. package/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered-request.d.ts +3 -0
  109. package/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered.d.ts +10 -0
  110. package/domain/f-flow/render-lifecycle/queue-connection-redraw/index.d.ts +3 -0
  111. package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-request.d.ts +6 -0
  112. package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-state.d.ts +7 -0
  113. package/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw.d.ts +11 -0
  114. package/domain/f-flow/render-lifecycle/render-lifecycle-state.d.ts +7 -0
  115. package/domain/f-flow/render-lifecycle/reset-render-lifecycle/index.d.ts +2 -0
  116. package/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle-request.d.ts +3 -0
  117. package/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle.d.ts +9 -0
  118. package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/index.d.ts +2 -0
  119. package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered-request.d.ts +9 -0
  120. package/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered.d.ts +9 -0
  121. package/domain/providers.d.ts +1 -1
  122. package/esm2022/domain/create-dom-element.mjs +1 -1
  123. package/esm2022/domain/css-cls.mjs +1 -1
  124. package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background-request.mjs +1 -1
  125. package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.mjs +1 -1
  126. package/esm2022/domain/f-background/add-pattern-to-background/index.mjs +1 -1
  127. package/esm2022/domain/f-background/index.mjs +1 -1
  128. package/esm2022/domain/f-background/providers.mjs +1 -1
  129. package/esm2022/domain/f-background/set-background-transform/index.mjs +1 -1
  130. package/esm2022/domain/f-background/set-background-transform/set-background-transform-request.mjs +1 -1
  131. package/esm2022/domain/f-background/set-background-transform/set-background-transform.mjs +1 -1
  132. package/esm2022/domain/f-canvas/add-canvas-to-store/add-canvas-to-store-request.mjs +1 -1
  133. package/esm2022/domain/f-canvas/add-canvas-to-store/add-canvas-to-store.mjs +1 -1
  134. package/esm2022/domain/f-canvas/add-canvas-to-store/index.mjs +1 -1
  135. package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node-request.mjs +1 -1
  136. package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node.mjs +3 -3
  137. package/esm2022/domain/f-canvas/center-group-or-node/index.mjs +1 -1
  138. package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow-request.mjs +1 -1
  139. package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow.mjs +3 -3
  140. package/esm2022/domain/f-canvas/fit-to-flow/index.mjs +1 -1
  141. package/esm2022/domain/f-canvas/index.mjs +1 -1
  142. package/esm2022/domain/f-canvas/input-canvas-position/index.mjs +1 -1
  143. package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position-request.mjs +1 -1
  144. package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.mjs +1 -1
  145. package/esm2022/domain/f-canvas/input-canvas-scale/index.mjs +1 -1
  146. package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale-request.mjs +1 -1
  147. package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.mjs +1 -1
  148. package/esm2022/domain/f-canvas/providers.mjs +1 -1
  149. package/esm2022/domain/f-canvas/redraw-canvas-with-animation/e-canvas-redraw-context.mjs +6 -0
  150. package/esm2022/domain/f-canvas/redraw-canvas-with-animation/index.mjs +2 -1
  151. package/esm2022/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation-request.mjs +5 -2
  152. package/esm2022/domain/f-canvas/redraw-canvas-with-animation/redraw-canvas-with-animation.mjs +15 -6
  153. package/esm2022/domain/f-canvas/remove-canvas-from-store/index.mjs +1 -1
  154. package/esm2022/domain/f-canvas/remove-canvas-from-store/remove-canvas-from-store-request.mjs +1 -1
  155. package/esm2022/domain/f-canvas/remove-canvas-from-store/remove-canvas-from-store.mjs +1 -1
  156. package/esm2022/domain/f-canvas/reset-scale/index.mjs +1 -1
  157. package/esm2022/domain/f-canvas/reset-scale/reset-scale-request.mjs +1 -1
  158. package/esm2022/domain/f-canvas/reset-scale/reset-scale.mjs +1 -1
  159. package/esm2022/domain/f-canvas/reset-scale-and-center/index.mjs +1 -1
  160. package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center-request.mjs +1 -1
  161. package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.mjs +3 -3
  162. package/esm2022/domain/f-canvas/update-scale/index.mjs +1 -1
  163. package/esm2022/domain/f-canvas/update-scale/update-scale-request.mjs +1 -1
  164. package/esm2022/domain/f-canvas/update-scale/update-scale.mjs +1 -1
  165. package/esm2022/domain/f-connection/add-connection-for-create-to-store/add-connection-for-create-to-store-request.mjs +1 -1
  166. package/esm2022/domain/f-connection/add-connection-for-create-to-store/add-connection-for-create-to-store.mjs +1 -1
  167. package/esm2022/domain/f-connection/add-connection-for-create-to-store/index.mjs +1 -1
  168. package/esm2022/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store-request.mjs +1 -1
  169. package/esm2022/domain/f-connection/add-connection-marker-to-store/add-connection-marker-to-store.mjs +1 -1
  170. package/esm2022/domain/f-connection/add-connection-marker-to-store/index.mjs +1 -1
  171. package/esm2022/domain/f-connection/add-connection-to-store/add-connection-to-store-request.mjs +1 -1
  172. package/esm2022/domain/f-connection/add-connection-to-store/add-connection-to-store.mjs +1 -1
  173. package/esm2022/domain/f-connection/add-connection-to-store/index.mjs +1 -1
  174. package/esm2022/domain/f-connection/add-snap-connection-to-store/add-snap-connection-to-store-request.mjs +1 -1
  175. package/esm2022/domain/f-connection/add-snap-connection-to-store/add-snap-connection-to-store.mjs +1 -1
  176. package/esm2022/domain/f-connection/add-snap-connection-to-store/index.mjs +1 -1
  177. package/esm2022/domain/f-connection/create-connection-markers/create-connection-markers-request.mjs +1 -1
  178. package/esm2022/domain/f-connection/create-connection-markers/create-connection-markers.mjs +35 -18
  179. package/esm2022/domain/f-connection/create-connection-markers/index.mjs +1 -1
  180. package/esm2022/domain/f-connection/index.mjs +1 -1
  181. package/esm2022/domain/f-connection/providers.mjs +33 -6
  182. package/esm2022/domain/f-connection/redraw-connections/index.mjs +6 -1
  183. package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render-request.mjs +10 -0
  184. package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/apply-connection-render.mjs +67 -0
  185. package/esm2022/domain/f-connection/redraw-connections/main-thread/apply-connection-render/index.mjs +3 -0
  186. package/esm2022/domain/f-connection/redraw-connections/main-thread/index.mjs +6 -0
  187. package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/index.mjs +3 -0
  188. package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected-request.mjs +10 -0
  189. package/esm2022/domain/f-connection/redraw-connections/main-thread/mark-connection-connectors-as-connected/mark-connection-connectors-as-connected.mjs +24 -0
  190. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/index.mjs +3 -0
  191. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection-request.mjs +10 -0
  192. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection/render-connection.mjs +27 -0
  193. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/index.mjs +3 -0
  194. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry-request.mjs +10 -0
  195. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-from-geometry/render-connection-from-geometry.mjs +24 -0
  196. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/index.mjs +3 -0
  197. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line-request.mjs +14 -0
  198. package/esm2022/domain/f-connection/redraw-connections/main-thread/render-connection-with-line/render-connection-with-line.mjs +24 -0
  199. package/esm2022/domain/f-connection/redraw-connections/models/connection-redraw-state.mjs +25 -0
  200. package/esm2022/domain/f-connection/redraw-connections/models/connection-worker-state.mjs +27 -0
  201. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-endpoints.mjs +2 -0
  202. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-geometry.mjs +2 -0
  203. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-redraw-session.mjs +2 -0
  204. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-batch-item.mjs +2 -0
  205. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-batch.mjs +2 -0
  206. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-payload-item.mjs +2 -0
  207. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-rect.mjs +2 -0
  208. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-response.mjs +2 -0
  209. package/esm2022/domain/f-connection/redraw-connections/models/i-connection-worker-result-item.mjs +2 -0
  210. package/esm2022/domain/f-connection/redraw-connections/models/index.mjs +13 -0
  211. package/esm2022/domain/f-connection/redraw-connections/models/t-connection-worker-pending-request.mjs +2 -0
  212. package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw-request.mjs +8 -0
  213. package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/complete-connection-redraw.mjs +27 -0
  214. package/esm2022/domain/f-connection/redraw-connections/pipeline/complete-connection-redraw/index.mjs +3 -0
  215. package/esm2022/domain/f-connection/redraw-connections/pipeline/index.mjs +5 -0
  216. package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/index.mjs +3 -0
  217. package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current-request.mjs +8 -0
  218. package/esm2022/domain/f-connection/redraw-connections/pipeline/is-connection-redraw-current/is-connection-redraw-current.mjs +25 -0
  219. package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/index.mjs +3 -0
  220. package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice-request.mjs +18 -0
  221. package/esm2022/domain/f-connection/redraw-connections/pipeline/run-connection-redraw-slice/run-connection-redraw-slice.mjs +76 -0
  222. package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/index.mjs +3 -0
  223. package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw-request.mjs +4 -0
  224. package/esm2022/domain/f-connection/redraw-connections/pipeline/start-connection-redraw/start-connection-redraw.mjs +29 -0
  225. package/esm2022/domain/f-connection/redraw-connections/redraw-connections-request.mjs +1 -1
  226. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.mjs +30 -230
  227. package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line-request.mjs +10 -0
  228. package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/build-connection-line.mjs +27 -0
  229. package/esm2022/domain/f-connection/redraw-connections/shared/build-connection-line/index.mjs +3 -0
  230. package/esm2022/domain/f-connection/redraw-connections/shared/index.mjs +5 -0
  231. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/index.mjs +3 -0
  232. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect-request.mjs +10 -0
  233. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoint-rect/resolve-connection-endpoint-rect.mjs +31 -0
  234. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/index.mjs +3 -0
  235. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints-request.mjs +8 -0
  236. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-endpoints/resolve-connection-endpoints.mjs +27 -0
  237. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/index.mjs +3 -0
  238. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry-request.mjs +10 -0
  239. package/esm2022/domain/f-connection/redraw-connections/shared/resolve-connection-geometry/resolve-connection-geometry.mjs +37 -0
  240. package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result-request.mjs +10 -0
  241. package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/apply-connection-worker-result.mjs +42 -0
  242. package/esm2022/domain/f-connection/redraw-connections/worker/apply-connection-worker-result/index.mjs +3 -0
  243. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch-request.mjs +10 -0
  244. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/build-connection-worker-batch.mjs +44 -0
  245. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-batch/index.mjs +3 -0
  246. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item-request.mjs +12 -0
  247. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/build-connection-worker-payload-item.mjs +52 -0
  248. package/esm2022/domain/f-connection/redraw-connections/worker/build-connection-worker-payload-item/index.mjs +3 -0
  249. package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/disable-connection-worker-request.mjs +8 -0
  250. package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/disable-connection-worker.mjs +25 -0
  251. package/esm2022/domain/f-connection/redraw-connections/worker/disable-connection-worker/index.mjs +3 -0
  252. package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/ensure-connection-worker-request.mjs +4 -0
  253. package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/ensure-connection-worker.mjs +68 -0
  254. package/esm2022/domain/f-connection/redraw-connections/worker/ensure-connection-worker/index.mjs +3 -0
  255. package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message-request.mjs +8 -0
  256. package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/handle-connection-worker-message.mjs +34 -0
  257. package/esm2022/domain/f-connection/redraw-connections/worker/handle-connection-worker-message/index.mjs +3 -0
  258. package/esm2022/domain/f-connection/redraw-connections/worker/index.mjs +14 -0
  259. package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/index.mjs +3 -0
  260. package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/is-connection-worker-enabled-request.mjs +4 -0
  261. package/esm2022/domain/f-connection/redraw-connections/worker/is-connection-worker-enabled/is-connection-worker-enabled.mjs +35 -0
  262. package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/index.mjs +3 -0
  263. package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/reset-connection-worker-runtime-request.mjs +8 -0
  264. package/esm2022/domain/f-connection/redraw-connections/worker/reset-connection-worker-runtime/reset-connection-worker-runtime.mjs +22 -0
  265. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/index.mjs +3 -0
  266. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker-request.mjs +8 -0
  267. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker/run-connection-worker.mjs +59 -0
  268. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/index.mjs +3 -0
  269. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch-request.mjs +8 -0
  270. package/esm2022/domain/f-connection/redraw-connections/worker/run-connection-worker-batch/run-connection-worker-batch.mjs +25 -0
  271. package/esm2022/domain/f-connection/redraw-connections/worker/runtime/connection-worker-runtime.mjs +247 -0
  272. package/esm2022/domain/f-connection/redraw-connections/worker/runtime/index.mjs +2 -0
  273. package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/index.mjs +3 -0
  274. package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/should-use-connection-worker-request.mjs +8 -0
  275. package/esm2022/domain/f-connection/redraw-connections/worker/should-use-connection-worker/should-use-connection-worker.mjs +22 -0
  276. package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/index.mjs +3 -0
  277. package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw-request.mjs +12 -0
  278. package/esm2022/domain/f-connection/redraw-connections/worker/start-connection-worker-redraw/start-connection-worker-redraw.mjs +53 -0
  279. package/esm2022/domain/f-connection/remove-connection-for-create-from-store/index.mjs +1 -1
  280. package/esm2022/domain/f-connection/remove-connection-for-create-from-store/remove-connection-for-create-from-store-request.mjs +1 -1
  281. package/esm2022/domain/f-connection/remove-connection-for-create-from-store/remove-connection-for-create-from-store.mjs +1 -1
  282. package/esm2022/domain/f-connection/remove-connection-from-store/index.mjs +1 -1
  283. package/esm2022/domain/f-connection/remove-connection-from-store/remove-connection-from-store-request.mjs +1 -1
  284. package/esm2022/domain/f-connection/remove-connection-from-store/remove-connection-from-store.mjs +1 -1
  285. package/esm2022/domain/f-connection/remove-connection-marker-from-store/index.mjs +1 -1
  286. package/esm2022/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store-request.mjs +1 -1
  287. package/esm2022/domain/f-connection/remove-connection-marker-from-store/remove-connection-marker-from-store.mjs +1 -1
  288. package/esm2022/domain/f-connection/remove-connection-waypoint/index.mjs +1 -1
  289. package/esm2022/domain/f-connection/remove-connection-waypoint/remove-connection-waypoint-request.mjs +1 -1
  290. package/esm2022/domain/f-connection/remove-connection-waypoint/remove-connection-waypoint.mjs +1 -1
  291. package/esm2022/domain/f-connection/remove-snap-connection-from-store/index.mjs +1 -1
  292. package/esm2022/domain/f-connection/remove-snap-connection-from-store/remove-snap-connection-from-store-request.mjs +1 -1
  293. package/esm2022/domain/f-connection/remove-snap-connection-from-store/remove-snap-connection-from-store.mjs +1 -1
  294. package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/index.mjs +1 -1
  295. package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/resolve-connection-endpoint-rotation-context-request.mjs +1 -1
  296. package/esm2022/domain/f-connection/resolve-connection-endpoint-rotation-context/resolve-connection-endpoint-rotation-context.mjs +1 -1
  297. package/esm2022/domain/f-connectors/add-connector-to-store/add-connector-to-store-request.mjs +1 -1
  298. package/esm2022/domain/f-connectors/add-connector-to-store/add-connector-to-store.mjs +1 -1
  299. package/esm2022/domain/f-connectors/add-connector-to-store/index.mjs +1 -1
  300. package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector-request.mjs +1 -1
  301. package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector.mjs +1 -1
  302. package/esm2022/domain/f-connectors/calculate-closest-connector/index.mjs +1 -1
  303. package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/calculate-source-connectors-to-connect-request.mjs +1 -1
  304. package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/calculate-source-connectors-to-connect.mjs +1 -1
  305. package/esm2022/domain/f-connectors/calculate-source-connectors-to-connect/index.mjs +1 -1
  306. package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/calculate-target-connectors-to-connect-request.mjs +1 -1
  307. package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/calculate-target-connectors-to-connect.mjs +1 -1
  308. package/esm2022/domain/f-connectors/calculate-target-connectors-to-connect/index.mjs +1 -1
  309. package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/find-connectable-connector-using-priority-and-position-request.mjs +1 -1
  310. package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/find-connectable-connector-using-priority-and-position.mjs +1 -1
  311. package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/index.mjs +1 -1
  312. package/esm2022/domain/f-connectors/get-connector-rect-reference/get-connector-rect-reference-request.mjs +1 -1
  313. package/esm2022/domain/f-connectors/get-connector-rect-reference/get-connector-rect-reference.mjs +1 -1
  314. package/esm2022/domain/f-connectors/get-connector-rect-reference/index.mjs +1 -1
  315. package/esm2022/domain/f-connectors/i-closest-connector-ref.mjs +1 -1
  316. package/esm2022/domain/f-connectors/i-connector-rect-ref.mjs +1 -1
  317. package/esm2022/domain/f-connectors/index.mjs +1 -1
  318. package/esm2022/domain/f-connectors/mark-connectable-connectors/index.mjs +1 -1
  319. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors-request.mjs +1 -1
  320. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors.mjs +1 -1
  321. package/esm2022/domain/f-connectors/providers.mjs +1 -1
  322. package/esm2022/domain/f-connectors/remove-connector-from-store/index.mjs +1 -1
  323. package/esm2022/domain/f-connectors/remove-connector-from-store/remove-connector-from-store-request.mjs +1 -1
  324. package/esm2022/domain/f-connectors/remove-connector-from-store/remove-connector-from-store.mjs +1 -1
  325. package/esm2022/domain/f-connectors/unmark-connectable-connectors/index.mjs +1 -1
  326. package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors-request.mjs +1 -1
  327. package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors.mjs +1 -1
  328. package/esm2022/domain/f-draggable/add-dnd-to-store/add-dnd-to-store-request.mjs +1 -1
  329. package/esm2022/domain/f-draggable/add-dnd-to-store/add-dnd-to-store.mjs +1 -1
  330. package/esm2022/domain/f-draggable/add-dnd-to-store/index.mjs +1 -1
  331. package/esm2022/domain/f-draggable/index.mjs +1 -1
  332. package/esm2022/domain/f-draggable/initialize-drag-sequence/index.mjs +1 -1
  333. package/esm2022/domain/f-draggable/initialize-drag-sequence/initialize-drag-sequence-request.mjs +1 -1
  334. package/esm2022/domain/f-draggable/initialize-drag-sequence/initialize-drag-sequence.mjs +1 -1
  335. package/esm2022/domain/f-draggable/is-drag-started/index.mjs +1 -1
  336. package/esm2022/domain/f-draggable/is-drag-started/is-drag-started-request.mjs +1 -1
  337. package/esm2022/domain/f-draggable/is-drag-started/is-drag-started.mjs +1 -1
  338. package/esm2022/domain/f-draggable/on-pointer-move/index.mjs +1 -1
  339. package/esm2022/domain/f-draggable/on-pointer-move/on-pointer-move-request.mjs +1 -1
  340. package/esm2022/domain/f-draggable/on-pointer-move/on-pointer-move.mjs +1 -1
  341. package/esm2022/domain/f-draggable/prepare-drag-sequence/index.mjs +1 -1
  342. package/esm2022/domain/f-draggable/prepare-drag-sequence/prepare-drag-sequence-request.mjs +1 -1
  343. package/esm2022/domain/f-draggable/prepare-drag-sequence/prepare-drag-sequence.mjs +1 -1
  344. package/esm2022/domain/f-draggable/providers.mjs +1 -1
  345. package/esm2022/domain/f-draggable/remove-dnd-from-store/index.mjs +1 -1
  346. package/esm2022/domain/f-draggable/remove-dnd-from-store/remove-dnd-from-store-request.mjs +1 -1
  347. package/esm2022/domain/f-draggable/remove-dnd-from-store/remove-dnd-from-store.mjs +1 -1
  348. package/esm2022/domain/f-event-trigger.mjs +1 -1
  349. package/esm2022/domain/f-flow/add-flow-to-store/add-flow-to-store-request.mjs +4 -4
  350. package/esm2022/domain/f-flow/add-flow-to-store/add-flow-to-store.mjs +6 -3
  351. package/esm2022/domain/f-flow/add-flow-to-store/index.mjs +1 -1
  352. package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/calculate-connections-state-request.mjs +1 -1
  353. package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/calculate-connections-state.mjs +1 -1
  354. package/esm2022/domain/f-flow/calculate-flow-state/calculate-connections-state/index.mjs +1 -1
  355. package/esm2022/domain/f-flow/calculate-flow-state/calculate-flow-state-request.mjs +5 -1
  356. package/esm2022/domain/f-flow/calculate-flow-state/calculate-flow-state.mjs +4 -4
  357. package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state-request.mjs +4 -2
  358. package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/calculate-nodes-state.mjs +17 -6
  359. package/esm2022/domain/f-flow/calculate-flow-state/calculate-nodes-state/index.mjs +1 -1
  360. package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-connection.mjs +1 -1
  361. package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-connector.mjs +1 -1
  362. package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-node.mjs +1 -1
  363. package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state-options.mjs +2 -0
  364. package/esm2022/domain/f-flow/calculate-flow-state/i-f-flow-state.mjs +1 -1
  365. package/esm2022/domain/f-flow/calculate-flow-state/index.mjs +2 -1
  366. package/esm2022/domain/f-flow/calculate-flow-state/providers.mjs +1 -1
  367. package/esm2022/domain/f-flow/get-flow/get-flow-request.mjs +1 -1
  368. package/esm2022/domain/f-flow/get-flow/get-flow.mjs +1 -1
  369. package/esm2022/domain/f-flow/get-flow/index.mjs +1 -1
  370. package/esm2022/domain/f-flow/index.mjs +2 -1
  371. package/esm2022/domain/f-flow/providers.mjs +9 -1
  372. package/esm2022/domain/f-flow/remove-flow-from-store/index.mjs +1 -1
  373. package/esm2022/domain/f-flow/remove-flow-from-store/remove-flow-from-store-request.mjs +5 -1
  374. package/esm2022/domain/f-flow/remove-flow-from-store/remove-flow-from-store.mjs +5 -2
  375. package/esm2022/domain/f-flow/render-lifecycle/index.mjs +7 -0
  376. package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/index.mjs +3 -0
  377. package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered-request.mjs +4 -0
  378. package/esm2022/domain/f-flow/render-lifecycle/notify-full-rendered/notify-full-rendered.mjs +29 -0
  379. package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/index.mjs +3 -0
  380. package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered-request.mjs +4 -0
  381. package/esm2022/domain/f-flow/render-lifecycle/notify-nodes-rendered/notify-nodes-rendered.mjs +28 -0
  382. package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/index.mjs +4 -0
  383. package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-request.mjs +8 -0
  384. package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw-state.mjs +12 -0
  385. package/esm2022/domain/f-flow/render-lifecycle/queue-connection-redraw/queue-connection-redraw.mjs +44 -0
  386. package/esm2022/domain/f-flow/render-lifecycle/render-lifecycle-state.mjs +12 -0
  387. package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/index.mjs +3 -0
  388. package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle-request.mjs +4 -0
  389. package/esm2022/domain/f-flow/render-lifecycle/reset-render-lifecycle/reset-render-lifecycle.mjs +23 -0
  390. package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/index.mjs +3 -0
  391. package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered-request.mjs +14 -0
  392. package/esm2022/domain/f-flow/render-lifecycle/wait-for-connections-rendered/wait-for-connections-rendered.mjs +35 -0
  393. package/esm2022/domain/f-node/add-node-to-store/add-node-to-store-request.mjs +1 -1
  394. package/esm2022/domain/f-node/add-node-to-store/add-node-to-store.mjs +1 -1
  395. package/esm2022/domain/f-node/add-node-to-store/index.mjs +1 -1
  396. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/calculate-connectable-side-by-connected-positions-request.mjs +1 -1
  397. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/calculate-connectable-side-by-connected-positions.mjs +1 -1
  398. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-connected-positions/index.mjs +1 -1
  399. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/calculate-connectable-side-by-internal-position-request.mjs +1 -1
  400. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/calculate-connectable-side-by-internal-position.mjs +1 -1
  401. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectable-side-by-internal-position/index.mjs +1 -1
  402. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectors-connectable-sides-request.mjs +1 -1
  403. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/calculate-connectors-connectable-sides.mjs +1 -1
  404. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/constants/calculatable-sides.mjs +1 -1
  405. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/constants/index.mjs +1 -1
  406. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/index.mjs +1 -1
  407. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/models/index.mjs +1 -1
  408. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/models/t-calculate-mode.mjs +1 -1
  409. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/determine-side.mjs +1 -1
  410. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/index.mjs +1 -1
  411. package/esm2022/domain/f-node/calculate-connectors-connectable-sides/utils/is-calculate-mode.mjs +1 -1
  412. package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections-request.mjs +1 -1
  413. package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections.mjs +1 -1
  414. package/esm2022/domain/f-node/calculate-input-connections/index.mjs +1 -1
  415. package/esm2022/domain/f-node/calculate-nodes-bounding-box/calculate-nodes-bounding-box-request.mjs +1 -1
  416. package/esm2022/domain/f-node/calculate-nodes-bounding-box/calculate-nodes-bounding-box.mjs +1 -1
  417. package/esm2022/domain/f-node/calculate-nodes-bounding-box/index.mjs +1 -1
  418. package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/calculate-nodes-bounding-box-normalized-position-request.mjs +1 -1
  419. package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/calculate-nodes-bounding-box-normalized-position.mjs +1 -1
  420. package/esm2022/domain/f-node/calculate-nodes-bounding-box-normalized-position/index.mjs +1 -1
  421. package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections-request.mjs +1 -1
  422. package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections.mjs +1 -1
  423. package/esm2022/domain/f-node/calculate-output-connections/index.mjs +1 -1
  424. package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/fit-to-child-nodes-and-groups-request.mjs +1 -1
  425. package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/fit-to-child-nodes-and-groups.mjs +1 -1
  426. package/esm2022/domain/f-node/fit-to-child-nodes-and-groups/index.mjs +1 -1
  427. package/esm2022/domain/f-node/get-child-node-ids/get-child-node-ids-request.mjs +1 -1
  428. package/esm2022/domain/f-node/get-child-node-ids/get-child-node-ids.mjs +1 -1
  429. package/esm2022/domain/f-node/get-child-node-ids/index.mjs +1 -1
  430. package/esm2022/domain/f-node/get-node-padding/get-node-padding-request.mjs +1 -1
  431. package/esm2022/domain/f-node/get-node-padding/get-node-padding.mjs +1 -1
  432. package/esm2022/domain/f-node/get-node-padding/index.mjs +1 -1
  433. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes-request.mjs +1 -1
  434. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.mjs +1 -1
  435. package/esm2022/domain/f-node/get-parent-nodes/index.mjs +1 -1
  436. package/esm2022/domain/f-node/index.mjs +1 -1
  437. package/esm2022/domain/f-node/providers.mjs +1 -1
  438. package/esm2022/domain/f-node/remove-node-from-store/index.mjs +1 -1
  439. package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store-request.mjs +1 -1
  440. package/esm2022/domain/f-node/remove-node-from-store/remove-node-from-store.mjs +1 -1
  441. package/esm2022/domain/f-node/update-node-when-state-or-size-changed/index.mjs +1 -1
  442. package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed-request.mjs +1 -1
  443. package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.mjs +3 -3
  444. package/esm2022/domain/f-selection/calculate-selectable-items/calculate-selectable-items-request.mjs +1 -1
  445. package/esm2022/domain/f-selection/calculate-selectable-items/calculate-selectable-items.mjs +1 -1
  446. package/esm2022/domain/f-selection/calculate-selectable-items/i-can-be-selected-element-and-rect.mjs +1 -1
  447. package/esm2022/domain/f-selection/calculate-selectable-items/index.mjs +1 -1
  448. package/esm2022/domain/f-selection/clear-selection/clear-selection-request.mjs +1 -1
  449. package/esm2022/domain/f-selection/clear-selection/clear-selection.mjs +1 -1
  450. package/esm2022/domain/f-selection/clear-selection/index.mjs +1 -1
  451. package/esm2022/domain/f-selection/get-current-selection/get-current-selection-request.mjs +1 -1
  452. package/esm2022/domain/f-selection/get-current-selection/get-current-selection.mjs +1 -1
  453. package/esm2022/domain/f-selection/get-current-selection/i-current-selection.mjs +1 -1
  454. package/esm2022/domain/f-selection/get-current-selection/index.mjs +1 -1
  455. package/esm2022/domain/f-selection/index.mjs +1 -1
  456. package/esm2022/domain/f-selection/providers.mjs +1 -1
  457. package/esm2022/domain/f-selection/select-all/index.mjs +1 -1
  458. package/esm2022/domain/f-selection/select-all/select-all-request.mjs +1 -1
  459. package/esm2022/domain/f-selection/select-all/select-all.mjs +1 -1
  460. package/esm2022/domain/f-selection/select-and-update-node-layer/index.mjs +1 -1
  461. package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer-request.mjs +1 -1
  462. package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.mjs +1 -1
  463. package/esm2022/domain/f-selection/select-items/index.mjs +1 -1
  464. package/esm2022/domain/f-selection/select-items/select-request.mjs +1 -1
  465. package/esm2022/domain/f-selection/select-items/select.mjs +1 -1
  466. package/esm2022/domain/f-zoom/index.mjs +1 -1
  467. package/esm2022/domain/f-zoom/providers.mjs +1 -1
  468. package/esm2022/domain/f-zoom/reset-zoom/index.mjs +1 -1
  469. package/esm2022/domain/f-zoom/reset-zoom/reset-zoom-request.mjs +1 -1
  470. package/esm2022/domain/f-zoom/reset-zoom/reset-zoom.mjs +1 -1
  471. package/esm2022/domain/f-zoom/set-zoom/index.mjs +1 -1
  472. package/esm2022/domain/f-zoom/set-zoom/set-zoom-request.mjs +1 -1
  473. package/esm2022/domain/f-zoom/set-zoom/set-zoom.mjs +1 -1
  474. package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups-request.mjs +1 -1
  475. package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.mjs +1 -1
  476. package/esm2022/domain/get-deep-children-nodes-and-groups/index.mjs +1 -1
  477. package/esm2022/domain/get-normalized-connector-rect/get-normalized-connector-rect-request.mjs +1 -1
  478. package/esm2022/domain/get-normalized-connector-rect/get-normalized-connector-rect.mjs +1 -1
  479. package/esm2022/domain/get-normalized-connector-rect/index.mjs +1 -1
  480. package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect-request.mjs +1 -1
  481. package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect.mjs +1 -1
  482. package/esm2022/domain/get-normalized-element-rect/index.mjs +1 -1
  483. package/esm2022/domain/get-normalized-point/get-normalized-point-request.mjs +1 -1
  484. package/esm2022/domain/get-normalized-point/get-normalized-point.mjs +1 -1
  485. package/esm2022/domain/get-normalized-point/index.mjs +1 -1
  486. package/esm2022/domain/index.mjs +1 -1
  487. package/esm2022/domain/is-mobile.mjs +1 -1
  488. package/esm2022/domain/log-deprecated.mjs +5 -2
  489. package/esm2022/domain/log-execution-time.mjs +11 -5
  490. package/esm2022/domain/minimap/f-minimap-state.mjs +1 -1
  491. package/esm2022/domain/minimap/index.mjs +1 -1
  492. package/esm2022/domain/minimap/minimap-calculate-view-rect/index.mjs +1 -1
  493. package/esm2022/domain/minimap/minimap-calculate-view-rect/minimap-calculate-view-rect-request.mjs +1 -1
  494. package/esm2022/domain/minimap/minimap-calculate-view-rect/minimap-calculate-view-rect.mjs +1 -1
  495. package/esm2022/domain/minimap/minimap-calculate-viewport/i-minimap-viewport.mjs +1 -1
  496. package/esm2022/domain/minimap/minimap-calculate-viewport/index.mjs +1 -1
  497. package/esm2022/domain/minimap/minimap-calculate-viewport/minimap-calculate-viewport-request.mjs +1 -1
  498. package/esm2022/domain/minimap/minimap-calculate-viewport/minimap-calculate-viewport.mjs +1 -1
  499. package/esm2022/domain/minimap/minimap-draw-nodes/index.mjs +1 -1
  500. package/esm2022/domain/minimap/minimap-draw-nodes/minimap-draw-nodes-request.mjs +1 -1
  501. package/esm2022/domain/minimap/minimap-draw-nodes/minimap-draw-nodes.mjs +1 -1
  502. package/esm2022/domain/minimap/providers.mjs +1 -1
  503. package/esm2022/domain/providers.mjs +1 -1
  504. package/esm2022/domain/sort-item-layers/index.mjs +1 -1
  505. package/esm2022/domain/sort-item-layers/sort-item-layers-request.mjs +1 -1
  506. package/esm2022/domain/sort-item-layers/sort-item-layers.mjs +1 -1
  507. package/esm2022/domain/sort-item-layers/sort-items-by-parent/index.mjs +1 -1
  508. package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent-request.mjs +1 -1
  509. package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.mjs +1 -1
  510. package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/index.mjs +1 -1
  511. package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers-request.mjs +1 -1
  512. package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.mjs +1 -1
  513. package/esm2022/domain/transition-end.mjs +1 -1
  514. package/esm2022/domain/update-item-and-children-layers/index.mjs +1 -1
  515. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.mjs +1 -1
  516. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element-request.mjs +1 -1
  517. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.mjs +1 -1
  518. package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers-request.mjs +1 -1
  519. package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.mjs +1 -1
  520. package/esm2022/drag-toolkit/drag-and-drop-base.mjs +1 -1
  521. package/esm2022/drag-toolkit/event.extensions.mjs +1 -1
  522. package/esm2022/drag-toolkit/index.mjs +1 -1
  523. package/esm2022/drag-toolkit/pointer-events/i-mouse-event.mjs +1 -1
  524. package/esm2022/drag-toolkit/pointer-events/i-pointer-event.mjs +1 -1
  525. package/esm2022/drag-toolkit/pointer-events/i-pointer-up-event.mjs +1 -1
  526. package/esm2022/drag-toolkit/pointer-events/i-touch-down-event.mjs +1 -1
  527. package/esm2022/drag-toolkit/pointer-events/i-touch-move-event.mjs +1 -1
  528. package/esm2022/drag-toolkit/pointer-events/index.mjs +1 -1
  529. package/esm2022/f-auto-pan/f-auto-pan-base.mjs +1 -1
  530. package/esm2022/f-auto-pan/f-auto-pan.mjs +1 -1
  531. package/esm2022/f-auto-pan/index.mjs +1 -1
  532. package/esm2022/f-auto-pan/providers.mjs +1 -1
  533. package/esm2022/f-backgroud/domain/i-f-background-pattern.mjs +1 -1
  534. package/esm2022/f-backgroud/domain/index.mjs +1 -1
  535. package/esm2022/f-backgroud/f-background-base.mjs +1 -1
  536. package/esm2022/f-backgroud/f-background.component.mjs +1 -1
  537. package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +1 -1
  538. package/esm2022/f-backgroud/f-circle-pattern/index.mjs +1 -1
  539. package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +1 -1
  540. package/esm2022/f-backgroud/f-rect-pattern/index.mjs +1 -1
  541. package/esm2022/f-backgroud/index.mjs +1 -1
  542. package/esm2022/f-backgroud/providers.mjs +1 -1
  543. package/esm2022/f-cache/config/f-cache-options.mjs +1 -1
  544. package/esm2022/f-cache/config/index.mjs +1 -1
  545. package/esm2022/f-cache/features/f-cache-connectors/index.mjs +1 -1
  546. package/esm2022/f-cache/features/f-cache-connectors/register-connector/index.mjs +1 -1
  547. package/esm2022/f-cache/features/f-cache-connectors/register-connector/register-connector-request.mjs +1 -1
  548. package/esm2022/f-cache/features/f-cache-connectors/register-connector/register-connector.mjs +1 -1
  549. package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/index.mjs +1 -1
  550. package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/unregister-connector-request.mjs +1 -1
  551. package/esm2022/f-cache/features/f-cache-connectors/unregister-connector/unregister-connector.mjs +1 -1
  552. package/esm2022/f-cache/features/f-cache-nodes/index.mjs +1 -1
  553. package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/index.mjs +1 -1
  554. package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/invalidate-node-request.mjs +1 -1
  555. package/esm2022/f-cache/features/f-cache-nodes/invalidate-node/invalidate-node.mjs +1 -1
  556. package/esm2022/f-cache/features/f-cache-nodes/register-node/index.mjs +1 -1
  557. package/esm2022/f-cache/features/f-cache-nodes/register-node/register-node-request.mjs +1 -1
  558. package/esm2022/f-cache/features/f-cache-nodes/register-node/register-node.mjs +1 -1
  559. package/esm2022/f-cache/features/f-cache-nodes/unregister-node/index.mjs +1 -1
  560. package/esm2022/f-cache/features/f-cache-nodes/unregister-node/unregister-node-request.mjs +1 -1
  561. package/esm2022/f-cache/features/f-cache-nodes/unregister-node/unregister-node.mjs +1 -1
  562. package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/get-cached-rect-request.mjs +1 -1
  563. package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/get-cached-rect.mjs +1 -1
  564. package/esm2022/f-cache/features/f-cache-rects/get-cached-rect/index.mjs +1 -1
  565. package/esm2022/f-cache/features/f-cache-rects/index.mjs +1 -1
  566. package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/index.mjs +1 -1
  567. package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/set-connector-rect-request.mjs +1 -1
  568. package/esm2022/f-cache/features/f-cache-rects/set-connector-rect/set-connector-rect.mjs +1 -1
  569. package/esm2022/f-cache/features/f-cache-rects/set-node-rect/index.mjs +1 -1
  570. package/esm2022/f-cache/features/f-cache-rects/set-node-rect/set-node-rect-request.mjs +1 -1
  571. package/esm2022/f-cache/features/f-cache-rects/set-node-rect/set-node-rect.mjs +1 -1
  572. package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/index.mjs +1 -1
  573. package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/update-rect-by-element-request.mjs +1 -1
  574. package/esm2022/f-cache/features/f-cache-rects/update-rect-by-element/update-rect-by-element.mjs +1 -1
  575. package/esm2022/f-cache/features/index.mjs +1 -1
  576. package/esm2022/f-cache/index.mjs +1 -1
  577. package/esm2022/f-cache/model/f-cache-connector-key.mjs +1 -1
  578. package/esm2022/f-cache/model/f-cache-connector.mjs +1 -1
  579. package/esm2022/f-cache/model/f-cache-node.mjs +1 -1
  580. package/esm2022/f-cache/model/f-cache.mjs +1 -1
  581. package/esm2022/f-cache/model/i-f-cache-node-ref.mjs +1 -1
  582. package/esm2022/f-cache/model/index.mjs +1 -1
  583. package/esm2022/f-cache/providers.mjs +1 -1
  584. package/esm2022/f-canvas/domain/f-canvas-change-event.mjs +1 -1
  585. package/esm2022/f-canvas/domain/index.mjs +1 -1
  586. package/esm2022/f-canvas/f-canvas-base.mjs +1 -1
  587. package/esm2022/f-canvas/f-canvas.component.mjs +4 -12
  588. package/esm2022/f-canvas/index.mjs +1 -1
  589. package/esm2022/f-canvas/providers.mjs +1 -1
  590. package/esm2022/f-connection/f-connection/f-connection.component.mjs +3 -3
  591. package/esm2022/f-connection/f-connection/index.mjs +1 -1
  592. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +3 -3
  593. package/esm2022/f-connection/f-connection-for-create/index.mjs +1 -1
  594. package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +3 -3
  595. package/esm2022/f-connection/f-snap-connection/index.mjs +1 -1
  596. package/esm2022/f-connection/index.mjs +1 -1
  597. package/esm2022/f-connection/providers.mjs +4 -2
  598. package/esm2022/f-connection-v2/components/connection-content/f-connection-content.mjs +1 -1
  599. package/esm2022/f-connection-v2/components/connection-content/index.mjs +1 -1
  600. package/esm2022/f-connection-v2/components/connection-content/models/f-connection-content-base.mjs +1 -1
  601. package/esm2022/f-connection-v2/components/connection-content/models/index.mjs +1 -1
  602. package/esm2022/f-connection-v2/components/connection-content/utils/i-polyline-content.mjs +1 -1
  603. package/esm2022/f-connection-v2/components/connection-content/utils/index.mjs +1 -1
  604. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-align.mjs +1 -1
  605. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-layout-engine.mjs +1 -1
  606. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-content-place.mjs +1 -1
  607. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/i-sampler-result.mjs +1 -1
  608. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/i-tangent.mjs +1 -1
  609. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/index.mjs +1 -1
  610. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/polyline-sampler.mjs +1 -1
  611. package/esm2022/f-connection-v2/components/connection-content/utils/polyline-sampler/polyline.mjs +1 -1
  612. package/esm2022/f-connection-v2/components/connection-drag-handles/f-connection-drag-handle-end.mjs +1 -1
  613. package/esm2022/f-connection-v2/components/connection-drag-handles/f-connection-drag-handle-start.mjs +1 -1
  614. package/esm2022/f-connection-v2/components/connection-drag-handles/index.mjs +1 -1
  615. package/esm2022/f-connection-v2/components/connection-drag-handles/models/f-connection-drag-handle-base.mjs +1 -1
  616. package/esm2022/f-connection-v2/components/connection-drag-handles/models/index.mjs +1 -1
  617. package/esm2022/f-connection-v2/components/connection-gradient/components/index.mjs +1 -1
  618. package/esm2022/f-connection-v2/components/connection-gradient/components/render/f-connection-gradient-renderer.mjs +1 -1
  619. package/esm2022/f-connection-v2/components/connection-gradient/components/render/index.mjs +1 -1
  620. package/esm2022/f-connection-v2/components/connection-gradient/components/render/models/f-connection-gradient-renderer-base.mjs +1 -1
  621. package/esm2022/f-connection-v2/components/connection-gradient/components/render/models/index.mjs +1 -1
  622. package/esm2022/f-connection-v2/components/connection-gradient/f-connection-gradient.mjs +1 -1
  623. package/esm2022/f-connection-v2/components/connection-gradient/index.mjs +1 -1
  624. package/esm2022/f-connection-v2/components/connection-gradient/models/f-connection-gradient-base.mjs +1 -1
  625. package/esm2022/f-connection-v2/components/connection-gradient/models/index.mjs +1 -1
  626. package/esm2022/f-connection-v2/components/connection-marker/enums/e-f-marker-type.mjs +3 -1
  627. package/esm2022/f-connection-v2/components/connection-marker/enums/index.mjs +1 -1
  628. package/esm2022/f-connection-v2/components/connection-marker/f-connection-marker.mjs +6 -3
  629. package/esm2022/f-connection-v2/components/connection-marker/index.mjs +3 -1
  630. package/esm2022/f-connection-v2/components/connection-marker/models/f-connection-marker-base.mjs +1 -1
  631. package/esm2022/f-connection-v2/components/connection-marker/models/index.mjs +1 -1
  632. package/esm2022/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-arrow.mjs +48 -0
  633. package/esm2022/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-circle.mjs +48 -0
  634. package/esm2022/f-connection-v2/components/connection-marker/shape-markers/index.mjs +3 -0
  635. package/esm2022/f-connection-v2/components/connection-marker/utils/coerce-marker-type.mjs +40 -0
  636. package/esm2022/f-connection-v2/components/connection-marker/utils/index.mjs +2 -0
  637. package/esm2022/f-connection-v2/components/connection-path/f-connection-path.mjs +1 -1
  638. package/esm2022/f-connection-v2/components/connection-path/index.mjs +1 -1
  639. package/esm2022/f-connection-v2/components/connection-path/models/f-connection-path-base.mjs +1 -1
  640. package/esm2022/f-connection-v2/components/connection-path/models/index.mjs +1 -1
  641. package/esm2022/f-connection-v2/components/connection-selection/f-connection-selection.mjs +1 -1
  642. package/esm2022/f-connection-v2/components/connection-selection/index.mjs +1 -1
  643. package/esm2022/f-connection-v2/components/connection-selection/models/f-connection-selection-base.mjs +1 -1
  644. package/esm2022/f-connection-v2/components/connection-selection/models/index.mjs +1 -1
  645. package/esm2022/f-connection-v2/components/connection-waypoints/f-connection-waypoints.mjs +1 -1
  646. package/esm2022/f-connection-v2/components/connection-waypoints/index.mjs +1 -1
  647. package/esm2022/f-connection-v2/components/connection-waypoints/models/f-connection-waypoints-base.mjs +1 -1
  648. package/esm2022/f-connection-v2/components/connection-waypoints/models/index.mjs +1 -1
  649. package/esm2022/f-connection-v2/components/connection-waypoints/utils/find-existing-waypoint.mjs +1 -1
  650. package/esm2022/f-connection-v2/components/connection-waypoints/utils/find-waypoint-candidate.mjs +1 -1
  651. package/esm2022/f-connection-v2/components/connection-waypoints/utils/index.mjs +1 -1
  652. package/esm2022/f-connection-v2/components/connection-waypoints/utils/is-pointer-inside-point.mjs +1 -1
  653. package/esm2022/f-connection-v2/components/connection-waypoints/utils/pick-waypoint.mjs +1 -1
  654. package/esm2022/f-connection-v2/components/f-connection-base.mjs +9 -4
  655. package/esm2022/f-connection-v2/components/index.mjs +1 -1
  656. package/esm2022/f-connection-v2/enums/e-f-connectable-side.mjs +1 -1
  657. package/esm2022/f-connection-v2/enums/e-f-connection-type.mjs +1 -1
  658. package/esm2022/f-connection-v2/enums/index.mjs +1 -1
  659. package/esm2022/f-connection-v2/index.mjs +1 -1
  660. package/esm2022/f-connection-v2/models/f-connection-components-parent.mjs +1 -1
  661. package/esm2022/f-connection-v2/models/index.mjs +1 -1
  662. package/esm2022/f-connection-v2/utils/connection-behaviour/connection-behaviour-builder-request.mjs +1 -1
  663. package/esm2022/f-connection-v2/utils/connection-behaviour/connection-behaviour-builder.mjs +1 -1
  664. package/esm2022/f-connection-v2/utils/connection-behaviour/enums/e-f-connection-behavior.mjs +1 -1
  665. package/esm2022/f-connection-v2/utils/connection-behaviour/enums/e-f-connection-connectable-side.mjs +1 -1
  666. package/esm2022/f-connection-v2/utils/connection-behaviour/enums/index.mjs +1 -1
  667. package/esm2022/f-connection-v2/utils/connection-behaviour/index.mjs +1 -1
  668. package/esm2022/f-connection-v2/utils/connection-behaviour/models/i-calculate-behavior-request.mjs +1 -1
  669. package/esm2022/f-connection-v2/utils/connection-behaviour/models/index.mjs +1 -1
  670. package/esm2022/f-connection-v2/utils/connection-behaviour/utils/fixed-center-behavior.mjs +1 -1
  671. package/esm2022/f-connection-v2/utils/connection-behaviour/utils/fixed-outbound-behavior.mjs +1 -1
  672. package/esm2022/f-connection-v2/utils/connection-behaviour/utils/floating-behavior.mjs +1 -1
  673. package/esm2022/f-connection-v2/utils/connection-behaviour/utils/get-rotated-rounded-rect-intersection.mjs +1 -1
  674. package/esm2022/f-connection-v2/utils/connection-behaviour/utils/index.mjs +1 -1
  675. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/adaptive-curve/calculate-adaptive-curve-data.mjs +1 -1
  676. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/adaptive-curve/index.mjs +1 -1
  677. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/bezier-curve/calculate-bezier-curve-data.mjs +1 -1
  678. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/bezier-curve/index.mjs +1 -1
  679. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/index.mjs +1 -1
  680. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/build-corner-mid-points-and-apply-offsets.mjs +1 -1
  681. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/calculate-segment-line-data.mjs +1 -1
  682. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/create-segment-line-path.mjs +1 -1
  683. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/segment-line/index.mjs +1 -1
  684. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/straight-line/calculate-straight-line-data.mjs +1 -1
  685. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/straight-line/index.mjs +1 -1
  686. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/build-connection-anchors.mjs +1 -1
  687. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-center-between-points.mjs +1 -1
  688. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-curve-candidates.mjs +1 -1
  689. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/calculate-polyline-candidates.mjs +1 -1
  690. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/index.mjs +1 -1
  691. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/merge-point-chains.mjs +1 -1
  692. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/multi-cubic.mjs +1 -1
  693. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/normalize-polyline.mjs +1 -1
  694. package/esm2022/f-connection-v2/utils/connection-line-builder/builders/utils/sample-cubic-bezier-uniform.mjs +1 -1
  695. package/esm2022/f-connection-v2/utils/connection-line-builder/connection-line-builder-request.mjs +1 -1
  696. package/esm2022/f-connection-v2/utils/connection-line-builder/connection-line-builder.mjs +1 -1
  697. package/esm2022/f-connection-v2/utils/connection-line-builder/index.mjs +1 -1
  698. package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder-request.mjs +1 -1
  699. package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder-response.mjs +1 -1
  700. package/esm2022/f-connection-v2/utils/connection-line-builder/models/i-f-connection-builder.mjs +1 -1
  701. package/esm2022/f-connection-v2/utils/connection-line-builder/models/index.mjs +1 -1
  702. package/esm2022/f-connection-v2/utils/connection-line-builder/providers/f-connection-builders.mjs +1 -1
  703. package/esm2022/f-connection-v2/utils/connection-line-builder/providers/index.mjs +1 -1
  704. package/esm2022/f-connection-v2/utils/create-connection-dom-identifier.mjs +1 -1
  705. package/esm2022/f-connection-v2/utils/create-connection-selection-dom-identifier.mjs +1 -1
  706. package/esm2022/f-connection-v2/utils/create-gradient-dom-identifier.mjs +1 -1
  707. package/esm2022/f-connection-v2/utils/create-gradient-dom-url.mjs +1 -1
  708. package/esm2022/f-connection-v2/utils/index.mjs +1 -1
  709. package/esm2022/f-connectors/f-connector-base.mjs +1 -1
  710. package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +1 -1
  711. package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +1 -1
  712. package/esm2022/f-connectors/f-node-input/index.mjs +1 -1
  713. package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +1 -1
  714. package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +1 -1
  715. package/esm2022/f-connectors/f-node-outlet/index.mjs +1 -1
  716. package/esm2022/f-connectors/f-node-outlet/is-node-outlet.mjs +1 -1
  717. package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +1 -1
  718. package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +1 -1
  719. package/esm2022/f-connectors/f-node-output/index.mjs +1 -1
  720. package/esm2022/f-connectors/f-node-output/is-node-output.mjs +1 -1
  721. package/esm2022/f-connectors/f-source-connector-base.mjs +1 -1
  722. package/esm2022/f-connectors/index.mjs +1 -1
  723. package/esm2022/f-connectors/providers.mjs +1 -1
  724. package/esm2022/f-draggable/auto-pan/auto-pan.utils.mjs +1 -1
  725. package/esm2022/f-draggable/auto-pan/index.mjs +1 -1
  726. package/esm2022/f-draggable/auto-pan/providers.mjs +1 -1
  727. package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/index.mjs +1 -1
  728. package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/run-auto-pan-frame-request.mjs +1 -1
  729. package/esm2022/f-draggable/auto-pan/run-auto-pan-frame/run-auto-pan-frame.mjs +1 -1
  730. package/esm2022/f-draggable/auto-pan/stop-auto-pan/index.mjs +1 -1
  731. package/esm2022/f-draggable/auto-pan/stop-auto-pan/stop-auto-pan-request.mjs +1 -1
  732. package/esm2022/f-draggable/auto-pan/stop-auto-pan/stop-auto-pan.mjs +1 -1
  733. package/esm2022/f-draggable/auto-pan/stored-pointer-event.mjs +1 -1
  734. package/esm2022/f-draggable/auto-pan/sync-auto-pan/index.mjs +1 -1
  735. package/esm2022/f-draggable/auto-pan/sync-auto-pan/sync-auto-pan-request.mjs +1 -1
  736. package/esm2022/f-draggable/auto-pan/sync-auto-pan/sync-auto-pan.mjs +1 -1
  737. package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/create-connection-finalize-request.mjs +1 -1
  738. package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/create-connection-finalize.mjs +1 -1
  739. package/esm2022/f-draggable/connection/create-connection/create-connection-finalize/index.mjs +1 -1
  740. package/esm2022/f-draggable/connection/create-connection/create-connection-handler/create-connection-handler.mjs +1 -1
  741. package/esm2022/f-draggable/connection/create-connection/create-connection-handler/index.mjs +1 -1
  742. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-connection-preparation-request.mjs +1 -1
  743. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-connection-preparation.mjs +1 -1
  744. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/create-connection-create-drag-handler-request.mjs +1 -1
  745. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/create-connection-create-drag-handler.mjs +1 -1
  746. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/create-drag-handler/index.mjs +1 -1
  747. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/create-connection-from-outlet-preparation-request.mjs +1 -1
  748. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/create-connection-from-outlet-preparation.mjs +1 -1
  749. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-outlet-preparation/index.mjs +1 -1
  750. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/create-connection-from-output-preparation-request.mjs +1 -1
  751. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/create-connection-from-output-preparation.mjs +1 -1
  752. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/from-output-preparation/index.mjs +1 -1
  753. package/esm2022/f-draggable/connection/create-connection/create-connection-preparation/index.mjs +1 -1
  754. package/esm2022/f-draggable/connection/create-connection/f-create-connection-event.mjs +1 -1
  755. package/esm2022/f-draggable/connection/create-connection/i-create-connection-drag-result.mjs +1 -1
  756. package/esm2022/f-draggable/connection/create-connection/i-create-connection-event-data.mjs +1 -1
  757. package/esm2022/f-draggable/connection/create-connection/index.mjs +1 -1
  758. package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/index.mjs +1 -1
  759. package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/resolve-connectable-output-for-outlet-request.mjs +1 -1
  760. package/esm2022/f-draggable/connection/create-connection/resolve-connectable-output-for-outlet/resolve-connectable-output-for-outlet.mjs +1 -1
  761. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/drag-connection-waypoint-finalize-request.mjs +1 -1
  762. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/drag-connection-waypoint-finalize.mjs +1 -1
  763. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-finalize/index.mjs +1 -1
  764. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-handler/drag-connection-waypoint-handler.mjs +1 -1
  765. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-handler/index.mjs +1 -1
  766. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/drag-connection-waypoint-preparation-request.mjs +1 -1
  767. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/drag-connection-waypoint-preparation.mjs +1 -1
  768. package/esm2022/f-draggable/connection/drag-connection-waypoint/drag-connection-waypoint-preparation/index.mjs +1 -1
  769. package/esm2022/f-draggable/connection/drag-connection-waypoint/f-connection-waypoints-changed-event.mjs +1 -1
  770. package/esm2022/f-draggable/connection/drag-connection-waypoint/index.mjs +1 -1
  771. package/esm2022/f-draggable/connection/index.mjs +1 -1
  772. package/esm2022/f-draggable/connection/providers.mjs +1 -1
  773. package/esm2022/f-draggable/connection/reassign-connection/f-reassign-connection-event.mjs +1 -1
  774. package/esm2022/f-draggable/connection/reassign-connection/i-reassign-connection-drag-result.mjs +1 -1
  775. package/esm2022/f-draggable/connection/reassign-connection/i-reassign-connection-event-data.mjs +1 -1
  776. package/esm2022/f-draggable/connection/reassign-connection/index.mjs +1 -1
  777. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/index.mjs +1 -1
  778. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/reassign-connection-finalize-request.mjs +1 -1
  779. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.mjs +1 -1
  780. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/i-reassign-handler.mjs +1 -1
  781. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/index.mjs +1 -1
  782. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-handler.mjs +1 -1
  783. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-source-handler.mjs +1 -1
  784. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-handler/reassign-connection-target-handler.mjs +1 -1
  785. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/index.mjs +1 -1
  786. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/is-pointer-inside-start-or-end-drag-handles.mjs +1 -1
  787. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/reassign-connection-preparation-request.mjs +1 -1
  788. package/esm2022/f-draggable/connection/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.mjs +1 -1
  789. package/esm2022/f-draggable/domain/detect-connections-under-drag-node/detect-connections-under-drag-node-request.mjs +1 -1
  790. package/esm2022/f-draggable/domain/detect-connections-under-drag-node/detect-connections-under-drag-node.mjs +1 -1
  791. package/esm2022/f-draggable/domain/detect-connections-under-drag-node/f-node-intersected-with-connections-event.mjs +1 -1
  792. package/esm2022/f-draggable/domain/detect-connections-under-drag-node/index.mjs +1 -1
  793. package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/emit-end-drag-sequence-event-request.mjs +1 -1
  794. package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/emit-end-drag-sequence-event.mjs +1 -1
  795. package/esm2022/f-draggable/domain/emit-end-drag-sequence-event/index.mjs +1 -1
  796. package/esm2022/f-draggable/domain/emit-selection-change-event/emit-selection-change-event-request.mjs +1 -1
  797. package/esm2022/f-draggable/domain/emit-selection-change-event/emit-selection-change-event.mjs +1 -1
  798. package/esm2022/f-draggable/domain/emit-selection-change-event/index.mjs +1 -1
  799. package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/emit-start-drag-sequence-event-request.mjs +1 -1
  800. package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/emit-start-drag-sequence-event.mjs +1 -1
  801. package/esm2022/f-draggable/domain/emit-start-drag-sequence-event/index.mjs +1 -1
  802. package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect-request.mjs +1 -1
  803. package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.mjs +1 -1
  804. package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/index.mjs +1 -1
  805. package/esm2022/f-draggable/domain/i-node-with-rect.mjs +1 -1
  806. package/esm2022/f-draggable/domain/index.mjs +1 -1
  807. package/esm2022/f-draggable/domain/is-array-has-parent-node/index.mjs +1 -1
  808. package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node-request.mjs +1 -1
  809. package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.mjs +1 -1
  810. package/esm2022/f-draggable/domain/providers.mjs +1 -1
  811. package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/drag-canvas-finalize-request.mjs +1 -1
  812. package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/drag-canvas-finalize.mjs +1 -1
  813. package/esm2022/f-draggable/drag-canvas/drag-canvas-finalize/index.mjs +1 -1
  814. package/esm2022/f-draggable/drag-canvas/drag-canvas-handler/drag-canvas-handler.mjs +1 -1
  815. package/esm2022/f-draggable/drag-canvas/drag-canvas-handler/index.mjs +1 -1
  816. package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/drag-canvas-preparation-request.mjs +1 -1
  817. package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/drag-canvas-preparation.mjs +1 -1
  818. package/esm2022/f-draggable/drag-canvas/drag-canvas-preparation/index.mjs +1 -1
  819. package/esm2022/f-draggable/drag-canvas/index.mjs +1 -1
  820. package/esm2022/f-draggable/drag-canvas/providers.mjs +1 -1
  821. package/esm2022/f-draggable/drag-external-item/constraints/external-rect-constraint.mjs +1 -1
  822. package/esm2022/f-draggable/drag-external-item/constraints/index.mjs +1 -1
  823. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/drag-external-item-create-placeholder-request.mjs +1 -1
  824. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/drag-external-item-create-placeholder.mjs +1 -1
  825. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-placeholder/index.mjs +1 -1
  826. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/drag-external-item-create-preview-request.mjs +1 -1
  827. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/drag-external-item-create-preview.mjs +1 -1
  828. package/esm2022/f-draggable/drag-external-item/drag-external-item-create-preview/index.mjs +1 -1
  829. package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/drag-external-item-finalize-request.mjs +1 -1
  830. package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/drag-external-item-finalize.mjs +1 -1
  831. package/esm2022/f-draggable/drag-external-item/drag-external-item-finalize/index.mjs +1 -1
  832. package/esm2022/f-draggable/drag-external-item/drag-external-item-handler/drag-external-item-handler.mjs +1 -1
  833. package/esm2022/f-draggable/drag-external-item/drag-external-item-handler/index.mjs +1 -1
  834. package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/drag-external-item-preparation-request.mjs +1 -1
  835. package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/drag-external-item-preparation.mjs +1 -1
  836. package/esm2022/f-draggable/drag-external-item/drag-external-item-preparation/index.mjs +1 -1
  837. package/esm2022/f-draggable/drag-external-item/f-create-node-event.mjs +1 -1
  838. package/esm2022/f-draggable/drag-external-item/f-drag-external-item-start-event-data.mjs +1 -1
  839. package/esm2022/f-draggable/drag-external-item/i-drag-external-item-drag-result.mjs +1 -1
  840. package/esm2022/f-draggable/drag-external-item/index.mjs +1 -1
  841. package/esm2022/f-draggable/drag-external-item/is-drag-external-item-handler.mjs +1 -1
  842. package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/index.mjs +1 -1
  843. package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/prevent-default-is-external-item-request.mjs +1 -1
  844. package/esm2022/f-draggable/drag-external-item/prevent-default-is-external-item/prevent-default-is-external-item.mjs +1 -1
  845. package/esm2022/f-draggable/drag-external-item/providers.mjs +1 -1
  846. package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point-request.mjs +1 -1
  847. package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.mjs +1 -1
  848. package/esm2022/f-draggable/drag-minimap/calculate-flow-point-from-minimap-point/index.mjs +1 -1
  849. package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/drag-minimap-finalize-request.mjs +1 -1
  850. package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/drag-minimap-finalize.mjs +1 -1
  851. package/esm2022/f-draggable/drag-minimap/drag-minimap-finalize/index.mjs +1 -1
  852. package/esm2022/f-draggable/drag-minimap/drag-minimap-handler/drag-minimap-handler.mjs +1 -1
  853. package/esm2022/f-draggable/drag-minimap/drag-minimap-handler/index.mjs +1 -1
  854. package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/drag-minimap-preparation-request.mjs +1 -1
  855. package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/drag-minimap-preparation.mjs +1 -1
  856. package/esm2022/f-draggable/drag-minimap/drag-minimap-preparation/index.mjs +1 -1
  857. package/esm2022/f-draggable/drag-minimap/index.mjs +1 -1
  858. package/esm2022/f-draggable/drag-minimap/is-drag-minimap-handler.mjs +1 -1
  859. package/esm2022/f-draggable/drag-minimap/providers.mjs +1 -1
  860. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-drag-node-handler-from-selection-request.mjs +1 -1
  861. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-drag-node-handler-from-selection.mjs +1 -1
  862. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/attach-soft-parent-connection-drag-handlers-to-node-request.mjs +1 -1
  863. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/attach-soft-parent-connection-drag-handlers-to-node.mjs +1 -1
  864. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-soft-parent-connection-drag-handlers-to-node/index.mjs +1 -1
  865. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/attach-source-connection-drag-handlers-to-node-request.mjs +1 -1
  866. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/attach-source-connection-drag-handlers-to-node.mjs +1 -1
  867. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-source-connection-drag-handlers-to-node/index.mjs +1 -1
  868. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/attach-target-connection-drag-handlers-to-node-request.mjs +1 -1
  869. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/attach-target-connection-drag-handlers-to-node.mjs +1 -1
  870. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/attach-target-connection-drag-handlers-to-node/index.mjs +1 -1
  871. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/build-drag-node-constraints-request.mjs +1 -1
  872. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/build-drag-node-constraints.mjs +1 -1
  873. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/build-drag-node-constraints/index.mjs +1 -1
  874. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/create-drag-node-handler-request.mjs +1 -1
  875. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/create-drag-node-handler.mjs +1 -1
  876. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-handler/index.mjs +1 -1
  877. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/create-drag-node-hierarchy-request.mjs +1 -1
  878. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/create-drag-node-hierarchy.mjs +1 -1
  879. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/drag-node-hierarchy.mjs +1 -1
  880. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/create-drag-node-hierarchy/index.mjs +1 -1
  881. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/index.mjs +1 -1
  882. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/providers.mjs +1 -1
  883. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/index.mjs +1 -1
  884. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings-request.mjs +1 -1
  885. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings-response.mjs +1 -1
  886. package/esm2022/f-draggable/drag-node/attach-drag-node-handler-from-selection/read-node-bounds-with-paddings/read-node-bounds-with-paddings.mjs +1 -1
  887. package/esm2022/f-draggable/drag-node/drag-node-constraint/delta-clamp.mjs +1 -1
  888. package/esm2022/f-draggable/drag-node/drag-node-constraint/drag-node-delta-constraints.mjs +1 -1
  889. package/esm2022/f-draggable/drag-node/drag-node-constraint/expand-rect-by-overflow.mjs +1 -1
  890. package/esm2022/f-draggable/drag-node/drag-node-constraint/grid-snapper.mjs +1 -1
  891. package/esm2022/f-draggable/drag-node/drag-node-constraint/i-drag-node-delta-constraints-result.mjs +1 -1
  892. package/esm2022/f-draggable/drag-node/drag-node-constraint/i-drag-node-delta-constraints.mjs +1 -1
  893. package/esm2022/f-draggable/drag-node/drag-node-constraint/index.mjs +1 -1
  894. package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-both-sides-handler.mjs +1 -1
  895. package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-handler-base.mjs +1 -1
  896. package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-source-handler.mjs +1 -1
  897. package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/drag-node-connection-target-handler.mjs +1 -1
  898. package/esm2022/f-draggable/drag-node/drag-node-dependent-connection-handlers/index.mjs +1 -1
  899. package/esm2022/f-draggable/drag-node/drag-node-finalize/drag-node-finalize-request.mjs +1 -1
  900. package/esm2022/f-draggable/drag-node/drag-node-finalize/drag-node-finalize.mjs +1 -1
  901. package/esm2022/f-draggable/drag-node/drag-node-finalize/index.mjs +1 -1
  902. package/esm2022/f-draggable/drag-node/drag-node-handler/drag-node-handler.mjs +1 -1
  903. package/esm2022/f-draggable/drag-node/drag-node-handler/drag-node-item-handler.mjs +1 -1
  904. package/esm2022/f-draggable/drag-node/drag-node-handler/i-soft-parent-connection-handlers.mjs +1 -1
  905. package/esm2022/f-draggable/drag-node/drag-node-handler/index.mjs +1 -1
  906. package/esm2022/f-draggable/drag-node/drag-node-preparation/drag-node-preparation-request.mjs +1 -1
  907. package/esm2022/f-draggable/drag-node/drag-node-preparation/drag-node-preparation.mjs +1 -1
  908. package/esm2022/f-draggable/drag-node/drag-node-preparation/index.mjs +1 -1
  909. package/esm2022/f-draggable/drag-node/f-drag-node-start-event-data.mjs +1 -1
  910. package/esm2022/f-draggable/drag-node/f-move-nodes-event.mjs +1 -1
  911. package/esm2022/f-draggable/drag-node/index.mjs +1 -1
  912. package/esm2022/f-draggable/drag-node/is-drag-node-handler.mjs +1 -1
  913. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/calculate-magnetic-guides.mjs +1 -1
  914. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/i-magnetic-axis-guide.mjs +1 -1
  915. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/i-magnetic-guides-result.mjs +1 -1
  916. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/index.mjs +1 -1
  917. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/magnetic-line-element.mjs +1 -1
  918. package/esm2022/f-draggable/drag-node/magnetic-lines/domain/magnetic-line-renderer.mjs +1 -1
  919. package/esm2022/f-draggable/drag-node/magnetic-lines/index.mjs +1 -1
  920. package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-handler/index.mjs +1 -1
  921. package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-handler/magnetic-lines-handler.mjs +1 -1
  922. package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/index.mjs +1 -1
  923. package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/magnetic-lines-preparation-request.mjs +1 -1
  924. package/esm2022/f-draggable/drag-node/magnetic-lines/magnetic-lines-preparation/magnetic-lines-preparation.mjs +1 -1
  925. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/calculate-magnetic-rects.mjs +1 -1
  926. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/i-magnetic-gap-rect.mjs +1 -1
  927. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/i-magnetic-rects-result.mjs +1 -1
  928. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/index.mjs +1 -1
  929. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/magnetic-rect-element.mjs +1 -1
  930. package/esm2022/f-draggable/drag-node/magnetic-rects/domain/magnetic-rects-renderer.mjs +1 -1
  931. package/esm2022/f-draggable/drag-node/magnetic-rects/index.mjs +1 -1
  932. package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-handler/index.mjs +1 -1
  933. package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-handler/magnetic-rects-handler.mjs +1 -1
  934. package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/index.mjs +1 -1
  935. package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/magnetic-rects-preparation-request.mjs +1 -1
  936. package/esm2022/f-draggable/drag-node/magnetic-rects/magnetic-rects-preparation/magnetic-rects-preparation.mjs +1 -1
  937. package/esm2022/f-draggable/drag-node/providers.mjs +1 -1
  938. package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/drop-to-group-finalize-request.mjs +1 -1
  939. package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/drop-to-group-finalize.mjs +1 -1
  940. package/esm2022/f-draggable/drop-to-group/drop-to-group-finalize/index.mjs +1 -1
  941. package/esm2022/f-draggable/drop-to-group/drop-to-group-handler/drop-to-group-handler.mjs +1 -1
  942. package/esm2022/f-draggable/drop-to-group/drop-to-group-handler/index.mjs +1 -1
  943. package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/drop-to-group-preparation-request.mjs +1 -1
  944. package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/drop-to-group-preparation.mjs +1 -1
  945. package/esm2022/f-draggable/drop-to-group/drop-to-group-preparation/index.mjs +1 -1
  946. package/esm2022/f-draggable/drop-to-group/f-drop-to-group-event.mjs +1 -1
  947. package/esm2022/f-draggable/drop-to-group/index.mjs +1 -1
  948. package/esm2022/f-draggable/drop-to-group/providers.mjs +1 -1
  949. package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/index.mjs +1 -1
  950. package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/sort-drop-candidates-by-layer-request.mjs +1 -1
  951. package/esm2022/f-draggable/drop-to-group/sort-drop-candidates-by-layer/sort-drop-candidates-by-layer.mjs +1 -1
  952. package/esm2022/f-draggable/f-drag-blocker.directive.mjs +1 -1
  953. package/esm2022/f-draggable/f-drag-started-event.mjs +1 -1
  954. package/esm2022/f-draggable/f-draggable-base.mjs +1 -1
  955. package/esm2022/f-draggable/f-draggable-data-context.mjs +1 -1
  956. package/esm2022/f-draggable/f-draggable.directive.mjs +1 -1
  957. package/esm2022/f-draggable/f-selection-change-event.mjs +1 -1
  958. package/esm2022/f-draggable/index.mjs +1 -1
  959. package/esm2022/f-draggable/infrastructure/drag-handler-base.mjs +1 -1
  960. package/esm2022/f-draggable/infrastructure/drag-handler-injector.mjs +1 -1
  961. package/esm2022/f-draggable/infrastructure/f-drag-handler-result.mjs +1 -1
  962. package/esm2022/f-draggable/infrastructure/i-drag-session-feature.mjs +1 -1
  963. package/esm2022/f-draggable/infrastructure/index.mjs +1 -1
  964. package/esm2022/f-draggable/is-drag-blocker.mjs +1 -1
  965. package/esm2022/f-draggable/pinch-to-zoom/handler/index.mjs +1 -1
  966. package/esm2022/f-draggable/pinch-to-zoom/handler/pinch-to-zoom-handler.mjs +1 -1
  967. package/esm2022/f-draggable/pinch-to-zoom/index.mjs +1 -1
  968. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/index.mjs +1 -1
  969. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/pinch-to-zoom-finalize-request.mjs +1 -1
  970. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-finalize/pinch-to-zoom-finalize.mjs +1 -1
  971. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/index.mjs +1 -1
  972. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/pinch-to-zoom-preparation-request.mjs +1 -1
  973. package/esm2022/f-draggable/pinch-to-zoom/pinch-to-zoom-preparation/pinch-to-zoom-preparation.mjs +1 -1
  974. package/esm2022/f-draggable/pinch-to-zoom/providers.mjs +1 -1
  975. package/esm2022/f-draggable/providers.mjs +1 -1
  976. package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/apply-child-resize-constraints-request.mjs +1 -1
  977. package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/apply-child-resize-constraints.mjs +1 -1
  978. package/esm2022/f-draggable/resize-node/apply-child-resize-constraints/index.mjs +1 -1
  979. package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/apply-parent-resize-constraints-request.mjs +1 -1
  980. package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/apply-parent-resize-constraints.mjs +1 -1
  981. package/esm2022/f-draggable/resize-node/apply-parent-resize-constraints/index.mjs +1 -1
  982. package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/calculate-changed-rect-from-difference-request.mjs +1 -1
  983. package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/calculate-changed-rect-from-difference.mjs +1 -1
  984. package/esm2022/f-draggable/resize-node/calculate-changed-rect-from-difference/index.mjs +1 -1
  985. package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/calculate-direct-children-union-rect-request.mjs +1 -1
  986. package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/calculate-direct-children-union-rect.mjs +2 -2
  987. package/esm2022/f-draggable/resize-node/calculate-direct-children-union-rect/index.mjs +1 -1
  988. package/esm2022/f-draggable/resize-node/calculate-resize-limits/calculate-resize-limits-request.mjs +1 -1
  989. package/esm2022/f-draggable/resize-node/calculate-resize-limits/calculate-resize-limits.mjs +1 -1
  990. package/esm2022/f-draggable/resize-node/calculate-resize-limits/index.mjs +1 -1
  991. package/esm2022/f-draggable/resize-node/constraint/i-resize-constraint.mjs +1 -1
  992. package/esm2022/f-draggable/resize-node/constraint/i-resize-limit.mjs +1 -1
  993. package/esm2022/f-draggable/resize-node/constraint/i-resize-limits.mjs +1 -1
  994. package/esm2022/f-draggable/resize-node/constraint/i-resize-overflow.mjs +1 -1
  995. package/esm2022/f-draggable/resize-node/constraint/index.mjs +1 -1
  996. package/esm2022/f-draggable/resize-node/constraint/resize-direction.mjs +1 -1
  997. package/esm2022/f-draggable/resize-node/f-resize-node-start-event-data.mjs +1 -1
  998. package/esm2022/f-draggable/resize-node/index.mjs +1 -1
  999. package/esm2022/f-draggable/resize-node/is-resize-node-handler.mjs +1 -1
  1000. package/esm2022/f-draggable/resize-node/providers.mjs +1 -1
  1001. package/esm2022/f-draggable/resize-node/resize-node-finalize/index.mjs +1 -1
  1002. package/esm2022/f-draggable/resize-node/resize-node-finalize/resize-node-finalize-request.mjs +1 -1
  1003. package/esm2022/f-draggable/resize-node/resize-node-finalize/resize-node-finalize.mjs +1 -1
  1004. package/esm2022/f-draggable/resize-node/resize-node-handler/i-resize-node-connection-handlers.mjs +1 -1
  1005. package/esm2022/f-draggable/resize-node/resize-node-handler/index.mjs +1 -1
  1006. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/index.mjs +1 -1
  1007. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-both-sides-handler.mjs +1 -1
  1008. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-handler-base.mjs +1 -1
  1009. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-source-handler.mjs +1 -1
  1010. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-dependent-connection-handlers/resize-node-connection-target-handler.mjs +1 -1
  1011. package/esm2022/f-draggable/resize-node/resize-node-handler/resize-node-handler.mjs +1 -1
  1012. package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/attach-resize-connection-drag-handlers-to-node-request.mjs +1 -1
  1013. package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/attach-resize-connection-drag-handlers-to-node.mjs +1 -1
  1014. package/esm2022/f-draggable/resize-node/resize-preparation/attach-resize-connection-drag-handlers-to-node/index.mjs +1 -1
  1015. package/esm2022/f-draggable/resize-node/resize-preparation/index.mjs +1 -1
  1016. package/esm2022/f-draggable/resize-node/resize-preparation/resize-node-preparation-request.mjs +1 -1
  1017. package/esm2022/f-draggable/resize-node/resize-preparation/resize-node-preparation.mjs +1 -1
  1018. package/esm2022/f-draggable/rotate-node/calculate-difference-after-rotation.mjs +1 -1
  1019. package/esm2022/f-draggable/rotate-node/f-rotate-node-start-event-data.mjs +1 -1
  1020. package/esm2022/f-draggable/rotate-node/index.mjs +1 -1
  1021. package/esm2022/f-draggable/rotate-node/is-rotate-node-handler.mjs +1 -1
  1022. package/esm2022/f-draggable/rotate-node/providers.mjs +1 -1
  1023. package/esm2022/f-draggable/rotate-node/rotate-node-finalize/index.mjs +1 -1
  1024. package/esm2022/f-draggable/rotate-node/rotate-node-finalize/rotate-node-finalize-request.mjs +1 -1
  1025. package/esm2022/f-draggable/rotate-node/rotate-node-finalize/rotate-node-finalize.mjs +1 -1
  1026. package/esm2022/f-draggable/rotate-node/rotate-node-handler/index.mjs +1 -1
  1027. package/esm2022/f-draggable/rotate-node/rotate-node-handler/rotate-node-handler.mjs +1 -1
  1028. package/esm2022/f-draggable/rotate-node/rotate-node-preparation/index.mjs +1 -1
  1029. package/esm2022/f-draggable/rotate-node/rotate-node-preparation/rotate-node-preparation-request.mjs +1 -1
  1030. package/esm2022/f-draggable/rotate-node/rotate-node-preparation/rotate-node-preparation.mjs +1 -1
  1031. package/esm2022/f-draggable/select-by-pointer/index.mjs +1 -1
  1032. package/esm2022/f-draggable/select-by-pointer/providers.mjs +1 -1
  1033. package/esm2022/f-draggable/select-by-pointer/select-by-pointer-request.mjs +1 -1
  1034. package/esm2022/f-draggable/select-by-pointer/select-by-pointer.mjs +1 -1
  1035. package/esm2022/f-draggable/selection-area/index.mjs +1 -1
  1036. package/esm2022/f-draggable/selection-area/providers.mjs +1 -1
  1037. package/esm2022/f-draggable/selection-area/selection-area-finalize/index.mjs +1 -1
  1038. package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize-request.mjs +1 -1
  1039. package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.mjs +1 -1
  1040. package/esm2022/f-draggable/selection-area/selection-area-handler/index.mjs +1 -1
  1041. package/esm2022/f-draggable/selection-area/selection-area-handler/selection-area-handler.mjs +1 -1
  1042. package/esm2022/f-draggable/selection-area/selection-area-preparation/index.mjs +1 -1
  1043. package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation-request.mjs +1 -1
  1044. package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.mjs +1 -1
  1045. package/esm2022/f-external-item/f-external-item-base.mjs +1 -1
  1046. package/esm2022/f-external-item/f-external-item-placeholder.mjs +1 -1
  1047. package/esm2022/f-external-item/f-external-item-preview.mjs +1 -1
  1048. package/esm2022/f-external-item/f-external-item.mjs +1 -1
  1049. package/esm2022/f-external-item/f-external-item.service.mjs +1 -1
  1050. package/esm2022/f-external-item/index.mjs +1 -1
  1051. package/esm2022/f-external-item/is-external-item.mjs +1 -1
  1052. package/esm2022/f-external-item/providers.mjs +1 -1
  1053. package/esm2022/f-flow/f-flow-base.mjs +1 -1
  1054. package/esm2022/f-flow/f-flow.component.mjs +21 -23
  1055. package/esm2022/f-flow/index.mjs +1 -1
  1056. package/esm2022/f-flow/providers.mjs +1 -1
  1057. package/esm2022/f-flow.module.mjs +8 -6
  1058. package/esm2022/f-layout/enums/e-f-layout-direction.mjs +8 -0
  1059. package/esm2022/f-layout/enums/e-f-layout-mode.mjs +6 -0
  1060. package/esm2022/f-layout/enums/index.mjs +3 -0
  1061. package/esm2022/f-layout/f-layout-engine.mjs +53 -0
  1062. package/esm2022/f-layout/flow-integration/f-layout-controller.mjs +226 -0
  1063. package/esm2022/f-layout/flow-integration/index.mjs +3 -0
  1064. package/esm2022/f-layout/flow-integration/normalize-flow-layout-data.mjs +35 -0
  1065. package/esm2022/f-layout/index.mjs +6 -0
  1066. package/esm2022/f-layout/models/i-f-layout-algorithm-options.mjs +2 -0
  1067. package/esm2022/f-layout/models/i-f-layout-calculation-options.mjs +2 -0
  1068. package/esm2022/f-layout/models/i-f-layout-connection.mjs +2 -0
  1069. package/esm2022/f-layout/models/i-f-layout-graph.mjs +2 -0
  1070. package/esm2022/f-layout/models/i-f-layout-node-position.mjs +2 -0
  1071. package/esm2022/f-layout/models/i-f-layout-node.mjs +2 -0
  1072. package/esm2022/f-layout/models/i-f-layout-options.mjs +2 -0
  1073. package/esm2022/f-layout/models/i-f-layout-provider-config.mjs +3 -0
  1074. package/esm2022/f-layout/models/i-f-layout-result.mjs +2 -0
  1075. package/esm2022/f-layout/models/i-f-layout-writeback-payload.mjs +2 -0
  1076. package/esm2022/f-layout/models/index.mjs +12 -0
  1077. package/esm2022/f-layout/models/merge-layout-nodes.mjs +14 -0
  1078. package/esm2022/f-layout/providers.mjs +18 -0
  1079. package/esm2022/f-line-alignment/f-line-alignment.component.mjs +1 -1
  1080. package/esm2022/f-line-alignment/index.mjs +1 -1
  1081. package/esm2022/f-line-alignment/providers.mjs +1 -1
  1082. package/esm2022/f-magnetic-lines/f-magnetic-lines-base.mjs +1 -1
  1083. package/esm2022/f-magnetic-lines/f-magnetic-lines.mjs +1 -1
  1084. package/esm2022/f-magnetic-lines/index.mjs +1 -1
  1085. package/esm2022/f-magnetic-lines/providers.mjs +1 -1
  1086. package/esm2022/f-magnetic-rects/f-magnetic-rects-base.mjs +1 -1
  1087. package/esm2022/f-magnetic-rects/f-magnetic-rects.mjs +1 -1
  1088. package/esm2022/f-magnetic-rects/index.mjs +1 -1
  1089. package/esm2022/f-magnetic-rects/providers.mjs +1 -1
  1090. package/esm2022/f-minimap/f-minimap-base.mjs +1 -1
  1091. package/esm2022/f-minimap/f-minimap-canvas.directive.mjs +1 -1
  1092. package/esm2022/f-minimap/f-minimap-flow.directive.mjs +1 -1
  1093. package/esm2022/f-minimap/f-minimap-view.directive.mjs +1 -1
  1094. package/esm2022/f-minimap/f-minimap.component.mjs +1 -1
  1095. package/esm2022/f-minimap/index.mjs +1 -1
  1096. package/esm2022/f-minimap/providers.mjs +1 -1
  1097. package/esm2022/f-node/f-drag-handle.directive.mjs +1 -1
  1098. package/esm2022/f-node/f-group.directive.mjs +1 -1
  1099. package/esm2022/f-node/f-node-base.mjs +1 -1
  1100. package/esm2022/f-node/f-node.directive.mjs +1 -1
  1101. package/esm2022/f-node/f-resize-handle/e-f-resize-handle-type.mjs +1 -1
  1102. package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +1 -1
  1103. package/esm2022/f-node/f-resize-handle/index.mjs +1 -1
  1104. package/esm2022/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +1 -1
  1105. package/esm2022/f-node/f-rotate-handle/index.mjs +1 -1
  1106. package/esm2022/f-node/f-rotate-handle/is-rotate-handle.mjs +1 -1
  1107. package/esm2022/f-node/index.mjs +1 -1
  1108. package/esm2022/f-node/is-node.mjs +1 -1
  1109. package/esm2022/f-node/providers.mjs +1 -1
  1110. package/esm2022/f-selection-area/f-selection-area-base.mjs +1 -1
  1111. package/esm2022/f-selection-area/f-selection-area.mjs +1 -1
  1112. package/esm2022/f-selection-area/index.mjs +1 -1
  1113. package/esm2022/f-selection-area/providers.mjs +1 -1
  1114. package/esm2022/f-storage/base/f-id-registry-base.mjs +1 -1
  1115. package/esm2022/f-storage/base/f-single-registry-base.mjs +1 -1
  1116. package/esm2022/f-storage/base/index.mjs +1 -1
  1117. package/esm2022/f-storage/f-components-store.mjs +36 -1
  1118. package/esm2022/f-storage/f-connection-marker-registry.mjs +1 -1
  1119. package/esm2022/f-storage/f-connection-registry.mjs +1 -1
  1120. package/esm2022/f-storage/f-connector-registry.mjs +1 -1
  1121. package/esm2022/f-storage/f-node-registry.mjs +1 -1
  1122. package/esm2022/f-storage/features/emit-connections-changes/emit-connections-changes-request.mjs +1 -1
  1123. package/esm2022/f-storage/features/emit-connections-changes/emit-connections-changes.mjs +1 -1
  1124. package/esm2022/f-storage/features/emit-connections-changes/index.mjs +1 -1
  1125. package/esm2022/f-storage/features/index.mjs +1 -1
  1126. package/esm2022/f-storage/features/listen-connections-changes/index.mjs +1 -1
  1127. package/esm2022/f-storage/features/listen-connections-changes/listen-connections-changes-request.mjs +1 -1
  1128. package/esm2022/f-storage/features/listen-connections-changes/listen-connections-changes.mjs +1 -1
  1129. package/esm2022/f-storage/features/listen-nodes-changes/index.mjs +1 -1
  1130. package/esm2022/f-storage/features/listen-nodes-changes/listen-nodes-changes-request.mjs +1 -1
  1131. package/esm2022/f-storage/features/listen-nodes-changes/listen-nodes-changes.mjs +1 -1
  1132. package/esm2022/f-storage/features/listen-transform-changes/index.mjs +1 -1
  1133. package/esm2022/f-storage/features/listen-transform-changes/listen-transform-changes-request.mjs +1 -1
  1134. package/esm2022/f-storage/features/listen-transform-changes/listen-transform-changes.mjs +1 -1
  1135. package/esm2022/f-storage/features/notify-transform-changed/index.mjs +1 -1
  1136. package/esm2022/f-storage/features/notify-transform-changed/notify-transform-changed-request.mjs +1 -1
  1137. package/esm2022/f-storage/features/notify-transform-changed/notify-transform-changed.mjs +1 -1
  1138. package/esm2022/f-storage/features/register-plugin-instance/index.mjs +1 -1
  1139. package/esm2022/f-storage/features/register-plugin-instance/register-plugin-instance-request.mjs +1 -1
  1140. package/esm2022/f-storage/features/register-plugin-instance/register-plugin-instance.mjs +1 -1
  1141. package/esm2022/f-storage/features/remove-plugin-instance/index.mjs +1 -1
  1142. package/esm2022/f-storage/features/remove-plugin-instance/remove-plugin-instance-request.mjs +1 -1
  1143. package/esm2022/f-storage/features/remove-plugin-instance/remove-plugin-instance.mjs +1 -1
  1144. package/esm2022/f-storage/index.mjs +1 -1
  1145. package/esm2022/f-storage/providers.mjs +1 -1
  1146. package/esm2022/f-virtual/f-virtual-for.mjs +1 -1
  1147. package/esm2022/f-virtual/index.mjs +1 -1
  1148. package/esm2022/f-virtual/providers.mjs +1 -1
  1149. package/esm2022/f-zoom/e-f-zoom-direction.mjs +1 -1
  1150. package/esm2022/f-zoom/f-zoom-base.mjs +1 -1
  1151. package/esm2022/f-zoom/f-zoom.directive.mjs +1 -1
  1152. package/esm2022/f-zoom/index.mjs +1 -1
  1153. package/esm2022/f-zoom/providers.mjs +1 -1
  1154. package/esm2022/f-zoom/wheel-zoom.utils.mjs +1 -1
  1155. package/esm2022/foblex-flow.mjs +1 -1
  1156. package/esm2022/i-has-host-element.mjs +1 -1
  1157. package/esm2022/mixins/change-selection/change-selection.mjs +1 -1
  1158. package/esm2022/mixins/change-selection/i-selectable.mjs +1 -1
  1159. package/esm2022/mixins/change-selection/index.mjs +1 -1
  1160. package/esm2022/mixins/change-visibility/change-visibility.mjs +1 -1
  1161. package/esm2022/mixins/change-visibility/i-can-change-visibility.mjs +1 -1
  1162. package/esm2022/mixins/change-visibility/index.mjs +1 -1
  1163. package/esm2022/mixins/constructor.mjs +1 -1
  1164. package/esm2022/mixins/index.mjs +1 -1
  1165. package/esm2022/public-api.mjs +2 -3
  1166. package/esm2022/reactivity/after-next-paint.mjs +1 -1
  1167. package/esm2022/reactivity/debounce-animation-frame.mjs +1 -1
  1168. package/esm2022/reactivity/debounce-microtask.mjs +1 -1
  1169. package/esm2022/reactivity/debounce-time.mjs +1 -1
  1170. package/esm2022/reactivity/f-channel-hub.mjs +1 -1
  1171. package/esm2022/reactivity/f-channel.mjs +1 -1
  1172. package/esm2022/reactivity/f-resize-channel.mjs +1 -1
  1173. package/esm2022/reactivity/index.mjs +1 -1
  1174. package/esm2022/reactivity/notify-on-start.mjs +1 -1
  1175. package/esm2022/reactivity/take-one.mjs +1 -1
  1176. package/esm2022/reactivity/types.mjs +1 -1
  1177. package/esm2022/utils/calculate-pointer-in-flow.mjs +1 -1
  1178. package/esm2022/utils/index.mjs +1 -1
  1179. package/esm2022/utils/infinity-min-max.mjs +1 -1
  1180. package/esm2022/utils/string-attribute.mjs +1 -1
  1181. package/f-connection/f-connection/f-connection.component.d.ts +1 -1
  1182. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +1 -1
  1183. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +1 -1
  1184. package/f-connection/providers.d.ts +2 -2
  1185. package/f-connection-v2/components/connection-marker/enums/e-f-marker-type.d.ts +3 -1
  1186. package/f-connection-v2/components/connection-marker/f-connection-marker.d.ts +4 -1
  1187. package/f-connection-v2/components/connection-marker/index.d.ts +2 -0
  1188. package/f-connection-v2/components/connection-marker/models/f-connection-marker-base.d.ts +4 -2
  1189. package/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-arrow.d.ts +17 -0
  1190. package/f-connection-v2/components/connection-marker/shape-markers/f-connection-marker-circle.d.ts +17 -0
  1191. package/f-connection-v2/components/connection-marker/shape-markers/index.d.ts +2 -0
  1192. package/f-connection-v2/components/connection-marker/utils/coerce-marker-type.d.ts +2 -0
  1193. package/f-connection-v2/components/connection-marker/utils/index.d.ts +1 -0
  1194. package/f-connection-v2/components/f-connection-base.d.ts +3 -1
  1195. package/f-flow/f-flow-base.d.ts +8 -0
  1196. package/f-flow/f-flow.component.d.ts +8 -6
  1197. package/f-flow.module.d.ts +8 -6
  1198. package/f-layout/enums/e-f-layout-direction.d.ts +6 -0
  1199. package/f-layout/enums/e-f-layout-mode.d.ts +4 -0
  1200. package/f-layout/enums/index.d.ts +2 -0
  1201. package/f-layout/f-layout-engine.d.ts +28 -0
  1202. package/f-layout/flow-integration/f-layout-controller.d.ts +30 -0
  1203. package/f-layout/flow-integration/index.d.ts +2 -0
  1204. package/f-layout/flow-integration/normalize-flow-layout-data.d.ts +7 -0
  1205. package/f-layout/index.d.ts +5 -0
  1206. package/f-layout/models/i-f-layout-algorithm-options.d.ts +3 -0
  1207. package/f-layout/models/i-f-layout-calculation-options.d.ts +6 -0
  1208. package/f-layout/models/i-f-layout-connection.d.ts +4 -0
  1209. package/f-layout/models/i-f-layout-graph.d.ts +6 -0
  1210. package/f-layout/models/i-f-layout-node-position.d.ts +5 -0
  1211. package/f-layout/models/i-f-layout-node.d.ts +5 -0
  1212. package/f-layout/models/i-f-layout-options.d.ts +9 -0
  1213. package/f-layout/models/i-f-layout-provider-config.d.ts +10 -0
  1214. package/f-layout/models/i-f-layout-result.d.ts +4 -0
  1215. package/f-layout/models/i-f-layout-writeback-payload.d.ts +7 -0
  1216. package/f-layout/models/index.d.ts +11 -0
  1217. package/f-layout/models/merge-layout-nodes.d.ts +4 -0
  1218. package/f-layout/providers.d.ts +4 -0
  1219. package/f-storage/f-components-store.d.ts +11 -0
  1220. package/fesm2022/foblex-flow.mjs +2419 -1834
  1221. package/fesm2022/foblex-flow.mjs.map +1 -1
  1222. package/package.json +1 -1
  1223. package/public-api.d.ts +1 -2
  1224. package/schematics/ng-add/index.js.map +1 -1
  1225. package/schematics/ng-update/index.js.map +1 -1
  1226. package/schematics/shared/foblex-dependencies.js.map +1 -1
  1227. package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect-request.mjs +0 -10
  1228. package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect.mjs +0 -31
  1229. package/esm2022/f-connection-worker/features/calculate-connection-worker-connector-rect/index.mjs +0 -3
  1230. package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item-request.mjs +0 -10
  1231. package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item.mjs +0 -57
  1232. package/esm2022/f-connection-worker/features/calculate-connection-worker-payload-item/index.mjs +0 -3
  1233. package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker-request.mjs +0 -10
  1234. package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker.mjs +0 -41
  1235. package/esm2022/f-connection-worker/features/calculate-connections-using-connection-worker/index.mjs +0 -3
  1236. package/esm2022/f-connection-worker/features/connection-worker-run/connection-worker-run-request.mjs +0 -8
  1237. package/esm2022/f-connection-worker/features/connection-worker-run/connection-worker-run.mjs +0 -59
  1238. package/esm2022/f-connection-worker/features/connection-worker-run/index.mjs +0 -3
  1239. package/esm2022/f-connection-worker/features/disable-connection-worker/disable-connection-worker-request.mjs +0 -8
  1240. package/esm2022/f-connection-worker/features/disable-connection-worker/disable-connection-worker.mjs +0 -25
  1241. package/esm2022/f-connection-worker/features/disable-connection-worker/index.mjs +0 -3
  1242. package/esm2022/f-connection-worker/features/ensure-connection-worker/ensure-connection-worker-request.mjs +0 -4
  1243. package/esm2022/f-connection-worker/features/ensure-connection-worker/ensure-connection-worker.mjs +0 -68
  1244. package/esm2022/f-connection-worker/features/ensure-connection-worker/index.mjs +0 -3
  1245. package/esm2022/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message-request.mjs +0 -8
  1246. package/esm2022/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message.mjs +0 -34
  1247. package/esm2022/f-connection-worker/features/handle-connection-worker-message/index.mjs +0 -3
  1248. package/esm2022/f-connection-worker/features/index.mjs +0 -13
  1249. package/esm2022/f-connection-worker/features/is-connection-worker-enabled/index.mjs +0 -3
  1250. package/esm2022/f-connection-worker/features/is-connection-worker-enabled/is-connection-worker-enabled-request.mjs +0 -4
  1251. package/esm2022/f-connection-worker/features/is-connection-worker-enabled/is-connection-worker-enabled.mjs +0 -35
  1252. package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/index.mjs +0 -3
  1253. package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/reset-connection-worker-runtime-request.mjs +0 -8
  1254. package/esm2022/f-connection-worker/features/reset-connection-worker-runtime/reset-connection-worker-runtime.mjs +0 -22
  1255. package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/index.mjs +0 -3
  1256. package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors-request.mjs +0 -8
  1257. package/esm2022/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors.mjs +0 -27
  1258. package/esm2022/f-connection-worker/features/resolve-connection-worker-context/index.mjs +0 -3
  1259. package/esm2022/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context-request.mjs +0 -10
  1260. package/esm2022/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context.mjs +0 -36
  1261. package/esm2022/f-connection-worker/features/should-use-connection-worker/index.mjs +0 -3
  1262. package/esm2022/f-connection-worker/features/should-use-connection-worker/should-use-connection-worker-request.mjs +0 -8
  1263. package/esm2022/f-connection-worker/features/should-use-connection-worker/should-use-connection-worker.mjs +0 -22
  1264. package/esm2022/f-connection-worker/index.mjs +0 -4
  1265. package/esm2022/f-connection-worker/model/f-connection-worker.mjs +0 -27
  1266. package/esm2022/f-connection-worker/model/i-f-connection-worker-rect.mjs +0 -2
  1267. package/esm2022/f-connection-worker/model/i-f-connection-worker-request-item.mjs +0 -2
  1268. package/esm2022/f-connection-worker/model/i-f-connection-worker-response.mjs +0 -2
  1269. package/esm2022/f-connection-worker/model/i-f-connection-worker-result-item.mjs +0 -2
  1270. package/esm2022/f-connection-worker/model/index.mjs +0 -7
  1271. package/esm2022/f-connection-worker/model/t-f-connection-worker-pending-request.mjs +0 -2
  1272. package/esm2022/f-connection-worker/providers.mjs +0 -18
  1273. package/esm2022/f-connection-worker/worker/connection-worker-runtime.mjs +0 -247
  1274. package/esm2022/testing/component-harness.mjs +0 -16
  1275. package/esm2022/testing/di-harness.mjs +0 -32
  1276. package/esm2022/testing/factories.mjs +0 -367
  1277. package/esm2022/testing/index.mjs +0 -8
  1278. package/esm2022/testing/internal/index.mjs +0 -2
  1279. package/esm2022/testing/internal/type-helpers.mjs +0 -28
  1280. package/esm2022/testing/jasmine/index.mjs +0 -2
  1281. package/esm2022/testing/jasmine/spy-helpers.mjs +0 -14
  1282. package/esm2022/testing/mediator-harness.mjs +0 -14
  1283. package/esm2022/testing/pure-harness.mjs +0 -25
  1284. package/esm2022/testing/registry-harness.mjs +0 -23
  1285. package/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect-request.d.ts +0 -8
  1286. package/f-connection-worker/features/calculate-connection-worker-connector-rect/calculate-connection-worker-connector-rect.d.ts +0 -12
  1287. package/f-connection-worker/features/calculate-connection-worker-connector-rect/index.d.ts +0 -2
  1288. package/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item-request.d.ts +0 -8
  1289. package/f-connection-worker/features/calculate-connection-worker-payload-item/calculate-connection-worker-payload-item.d.ts +0 -11
  1290. package/f-connection-worker/features/calculate-connection-worker-payload-item/index.d.ts +0 -2
  1291. package/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker-request.d.ts +0 -8
  1292. package/f-connection-worker/features/calculate-connections-using-connection-worker/calculate-connections-using-connection-worker.d.ts +0 -12
  1293. package/f-connection-worker/features/calculate-connections-using-connection-worker/index.d.ts +0 -2
  1294. package/f-connection-worker/features/connection-worker-run/connection-worker-run-request.d.ts +0 -6
  1295. package/f-connection-worker/features/connection-worker-run/connection-worker-run.d.ts +0 -12
  1296. package/f-connection-worker/features/connection-worker-run/index.d.ts +0 -2
  1297. package/f-connection-worker/features/handle-connection-worker-message/handle-connection-worker-message-request.d.ts +0 -6
  1298. package/f-connection-worker/features/index.d.ts +0 -12
  1299. package/f-connection-worker/features/resolve-connection-worker-connectors/index.d.ts +0 -2
  1300. package/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors-request.d.ts +0 -11
  1301. package/f-connection-worker/features/resolve-connection-worker-connectors/resolve-connection-worker-connectors.d.ts +0 -9
  1302. package/f-connection-worker/features/resolve-connection-worker-context/index.d.ts +0 -2
  1303. package/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context-request.d.ts +0 -13
  1304. package/f-connection-worker/features/resolve-connection-worker-context/resolve-connection-worker-context.d.ts +0 -10
  1305. package/f-connection-worker/index.d.ts +0 -3
  1306. package/f-connection-worker/model/f-connection-worker.d.ts +0 -13
  1307. package/f-connection-worker/model/i-f-connection-worker-request-item.d.ts +0 -13
  1308. package/f-connection-worker/model/i-f-connection-worker-response.d.ts +0 -6
  1309. package/f-connection-worker/model/index.d.ts +0 -6
  1310. package/f-connection-worker/model/t-f-connection-worker-pending-request.d.ts +0 -5
  1311. package/f-connection-worker/providers.d.ts +0 -3
  1312. package/testing/component-harness.d.ts +0 -9
  1313. package/testing/di-harness.d.ts +0 -10
  1314. package/testing/factories.d.ts +0 -104
  1315. package/testing/index.d.ts +0 -7
  1316. package/testing/internal/index.d.ts +0 -1
  1317. package/testing/internal/type-helpers.d.ts +0 -12
  1318. package/testing/jasmine/index.d.ts +0 -1
  1319. package/testing/jasmine/spy-helpers.d.ts +0 -11
  1320. package/testing/mediator-harness.d.ts +0 -7
  1321. package/testing/pure-harness.d.ts +0 -12
  1322. package/testing/registry-harness.d.ts +0 -6
  1323. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/disable-connection-worker.d.ts +0 -0
  1324. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/disable-connection-worker/index.d.ts +0 -0
  1325. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/ensure-connection-worker-request.d.ts +0 -0
  1326. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/ensure-connection-worker.d.ts +0 -0
  1327. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/ensure-connection-worker/index.d.ts +0 -0
  1328. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/handle-connection-worker-message/handle-connection-worker-message.d.ts +0 -0
  1329. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/handle-connection-worker-message/index.d.ts +0 -0
  1330. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/index.d.ts +0 -0
  1331. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/is-connection-worker-enabled-request.d.ts +0 -0
  1332. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/is-connection-worker-enabled/is-connection-worker-enabled.d.ts +0 -0
  1333. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/index.d.ts +0 -0
  1334. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/reset-connection-worker-runtime/reset-connection-worker-runtime.d.ts +0 -0
  1335. /package/{f-connection-worker/worker → domain/f-connection/redraw-connections/worker/runtime}/connection-worker-runtime.d.ts +0 -0
  1336. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/index.d.ts +0 -0
  1337. /package/{f-connection-worker/features → domain/f-connection/redraw-connections/worker}/should-use-connection-worker/should-use-connection-worker.d.ts +0 -0
@@ -0,0 +1,8 @@
1
+ export var EFLayoutDirection;
2
+ (function (EFLayoutDirection) {
3
+ EFLayoutDirection["TOP_BOTTOM"] = "TOP_BOTTOM";
4
+ EFLayoutDirection["BOTTOM_TOP"] = "BOTTOM_TOP";
5
+ EFLayoutDirection["LEFT_RIGHT"] = "LEFT_RIGHT";
6
+ EFLayoutDirection["RIGHT_LEFT"] = "RIGHT_LEFT";
7
+ })(EFLayoutDirection || (EFLayoutDirection = {}));
8
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZS1mLWxheW91dC1kaXJlY3Rpb24uanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvZW51bXMvZS1mLWxheW91dC1kaXJlY3Rpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsTUFBTSxDQUFOLElBQVksaUJBS1g7QUFMRCxXQUFZLGlCQUFpQjtJQUMzQiw4Q0FBeUIsQ0FBQTtJQUN6Qiw4Q0FBeUIsQ0FBQTtJQUN6Qiw4Q0FBeUIsQ0FBQTtJQUN6Qiw4Q0FBeUIsQ0FBQTtBQUMzQixDQUFDLEVBTFcsaUJBQWlCLEtBQWpCLGlCQUFpQixRQUs1QiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBlbnVtIEVGTGF5b3V0RGlyZWN0aW9uIHtcbiAgVE9QX0JPVFRPTSA9ICdUT1BfQk9UVE9NJyxcbiAgQk9UVE9NX1RPUCA9ICdCT1RUT01fVE9QJyxcbiAgTEVGVF9SSUdIVCA9ICdMRUZUX1JJR0hUJyxcbiAgUklHSFRfTEVGVCA9ICdSSUdIVF9MRUZUJyxcbn1cbiJdfQ==
@@ -0,0 +1,6 @@
1
+ export var EFLayoutMode;
2
+ (function (EFLayoutMode) {
3
+ EFLayoutMode["MANUAL"] = "manual";
4
+ EFLayoutMode["AUTO"] = "auto";
5
+ })(EFLayoutMode || (EFLayoutMode = {}));
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZS1mLWxheW91dC1tb2RlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L2VudW1zL2UtZi1sYXlvdXQtbW9kZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQU4sSUFBWSxZQUdYO0FBSEQsV0FBWSxZQUFZO0lBQ3RCLGlDQUFpQixDQUFBO0lBQ2pCLDZCQUFhLENBQUE7QUFDZixDQUFDLEVBSFcsWUFBWSxLQUFaLFlBQVksUUFHdkIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgZW51bSBFRkxheW91dE1vZGUge1xuICBNQU5VQUwgPSAnbWFudWFsJyxcbiAgQVVUTyA9ICdhdXRvJyxcbn1cbiJdfQ==
@@ -0,0 +1,3 @@
1
+ export * from './e-f-layout-direction';
2
+ export * from './e-f-layout-mode';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvZW51bXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLG1CQUFtQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lLWYtbGF5b3V0LWRpcmVjdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2UtZi1sYXlvdXQtbW9kZSc7XG4iXX0=
@@ -0,0 +1,53 @@
1
+ import { computed, inject, InjectionToken, signal } from '@angular/core';
2
+ import { EFLayoutMode } from './enums';
3
+ import { FLayoutController } from './flow-integration';
4
+ import { F_LAYOUT_OPTIONS, } from './models';
5
+ export const F_LAYOUT = new InjectionToken('F_LAYOUT');
6
+ export class FLayoutEngine {
7
+ _controller = inject(FLayoutController);
8
+ _config = inject(F_LAYOUT_OPTIONS, { optional: true }) ?? {};
9
+ _interactiveOptions;
10
+ _mode;
11
+ _writeback;
12
+ _defaultOptions;
13
+ interactiveOptions;
14
+ constructor(defaultOptions) {
15
+ this._mode = this._config.mode ?? EFLayoutMode.MANUAL;
16
+ this._writeback = this._config.writeback ?? null;
17
+ this._defaultOptions = this.mergeOptions(defaultOptions, this._config.options);
18
+ this._interactiveOptions = signal(this.mergeOptions(this._defaultOptions, {}));
19
+ this.interactiveOptions = computed(() => this.mergeOptions(this._interactiveOptions(), {}));
20
+ this._controller.attachEngine(this);
21
+ }
22
+ setMode(mode) {
23
+ this._mode = mode;
24
+ this._controller.handleModeChanged(mode);
25
+ }
26
+ getMode() {
27
+ return this._mode;
28
+ }
29
+ setWriteback(handler) {
30
+ this._writeback = handler;
31
+ }
32
+ getWriteback() {
33
+ return this._writeback;
34
+ }
35
+ setInteractiveOptions(options) {
36
+ this._interactiveOptions.set(this.mergeOptions(this._interactiveOptions(), options));
37
+ }
38
+ relayout(flowId) {
39
+ return this._controller.relayout(flowId);
40
+ }
41
+ getProviderConfig() {
42
+ return { ...this._config };
43
+ }
44
+ resolveLayoutOptions(options) {
45
+ const layoutOptions = {
46
+ ...(options ?? {}),
47
+ };
48
+ delete layoutOptions.flowId;
49
+ delete layoutOptions.mode;
50
+ return this.mergeOptions(this._interactiveOptions(), layoutOptions);
51
+ }
52
+ }
53
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1sYXlvdXQtZW5naW5lLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L2YtbGF5b3V0LWVuZ2luZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQVUsTUFBTSxFQUFrQixNQUFNLGVBQWUsQ0FBQztBQUNqRyxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sU0FBUyxDQUFDO0FBQ3ZDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3ZELE9BQU8sRUFDTCxnQkFBZ0IsR0FRakIsTUFBTSxVQUFVLENBQUM7QUFFbEIsTUFBTSxDQUFDLE1BQU0sUUFBUSxHQUFHLElBQUksY0FBYyxDQUFnQixVQUFVLENBQUMsQ0FBQztBQU10RSxNQUFNLE9BQWdCLGFBQWE7SUFHaEIsV0FBVyxHQUFHLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0lBQ3hDLE9BQU8sR0FDckIsTUFBTSxDQUFDLGdCQUFnQixFQUFFLEVBQUUsUUFBUSxFQUFFLElBQUksRUFBRSxDQUE2QyxJQUFJLEVBQUUsQ0FBQztJQUUxRixtQkFBbUIsQ0FBNEI7SUFDL0MsS0FBSyxDQUFlO0lBQ3BCLFVBQVUsQ0FBa0M7SUFDNUMsZUFBZSxDQUFXO0lBRWxCLGtCQUFrQixDQUFtQztJQUVyRSxZQUFzQixjQUF3QjtRQUM1QyxJQUFJLENBQUMsS0FBSyxHQUFHLElBQUksQ0FBQyxPQUFPLENBQUMsSUFBSSxJQUFJLFlBQVksQ0FBQyxNQUFNLENBQUM7UUFDdEQsSUFBSSxDQUFDLFVBQVUsR0FBRyxJQUFJLENBQUMsT0FBTyxDQUFDLFNBQVMsSUFBSSxJQUFJLENBQUM7UUFDakQsSUFBSSxDQUFDLGVBQWUsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDLGNBQWMsRUFBRSxJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sQ0FBQyxDQUFDO1FBQy9FLElBQUksQ0FBQyxtQkFBbUIsR0FBRyxNQUFNLENBQUMsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsZUFBZSxFQUFFLEVBQUUsQ0FBQyxDQUFDLENBQUM7UUFDL0UsSUFBSSxDQUFDLGtCQUFrQixHQUFHLFFBQVEsQ0FBQyxHQUFHLEVBQUUsQ0FDdEMsSUFBSSxDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsbUJBQW1CLEVBQUUsRUFBRSxFQUFFLENBQUMsQ0FDZixDQUFDO1FBRXJDLElBQUksQ0FBQyxXQUFXLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxDQUFDO0lBQ3RDLENBQUM7SUFFTSxPQUFPLENBQUMsSUFBa0I7UUFDL0IsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLENBQUM7UUFDbEIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLENBQUMsQ0FBQztJQUMzQyxDQUFDO0lBRU0sT0FBTztRQUNaLE9BQU8sSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNwQixDQUFDO0lBRU0sWUFBWSxDQUFDLE9BQXdDO1FBQzFELElBQUksQ0FBQyxVQUFVLEdBQUcsT0FBTyxDQUFDO0lBQzVCLENBQUM7SUFFTSxZQUFZO1FBQ2pCLE9BQU8sSUFBSSxDQUFDLFVBQVUsQ0FBQztJQUN6QixDQUFDO0lBRU0scUJBQXFCLENBQUMsT0FBMEI7UUFDckQsSUFBSSxDQUFDLG1CQUFtQixDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxtQkFBbUIsRUFBRSxFQUFFLE9BQU8sQ0FBQyxDQUFDLENBQUM7SUFDdkYsQ0FBQztJQUVNLFFBQVEsQ0FBQyxNQUFlO1FBQzdCLE9BQU8sSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDM0MsQ0FBQztJQUVNLGlCQUFpQjtRQUN0QixPQUFPLEVBQUUsR0FBRyxJQUFJLENBQUMsT0FBTyxFQUFFLENBQUM7SUFDN0IsQ0FBQztJQUVTLG9CQUFvQixDQUFDLE9BQThDO1FBQzNFLE1BQU0sYUFBYSxHQUFHO1lBQ3BCLEdBQUcsQ0FBQyxPQUFPLElBQUksRUFBRSxDQUFDO1NBQzZDLENBQUM7UUFFbEUsT0FBTyxhQUFhLENBQUMsTUFBTSxDQUFDO1FBQzVCLE9BQU8sYUFBYSxDQUFDLElBQUksQ0FBQztRQUUxQixPQUFPLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxDQUFDLG1CQUFtQixFQUFFLEVBQUUsYUFBYSxDQUFDLENBQUM7SUFDdEUsQ0FBQztDQVlGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgY29tcHV0ZWQsIGluamVjdCwgSW5qZWN0aW9uVG9rZW4sIFNpZ25hbCwgc2lnbmFsLCBXcml0YWJsZVNpZ25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRUZMYXlvdXRNb2RlIH0gZnJvbSAnLi9lbnVtcyc7XG5pbXBvcnQgeyBGTGF5b3V0Q29udHJvbGxlciB9IGZyb20gJy4vZmxvdy1pbnRlZ3JhdGlvbic7XG5pbXBvcnQge1xuICBGX0xBWU9VVF9PUFRJT05TLFxuICBJRkxheW91dENhbGN1bGF0aW9uT3B0aW9ucyxcbiAgSUZMYXlvdXRDb25uZWN0aW9uLFxuICBJRkxheW91dE5vZGUsXG4gIElGTGF5b3V0T3B0aW9ucyxcbiAgSUZMYXlvdXRQcm92aWRlckNvbmZpZyxcbiAgSUZMYXlvdXRSZXN1bHQsXG4gIFRGTGF5b3V0V3JpdGViYWNrSGFuZGxlcixcbn0gZnJvbSAnLi9tb2RlbHMnO1xuXG5leHBvcnQgY29uc3QgRl9MQVlPVVQgPSBuZXcgSW5qZWN0aW9uVG9rZW48RkxheW91dEVuZ2luZT4oJ0ZfTEFZT1VUJyk7XG5cbnR5cGUgVFJlYWRvbmx5RGVlcDxUPiA9IHtcbiAgcmVhZG9ubHkgW0sgaW4ga2V5b2YgVF06IFRbS10gZXh0ZW5kcyBvYmplY3QgPyBUUmVhZG9ubHlEZWVwPFRbS10+IDogVFtLXTtcbn07XG5cbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBGTGF5b3V0RW5naW5lPFxuICBUT3B0aW9ucyBleHRlbmRzIElGTGF5b3V0T3B0aW9uczxzdHJpbmc+ID0gSUZMYXlvdXRPcHRpb25zPHN0cmluZz4sXG4+IHtcbiAgcHJpdmF0ZSByZWFkb25seSBfY29udHJvbGxlciA9IGluamVjdChGTGF5b3V0Q29udHJvbGxlcik7XG4gIHByaXZhdGUgcmVhZG9ubHkgX2NvbmZpZyA9XG4gICAgKGluamVjdChGX0xBWU9VVF9PUFRJT05TLCB7IG9wdGlvbmFsOiB0cnVlIH0pIGFzIElGTGF5b3V0UHJvdmlkZXJDb25maWc8VE9wdGlvbnM+IHwgbnVsbCkgPz8ge307XG5cbiAgcHJpdmF0ZSBfaW50ZXJhY3RpdmVPcHRpb25zITogV3JpdGFibGVTaWduYWw8VE9wdGlvbnM+O1xuICBwcml2YXRlIF9tb2RlOiBFRkxheW91dE1vZGU7XG4gIHByaXZhdGUgX3dyaXRlYmFjazogVEZMYXlvdXRXcml0ZWJhY2tIYW5kbGVyIHwgbnVsbDtcbiAgcHJpdmF0ZSBfZGVmYXVsdE9wdGlvbnM6IFRPcHRpb25zO1xuXG4gIHB1YmxpYyByZWFkb25seSBpbnRlcmFjdGl2ZU9wdGlvbnMhOiBTaWduYWw8VFJlYWRvbmx5RGVlcDxUT3B0aW9ucz4+O1xuXG4gIHByb3RlY3RlZCBjb25zdHJ1Y3RvcihkZWZhdWx0T3B0aW9uczogVE9wdGlvbnMpIHtcbiAgICB0aGlzLl9tb2RlID0gdGhpcy5fY29uZmlnLm1vZGUgPz8gRUZMYXlvdXRNb2RlLk1BTlVBTDtcbiAgICB0aGlzLl93cml0ZWJhY2sgPSB0aGlzLl9jb25maWcud3JpdGViYWNrID8/IG51bGw7XG4gICAgdGhpcy5fZGVmYXVsdE9wdGlvbnMgPSB0aGlzLm1lcmdlT3B0aW9ucyhkZWZhdWx0T3B0aW9ucywgdGhpcy5fY29uZmlnLm9wdGlvbnMpO1xuICAgIHRoaXMuX2ludGVyYWN0aXZlT3B0aW9ucyA9IHNpZ25hbCh0aGlzLm1lcmdlT3B0aW9ucyh0aGlzLl9kZWZhdWx0T3B0aW9ucywge30pKTtcbiAgICB0aGlzLmludGVyYWN0aXZlT3B0aW9ucyA9IGNvbXB1dGVkKCgpID0+XG4gICAgICB0aGlzLm1lcmdlT3B0aW9ucyh0aGlzLl9pbnRlcmFjdGl2ZU9wdGlvbnMoKSwge30pLFxuICAgICkgYXMgU2lnbmFsPFRSZWFkb25seURlZXA8VE9wdGlvbnM+PjtcblxuICAgIHRoaXMuX2NvbnRyb2xsZXIuYXR0YWNoRW5naW5lKHRoaXMpO1xuICB9XG5cbiAgcHVibGljIHNldE1vZGUobW9kZTogRUZMYXlvdXRNb2RlKTogdm9pZCB7XG4gICAgdGhpcy5fbW9kZSA9IG1vZGU7XG4gICAgdGhpcy5fY29udHJvbGxlci5oYW5kbGVNb2RlQ2hhbmdlZChtb2RlKTtcbiAgfVxuXG4gIHB1YmxpYyBnZXRNb2RlKCk6IEVGTGF5b3V0TW9kZSB7XG4gICAgcmV0dXJuIHRoaXMuX21vZGU7XG4gIH1cblxuICBwdWJsaWMgc2V0V3JpdGViYWNrKGhhbmRsZXI6IFRGTGF5b3V0V3JpdGViYWNrSGFuZGxlciB8IG51bGwpOiB2b2lkIHtcbiAgICB0aGlzLl93cml0ZWJhY2sgPSBoYW5kbGVyO1xuICB9XG5cbiAgcHVibGljIGdldFdyaXRlYmFjaygpOiBURkxheW91dFdyaXRlYmFja0hhbmRsZXIgfCBudWxsIHtcbiAgICByZXR1cm4gdGhpcy5fd3JpdGViYWNrO1xuICB9XG5cbiAgcHVibGljIHNldEludGVyYWN0aXZlT3B0aW9ucyhvcHRpb25zOiBQYXJ0aWFsPFRPcHRpb25zPik6IHZvaWQge1xuICAgIHRoaXMuX2ludGVyYWN0aXZlT3B0aW9ucy5zZXQodGhpcy5tZXJnZU9wdGlvbnModGhpcy5faW50ZXJhY3RpdmVPcHRpb25zKCksIG9wdGlvbnMpKTtcbiAgfVxuXG4gIHB1YmxpYyByZWxheW91dChmbG93SWQ/OiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICByZXR1cm4gdGhpcy5fY29udHJvbGxlci5yZWxheW91dChmbG93SWQpO1xuICB9XG5cbiAgcHVibGljIGdldFByb3ZpZGVyQ29uZmlnKCk6IElGTGF5b3V0UHJvdmlkZXJDb25maWc8VE9wdGlvbnM+IHtcbiAgICByZXR1cm4geyAuLi50aGlzLl9jb25maWcgfTtcbiAgfVxuXG4gIHByb3RlY3RlZCByZXNvbHZlTGF5b3V0T3B0aW9ucyhvcHRpb25zPzogSUZMYXlvdXRDYWxjdWxhdGlvbk9wdGlvbnM8VE9wdGlvbnM+KTogVE9wdGlvbnMge1xuICAgIGNvbnN0IGxheW91dE9wdGlvbnMgPSB7XG4gICAgICAuLi4ob3B0aW9ucyA/PyB7fSksXG4gICAgfSBhcyBQYXJ0aWFsPFRPcHRpb25zPiAmIHsgZmxvd0lkPzogc3RyaW5nOyBtb2RlPzogRUZMYXlvdXRNb2RlIH07XG5cbiAgICBkZWxldGUgbGF5b3V0T3B0aW9ucy5mbG93SWQ7XG4gICAgZGVsZXRlIGxheW91dE9wdGlvbnMubW9kZTtcblxuICAgIHJldHVybiB0aGlzLm1lcmdlT3B0aW9ucyh0aGlzLl9pbnRlcmFjdGl2ZU9wdGlvbnMoKSwgbGF5b3V0T3B0aW9ucyk7XG4gIH1cblxuICBwcm90ZWN0ZWQgYWJzdHJhY3QgbWVyZ2VPcHRpb25zKFxuICAgIGN1cnJlbnRPcHRpb25zOiBUT3B0aW9ucyxcbiAgICBuZXh0T3B0aW9ucz86IFBhcnRpYWw8VE9wdGlvbnM+LFxuICApOiBUT3B0aW9ucztcblxuICBwdWJsaWMgYWJzdHJhY3QgY2FsY3VsYXRlKFxuICAgIG5vZGVzOiBJRkxheW91dE5vZGVbXSxcbiAgICBjb25uZWN0aW9uczogSUZMYXlvdXRDb25uZWN0aW9uW10sXG4gICAgb3B0aW9ucz86IElGTGF5b3V0Q2FsY3VsYXRpb25PcHRpb25zPFRPcHRpb25zPixcbiAgKTogUHJvbWlzZTxJRkxheW91dFJlc3VsdD47XG59XG4iXX0=
@@ -0,0 +1,226 @@
1
+ import { DestroyRef, inject, Injectable } from '@angular/core';
2
+ import { PointExtensions } from '@foblex/2d';
3
+ import { EFLayoutMode } from '../enums';
4
+ import { normalizeFlowLayoutData } from './normalize-flow-layout-data';
5
+ import * as i0 from "@angular/core";
6
+ const FLOW_LAYOUT_DEBOUNCE_MS = 1;
7
+ export class FLayoutController {
8
+ _destroyRef = inject(DestroyRef);
9
+ _flows = new Map();
10
+ _engine;
11
+ constructor() {
12
+ this._destroyRef.onDestroy(() => {
13
+ Array.from(this._flows.keys()).forEach((flowId) => this.unregisterFlow(flowId));
14
+ this._engine = undefined;
15
+ });
16
+ }
17
+ attachEngine(engine) {
18
+ this._engine = engine;
19
+ }
20
+ registerFlow(flow, store) {
21
+ const flowId = flow.fId();
22
+ this.unregisterFlow(flowId);
23
+ const registration = {
24
+ flow,
25
+ store,
26
+ nodeSignature: this._buildNodeSignature(store),
27
+ connectionSignature: this._buildConnectionSignature(store),
28
+ timeoutId: null,
29
+ raf1: null,
30
+ raf2: null,
31
+ unsubs: [],
32
+ runId: 0,
33
+ isApplying: false,
34
+ };
35
+ registration.unsubs.push(store.nodesChanges$.listen(() => this._handleNodesChanges(flowId)), store.connectionsChanges$.listen(() => this._handleConnectionsChanges(flowId)));
36
+ this._flows.set(flowId, registration);
37
+ if (this._engine?.getMode() === EFLayoutMode.AUTO) {
38
+ this._scheduleRelayout(flowId);
39
+ }
40
+ }
41
+ unregisterFlow(flowId) {
42
+ const registration = this._flows.get(flowId);
43
+ if (!registration) {
44
+ return;
45
+ }
46
+ registration.unsubs.forEach((unsub) => unsub());
47
+ this._clearScheduledWork(registration);
48
+ this._flows.delete(flowId);
49
+ }
50
+ handleModeChanged(mode) {
51
+ if (mode !== EFLayoutMode.AUTO) {
52
+ return;
53
+ }
54
+ for (const flowId of this._flows.keys()) {
55
+ this._scheduleRelayout(flowId);
56
+ }
57
+ }
58
+ async relayout(flowId) {
59
+ if (!this._engine) {
60
+ return;
61
+ }
62
+ if (flowId) {
63
+ const registration = this._flows.get(flowId);
64
+ if (registration) {
65
+ await this._relayoutRegisteredFlow(flowId, registration);
66
+ }
67
+ return;
68
+ }
69
+ for (const [id, registration] of this._flows.entries()) {
70
+ await this._relayoutRegisteredFlow(id, registration);
71
+ }
72
+ }
73
+ _handleNodesChanges(flowId) {
74
+ const registration = this._flows.get(flowId);
75
+ if (!registration || registration.isApplying) {
76
+ return;
77
+ }
78
+ const nextSignature = this._buildNodeSignature(registration.store);
79
+ if (nextSignature === registration.nodeSignature) {
80
+ return;
81
+ }
82
+ registration.nodeSignature = nextSignature;
83
+ this._scheduleRelayout(flowId);
84
+ }
85
+ _handleConnectionsChanges(flowId) {
86
+ const registration = this._flows.get(flowId);
87
+ if (!registration || registration.isApplying) {
88
+ return;
89
+ }
90
+ const nextSignature = this._buildConnectionSignature(registration.store);
91
+ if (nextSignature === registration.connectionSignature) {
92
+ return;
93
+ }
94
+ registration.connectionSignature = nextSignature;
95
+ this._scheduleRelayout(flowId);
96
+ }
97
+ _scheduleRelayout(flowId) {
98
+ const registration = this._flows.get(flowId);
99
+ if (!registration || !this._engine || this._engine.getMode() !== EFLayoutMode.AUTO) {
100
+ return;
101
+ }
102
+ if (registration.timeoutId !== null) {
103
+ clearTimeout(registration.timeoutId);
104
+ }
105
+ this._cancelAnimationFrames(registration);
106
+ registration.timeoutId = setTimeout(() => {
107
+ registration.timeoutId = null;
108
+ this._runAfterNextPaint(registration, () => void this._relayoutFlowIfReady(flowId));
109
+ }, FLOW_LAYOUT_DEBOUNCE_MS);
110
+ }
111
+ async _relayoutFlowIfReady(flowId) {
112
+ const registration = this._flows.get(flowId);
113
+ if (!registration || !this._engine || this._engine.getMode() !== EFLayoutMode.AUTO) {
114
+ return;
115
+ }
116
+ if (registration.store.hasPendingProgressiveRender) {
117
+ this._scheduleRelayout(flowId);
118
+ return;
119
+ }
120
+ await this._relayoutRegisteredFlow(flowId, registration);
121
+ }
122
+ async _relayoutRegisteredFlow(flowId, registration) {
123
+ if (!this._engine) {
124
+ return;
125
+ }
126
+ const graph = normalizeFlowLayoutData(registration.flow.getState({ measuredSize: true }));
127
+ const runId = ++registration.runId;
128
+ const result = await this._engine.calculate(graph.nodes, graph.connections, {
129
+ flowId,
130
+ mode: this._engine.getMode(),
131
+ });
132
+ const nextRegistration = this._flows.get(flowId);
133
+ if (!nextRegistration || nextRegistration.runId !== runId) {
134
+ return;
135
+ }
136
+ const changedNodes = this._applyPositions(nextRegistration.store, result.nodes);
137
+ if (!changedNodes.length) {
138
+ return;
139
+ }
140
+ nextRegistration.isApplying = true;
141
+ try {
142
+ nextRegistration.flow.redraw();
143
+ this._emitWriteback(flowId, result.nodes, graph.nodeIds, graph.groupIds);
144
+ }
145
+ finally {
146
+ queueMicrotask(() => {
147
+ const current = this._flows.get(flowId);
148
+ if (current) {
149
+ current.isApplying = false;
150
+ }
151
+ });
152
+ }
153
+ }
154
+ _emitWriteback(flowId, nodes, nodeIds, groupIds) {
155
+ const handler = this._engine?.getWriteback();
156
+ if (!handler) {
157
+ return;
158
+ }
159
+ handler({
160
+ flowId,
161
+ nodes: nodes.filter((node) => nodeIds.has(node.id)),
162
+ groups: nodes.filter((node) => groupIds.has(node.id)),
163
+ });
164
+ }
165
+ _applyPositions(store, nodes) {
166
+ return nodes.filter((node) => {
167
+ const registeredNode = store.nodes.get(node.id);
168
+ if (!registeredNode || PointExtensions.isEqual(registeredNode._position, node.position)) {
169
+ return false;
170
+ }
171
+ registeredNode.position.set({ ...node.position });
172
+ return true;
173
+ });
174
+ }
175
+ _buildNodeSignature(store) {
176
+ return store.nodes
177
+ .getAll()
178
+ .map((node) => node.fId())
179
+ .sort()
180
+ .join('|');
181
+ }
182
+ _buildConnectionSignature(store) {
183
+ return store.connections
184
+ .getAll()
185
+ .map((connection) => `${connection.fId()}:${connection.fOutputId()}:${connection.fInputId()}`)
186
+ .sort()
187
+ .join('|');
188
+ }
189
+ _runAfterNextPaint(registration, callback) {
190
+ this._cancelAnimationFrames(registration);
191
+ if (typeof requestAnimationFrame !== 'function') {
192
+ callback();
193
+ return;
194
+ }
195
+ registration.raf1 = requestAnimationFrame(() => {
196
+ registration.raf1 = null;
197
+ registration.raf2 = requestAnimationFrame(() => {
198
+ registration.raf2 = null;
199
+ callback();
200
+ });
201
+ });
202
+ }
203
+ _clearScheduledWork(registration) {
204
+ if (registration.timeoutId !== null) {
205
+ clearTimeout(registration.timeoutId);
206
+ registration.timeoutId = null;
207
+ }
208
+ this._cancelAnimationFrames(registration);
209
+ }
210
+ _cancelAnimationFrames(registration) {
211
+ if (registration.raf1 !== null && typeof cancelAnimationFrame === 'function') {
212
+ cancelAnimationFrame(registration.raf1);
213
+ registration.raf1 = null;
214
+ }
215
+ if (registration.raf2 !== null && typeof cancelAnimationFrame === 'function') {
216
+ cancelAnimationFrame(registration.raf2);
217
+ registration.raf2 = null;
218
+ }
219
+ }
220
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FLayoutController, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
221
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FLayoutController });
222
+ }
223
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FLayoutController, decorators: [{
224
+ type: Injectable
225
+ }], ctorParameters: () => [] });
226
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1sYXlvdXQtY29udHJvbGxlci5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWxheW91dC9mbG93LWludGVncmF0aW9uL2YtbGF5b3V0LWNvbnRyb2xsZXIudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsVUFBVSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQy9ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxZQUFZLENBQUM7QUFDN0MsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLFVBQVUsQ0FBQztBQUt4QyxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQzs7QUFFdkUsTUFBTSx1QkFBdUIsR0FBRyxDQUFDLENBQUM7QUFnQmxDLE1BQU0sT0FBTyxpQkFBaUI7SUFDWCxXQUFXLEdBQUcsTUFBTSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBRWpDLE1BQU0sR0FBRyxJQUFJLEdBQUcsRUFBNkIsQ0FBQztJQUV2RCxPQUFPLENBQWlCO0lBRWhDO1FBQ0UsSUFBSSxDQUFDLFdBQVcsQ0FBQyxTQUFTLENBQUMsR0FBRyxFQUFFO1lBQzlCLEtBQUssQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU0sQ0FBQyxJQUFJLEVBQUUsQ0FBQyxDQUFDLE9BQU8sQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUFDO1lBQ2hGLElBQUksQ0FBQyxPQUFPLEdBQUcsU0FBUyxDQUFDO1FBQzNCLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVNLFlBQVksQ0FBQyxNQUFxQjtRQUN2QyxJQUFJLENBQUMsT0FBTyxHQUFHLE1BQU0sQ0FBQztJQUN4QixDQUFDO0lBRU0sWUFBWSxDQUFDLElBQWUsRUFBRSxLQUF1QjtRQUMxRCxNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsR0FBRyxFQUFFLENBQUM7UUFFMUIsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLENBQUMsQ0FBQztRQUU1QixNQUFNLFlBQVksR0FBc0I7WUFDdEMsSUFBSTtZQUNKLEtBQUs7WUFDTCxhQUFhLEVBQUUsSUFBSSxDQUFDLG1CQUFtQixDQUFDLEtBQUssQ0FBQztZQUM5QyxtQkFBbUIsRUFBRSxJQUFJLENBQUMseUJBQXlCLENBQUMsS0FBSyxDQUFDO1lBQzFELFNBQVMsRUFBRSxJQUFJO1lBQ2YsSUFBSSxFQUFFLElBQUk7WUFDVixJQUFJLEVBQUUsSUFBSTtZQUNWLE1BQU0sRUFBRSxFQUFFO1lBQ1YsS0FBSyxFQUFFLENBQUM7WUFDUixVQUFVLEVBQUUsS0FBSztTQUNsQixDQUFDO1FBRUYsWUFBWSxDQUFDLE1BQU0sQ0FBQyxJQUFJLENBQ3RCLEtBQUssQ0FBQyxhQUFhLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyxtQkFBbUIsQ0FBQyxNQUFNLENBQUMsQ0FBQyxFQUNsRSxLQUFLLENBQUMsbUJBQW1CLENBQUMsTUFBTSxDQUFDLEdBQUcsRUFBRSxDQUFDLElBQUksQ0FBQyx5QkFBeUIsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUMvRSxDQUFDO1FBRUYsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxFQUFFLFlBQVksQ0FBQyxDQUFDO1FBRXRDLElBQUksSUFBSSxDQUFDLE9BQU8sRUFBRSxPQUFPLEVBQUUsS0FBSyxZQUFZLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDbEQsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBQ2pDLENBQUM7SUFDSCxDQUFDO0lBRU0sY0FBYyxDQUFDLE1BQWM7UUFDbEMsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFN0MsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDO1lBQ2xCLE9BQU87UUFDVCxDQUFDO1FBRUQsWUFBWSxDQUFDLE1BQU0sQ0FBQyxPQUFPLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEtBQUssRUFBRSxDQUFDLENBQUM7UUFDaEQsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQ3ZDLElBQUksQ0FBQyxNQUFNLENBQUMsTUFBTSxDQUFDLE1BQU0sQ0FBQyxDQUFDO0lBQzdCLENBQUM7SUFFTSxpQkFBaUIsQ0FBQyxJQUFrQjtRQUN6QyxJQUFJLElBQUksS0FBSyxZQUFZLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDL0IsT0FBTztRQUNULENBQUM7UUFFRCxLQUFLLE1BQU0sTUFBTSxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQztZQUN4QyxJQUFJLENBQUMsaUJBQWlCLENBQUMsTUFBTSxDQUFDLENBQUM7UUFDakMsQ0FBQztJQUNILENBQUM7SUFFTSxLQUFLLENBQUMsUUFBUSxDQUFDLE1BQWU7UUFDbkMsSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNsQixPQUFPO1FBQ1QsQ0FBQztRQUVELElBQUksTUFBTSxFQUFFLENBQUM7WUFDWCxNQUFNLFlBQVksR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUU3QyxJQUFJLFlBQVksRUFBRSxDQUFDO2dCQUNqQixNQUFNLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxNQUFNLEVBQUUsWUFBWSxDQUFDLENBQUM7WUFDM0QsQ0FBQztZQUVELE9BQU87UUFDVCxDQUFDO1FBRUQsS0FBSyxNQUFNLENBQUMsRUFBRSxFQUFFLFlBQVksQ0FBQyxJQUFJLElBQUksQ0FBQyxNQUFNLENBQUMsT0FBTyxFQUFFLEVBQUUsQ0FBQztZQUN2RCxNQUFNLElBQUksQ0FBQyx1QkFBdUIsQ0FBQyxFQUFFLEVBQUUsWUFBWSxDQUFDLENBQUM7UUFDdkQsQ0FBQztJQUNILENBQUM7SUFFTyxtQkFBbUIsQ0FBQyxNQUFjO1FBQ3hDLE1BQU0sWUFBWSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRTdDLElBQUksQ0FBQyxZQUFZLElBQUksWUFBWSxDQUFDLFVBQVUsRUFBRSxDQUFDO1lBQzdDLE9BQU87UUFDVCxDQUFDO1FBRUQsTUFBTSxhQUFhLEdBQUcsSUFBSSxDQUFDLG1CQUFtQixDQUFDLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVuRSxJQUFJLGFBQWEsS0FBSyxZQUFZLENBQUMsYUFBYSxFQUFFLENBQUM7WUFDakQsT0FBTztRQUNULENBQUM7UUFFRCxZQUFZLENBQUMsYUFBYSxHQUFHLGFBQWEsQ0FBQztRQUMzQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDakMsQ0FBQztJQUVPLHlCQUF5QixDQUFDLE1BQWM7UUFDOUMsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFN0MsSUFBSSxDQUFDLFlBQVksSUFBSSxZQUFZLENBQUMsVUFBVSxFQUFFLENBQUM7WUFDN0MsT0FBTztRQUNULENBQUM7UUFFRCxNQUFNLGFBQWEsR0FBRyxJQUFJLENBQUMseUJBQXlCLENBQUMsWUFBWSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRXpFLElBQUksYUFBYSxLQUFLLFlBQVksQ0FBQyxtQkFBbUIsRUFBRSxDQUFDO1lBQ3ZELE9BQU87UUFDVCxDQUFDO1FBRUQsWUFBWSxDQUFDLG1CQUFtQixHQUFHLGFBQWEsQ0FBQztRQUNqRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsTUFBTSxDQUFDLENBQUM7SUFDakMsQ0FBQztJQUVPLGlCQUFpQixDQUFDLE1BQWM7UUFDdEMsTUFBTSxZQUFZLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFN0MsSUFBSSxDQUFDLFlBQVksSUFBSSxDQUFDLElBQUksQ0FBQyxPQUFPLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxPQUFPLEVBQUUsS0FBSyxZQUFZLENBQUMsSUFBSSxFQUFFLENBQUM7WUFDbkYsT0FBTztRQUNULENBQUM7UUFFRCxJQUFJLFlBQVksQ0FBQyxTQUFTLEtBQUssSUFBSSxFQUFFLENBQUM7WUFDcEMsWUFBWSxDQUFDLFlBQVksQ0FBQyxTQUFTLENBQUMsQ0FBQztRQUN2QyxDQUFDO1FBRUQsSUFBSSxDQUFDLHNCQUFzQixDQUFDLFlBQVksQ0FBQyxDQUFDO1FBQzFDLFlBQVksQ0FBQyxTQUFTLEdBQUcsVUFBVSxDQUFDLEdBQUcsRUFBRTtZQUN2QyxZQUFZLENBQUMsU0FBUyxHQUFHLElBQUksQ0FBQztZQUM5QixJQUFJLENBQUMsa0JBQWtCLENBQUMsWUFBWSxFQUFFLEdBQUcsRUFBRSxDQUFDLEtBQUssSUFBSSxDQUFDLG9CQUFvQixDQUFDLE1BQU0sQ0FBQyxDQUFDLENBQUM7UUFDdEYsQ0FBQyxFQUFFLHVCQUF1QixDQUFDLENBQUM7SUFDOUIsQ0FBQztJQUVPLEtBQUssQ0FBQyxvQkFBb0IsQ0FBQyxNQUFjO1FBQy9DLE1BQU0sWUFBWSxHQUFHLElBQUksQ0FBQyxNQUFNLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxDQUFDO1FBRTdDLElBQUksQ0FBQyxZQUFZLElBQUksQ0FBQyxJQUFJLENBQUMsT0FBTyxJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxFQUFFLEtBQUssWUFBWSxDQUFDLElBQUksRUFBRSxDQUFDO1lBQ25GLE9BQU87UUFDVCxDQUFDO1FBRUQsSUFBSSxZQUFZLENBQUMsS0FBSyxDQUFDLDJCQUEyQixFQUFFLENBQUM7WUFDbkQsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBRS9CLE9BQU87UUFDVCxDQUFDO1FBRUQsTUFBTSxJQUFJLENBQUMsdUJBQXVCLENBQUMsTUFBTSxFQUFFLFlBQVksQ0FBQyxDQUFDO0lBQzNELENBQUM7SUFFTyxLQUFLLENBQUMsdUJBQXVCLENBQ25DLE1BQWMsRUFDZCxZQUErQjtRQUUvQixJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sRUFBRSxDQUFDO1lBQ2xCLE9BQU87UUFDVCxDQUFDO1FBRUQsTUFBTSxLQUFLLEdBQUcsdUJBQXVCLENBQUMsWUFBWSxDQUFDLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxZQUFZLEVBQUUsSUFBSSxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQzFGLE1BQU0sS0FBSyxHQUFHLEVBQUUsWUFBWSxDQUFDLEtBQUssQ0FBQztRQUNuQyxNQUFNLE1BQU0sR0FBRyxNQUFNLElBQUksQ0FBQyxPQUFPLENBQUMsU0FBUyxDQUFDLEtBQUssQ0FBQyxLQUFLLEVBQUUsS0FBSyxDQUFDLFdBQVcsRUFBRTtZQUMxRSxNQUFNO1lBQ04sSUFBSSxFQUFFLElBQUksQ0FBQyxPQUFPLENBQUMsT0FBTyxFQUFFO1NBQzdCLENBQUMsQ0FBQztRQUNILE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsTUFBTSxDQUFDLENBQUM7UUFFakQsSUFBSSxDQUFDLGdCQUFnQixJQUFJLGdCQUFnQixDQUFDLEtBQUssS0FBSyxLQUFLLEVBQUUsQ0FBQztZQUMxRCxPQUFPO1FBQ1QsQ0FBQztRQUVELE1BQU0sWUFBWSxHQUFHLElBQUksQ0FBQyxlQUFlLENBQUMsZ0JBQWdCLENBQUMsS0FBSyxFQUFFLE1BQU0sQ0FBQyxLQUFLLENBQUMsQ0FBQztRQUVoRixJQUFJLENBQUMsWUFBWSxDQUFDLE1BQU0sRUFBRSxDQUFDO1lBQ3pCLE9BQU87UUFDVCxDQUFDO1FBRUQsZ0JBQWdCLENBQUMsVUFBVSxHQUFHLElBQUksQ0FBQztRQUVuQyxJQUFJLENBQUM7WUFDSCxnQkFBZ0IsQ0FBQyxJQUFJLENBQUMsTUFBTSxFQUFFLENBQUM7WUFDL0IsSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLEVBQUUsTUFBTSxDQUFDLEtBQUssRUFBRSxLQUFLLENBQUMsT0FBTyxFQUFFLEtBQUssQ0FBQyxRQUFRLENBQUMsQ0FBQztRQUMzRSxDQUFDO2dCQUFTLENBQUM7WUFDVCxjQUFjLENBQUMsR0FBRyxFQUFFO2dCQUNsQixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLEdBQUcsQ0FBQyxNQUFNLENBQUMsQ0FBQztnQkFFeEMsSUFBSSxPQUFPLEVBQUUsQ0FBQztvQkFDWixPQUFPLENBQUMsVUFBVSxHQUFHLEtBQUssQ0FBQztnQkFDN0IsQ0FBQztZQUNILENBQUMsQ0FBQyxDQUFDO1FBQ0wsQ0FBQztJQUNILENBQUM7SUFFTyxjQUFjLENBQ3BCLE1BQWMsRUFDZCxLQUE2QixFQUM3QixPQUFvQixFQUNwQixRQUFxQjtRQUVyQixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsT0FBTyxFQUFFLFlBQVksRUFBRSxDQUFDO1FBRTdDLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNiLE9BQU87UUFDVCxDQUFDO1FBRUQsT0FBTyxDQUFDO1lBQ04sTUFBTTtZQUNOLEtBQUssRUFBRSxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxPQUFPLENBQUMsR0FBRyxDQUFDLElBQUksQ0FBQyxFQUFFLENBQUMsQ0FBQztZQUNuRCxNQUFNLEVBQUUsS0FBSyxDQUFDLE1BQU0sQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxJQUFJLENBQUMsRUFBRSxDQUFDLENBQUM7U0FDdEQsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVPLGVBQWUsQ0FDckIsS0FBdUIsRUFDdkIsS0FBNkI7UUFFN0IsT0FBTyxLQUFLLENBQUMsTUFBTSxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUU7WUFDM0IsTUFBTSxjQUFjLEdBQUcsS0FBSyxDQUFDLEtBQUssQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1lBRWhELElBQUksQ0FBQyxjQUFjLElBQUksZUFBZSxDQUFDLE9BQU8sQ0FBQyxjQUFjLENBQUMsU0FBUyxFQUFFLElBQUksQ0FBQyxRQUFRLENBQUMsRUFBRSxDQUFDO2dCQUN4RixPQUFPLEtBQUssQ0FBQztZQUNmLENBQUM7WUFFRCxjQUFjLENBQUMsUUFBUSxDQUFDLEdBQUcsQ0FBQyxFQUFFLEdBQUcsSUFBSSxDQUFDLFFBQVEsRUFBRSxDQUFDLENBQUM7WUFFbEQsT0FBTyxJQUFJLENBQUM7UUFDZCxDQUFDLENBQUMsQ0FBQztJQUNMLENBQUM7SUFFTyxtQkFBbUIsQ0FBQyxLQUF1QjtRQUNqRCxPQUFPLEtBQUssQ0FBQyxLQUFLO2FBQ2YsTUFBTSxFQUFFO2FBQ1IsR0FBRyxDQUFDLENBQUMsSUFBSSxFQUFFLEVBQUUsQ0FBQyxJQUFJLENBQUMsR0FBRyxFQUFFLENBQUM7YUFDekIsSUFBSSxFQUFFO2FBQ04sSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ2YsQ0FBQztJQUVPLHlCQUF5QixDQUFDLEtBQXVCO1FBQ3ZELE9BQU8sS0FBSyxDQUFDLFdBQVc7YUFDckIsTUFBTSxFQUFFO2FBQ1IsR0FBRyxDQUFDLENBQUMsVUFBVSxFQUFFLEVBQUUsQ0FBQyxHQUFHLFVBQVUsQ0FBQyxHQUFHLEVBQUUsSUFBSSxVQUFVLENBQUMsU0FBUyxFQUFFLElBQUksVUFBVSxDQUFDLFFBQVEsRUFBRSxFQUFFLENBQUM7YUFDN0YsSUFBSSxFQUFFO2FBQ04sSUFBSSxDQUFDLEdBQUcsQ0FBQyxDQUFDO0lBQ2YsQ0FBQztJQUVPLGtCQUFrQixDQUFDLFlBQStCLEVBQUUsUUFBb0I7UUFDOUUsSUFBSSxDQUFDLHNCQUFzQixDQUFDLFlBQVksQ0FBQyxDQUFDO1FBRTFDLElBQUksT0FBTyxxQkFBcUIsS0FBSyxVQUFVLEVBQUUsQ0FBQztZQUNoRCxRQUFRLEVBQUUsQ0FBQztZQUVYLE9BQU87UUFDVCxDQUFDO1FBRUQsWUFBWSxDQUFDLElBQUksR0FBRyxxQkFBcUIsQ0FBQyxHQUFHLEVBQUU7WUFDN0MsWUFBWSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUM7WUFDekIsWUFBWSxDQUFDLElBQUksR0FBRyxxQkFBcUIsQ0FBQyxHQUFHLEVBQUU7Z0JBQzdDLFlBQVksQ0FBQyxJQUFJLEdBQUcsSUFBSSxDQUFDO2dCQUN6QixRQUFRLEVBQUUsQ0FBQztZQUNiLENBQUMsQ0FBQyxDQUFDO1FBQ0wsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU8sbUJBQW1CLENBQUMsWUFBK0I7UUFDekQsSUFBSSxZQUFZLENBQUMsU0FBUyxLQUFLLElBQUksRUFBRSxDQUFDO1lBQ3BDLFlBQVksQ0FBQyxZQUFZLENBQUMsU0FBUyxDQUFDLENBQUM7WUFDckMsWUFBWSxDQUFDLFNBQVMsR0FBRyxJQUFJLENBQUM7UUFDaEMsQ0FBQztRQUVELElBQUksQ0FBQyxzQkFBc0IsQ0FBQyxZQUFZLENBQUMsQ0FBQztJQUM1QyxDQUFDO0lBRU8sc0JBQXNCLENBQUMsWUFBK0I7UUFDNUQsSUFBSSxZQUFZLENBQUMsSUFBSSxLQUFLLElBQUksSUFBSSxPQUFPLG9CQUFvQixLQUFLLFVBQVUsRUFBRSxDQUFDO1lBQzdFLG9CQUFvQixDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUN4QyxZQUFZLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztRQUMzQixDQUFDO1FBRUQsSUFBSSxZQUFZLENBQUMsSUFBSSxLQUFLLElBQUksSUFBSSxPQUFPLG9CQUFvQixLQUFLLFVBQVUsRUFBRSxDQUFDO1lBQzdFLG9CQUFvQixDQUFDLFlBQVksQ0FBQyxJQUFJLENBQUMsQ0FBQztZQUN4QyxZQUFZLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztRQUMzQixDQUFDO0lBQ0gsQ0FBQzt3R0FqU1UsaUJBQWlCOzRHQUFqQixpQkFBaUI7OzRGQUFqQixpQkFBaUI7a0JBRDdCLFVBQVUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEZXN0cm95UmVmLCBpbmplY3QsIEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IFBvaW50RXh0ZW5zaW9ucyB9IGZyb20gJ0Bmb2JsZXgvMmQnO1xuaW1wb3J0IHsgRUZMYXlvdXRNb2RlIH0gZnJvbSAnLi4vZW51bXMnO1xuaW1wb3J0IHsgRkxheW91dEVuZ2luZSB9IGZyb20gJy4uL2YtbGF5b3V0LWVuZ2luZSc7XG5pbXBvcnQgeyBJRkxheW91dE5vZGVQb3NpdGlvbiB9IGZyb20gJy4uL21vZGVscyc7XG5pbXBvcnQgeyBGQ29tcG9uZW50c1N0b3JlIH0gZnJvbSAnLi4vLi4vZi1zdG9yYWdlJztcbmltcG9ydCB7IEZGbG93QmFzZSB9IGZyb20gJy4uLy4uL2YtZmxvdyc7XG5pbXBvcnQgeyBub3JtYWxpemVGbG93TGF5b3V0RGF0YSB9IGZyb20gJy4vbm9ybWFsaXplLWZsb3ctbGF5b3V0LWRhdGEnO1xuXG5jb25zdCBGTE9XX0xBWU9VVF9ERUJPVU5DRV9NUyA9IDE7XG5cbmludGVyZmFjZSBJRmxvd1JlZ2lzdHJhdGlvbiB7XG4gIGZsb3c6IEZGbG93QmFzZTtcbiAgc3RvcmU6IEZDb21wb25lbnRzU3RvcmU7XG4gIG5vZGVTaWduYXR1cmU6IHN0cmluZztcbiAgY29ubmVjdGlvblNpZ25hdHVyZTogc3RyaW5nO1xuICB0aW1lb3V0SWQ6IFJldHVyblR5cGU8dHlwZW9mIHNldFRpbWVvdXQ+IHwgbnVsbDtcbiAgcmFmMTogbnVtYmVyIHwgbnVsbDtcbiAgcmFmMjogbnVtYmVyIHwgbnVsbDtcbiAgdW5zdWJzOiAoKCkgPT4gdm9pZClbXTtcbiAgcnVuSWQ6IG51bWJlcjtcbiAgaXNBcHBseWluZzogYm9vbGVhbjtcbn1cblxuQEluamVjdGFibGUoKVxuZXhwb3J0IGNsYXNzIEZMYXlvdXRDb250cm9sbGVyIHtcbiAgcHJpdmF0ZSByZWFkb25seSBfZGVzdHJveVJlZiA9IGluamVjdChEZXN0cm95UmVmKTtcblxuICBwcml2YXRlIHJlYWRvbmx5IF9mbG93cyA9IG5ldyBNYXA8c3RyaW5nLCBJRmxvd1JlZ2lzdHJhdGlvbj4oKTtcblxuICBwcml2YXRlIF9lbmdpbmU/OiBGTGF5b3V0RW5naW5lO1xuXG4gIGNvbnN0cnVjdG9yKCkge1xuICAgIHRoaXMuX2Rlc3Ryb3lSZWYub25EZXN0cm95KCgpID0+IHtcbiAgICAgIEFycmF5LmZyb20odGhpcy5fZmxvd3Mua2V5cygpKS5mb3JFYWNoKChmbG93SWQpID0+IHRoaXMudW5yZWdpc3RlckZsb3coZmxvd0lkKSk7XG4gICAgICB0aGlzLl9lbmdpbmUgPSB1bmRlZmluZWQ7XG4gICAgfSk7XG4gIH1cblxuICBwdWJsaWMgYXR0YWNoRW5naW5lKGVuZ2luZTogRkxheW91dEVuZ2luZSk6IHZvaWQge1xuICAgIHRoaXMuX2VuZ2luZSA9IGVuZ2luZTtcbiAgfVxuXG4gIHB1YmxpYyByZWdpc3RlckZsb3coZmxvdzogRkZsb3dCYXNlLCBzdG9yZTogRkNvbXBvbmVudHNTdG9yZSk6IHZvaWQge1xuICAgIGNvbnN0IGZsb3dJZCA9IGZsb3cuZklkKCk7XG5cbiAgICB0aGlzLnVucmVnaXN0ZXJGbG93KGZsb3dJZCk7XG5cbiAgICBjb25zdCByZWdpc3RyYXRpb246IElGbG93UmVnaXN0cmF0aW9uID0ge1xuICAgICAgZmxvdyxcbiAgICAgIHN0b3JlLFxuICAgICAgbm9kZVNpZ25hdHVyZTogdGhpcy5fYnVpbGROb2RlU2lnbmF0dXJlKHN0b3JlKSxcbiAgICAgIGNvbm5lY3Rpb25TaWduYXR1cmU6IHRoaXMuX2J1aWxkQ29ubmVjdGlvblNpZ25hdHVyZShzdG9yZSksXG4gICAgICB0aW1lb3V0SWQ6IG51bGwsXG4gICAgICByYWYxOiBudWxsLFxuICAgICAgcmFmMjogbnVsbCxcbiAgICAgIHVuc3ViczogW10sXG4gICAgICBydW5JZDogMCxcbiAgICAgIGlzQXBwbHlpbmc6IGZhbHNlLFxuICAgIH07XG5cbiAgICByZWdpc3RyYXRpb24udW5zdWJzLnB1c2goXG4gICAgICBzdG9yZS5ub2Rlc0NoYW5nZXMkLmxpc3RlbigoKSA9PiB0aGlzLl9oYW5kbGVOb2Rlc0NoYW5nZXMoZmxvd0lkKSksXG4gICAgICBzdG9yZS5jb25uZWN0aW9uc0NoYW5nZXMkLmxpc3RlbigoKSA9PiB0aGlzLl9oYW5kbGVDb25uZWN0aW9uc0NoYW5nZXMoZmxvd0lkKSksXG4gICAgKTtcblxuICAgIHRoaXMuX2Zsb3dzLnNldChmbG93SWQsIHJlZ2lzdHJhdGlvbik7XG5cbiAgICBpZiAodGhpcy5fZW5naW5lPy5nZXRNb2RlKCkgPT09IEVGTGF5b3V0TW9kZS5BVVRPKSB7XG4gICAgICB0aGlzLl9zY2hlZHVsZVJlbGF5b3V0KGZsb3dJZCk7XG4gICAgfVxuICB9XG5cbiAgcHVibGljIHVucmVnaXN0ZXJGbG93KGZsb3dJZDogc3RyaW5nKTogdm9pZCB7XG4gICAgY29uc3QgcmVnaXN0cmF0aW9uID0gdGhpcy5fZmxvd3MuZ2V0KGZsb3dJZCk7XG5cbiAgICBpZiAoIXJlZ2lzdHJhdGlvbikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHJlZ2lzdHJhdGlvbi51bnN1YnMuZm9yRWFjaCgodW5zdWIpID0+IHVuc3ViKCkpO1xuICAgIHRoaXMuX2NsZWFyU2NoZWR1bGVkV29yayhyZWdpc3RyYXRpb24pO1xuICAgIHRoaXMuX2Zsb3dzLmRlbGV0ZShmbG93SWQpO1xuICB9XG5cbiAgcHVibGljIGhhbmRsZU1vZGVDaGFuZ2VkKG1vZGU6IEVGTGF5b3V0TW9kZSk6IHZvaWQge1xuICAgIGlmIChtb2RlICE9PSBFRkxheW91dE1vZGUuQVVUTykge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGZvciAoY29uc3QgZmxvd0lkIG9mIHRoaXMuX2Zsb3dzLmtleXMoKSkge1xuICAgICAgdGhpcy5fc2NoZWR1bGVSZWxheW91dChmbG93SWQpO1xuICAgIH1cbiAgfVxuXG4gIHB1YmxpYyBhc3luYyByZWxheW91dChmbG93SWQ/OiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICBpZiAoIXRoaXMuX2VuZ2luZSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGlmIChmbG93SWQpIHtcbiAgICAgIGNvbnN0IHJlZ2lzdHJhdGlvbiA9IHRoaXMuX2Zsb3dzLmdldChmbG93SWQpO1xuXG4gICAgICBpZiAocmVnaXN0cmF0aW9uKSB7XG4gICAgICAgIGF3YWl0IHRoaXMuX3JlbGF5b3V0UmVnaXN0ZXJlZEZsb3coZmxvd0lkLCByZWdpc3RyYXRpb24pO1xuICAgICAgfVxuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgZm9yIChjb25zdCBbaWQsIHJlZ2lzdHJhdGlvbl0gb2YgdGhpcy5fZmxvd3MuZW50cmllcygpKSB7XG4gICAgICBhd2FpdCB0aGlzLl9yZWxheW91dFJlZ2lzdGVyZWRGbG93KGlkLCByZWdpc3RyYXRpb24pO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgX2hhbmRsZU5vZGVzQ2hhbmdlcyhmbG93SWQ6IHN0cmluZyk6IHZvaWQge1xuICAgIGNvbnN0IHJlZ2lzdHJhdGlvbiA9IHRoaXMuX2Zsb3dzLmdldChmbG93SWQpO1xuXG4gICAgaWYgKCFyZWdpc3RyYXRpb24gfHwgcmVnaXN0cmF0aW9uLmlzQXBwbHlpbmcpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBuZXh0U2lnbmF0dXJlID0gdGhpcy5fYnVpbGROb2RlU2lnbmF0dXJlKHJlZ2lzdHJhdGlvbi5zdG9yZSk7XG5cbiAgICBpZiAobmV4dFNpZ25hdHVyZSA9PT0gcmVnaXN0cmF0aW9uLm5vZGVTaWduYXR1cmUpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICByZWdpc3RyYXRpb24ubm9kZVNpZ25hdHVyZSA9IG5leHRTaWduYXR1cmU7XG4gICAgdGhpcy5fc2NoZWR1bGVSZWxheW91dChmbG93SWQpO1xuICB9XG5cbiAgcHJpdmF0ZSBfaGFuZGxlQ29ubmVjdGlvbnNDaGFuZ2VzKGZsb3dJZDogc3RyaW5nKTogdm9pZCB7XG4gICAgY29uc3QgcmVnaXN0cmF0aW9uID0gdGhpcy5fZmxvd3MuZ2V0KGZsb3dJZCk7XG5cbiAgICBpZiAoIXJlZ2lzdHJhdGlvbiB8fCByZWdpc3RyYXRpb24uaXNBcHBseWluZykge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGNvbnN0IG5leHRTaWduYXR1cmUgPSB0aGlzLl9idWlsZENvbm5lY3Rpb25TaWduYXR1cmUocmVnaXN0cmF0aW9uLnN0b3JlKTtcblxuICAgIGlmIChuZXh0U2lnbmF0dXJlID09PSByZWdpc3RyYXRpb24uY29ubmVjdGlvblNpZ25hdHVyZSkge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIHJlZ2lzdHJhdGlvbi5jb25uZWN0aW9uU2lnbmF0dXJlID0gbmV4dFNpZ25hdHVyZTtcbiAgICB0aGlzLl9zY2hlZHVsZVJlbGF5b3V0KGZsb3dJZCk7XG4gIH1cblxuICBwcml2YXRlIF9zY2hlZHVsZVJlbGF5b3V0KGZsb3dJZDogc3RyaW5nKTogdm9pZCB7XG4gICAgY29uc3QgcmVnaXN0cmF0aW9uID0gdGhpcy5fZmxvd3MuZ2V0KGZsb3dJZCk7XG5cbiAgICBpZiAoIXJlZ2lzdHJhdGlvbiB8fCAhdGhpcy5fZW5naW5lIHx8IHRoaXMuX2VuZ2luZS5nZXRNb2RlKCkgIT09IEVGTGF5b3V0TW9kZS5BVVRPKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgaWYgKHJlZ2lzdHJhdGlvbi50aW1lb3V0SWQgIT09IG51bGwpIHtcbiAgICAgIGNsZWFyVGltZW91dChyZWdpc3RyYXRpb24udGltZW91dElkKTtcbiAgICB9XG5cbiAgICB0aGlzLl9jYW5jZWxBbmltYXRpb25GcmFtZXMocmVnaXN0cmF0aW9uKTtcbiAgICByZWdpc3RyYXRpb24udGltZW91dElkID0gc2V0VGltZW91dCgoKSA9PiB7XG4gICAgICByZWdpc3RyYXRpb24udGltZW91dElkID0gbnVsbDtcbiAgICAgIHRoaXMuX3J1bkFmdGVyTmV4dFBhaW50KHJlZ2lzdHJhdGlvbiwgKCkgPT4gdm9pZCB0aGlzLl9yZWxheW91dEZsb3dJZlJlYWR5KGZsb3dJZCkpO1xuICAgIH0sIEZMT1dfTEFZT1VUX0RFQk9VTkNFX01TKTtcbiAgfVxuXG4gIHByaXZhdGUgYXN5bmMgX3JlbGF5b3V0Rmxvd0lmUmVhZHkoZmxvd0lkOiBzdHJpbmcpOiBQcm9taXNlPHZvaWQ+IHtcbiAgICBjb25zdCByZWdpc3RyYXRpb24gPSB0aGlzLl9mbG93cy5nZXQoZmxvd0lkKTtcblxuICAgIGlmICghcmVnaXN0cmF0aW9uIHx8ICF0aGlzLl9lbmdpbmUgfHwgdGhpcy5fZW5naW5lLmdldE1vZGUoKSAhPT0gRUZMYXlvdXRNb2RlLkFVVE8pIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBpZiAocmVnaXN0cmF0aW9uLnN0b3JlLmhhc1BlbmRpbmdQcm9ncmVzc2l2ZVJlbmRlcikge1xuICAgICAgdGhpcy5fc2NoZWR1bGVSZWxheW91dChmbG93SWQpO1xuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgYXdhaXQgdGhpcy5fcmVsYXlvdXRSZWdpc3RlcmVkRmxvdyhmbG93SWQsIHJlZ2lzdHJhdGlvbik7XG4gIH1cblxuICBwcml2YXRlIGFzeW5jIF9yZWxheW91dFJlZ2lzdGVyZWRGbG93KFxuICAgIGZsb3dJZDogc3RyaW5nLFxuICAgIHJlZ2lzdHJhdGlvbjogSUZsb3dSZWdpc3RyYXRpb24sXG4gICk6IFByb21pc2U8dm9pZD4ge1xuICAgIGlmICghdGhpcy5fZW5naW5lKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgY29uc3QgZ3JhcGggPSBub3JtYWxpemVGbG93TGF5b3V0RGF0YShyZWdpc3RyYXRpb24uZmxvdy5nZXRTdGF0ZSh7IG1lYXN1cmVkU2l6ZTogdHJ1ZSB9KSk7XG4gICAgY29uc3QgcnVuSWQgPSArK3JlZ2lzdHJhdGlvbi5ydW5JZDtcbiAgICBjb25zdCByZXN1bHQgPSBhd2FpdCB0aGlzLl9lbmdpbmUuY2FsY3VsYXRlKGdyYXBoLm5vZGVzLCBncmFwaC5jb25uZWN0aW9ucywge1xuICAgICAgZmxvd0lkLFxuICAgICAgbW9kZTogdGhpcy5fZW5naW5lLmdldE1vZGUoKSxcbiAgICB9KTtcbiAgICBjb25zdCBuZXh0UmVnaXN0cmF0aW9uID0gdGhpcy5fZmxvd3MuZ2V0KGZsb3dJZCk7XG5cbiAgICBpZiAoIW5leHRSZWdpc3RyYXRpb24gfHwgbmV4dFJlZ2lzdHJhdGlvbi5ydW5JZCAhPT0gcnVuSWQpIHtcbiAgICAgIHJldHVybjtcbiAgICB9XG5cbiAgICBjb25zdCBjaGFuZ2VkTm9kZXMgPSB0aGlzLl9hcHBseVBvc2l0aW9ucyhuZXh0UmVnaXN0cmF0aW9uLnN0b3JlLCByZXN1bHQubm9kZXMpO1xuXG4gICAgaWYgKCFjaGFuZ2VkTm9kZXMubGVuZ3RoKSB7XG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgbmV4dFJlZ2lzdHJhdGlvbi5pc0FwcGx5aW5nID0gdHJ1ZTtcblxuICAgIHRyeSB7XG4gICAgICBuZXh0UmVnaXN0cmF0aW9uLmZsb3cucmVkcmF3KCk7XG4gICAgICB0aGlzLl9lbWl0V3JpdGViYWNrKGZsb3dJZCwgcmVzdWx0Lm5vZGVzLCBncmFwaC5ub2RlSWRzLCBncmFwaC5ncm91cElkcyk7XG4gICAgfSBmaW5hbGx5IHtcbiAgICAgIHF1ZXVlTWljcm90YXNrKCgpID0+IHtcbiAgICAgICAgY29uc3QgY3VycmVudCA9IHRoaXMuX2Zsb3dzLmdldChmbG93SWQpO1xuXG4gICAgICAgIGlmIChjdXJyZW50KSB7XG4gICAgICAgICAgY3VycmVudC5pc0FwcGx5aW5nID0gZmFsc2U7XG4gICAgICAgIH1cbiAgICAgIH0pO1xuICAgIH1cbiAgfVxuXG4gIHByaXZhdGUgX2VtaXRXcml0ZWJhY2soXG4gICAgZmxvd0lkOiBzdHJpbmcsXG4gICAgbm9kZXM6IElGTGF5b3V0Tm9kZVBvc2l0aW9uW10sXG4gICAgbm9kZUlkczogU2V0PHN0cmluZz4sXG4gICAgZ3JvdXBJZHM6IFNldDxzdHJpbmc+LFxuICApOiB2b2lkIHtcbiAgICBjb25zdCBoYW5kbGVyID0gdGhpcy5fZW5naW5lPy5nZXRXcml0ZWJhY2soKTtcblxuICAgIGlmICghaGFuZGxlcikge1xuICAgICAgcmV0dXJuO1xuICAgIH1cblxuICAgIGhhbmRsZXIoe1xuICAgICAgZmxvd0lkLFxuICAgICAgbm9kZXM6IG5vZGVzLmZpbHRlcigobm9kZSkgPT4gbm9kZUlkcy5oYXMobm9kZS5pZCkpLFxuICAgICAgZ3JvdXBzOiBub2Rlcy5maWx0ZXIoKG5vZGUpID0+IGdyb3VwSWRzLmhhcyhub2RlLmlkKSksXG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIF9hcHBseVBvc2l0aW9ucyhcbiAgICBzdG9yZTogRkNvbXBvbmVudHNTdG9yZSxcbiAgICBub2RlczogSUZMYXlvdXROb2RlUG9zaXRpb25bXSxcbiAgKTogSUZMYXlvdXROb2RlUG9zaXRpb25bXSB7XG4gICAgcmV0dXJuIG5vZGVzLmZpbHRlcigobm9kZSkgPT4ge1xuICAgICAgY29uc3QgcmVnaXN0ZXJlZE5vZGUgPSBzdG9yZS5ub2Rlcy5nZXQobm9kZS5pZCk7XG5cbiAgICAgIGlmICghcmVnaXN0ZXJlZE5vZGUgfHwgUG9pbnRFeHRlbnNpb25zLmlzRXF1YWwocmVnaXN0ZXJlZE5vZGUuX3Bvc2l0aW9uLCBub2RlLnBvc2l0aW9uKSkge1xuICAgICAgICByZXR1cm4gZmFsc2U7XG4gICAgICB9XG5cbiAgICAgIHJlZ2lzdGVyZWROb2RlLnBvc2l0aW9uLnNldCh7IC4uLm5vZGUucG9zaXRpb24gfSk7XG5cbiAgICAgIHJldHVybiB0cnVlO1xuICAgIH0pO1xuICB9XG5cbiAgcHJpdmF0ZSBfYnVpbGROb2RlU2lnbmF0dXJlKHN0b3JlOiBGQ29tcG9uZW50c1N0b3JlKTogc3RyaW5nIHtcbiAgICByZXR1cm4gc3RvcmUubm9kZXNcbiAgICAgIC5nZXRBbGwoKVxuICAgICAgLm1hcCgobm9kZSkgPT4gbm9kZS5mSWQoKSlcbiAgICAgIC5zb3J0KClcbiAgICAgIC5qb2luKCd8Jyk7XG4gIH1cblxuICBwcml2YXRlIF9idWlsZENvbm5lY3Rpb25TaWduYXR1cmUoc3RvcmU6IEZDb21wb25lbnRzU3RvcmUpOiBzdHJpbmcge1xuICAgIHJldHVybiBzdG9yZS5jb25uZWN0aW9uc1xuICAgICAgLmdldEFsbCgpXG4gICAgICAubWFwKChjb25uZWN0aW9uKSA9PiBgJHtjb25uZWN0aW9uLmZJZCgpfToke2Nvbm5lY3Rpb24uZk91dHB1dElkKCl9OiR7Y29ubmVjdGlvbi5mSW5wdXRJZCgpfWApXG4gICAgICAuc29ydCgpXG4gICAgICAuam9pbignfCcpO1xuICB9XG5cbiAgcHJpdmF0ZSBfcnVuQWZ0ZXJOZXh0UGFpbnQocmVnaXN0cmF0aW9uOiBJRmxvd1JlZ2lzdHJhdGlvbiwgY2FsbGJhY2s6ICgpID0+IHZvaWQpOiB2b2lkIHtcbiAgICB0aGlzLl9jYW5jZWxBbmltYXRpb25GcmFtZXMocmVnaXN0cmF0aW9uKTtcblxuICAgIGlmICh0eXBlb2YgcmVxdWVzdEFuaW1hdGlvbkZyYW1lICE9PSAnZnVuY3Rpb24nKSB7XG4gICAgICBjYWxsYmFjaygpO1xuXG4gICAgICByZXR1cm47XG4gICAgfVxuXG4gICAgcmVnaXN0cmF0aW9uLnJhZjEgPSByZXF1ZXN0QW5pbWF0aW9uRnJhbWUoKCkgPT4ge1xuICAgICAgcmVnaXN0cmF0aW9uLnJhZjEgPSBudWxsO1xuICAgICAgcmVnaXN0cmF0aW9uLnJhZjIgPSByZXF1ZXN0QW5pbWF0aW9uRnJhbWUoKCkgPT4ge1xuICAgICAgICByZWdpc3RyYXRpb24ucmFmMiA9IG51bGw7XG4gICAgICAgIGNhbGxiYWNrKCk7XG4gICAgICB9KTtcbiAgICB9KTtcbiAgfVxuXG4gIHByaXZhdGUgX2NsZWFyU2NoZWR1bGVkV29yayhyZWdpc3RyYXRpb246IElGbG93UmVnaXN0cmF0aW9uKTogdm9pZCB7XG4gICAgaWYgKHJlZ2lzdHJhdGlvbi50aW1lb3V0SWQgIT09IG51bGwpIHtcbiAgICAgIGNsZWFyVGltZW91dChyZWdpc3RyYXRpb24udGltZW91dElkKTtcbiAgICAgIHJlZ2lzdHJhdGlvbi50aW1lb3V0SWQgPSBudWxsO1xuICAgIH1cblxuICAgIHRoaXMuX2NhbmNlbEFuaW1hdGlvbkZyYW1lcyhyZWdpc3RyYXRpb24pO1xuICB9XG5cbiAgcHJpdmF0ZSBfY2FuY2VsQW5pbWF0aW9uRnJhbWVzKHJlZ2lzdHJhdGlvbjogSUZsb3dSZWdpc3RyYXRpb24pOiB2b2lkIHtcbiAgICBpZiAocmVnaXN0cmF0aW9uLnJhZjEgIT09IG51bGwgJiYgdHlwZW9mIGNhbmNlbEFuaW1hdGlvbkZyYW1lID09PSAnZnVuY3Rpb24nKSB7XG4gICAgICBjYW5jZWxBbmltYXRpb25GcmFtZShyZWdpc3RyYXRpb24ucmFmMSk7XG4gICAgICByZWdpc3RyYXRpb24ucmFmMSA9IG51bGw7XG4gICAgfVxuXG4gICAgaWYgKHJlZ2lzdHJhdGlvbi5yYWYyICE9PSBudWxsICYmIHR5cGVvZiBjYW5jZWxBbmltYXRpb25GcmFtZSA9PT0gJ2Z1bmN0aW9uJykge1xuICAgICAgY2FuY2VsQW5pbWF0aW9uRnJhbWUocmVnaXN0cmF0aW9uLnJhZjIpO1xuICAgICAgcmVnaXN0cmF0aW9uLnJhZjIgPSBudWxsO1xuICAgIH1cbiAgfVxufVxuIl19
@@ -0,0 +1,3 @@
1
+ export * from './f-layout-controller';
2
+ export * from './normalize-flow-layout-data';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvZmxvdy1pbnRlZ3JhdGlvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHVCQUF1QixDQUFDO0FBQ3RDLGNBQWMsOEJBQThCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtbGF5b3V0LWNvbnRyb2xsZXInO1xuZXhwb3J0ICogZnJvbSAnLi9ub3JtYWxpemUtZmxvdy1sYXlvdXQtZGF0YSc7XG4iXX0=
@@ -0,0 +1,35 @@
1
+ export function normalizeFlowLayoutData(state) {
2
+ const nodes = [...state.nodes.map(mapNode), ...state.groups.map(mapNode)];
3
+ const nodeIds = new Set(state.nodes.map((node) => node.id));
4
+ const groupIds = new Set(state.groups.map((group) => group.id));
5
+ const outputNodeIds = new Map();
6
+ const inputNodeIds = new Map();
7
+ for (const item of [...state.nodes, ...state.groups]) {
8
+ for (const output of item.fOutputs) {
9
+ outputNodeIds.set(output.id, item.id);
10
+ }
11
+ for (const input of item.fInputs) {
12
+ inputNodeIds.set(input.id, item.id);
13
+ }
14
+ }
15
+ const connections = state.connections.reduce((result, connection) => {
16
+ const sourceNodeId = outputNodeIds.get(connection.fOutputId);
17
+ const targetNodeId = inputNodeIds.get(connection.fInputId);
18
+ if (!sourceNodeId || !targetNodeId) {
19
+ return result;
20
+ }
21
+ result.push({
22
+ source: sourceNodeId,
23
+ target: targetNodeId,
24
+ });
25
+ return result;
26
+ }, []);
27
+ return { nodes, connections, nodeIds, groupIds };
28
+ }
29
+ function mapNode(node) {
30
+ return {
31
+ id: node.id,
32
+ size: node.measuredSize ? { ...node.measuredSize } : node.size ? { ...node.size } : undefined,
33
+ };
34
+ }
35
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibm9ybWFsaXplLWZsb3ctbGF5b3V0LWRhdGEuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvZmxvdy1pbnRlZ3JhdGlvbi9ub3JtYWxpemUtZmxvdy1sYXlvdXQtZGF0YS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFRQSxNQUFNLFVBQVUsdUJBQXVCLENBQUMsS0FBa0I7SUFDeEQsTUFBTSxLQUFLLEdBQUcsQ0FBQyxHQUFHLEtBQUssQ0FBQyxLQUFLLENBQUMsR0FBRyxDQUFDLE9BQU8sQ0FBQyxFQUFFLEdBQUcsS0FBSyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsT0FBTyxDQUFDLENBQUMsQ0FBQztJQUMxRSxNQUFNLE9BQU8sR0FBRyxJQUFJLEdBQUcsQ0FBQyxLQUFLLENBQUMsS0FBSyxDQUFDLEdBQUcsQ0FBQyxDQUFDLElBQUksRUFBRSxFQUFFLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDLENBQUM7SUFDNUQsTUFBTSxRQUFRLEdBQUcsSUFBSSxHQUFHLENBQUMsS0FBSyxDQUFDLE1BQU0sQ0FBQyxHQUFHLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRSxDQUFDLEtBQUssQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO0lBQ2hFLE1BQU0sYUFBYSxHQUFHLElBQUksR0FBRyxFQUFrQixDQUFDO0lBQ2hELE1BQU0sWUFBWSxHQUFHLElBQUksR0FBRyxFQUFrQixDQUFDO0lBRS9DLEtBQUssTUFBTSxJQUFJLElBQUksQ0FBQyxHQUFHLEtBQUssQ0FBQyxLQUFLLEVBQUUsR0FBRyxLQUFLLENBQUMsTUFBTSxDQUFDLEVBQUUsQ0FBQztRQUNyRCxLQUFLLE1BQU0sTUFBTSxJQUFJLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNuQyxhQUFhLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ3hDLENBQUM7UUFFRCxLQUFLLE1BQU0sS0FBSyxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNqQyxZQUFZLENBQUMsR0FBRyxDQUFDLEtBQUssQ0FBQyxFQUFFLEVBQUUsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBQ3RDLENBQUM7SUFDSCxDQUFDO0lBRUQsTUFBTSxXQUFXLEdBQUcsS0FBSyxDQUFDLFdBQVcsQ0FBQyxNQUFNLENBQXVCLENBQUMsTUFBTSxFQUFFLFVBQVUsRUFBRSxFQUFFO1FBQ3hGLE1BQU0sWUFBWSxHQUFHLGFBQWEsQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLFNBQVMsQ0FBQyxDQUFDO1FBQzdELE1BQU0sWUFBWSxHQUFHLFlBQVksQ0FBQyxHQUFHLENBQUMsVUFBVSxDQUFDLFFBQVEsQ0FBQyxDQUFDO1FBRTNELElBQUksQ0FBQyxZQUFZLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztZQUNuQyxPQUFPLE1BQU0sQ0FBQztRQUNoQixDQUFDO1FBRUQsTUFBTSxDQUFDLElBQUksQ0FBQztZQUNWLE1BQU0sRUFBRSxZQUFZO1lBQ3BCLE1BQU0sRUFBRSxZQUFZO1NBQ3JCLENBQUMsQ0FBQztRQUVILE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztJQUVQLE9BQU8sRUFBRSxLQUFLLEVBQUUsV0FBVyxFQUFFLE9BQU8sRUFBRSxRQUFRLEVBQUUsQ0FBQztBQUNuRCxDQUFDO0FBRUQsU0FBUyxPQUFPLENBQUMsSUFBa0M7SUFDakQsT0FBTztRQUNMLEVBQUUsRUFBRSxJQUFJLENBQUMsRUFBRTtRQUNYLElBQUksRUFBRSxJQUFJLENBQUMsWUFBWSxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsSUFBSSxDQUFDLFlBQVksRUFBRSxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUMsQ0FBQyxFQUFFLEdBQUcsSUFBSSxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsQ0FBQyxTQUFTO0tBQzlGLENBQUM7QUFDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUZGbG93U3RhdGUgfSBmcm9tICcuLi8uLi9kb21haW4nO1xuaW1wb3J0IHsgSUZMYXlvdXRDb25uZWN0aW9uLCBJRkxheW91dEdyYXBoLCBJRkxheW91dE5vZGUgfSBmcm9tICcuLi9tb2RlbHMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElGbG93TGF5b3V0Tm9ybWFsaXphdGlvblJlc3VsdCBleHRlbmRzIElGTGF5b3V0R3JhcGgge1xuICBub2RlSWRzOiBTZXQ8c3RyaW5nPjtcbiAgZ3JvdXBJZHM6IFNldDxzdHJpbmc+O1xufVxuXG5leHBvcnQgZnVuY3Rpb24gbm9ybWFsaXplRmxvd0xheW91dERhdGEoc3RhdGU6IElGRmxvd1N0YXRlKTogSUZsb3dMYXlvdXROb3JtYWxpemF0aW9uUmVzdWx0IHtcbiAgY29uc3Qgbm9kZXMgPSBbLi4uc3RhdGUubm9kZXMubWFwKG1hcE5vZGUpLCAuLi5zdGF0ZS5ncm91cHMubWFwKG1hcE5vZGUpXTtcbiAgY29uc3Qgbm9kZUlkcyA9IG5ldyBTZXQoc3RhdGUubm9kZXMubWFwKChub2RlKSA9PiBub2RlLmlkKSk7XG4gIGNvbnN0IGdyb3VwSWRzID0gbmV3IFNldChzdGF0ZS5ncm91cHMubWFwKChncm91cCkgPT4gZ3JvdXAuaWQpKTtcbiAgY29uc3Qgb3V0cHV0Tm9kZUlkcyA9IG5ldyBNYXA8c3RyaW5nLCBzdHJpbmc+KCk7XG4gIGNvbnN0IGlucHV0Tm9kZUlkcyA9IG5ldyBNYXA8c3RyaW5nLCBzdHJpbmc+KCk7XG5cbiAgZm9yIChjb25zdCBpdGVtIG9mIFsuLi5zdGF0ZS5ub2RlcywgLi4uc3RhdGUuZ3JvdXBzXSkge1xuICAgIGZvciAoY29uc3Qgb3V0cHV0IG9mIGl0ZW0uZk91dHB1dHMpIHtcbiAgICAgIG91dHB1dE5vZGVJZHMuc2V0KG91dHB1dC5pZCwgaXRlbS5pZCk7XG4gICAgfVxuXG4gICAgZm9yIChjb25zdCBpbnB1dCBvZiBpdGVtLmZJbnB1dHMpIHtcbiAgICAgIGlucHV0Tm9kZUlkcy5zZXQoaW5wdXQuaWQsIGl0ZW0uaWQpO1xuICAgIH1cbiAgfVxuXG4gIGNvbnN0IGNvbm5lY3Rpb25zID0gc3RhdGUuY29ubmVjdGlvbnMucmVkdWNlPElGTGF5b3V0Q29ubmVjdGlvbltdPigocmVzdWx0LCBjb25uZWN0aW9uKSA9PiB7XG4gICAgY29uc3Qgc291cmNlTm9kZUlkID0gb3V0cHV0Tm9kZUlkcy5nZXQoY29ubmVjdGlvbi5mT3V0cHV0SWQpO1xuICAgIGNvbnN0IHRhcmdldE5vZGVJZCA9IGlucHV0Tm9kZUlkcy5nZXQoY29ubmVjdGlvbi5mSW5wdXRJZCk7XG5cbiAgICBpZiAoIXNvdXJjZU5vZGVJZCB8fCAhdGFyZ2V0Tm9kZUlkKSB7XG4gICAgICByZXR1cm4gcmVzdWx0O1xuICAgIH1cblxuICAgIHJlc3VsdC5wdXNoKHtcbiAgICAgIHNvdXJjZTogc291cmNlTm9kZUlkLFxuICAgICAgdGFyZ2V0OiB0YXJnZXROb2RlSWQsXG4gICAgfSk7XG5cbiAgICByZXR1cm4gcmVzdWx0O1xuICB9LCBbXSk7XG5cbiAgcmV0dXJuIHsgbm9kZXMsIGNvbm5lY3Rpb25zLCBub2RlSWRzLCBncm91cElkcyB9O1xufVxuXG5mdW5jdGlvbiBtYXBOb2RlKG5vZGU6IElGRmxvd1N0YXRlWydub2RlcyddW251bWJlcl0pOiBJRkxheW91dE5vZGUge1xuICByZXR1cm4ge1xuICAgIGlkOiBub2RlLmlkLFxuICAgIHNpemU6IG5vZGUubWVhc3VyZWRTaXplID8geyAuLi5ub2RlLm1lYXN1cmVkU2l6ZSB9IDogbm9kZS5zaXplID8geyAuLi5ub2RlLnNpemUgfSA6IHVuZGVmaW5lZCxcbiAgfTtcbn1cbiJdfQ==
@@ -0,0 +1,6 @@
1
+ export * from './enums';
2
+ export * from './flow-integration';
3
+ export * from './f-layout-engine';
4
+ export * from './models';
5
+ export * from './providers';
6
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxTQUFTLENBQUM7QUFDeEIsY0FBYyxvQkFBb0IsQ0FBQztBQUNuQyxjQUFjLG1CQUFtQixDQUFDO0FBQ2xDLGNBQWMsVUFBVSxDQUFDO0FBQ3pCLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9lbnVtcyc7XG5leHBvcnQgKiBmcm9tICcuL2Zsb3ctaW50ZWdyYXRpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9mLWxheW91dC1lbmdpbmUnO1xuZXhwb3J0ICogZnJvbSAnLi9tb2RlbHMnO1xuZXhwb3J0ICogZnJvbSAnLi9wcm92aWRlcnMnO1xuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1hbGdvcml0aG0tb3B0aW9ucy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWxheW91dC9tb2RlbHMvaS1mLWxheW91dC1hbGdvcml0aG0tb3B0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUZMYXlvdXRPcHRpb25zIH0gZnJvbSAnLi9pLWYtbGF5b3V0LW9wdGlvbnMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElGTGF5b3V0QWxnb3JpdGhtT3B0aW9uczxUQWxnb3JpdGhtIGV4dGVuZHMgc3RyaW5nID0gc3RyaW5nPlxuICBleHRlbmRzIElGTGF5b3V0T3B0aW9uczxUQWxnb3JpdGhtPiB7fVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1jYWxjdWxhdGlvbi1vcHRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9pLWYtbGF5b3V0LWNhbGN1bGF0aW9uLW9wdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEVGTGF5b3V0TW9kZSB9IGZyb20gJy4uL2VudW1zJztcbmltcG9ydCB7IElGTGF5b3V0T3B0aW9ucyB9IGZyb20gJy4vaS1mLWxheW91dC1vcHRpb25zJztcblxuZXhwb3J0IHR5cGUgSUZMYXlvdXRDYWxjdWxhdGlvbk9wdGlvbnM8XG4gIFRPcHRpb25zIGV4dGVuZHMgSUZMYXlvdXRPcHRpb25zPHN0cmluZz4gPSBJRkxheW91dE9wdGlvbnM8c3RyaW5nPixcbj4gPSBQYXJ0aWFsPFRPcHRpb25zPiAmIHtcbiAgZmxvd0lkPzogc3RyaW5nO1xuICBtb2RlPzogRUZMYXlvdXRNb2RlO1xufTtcbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1jb25uZWN0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9pLWYtbGF5b3V0LWNvbm5lY3Rpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSUZMYXlvdXRDb25uZWN0aW9uIHtcbiAgc291cmNlOiBzdHJpbmc7XG4gIHRhcmdldDogc3RyaW5nO1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1ncmFwaC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWxheW91dC9tb2RlbHMvaS1mLWxheW91dC1ncmFwaC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUZMYXlvdXRDb25uZWN0aW9uIH0gZnJvbSAnLi9pLWYtbGF5b3V0LWNvbm5lY3Rpb24nO1xuaW1wb3J0IHsgSUZMYXlvdXROb2RlIH0gZnJvbSAnLi9pLWYtbGF5b3V0LW5vZGUnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElGTGF5b3V0R3JhcGg8XG4gIFROb2RlIGV4dGVuZHMgSUZMYXlvdXROb2RlID0gSUZMYXlvdXROb2RlLFxuICBUQ29ubmVjdGlvbiBleHRlbmRzIElGTGF5b3V0Q29ubmVjdGlvbiA9IElGTGF5b3V0Q29ubmVjdGlvbixcbj4ge1xuICBub2RlczogVE5vZGVbXTtcbiAgY29ubmVjdGlvbnM6IFRDb25uZWN0aW9uW107XG59XG4iXX0=
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1ub2RlLXBvc2l0aW9uLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9pLWYtbGF5b3V0LW5vZGUtcG9zaXRpb24udHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElQb2ludCB9IGZyb20gJ0Bmb2JsZXgvMmQnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElGTGF5b3V0Tm9kZVBvc2l0aW9uIHtcbiAgaWQ6IHN0cmluZztcbiAgcG9zaXRpb246IElQb2ludDtcbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1ub2RlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9pLWYtbGF5b3V0LW5vZGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElTaXplIH0gZnJvbSAnQGZvYmxleC8yZCc7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUZMYXlvdXROb2RlIHtcbiAgaWQ6IHN0cmluZztcbiAgc2l6ZT86IElTaXplO1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1vcHRpb25zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9pLWYtbGF5b3V0LW9wdGlvbnMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IElTaXplIH0gZnJvbSAnQGZvYmxleC8yZCc7XG5pbXBvcnQgeyBFRkxheW91dERpcmVjdGlvbiB9IGZyb20gJy4uL2VudW1zJztcblxuZXhwb3J0IGludGVyZmFjZSBJRkxheW91dE9wdGlvbnM8VEFsZ29yaXRobSBleHRlbmRzIHN0cmluZyA9IHN0cmluZz4ge1xuICBkaXJlY3Rpb246IEVGTGF5b3V0RGlyZWN0aW9uO1xuXG4gIG5vZGVHYXA6IG51bWJlcjtcblxuICBsYXllckdhcDogbnVtYmVyO1xuXG4gIGFsZ29yaXRobTogVEFsZ29yaXRobTtcblxuICBkZWZhdWx0Tm9kZVNpemU6IElTaXplO1xufVxuIl19
@@ -0,0 +1,3 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ export const F_LAYOUT_OPTIONS = new InjectionToken('F_LAYOUT_OPTIONS');
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1wcm92aWRlci1jb25maWcuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvbW9kZWxzL2ktZi1sYXlvdXQtcHJvdmlkZXItY29uZmlnLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUdBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFL0MsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQUcsSUFBSSxjQUFjLENBQXlCLGtCQUFrQixDQUFDLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBFRkxheW91dE1vZGUgfSBmcm9tICcuLi9lbnVtcyc7XG5pbXBvcnQgeyBJRkxheW91dE9wdGlvbnMgfSBmcm9tICcuL2ktZi1sYXlvdXQtb3B0aW9ucyc7XG5pbXBvcnQgeyBURkxheW91dFdyaXRlYmFja0hhbmRsZXIgfSBmcm9tICcuL2ktZi1sYXlvdXQtd3JpdGViYWNrLXBheWxvYWQnO1xuaW1wb3J0IHsgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IGNvbnN0IEZfTEFZT1VUX09QVElPTlMgPSBuZXcgSW5qZWN0aW9uVG9rZW48SUZMYXlvdXRQcm92aWRlckNvbmZpZz4oJ0ZfTEFZT1VUX09QVElPTlMnKTtcblxuZXhwb3J0IGludGVyZmFjZSBJRkxheW91dFByb3ZpZGVyQ29uZmlnPFxuICBUT3B0aW9ucyBleHRlbmRzIElGTGF5b3V0T3B0aW9uczxzdHJpbmc+ID0gSUZMYXlvdXRPcHRpb25zPHN0cmluZz4sXG4+IHtcbiAgbW9kZT86IEVGTGF5b3V0TW9kZTtcblxuICB3cml0ZWJhY2s/OiBURkxheW91dFdyaXRlYmFja0hhbmRsZXIgfCBudWxsO1xuXG4gIG9wdGlvbnM/OiBQYXJ0aWFsPFRPcHRpb25zPjtcbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC1yZXN1bHQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvbW9kZWxzL2ktZi1sYXlvdXQtcmVzdWx0LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJRkxheW91dE5vZGVQb3NpdGlvbiB9IGZyb20gJy4vaS1mLWxheW91dC1ub2RlLXBvc2l0aW9uJztcblxuZXhwb3J0IGludGVyZmFjZSBJRkxheW91dFJlc3VsdCB7XG4gIG5vZGVzOiBJRkxheW91dE5vZGVQb3NpdGlvbltdO1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1mLWxheW91dC13cml0ZWJhY2stcGF5bG9hZC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLWxheW91dC9tb2RlbHMvaS1mLWxheW91dC13cml0ZWJhY2stcGF5bG9hZC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSUZMYXlvdXROb2RlUG9zaXRpb24gfSBmcm9tICcuL2ktZi1sYXlvdXQtbm9kZS1wb3NpdGlvbic7XG5cbmV4cG9ydCBpbnRlcmZhY2UgSUZMYXlvdXRXcml0ZWJhY2tQYXlsb2FkIHtcbiAgZmxvd0lkOiBzdHJpbmc7XG5cbiAgbm9kZXM6IElGTGF5b3V0Tm9kZVBvc2l0aW9uW107XG5cbiAgZ3JvdXBzOiBJRkxheW91dE5vZGVQb3NpdGlvbltdO1xufVxuXG5leHBvcnQgdHlwZSBURkxheW91dFdyaXRlYmFja0hhbmRsZXIgPSAocGF5bG9hZDogSUZMYXlvdXRXcml0ZWJhY2tQYXlsb2FkKSA9PiB2b2lkO1xuIl19
@@ -0,0 +1,12 @@
1
+ export * from './i-f-layout-algorithm-options';
2
+ export * from './i-f-layout-calculation-options';
3
+ export * from './i-f-layout-connection';
4
+ export * from './i-f-layout-graph';
5
+ export * from './i-f-layout-node';
6
+ export * from './i-f-layout-node-position';
7
+ export * from './i-f-layout-options';
8
+ export * from './i-f-layout-provider-config';
9
+ export * from './i-f-layout-result';
10
+ export * from './i-f-layout-writeback-payload';
11
+ export * from './merge-layout-nodes';
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1sYXlvdXQvbW9kZWxzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsb0JBQW9CLENBQUM7QUFDbkMsY0FBYyxtQkFBbUIsQ0FBQztBQUNsQyxjQUFjLDRCQUE0QixDQUFDO0FBQzNDLGNBQWMsc0JBQXNCLENBQUM7QUFDckMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLHFCQUFxQixDQUFDO0FBQ3BDLGNBQWMsZ0NBQWdDLENBQUM7QUFDL0MsY0FBYyxzQkFBc0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vaS1mLWxheW91dC1hbGdvcml0aG0tb3B0aW9ucyc7XG5leHBvcnQgKiBmcm9tICcuL2ktZi1sYXlvdXQtY2FsY3VsYXRpb24tb3B0aW9ucyc7XG5leHBvcnQgKiBmcm9tICcuL2ktZi1sYXlvdXQtY29ubmVjdGlvbic7XG5leHBvcnQgKiBmcm9tICcuL2ktZi1sYXlvdXQtZ3JhcGgnO1xuZXhwb3J0ICogZnJvbSAnLi9pLWYtbGF5b3V0LW5vZGUnO1xuZXhwb3J0ICogZnJvbSAnLi9pLWYtbGF5b3V0LW5vZGUtcG9zaXRpb24nO1xuZXhwb3J0ICogZnJvbSAnLi9pLWYtbGF5b3V0LW9wdGlvbnMnO1xuZXhwb3J0ICogZnJvbSAnLi9pLWYtbGF5b3V0LXByb3ZpZGVyLWNvbmZpZyc7XG5leHBvcnQgKiBmcm9tICcuL2ktZi1sYXlvdXQtcmVzdWx0JztcbmV4cG9ydCAqIGZyb20gJy4vaS1mLWxheW91dC13cml0ZWJhY2stcGF5bG9hZCc7XG5leHBvcnQgKiBmcm9tICcuL21lcmdlLWxheW91dC1ub2Rlcyc7XG4iXX0=
@@ -0,0 +1,14 @@
1
+ export function mergeLayoutNodes(nodes, positions) {
2
+ return nodes.reduce((result, node) => {
3
+ const position = positions.get(node.id);
4
+ if (!position) {
5
+ return result;
6
+ }
7
+ result.push({
8
+ id: node.id,
9
+ position,
10
+ });
11
+ return result;
12
+ }, []);
13
+ }
14
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibWVyZ2UtbGF5b3V0LW5vZGVzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L21vZGVscy9tZXJnZS1sYXlvdXQtbm9kZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBSUEsTUFBTSxVQUFVLGdCQUFnQixDQUM5QixLQUFxQixFQUNyQixTQUE4QjtJQUU5QixPQUFPLEtBQUssQ0FBQyxNQUFNLENBQXlCLENBQUMsTUFBTSxFQUFFLElBQUksRUFBRSxFQUFFO1FBQzNELE1BQU0sUUFBUSxHQUFHLFNBQVMsQ0FBQyxHQUFHLENBQUMsSUFBSSxDQUFDLEVBQUUsQ0FBQyxDQUFDO1FBRXhDLElBQUksQ0FBQyxRQUFRLEVBQUUsQ0FBQztZQUNkLE9BQU8sTUFBTSxDQUFDO1FBQ2hCLENBQUM7UUFFRCxNQUFNLENBQUMsSUFBSSxDQUFDO1lBQ1YsRUFBRSxFQUFFLElBQUksQ0FBQyxFQUFFO1lBQ1gsUUFBUTtTQUNULENBQUMsQ0FBQztRQUVILE9BQU8sTUFBTSxDQUFDO0lBQ2hCLENBQUMsRUFBRSxFQUFFLENBQUMsQ0FBQztBQUNULENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBJUG9pbnQgfSBmcm9tICdAZm9ibGV4LzJkJztcbmltcG9ydCB7IElGTGF5b3V0Tm9kZSB9IGZyb20gJy4vaS1mLWxheW91dC1ub2RlJztcbmltcG9ydCB7IElGTGF5b3V0Tm9kZVBvc2l0aW9uIH0gZnJvbSAnLi9pLWYtbGF5b3V0LW5vZGUtcG9zaXRpb24nO1xuXG5leHBvcnQgZnVuY3Rpb24gbWVyZ2VMYXlvdXROb2RlcyhcbiAgbm9kZXM6IElGTGF5b3V0Tm9kZVtdLFxuICBwb3NpdGlvbnM6IE1hcDxzdHJpbmcsIElQb2ludD4sXG4pOiBJRkxheW91dE5vZGVQb3NpdGlvbltdIHtcbiAgcmV0dXJuIG5vZGVzLnJlZHVjZTxJRkxheW91dE5vZGVQb3NpdGlvbltdPigocmVzdWx0LCBub2RlKSA9PiB7XG4gICAgY29uc3QgcG9zaXRpb24gPSBwb3NpdGlvbnMuZ2V0KG5vZGUuaWQpO1xuXG4gICAgaWYgKCFwb3NpdGlvbikge1xuICAgICAgcmV0dXJuIHJlc3VsdDtcbiAgICB9XG5cbiAgICByZXN1bHQucHVzaCh7XG4gICAgICBpZDogbm9kZS5pZCxcbiAgICAgIHBvc2l0aW9uLFxuICAgIH0pO1xuXG4gICAgcmV0dXJuIHJlc3VsdDtcbiAgfSwgW10pO1xufVxuIl19
@@ -0,0 +1,18 @@
1
+ import { F_LAYOUT } from './f-layout-engine';
2
+ import { FLayoutController } from './flow-integration';
3
+ import { F_LAYOUT_OPTIONS } from './models';
4
+ export function provideFLayout(engineType, config) {
5
+ return [
6
+ FLayoutController,
7
+ engineType,
8
+ {
9
+ provide: F_LAYOUT,
10
+ useExisting: engineType,
11
+ },
12
+ {
13
+ provide: F_LAYOUT_OPTIONS,
14
+ useValue: config ?? {},
15
+ },
16
+ ];
17
+ }
18
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGF5b3V0L3Byb3ZpZGVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFDQSxPQUFPLEVBQUUsUUFBUSxFQUFpQixNQUFNLG1CQUFtQixDQUFDO0FBQzVELE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLG9CQUFvQixDQUFDO0FBQ3ZELE9BQU8sRUFBRSxnQkFBZ0IsRUFBMkMsTUFBTSxVQUFVLENBQUM7QUFFckYsTUFBTSxVQUFVLGNBQWMsQ0FHNUIsVUFBbUIsRUFBRSxNQUF5QztJQUM5RCxPQUFPO1FBQ0wsaUJBQWlCO1FBQ2pCLFVBQVU7UUFDVjtZQUNFLE9BQU8sRUFBRSxRQUFRO1lBQ2pCLFdBQVcsRUFBRSxVQUFVO1NBQ3hCO1FBQ0Q7WUFDRSxPQUFPLEVBQUUsZ0JBQWdCO1lBQ3pCLFFBQVEsRUFBRSxNQUFNLElBQUksRUFBRTtTQUN2QjtLQUNGLENBQUM7QUFDSixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgUHJvdmlkZXIsIFR5cGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZfTEFZT1VULCBGTGF5b3V0RW5naW5lIH0gZnJvbSAnLi9mLWxheW91dC1lbmdpbmUnO1xuaW1wb3J0IHsgRkxheW91dENvbnRyb2xsZXIgfSBmcm9tICcuL2Zsb3ctaW50ZWdyYXRpb24nO1xuaW1wb3J0IHsgRl9MQVlPVVRfT1BUSU9OUywgSUZMYXlvdXRPcHRpb25zLCBJRkxheW91dFByb3ZpZGVyQ29uZmlnIH0gZnJvbSAnLi9tb2RlbHMnO1xuXG5leHBvcnQgZnVuY3Rpb24gcHJvdmlkZUZMYXlvdXQ8XG4gIFRPcHRpb25zIGV4dGVuZHMgSUZMYXlvdXRPcHRpb25zPHN0cmluZz4sXG4gIFQgZXh0ZW5kcyBGTGF5b3V0RW5naW5lPFRPcHRpb25zPixcbj4oZW5naW5lVHlwZTogVHlwZTxUPiwgY29uZmlnPzogSUZMYXlvdXRQcm92aWRlckNvbmZpZzxUT3B0aW9ucz4pOiBQcm92aWRlcltdIHtcbiAgcmV0dXJuIFtcbiAgICBGTGF5b3V0Q29udHJvbGxlcixcbiAgICBlbmdpbmVUeXBlLFxuICAgIHtcbiAgICAgIHByb3ZpZGU6IEZfTEFZT1VULFxuICAgICAgdXNlRXhpc3Rpbmc6IGVuZ2luZVR5cGUsXG4gICAgfSxcbiAgICB7XG4gICAgICBwcm92aWRlOiBGX0xBWU9VVF9PUFRJT05TLFxuICAgICAgdXNlVmFsdWU6IGNvbmZpZyA/PyB7fSxcbiAgICB9LFxuICBdO1xufVxuIl19
@@ -28,4 +28,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
28
28
  'class': 'f-line-alignment f-component',
29
29
  }, providers: [{ provide: F_MAGNETIC_LINES, useExisting: FLineAlignmentComponent }], styles: [":host{display:block;position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none;-webkit-user-select:none;user-select:none}\n"] }]
30
30
  }] });
31
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1saW5lLWFsaWdubWVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2YtbGluZS1hbGlnbm1lbnQvZi1saW5lLWFsaWdubWVudC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLGVBQWUsRUFBcUIsTUFBTSxlQUFlLENBQUM7QUFDN0YsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGtCQUFrQixDQUFDO0FBQzdDLE9BQU8sRUFDTCxTQUFTLEVBQ1QsNkJBQTZCLEVBQzdCLDJCQUEyQixHQUM1QixNQUFNLGNBQWMsQ0FBQztBQUN0QixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQzs7QUFFM0U7OztHQUdHO0FBV0gsTUFBTSxPQUFPLHVCQUF3QixTQUFRLGtCQUFrQjtJQUNwQyxTQUFTLEdBQUcsS0FBSyxDQUFDLEVBQUUsRUFBRTtRQUM3QyxTQUFTLEVBQUUsZUFBZTtRQUMxQixLQUFLLEVBQUUsaUJBQWlCO0tBQ3pCLENBQUMsQ0FBQztJQUVjLFNBQVMsR0FBRyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUM7SUFFeEMsUUFBUTtRQUNiLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksNkJBQTZCLENBQUMsU0FBUyxDQUFDLGNBQWMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQzVGLENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksMkJBQTJCLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUM7SUFDcEYsQ0FBQzt3R0FkVSx1QkFBdUI7NEZBQXZCLHVCQUF1QiwyUEFGdkIsQ0FBQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsdUJBQXVCLEVBQUUsQ0FBQywyRUFOdEUsRUFBRTs7NEZBUUQsdUJBQXVCO2tCQVZuQyxTQUFTOytCQUNFLGtCQUFrQixZQUNsQixFQUFFLFlBRUYsWUFBWSxRQUNoQjt3QkFDSixPQUFPLEVBQUUsOEJBQThCO3FCQUN4QyxhQUNVLENBQUMsRUFBRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsV0FBVyx5QkFBeUIsRUFBRSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBpbmplY3QsIGlucHV0LCBudW1iZXJBdHRyaWJ1dGUsIE9uRGVzdHJveSwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGTWVkaWF0b3IgfSBmcm9tICdAZm9ibGV4L21lZGlhdG9yJztcbmltcG9ydCB7XG4gIElOU1RBTkNFUyxcbiAgUmVnaXN0ZXJQbHVnaW5JbnN0YW5jZVJlcXVlc3QsXG4gIFJlbW92ZVBsdWdpbkluc3RhbmNlUmVxdWVzdCxcbn0gZnJvbSAnLi4vZi1zdG9yYWdlJztcbmltcG9ydCB7IEZfTUFHTkVUSUNfTElORVMsIEZNYWduZXRpY0xpbmVzQmFzZSB9IGZyb20gJy4uL2YtbWFnbmV0aWMtbGluZXMnO1xuXG4vKipcbiAqIEBkZXByZWNhdGVkIFVzZSBgZi1tYWduZXRpYy1saW5lc2AgaW5zdGVhZC5cbiAqIFdpbGwgYmUgcmVtb3ZlZCBpbiB2MTkuMC4wLlxuICovXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdmLWxpbmUtYWxpZ25tZW50JyxcbiAgdGVtcGxhdGU6ICcnLFxuICBzdHlsZVVybHM6IFsnLi9mLWxpbmUtYWxpZ25tZW50LmNvbXBvbmVudC5zY3NzJ10sXG4gIGV4cG9ydEFzOiAnZkNvbXBvbmVudCcsXG4gIGhvc3Q6IHtcbiAgICAnY2xhc3MnOiAnZi1saW5lLWFsaWdubWVudCBmLWNvbXBvbmVudCcsXG4gIH0sXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogRl9NQUdORVRJQ19MSU5FUywgdXNlRXhpc3Rpbmc6IEZMaW5lQWxpZ25tZW50Q29tcG9uZW50IH1dLFxufSlcbmV4cG9ydCBjbGFzcyBGTGluZUFsaWdubWVudENvbXBvbmVudCBleHRlbmRzIEZNYWduZXRpY0xpbmVzQmFzZSBpbXBsZW1lbnRzIE9uSW5pdCwgT25EZXN0cm95IHtcbiAgcHVibGljIG92ZXJyaWRlIHJlYWRvbmx5IHRocmVzaG9sZCA9IGlucHV0KDEwLCB7XG4gICAgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUsXG4gICAgYWxpYXM6ICdmQWxpZ25UaHJlc2hvbGQnLFxuICB9KTtcblxuICBwcml2YXRlIHJlYWRvbmx5IF9tZWRpYXRvciA9IGluamVjdChGTWVkaWF0b3IpO1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZWdpc3RlclBsdWdpbkluc3RhbmNlUmVxdWVzdChJTlNUQU5DRVMuTUFHTkVUSUNfTElORVMsIHRoaXMpKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZW1vdmVQbHVnaW5JbnN0YW5jZVJlcXVlc3QoSU5TVEFOQ0VTLk1BR05FVElDX0xJTkVTKSk7XG4gIH1cbn1cbiJdfQ==
31
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1saW5lLWFsaWdubWVudC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1saW5lLWFsaWdubWVudC9mLWxpbmUtYWxpZ25tZW50LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sRUFBRSxLQUFLLEVBQUUsZUFBZSxFQUFxQixNQUFNLGVBQWUsQ0FBQztBQUM3RixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUNMLFNBQVMsRUFDVCw2QkFBNkIsRUFDN0IsMkJBQTJCLEdBQzVCLE1BQU0sY0FBYyxDQUFDO0FBQ3RCLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHFCQUFxQixDQUFDOztBQUUzRTs7O0dBR0c7QUFXSCxNQUFNLE9BQU8sdUJBQXdCLFNBQVEsa0JBQWtCO0lBQ3BDLFNBQVMsR0FBRyxLQUFLLENBQUMsRUFBRSxFQUFFO1FBQzdDLFNBQVMsRUFBRSxlQUFlO1FBQzFCLEtBQUssRUFBRSxpQkFBaUI7S0FDekIsQ0FBQyxDQUFDO0lBRWMsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUV4QyxRQUFRO1FBQ2IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsQ0FBQyxTQUFTLENBQUMsY0FBYyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUM7SUFDNUYsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSwyQkFBMkIsQ0FBQyxTQUFTLENBQUMsY0FBYyxDQUFDLENBQUMsQ0FBQztJQUNwRixDQUFDO3dHQWRVLHVCQUF1Qjs0RkFBdkIsdUJBQXVCLDJQQUZ2QixDQUFDLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsRUFBRSx1QkFBdUIsRUFBRSxDQUFDLDJFQU50RSxFQUFFOzs0RkFRRCx1QkFBdUI7a0JBVm5DLFNBQVM7K0JBQ0Usa0JBQWtCLFlBQ2xCLEVBQUUsWUFFRixZQUFZLFFBQ2hCO3dCQUNKLE9BQU8sRUFBRSw4QkFBOEI7cUJBQ3hDLGFBQ1UsQ0FBQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLHlCQUF5QixFQUFFLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIGluamVjdCwgaW5wdXQsIG51bWJlckF0dHJpYnV0ZSwgT25EZXN0cm95LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZNZWRpYXRvciB9IGZyb20gJ0Bmb2JsZXgvbWVkaWF0b3InO1xuaW1wb3J0IHtcbiAgSU5TVEFOQ0VTLFxuICBSZWdpc3RlclBsdWdpbkluc3RhbmNlUmVxdWVzdCxcbiAgUmVtb3ZlUGx1Z2luSW5zdGFuY2VSZXF1ZXN0LFxufSBmcm9tICcuLi9mLXN0b3JhZ2UnO1xuaW1wb3J0IHsgRl9NQUdORVRJQ19MSU5FUywgRk1hZ25ldGljTGluZXNCYXNlIH0gZnJvbSAnLi4vZi1tYWduZXRpYy1saW5lcyc7XG5cbi8qKlxuICogQGRlcHJlY2F0ZWQgVXNlIGBmLW1hZ25ldGljLWxpbmVzYCBpbnN0ZWFkLlxuICogV2lsbCBiZSByZW1vdmVkIGluIHYxOS4wLjAuXG4gKi9cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtbGluZS1hbGlnbm1lbnQnLFxuICB0ZW1wbGF0ZTogJycsXG4gIHN0eWxlVXJsczogWycuL2YtbGluZS1hbGlnbm1lbnQuY29tcG9uZW50LnNjc3MnXSxcbiAgZXhwb3J0QXM6ICdmQ29tcG9uZW50JyxcbiAgaG9zdDoge1xuICAgICdjbGFzcyc6ICdmLWxpbmUtYWxpZ25tZW50IGYtY29tcG9uZW50JyxcbiAgfSxcbiAgcHJvdmlkZXJzOiBbeyBwcm92aWRlOiBGX01BR05FVElDX0xJTkVTLCB1c2VFeGlzdGluZzogRkxpbmVBbGlnbm1lbnRDb21wb25lbnQgfV0sXG59KVxuZXhwb3J0IGNsYXNzIEZMaW5lQWxpZ25tZW50Q29tcG9uZW50IGV4dGVuZHMgRk1hZ25ldGljTGluZXNCYXNlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBwdWJsaWMgb3ZlcnJpZGUgcmVhZG9ubHkgdGhyZXNob2xkID0gaW5wdXQoMTAsIHtcbiAgICB0cmFuc2Zvcm06IG51bWJlckF0dHJpYnV0ZSxcbiAgICBhbGlhczogJ2ZBbGlnblRocmVzaG9sZCcsXG4gIH0pO1xuXG4gIHByaXZhdGUgcmVhZG9ubHkgX21lZGlhdG9yID0gaW5qZWN0KEZNZWRpYXRvcik7XG5cbiAgcHVibGljIG5nT25Jbml0KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFJlZ2lzdGVyUGx1Z2luSW5zdGFuY2VSZXF1ZXN0KElOU1RBTkNFUy5NQUdORVRJQ19MSU5FUywgdGhpcykpO1xuICB9XG5cbiAgcHVibGljIG5nT25EZXN0cm95KCk6IHZvaWQge1xuICAgIHRoaXMuX21lZGlhdG9yLmV4ZWN1dGUobmV3IFJlbW92ZVBsdWdpbkluc3RhbmNlUmVxdWVzdChJTlNUQU5DRVMuTUFHTkVUSUNfTElORVMpKTtcbiAgfVxufVxuIl19
@@ -1,3 +1,3 @@
1
1
  export * from './f-line-alignment.component';
2
2
  export * from './providers';
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2YtbGluZS1hbGlnbm1lbnQvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw4QkFBOEIsQ0FBQztBQUU3QyxjQUFjLGFBQWEsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZi1saW5lLWFsaWdubWVudC5jb21wb25lbnQnO1xuXG5leHBvcnQgKiBmcm9tICcuL3Byb3ZpZGVycyc7XG4iXX0=
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1saW5lLWFsaWdubWVudC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDhCQUE4QixDQUFDO0FBRTdDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLWxpbmUtYWxpZ25tZW50LmNvbXBvbmVudCc7XG5cbmV4cG9ydCAqIGZyb20gJy4vcHJvdmlkZXJzJztcbiJdfQ==
@@ -2,4 +2,4 @@ import { FLineAlignmentComponent } from './f-line-alignment.component';
2
2
  export const F_LINE_ALIGNMENT_PROVIDERS = [
3
3
  FLineAlignmentComponent,
4
4
  ];
5
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9mLWxpbmUtYWxpZ25tZW50L3Byb3ZpZGVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSw4QkFBOEIsQ0FBQztBQUV2RSxNQUFNLENBQUMsTUFBTSwwQkFBMEIsR0FBRztJQUN0Qyx1QkFBdUI7Q0FDMUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZMaW5lQWxpZ25tZW50Q29tcG9uZW50IH0gZnJvbSAnLi9mLWxpbmUtYWxpZ25tZW50LmNvbXBvbmVudCc7XG5cbmV4cG9ydCBjb25zdCBGX0xJTkVfQUxJR05NRU5UX1BST1ZJREVSUyA9IFtcbiAgICBGTGluZUFsaWdubWVudENvbXBvbmVudCxcbl07XG4iXX0=
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbGluZS1hbGlnbm1lbnQvcHJvdmlkZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxNQUFNLDhCQUE4QixDQUFDO0FBRXZFLE1BQU0sQ0FBQyxNQUFNLDBCQUEwQixHQUFHO0lBQ3RDLHVCQUF1QjtDQUMxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRkxpbmVBbGlnbm1lbnRDb21wb25lbnQgfSBmcm9tICcuL2YtbGluZS1hbGlnbm1lbnQuY29tcG9uZW50JztcblxuZXhwb3J0IGNvbnN0IEZfTElORV9BTElHTk1FTlRfUFJPVklERVJTID0gW1xuICAgIEZMaW5lQWxpZ25tZW50Q29tcG9uZW50LFxuXTtcbiJdfQ==
@@ -9,4 +9,4 @@ export class FMagneticLinesBase {
9
9
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: FMagneticLinesBase, decorators: [{
10
10
  type: Directive
11
11
  }] });
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1tYWduZXRpYy1saW5lcy1iYXNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9mLW1hZ25ldGljLWxpbmVzL2YtbWFnbmV0aWMtbGluZXMtYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsY0FBYyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQUV0RixNQUFNLENBQUMsTUFBTSxnQkFBZ0IsR0FBRyxJQUFJLGNBQWMsQ0FBcUIsa0JBQWtCLENBQUMsQ0FBQztBQUczRixNQUFNLE9BQWdCLGtCQUFrQjtJQUN0QixXQUFXLEdBQUcsTUFBTSxDQUFDLENBQUEsVUFBdUIsQ0FBQSxDQUFDLENBQUMsYUFBYSxDQUFDO3dHQUR4RCxrQkFBa0I7NEZBQWxCLGtCQUFrQjs7NEZBQWxCLGtCQUFrQjtrQkFEdkMsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgaW5qZWN0LCBJbmplY3Rpb25Ub2tlbiwgU2lnbmFsIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmV4cG9ydCBjb25zdCBGX01BR05FVElDX0xJTkVTID0gbmV3IEluamVjdGlvblRva2VuPEZNYWduZXRpY0xpbmVzQmFzZT4oJ0ZfTUFHTkVUSUNfTElORVMnKTtcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgRk1hZ25ldGljTGluZXNCYXNlIHtcbiAgcHVibGljIHJlYWRvbmx5IGhvc3RFbGVtZW50ID0gaW5qZWN0KEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+KS5uYXRpdmVFbGVtZW50O1xuICBwdWJsaWMgYWJzdHJhY3QgdGhyZXNob2xkOiBTaWduYWw8bnVtYmVyPjtcbn1cbiJdfQ==
12
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1tYWduZXRpYy1saW5lcy1iYXNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbWFnbmV0aWMtbGluZXMvZi1tYWduZXRpYy1saW5lcy1iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsVUFBVSxFQUFFLE1BQU0sRUFBRSxjQUFjLEVBQVUsTUFBTSxlQUFlLENBQUM7O0FBRXRGLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLElBQUksY0FBYyxDQUFxQixrQkFBa0IsQ0FBQyxDQUFDO0FBRzNGLE1BQU0sT0FBZ0Isa0JBQWtCO0lBQ3RCLFdBQVcsR0FBRyxNQUFNLENBQUMsQ0FBQSxVQUF1QixDQUFBLENBQUMsQ0FBQyxhQUFhLENBQUM7d0dBRHhELGtCQUFrQjs0RkFBbEIsa0JBQWtCOzs0RkFBbEIsa0JBQWtCO2tCQUR2QyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBpbmplY3QsIEluamVjdGlvblRva2VuLCBTaWduYWwgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuZXhwb3J0IGNvbnN0IEZfTUFHTkVUSUNfTElORVMgPSBuZXcgSW5qZWN0aW9uVG9rZW48Rk1hZ25ldGljTGluZXNCYXNlPignRl9NQUdORVRJQ19MSU5FUycpO1xuXG5ARGlyZWN0aXZlKClcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBGTWFnbmV0aWNMaW5lc0Jhc2Uge1xuICBwdWJsaWMgcmVhZG9ubHkgaG9zdEVsZW1lbnQgPSBpbmplY3QoRWxlbWVudFJlZjxIVE1MRWxlbWVudD4pLm5hdGl2ZUVsZW1lbnQ7XG4gIHB1YmxpYyBhYnN0cmFjdCB0aHJlc2hvbGQ6IFNpZ25hbDxudW1iZXI+O1xufVxuIl19
@@ -21,4 +21,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImpo
21
21
  'class': 'f-magnetic-lines f-component',
22
22
  }, standalone: true, providers: [{ provide: F_MAGNETIC_LINES, useExisting: FMagneticLines }], changeDetection: ChangeDetectionStrategy.OnPush, styles: [":host{display:block;position:absolute;left:0;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none;-webkit-user-select:none;user-select:none}\n"] }]
23
23
  }] });
24
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1tYWduZXRpYy1saW5lcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvZi1tYWduZXRpYy1saW5lcy9mLW1hZ25ldGljLWxpbmVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCx1QkFBdUIsRUFDdkIsU0FBUyxFQUNULE1BQU0sRUFDTixLQUFLLEVBQ0wsZUFBZSxHQUdoQixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx5QkFBeUIsQ0FBQztBQUMvRSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sa0JBQWtCLENBQUM7QUFDN0MsT0FBTyxFQUNMLFNBQVMsRUFDVCw2QkFBNkIsRUFDN0IsMkJBQTJCLEdBQzVCLE1BQU0sY0FBYyxDQUFDOztBQWF0QixNQUFNLE9BQU8sY0FBZSxTQUFRLGtCQUFrQjtJQUMzQixTQUFTLEdBQUcsS0FBSyxDQUFDLEVBQUUsRUFBRSxFQUFFLFNBQVMsRUFBRSxlQUFlLEVBQUUsQ0FBQyxDQUFDO0lBRTlELFNBQVMsR0FBRyxNQUFNLENBQUMsU0FBUyxDQUFDLENBQUM7SUFFeEMsUUFBUTtRQUNiLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksNkJBQTZCLENBQUMsU0FBUyxDQUFDLGNBQWMsRUFBRSxJQUFJLENBQUMsQ0FBQyxDQUFDO0lBQzVGLENBQUM7SUFFTSxXQUFXO1FBQ2hCLElBQUksQ0FBQyxTQUFTLENBQUMsT0FBTyxDQUFDLElBQUksMkJBQTJCLENBQUMsU0FBUyxDQUFDLGNBQWMsQ0FBQyxDQUFDLENBQUM7SUFDcEYsQ0FBQzt3R0FYVSxjQUFjOzRGQUFkLGNBQWMseVFBSGQsQ0FBQyxFQUFFLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxXQUFXLEVBQUUsY0FBYyxFQUFFLENBQUMsaURBTjdELEVBQUU7OzRGQVNELGNBQWM7a0JBWDFCLFNBQVM7K0JBQ0Usa0JBQWtCLFlBQ2xCLEVBQUUsUUFFTjt3QkFDSixPQUFPLEVBQUUsOEJBQThCO3FCQUN4QyxjQUNXLElBQUksYUFDTCxDQUFDLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsZ0JBQWdCLEVBQUUsQ0FBQyxtQkFDdEQsdUJBQXVCLENBQUMsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIGluamVjdCxcbiAgaW5wdXQsXG4gIG51bWJlckF0dHJpYnV0ZSxcbiAgT25EZXN0cm95LFxuICBPbkluaXQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgRl9NQUdORVRJQ19MSU5FUywgRk1hZ25ldGljTGluZXNCYXNlIH0gZnJvbSAnLi9mLW1hZ25ldGljLWxpbmVzLWJhc2UnO1xuaW1wb3J0IHsgRk1lZGlhdG9yIH0gZnJvbSAnQGZvYmxleC9tZWRpYXRvcic7XG5pbXBvcnQge1xuICBJTlNUQU5DRVMsXG4gIFJlZ2lzdGVyUGx1Z2luSW5zdGFuY2VSZXF1ZXN0LFxuICBSZW1vdmVQbHVnaW5JbnN0YW5jZVJlcXVlc3QsXG59IGZyb20gJy4uL2Ytc3RvcmFnZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2YtbWFnbmV0aWMtbGluZXMnLFxuICB0ZW1wbGF0ZTogJycsXG4gIHN0eWxlVXJsczogWycuL2YtbWFnbmV0aWMtbGluZXMuc2NzcyddLFxuICBob3N0OiB7XG4gICAgJ2NsYXNzJzogJ2YtbWFnbmV0aWMtbGluZXMgZi1jb21wb25lbnQnLFxuICB9LFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFt7IHByb3ZpZGU6IEZfTUFHTkVUSUNfTElORVMsIHVzZUV4aXN0aW5nOiBGTWFnbmV0aWNMaW5lcyB9XSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIEZNYWduZXRpY0xpbmVzIGV4dGVuZHMgRk1hZ25ldGljTGluZXNCYXNlIGltcGxlbWVudHMgT25Jbml0LCBPbkRlc3Ryb3kge1xuICBwdWJsaWMgb3ZlcnJpZGUgcmVhZG9ubHkgdGhyZXNob2xkID0gaW5wdXQoMTAsIHsgdHJhbnNmb3JtOiBudW1iZXJBdHRyaWJ1dGUgfSk7XG5cbiAgcHJpdmF0ZSByZWFkb25seSBfbWVkaWF0b3IgPSBpbmplY3QoRk1lZGlhdG9yKTtcblxuICBwdWJsaWMgbmdPbkluaXQoKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgUmVnaXN0ZXJQbHVnaW5JbnN0YW5jZVJlcXVlc3QoSU5TVEFOQ0VTLk1BR05FVElDX0xJTkVTLCB0aGlzKSk7XG4gIH1cblxuICBwdWJsaWMgbmdPbkRlc3Ryb3koKTogdm9pZCB7XG4gICAgdGhpcy5fbWVkaWF0b3IuZXhlY3V0ZShuZXcgUmVtb3ZlUGx1Z2luSW5zdGFuY2VSZXF1ZXN0KElOU1RBTkNFUy5NQUdORVRJQ19MSU5FUykpO1xuICB9XG59XG4iXX0=
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1tYWduZXRpYy1saW5lcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL2xpYnMvZi1mbG93L3NyYy9mLW1hZ25ldGljLWxpbmVzL2YtbWFnbmV0aWMtbGluZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsTUFBTSxFQUNOLEtBQUssRUFDTCxlQUFlLEdBR2hCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxnQkFBZ0IsRUFBRSxrQkFBa0IsRUFBRSxNQUFNLHlCQUF5QixDQUFDO0FBQy9FLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSxrQkFBa0IsQ0FBQztBQUM3QyxPQUFPLEVBQ0wsU0FBUyxFQUNULDZCQUE2QixFQUM3QiwyQkFBMkIsR0FDNUIsTUFBTSxjQUFjLENBQUM7O0FBYXRCLE1BQU0sT0FBTyxjQUFlLFNBQVEsa0JBQWtCO0lBQzNCLFNBQVMsR0FBRyxLQUFLLENBQUMsRUFBRSxFQUFFLEVBQUUsU0FBUyxFQUFFLGVBQWUsRUFBRSxDQUFDLENBQUM7SUFFOUQsU0FBUyxHQUFHLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQztJQUV4QyxRQUFRO1FBQ2IsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSw2QkFBNkIsQ0FBQyxTQUFTLENBQUMsY0FBYyxFQUFFLElBQUksQ0FBQyxDQUFDLENBQUM7SUFDNUYsQ0FBQztJQUVNLFdBQVc7UUFDaEIsSUFBSSxDQUFDLFNBQVMsQ0FBQyxPQUFPLENBQUMsSUFBSSwyQkFBMkIsQ0FBQyxTQUFTLENBQUMsY0FBYyxDQUFDLENBQUMsQ0FBQztJQUNwRixDQUFDO3dHQVhVLGNBQWM7NEZBQWQsY0FBYyx5UUFIZCxDQUFDLEVBQUUsT0FBTyxFQUFFLGdCQUFnQixFQUFFLFdBQVcsRUFBRSxjQUFjLEVBQUUsQ0FBQyxpREFON0QsRUFBRTs7NEZBU0QsY0FBYztrQkFYMUIsU0FBUzsrQkFDRSxrQkFBa0IsWUFDbEIsRUFBRSxRQUVOO3dCQUNKLE9BQU8sRUFBRSw4QkFBOEI7cUJBQ3hDLGNBQ1csSUFBSSxhQUNMLENBQUMsRUFBRSxPQUFPLEVBQUUsZ0JBQWdCLEVBQUUsV0FBVyxnQkFBZ0IsRUFBRSxDQUFDLG1CQUN0RCx1QkFBdUIsQ0FBQyxNQUFNIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgaW5qZWN0LFxuICBpbnB1dCxcbiAgbnVtYmVyQXR0cmlidXRlLFxuICBPbkRlc3Ryb3ksXG4gIE9uSW5pdCxcbn0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGX01BR05FVElDX0xJTkVTLCBGTWFnbmV0aWNMaW5lc0Jhc2UgfSBmcm9tICcuL2YtbWFnbmV0aWMtbGluZXMtYmFzZSc7XG5pbXBvcnQgeyBGTWVkaWF0b3IgfSBmcm9tICdAZm9ibGV4L21lZGlhdG9yJztcbmltcG9ydCB7XG4gIElOU1RBTkNFUyxcbiAgUmVnaXN0ZXJQbHVnaW5JbnN0YW5jZVJlcXVlc3QsXG4gIFJlbW92ZVBsdWdpbkluc3RhbmNlUmVxdWVzdCxcbn0gZnJvbSAnLi4vZi1zdG9yYWdlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnZi1tYWduZXRpYy1saW5lcycsXG4gIHRlbXBsYXRlOiAnJyxcbiAgc3R5bGVVcmxzOiBbJy4vZi1tYWduZXRpYy1saW5lcy5zY3NzJ10sXG4gIGhvc3Q6IHtcbiAgICAnY2xhc3MnOiAnZi1tYWduZXRpYy1saW5lcyBmLWNvbXBvbmVudCcsXG4gIH0sXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHByb3ZpZGVyczogW3sgcHJvdmlkZTogRl9NQUdORVRJQ19MSU5FUywgdXNlRXhpc3Rpbmc6IEZNYWduZXRpY0xpbmVzIH1dLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbn0pXG5leHBvcnQgY2xhc3MgRk1hZ25ldGljTGluZXMgZXh0ZW5kcyBGTWFnbmV0aWNMaW5lc0Jhc2UgaW1wbGVtZW50cyBPbkluaXQsIE9uRGVzdHJveSB7XG4gIHB1YmxpYyBvdmVycmlkZSByZWFkb25seSB0aHJlc2hvbGQgPSBpbnB1dCgxMCwgeyB0cmFuc2Zvcm06IG51bWJlckF0dHJpYnV0ZSB9KTtcblxuICBwcml2YXRlIHJlYWRvbmx5IF9tZWRpYXRvciA9IGluamVjdChGTWVkaWF0b3IpO1xuXG4gIHB1YmxpYyBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZWdpc3RlclBsdWdpbkluc3RhbmNlUmVxdWVzdChJTlNUQU5DRVMuTUFHTkVUSUNfTElORVMsIHRoaXMpKTtcbiAgfVxuXG4gIHB1YmxpYyBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICB0aGlzLl9tZWRpYXRvci5leGVjdXRlKG5ldyBSZW1vdmVQbHVnaW5JbnN0YW5jZVJlcXVlc3QoSU5TVEFOQ0VTLk1BR05FVElDX0xJTkVTKSk7XG4gIH1cbn1cbiJdfQ==
@@ -1,4 +1,4 @@
1
1
  export * from './f-magnetic-lines';
2
2
  export * from './f-magnetic-lines-base';
3
3
  export * from './providers';
4
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2YtbWFnbmV0aWMtbGluZXMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxvQkFBb0IsQ0FBQztBQUVuQyxjQUFjLHlCQUF5QixDQUFDO0FBRXhDLGNBQWMsYUFBYSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLW1hZ25ldGljLWxpbmVzJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLW1hZ25ldGljLWxpbmVzLWJhc2UnO1xuXG5leHBvcnQgKiBmcm9tICcuL3Byb3ZpZGVycyc7XG4iXX0=
4
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2YtZmxvdy9zcmMvZi1tYWduZXRpYy1saW5lcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLG9CQUFvQixDQUFDO0FBRW5DLGNBQWMseUJBQXlCLENBQUM7QUFFeEMsY0FBYyxhQUFhLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtbWFnbmV0aWMtbGluZXMnO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtbWFnbmV0aWMtbGluZXMtYmFzZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vcHJvdmlkZXJzJztcbiJdfQ==
@@ -1,3 +1,3 @@
1
1
  import { FMagneticLines } from './f-magnetic-lines';
2
2
  export const F_MAGNETIC_LINES_PROVIDERS = [FMagneticLines];
3
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9mLW1hZ25ldGljLWxpbmVzL3Byb3ZpZGVycy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sb0JBQW9CLENBQUM7QUFFcEQsTUFBTSxDQUFDLE1BQU0sMEJBQTBCLEdBQUcsQ0FBQyxjQUFjLENBQUMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEZNYWduZXRpY0xpbmVzIH0gZnJvbSAnLi9mLW1hZ25ldGljLWxpbmVzJztcblxuZXhwb3J0IGNvbnN0IEZfTUFHTkVUSUNfTElORVNfUFJPVklERVJTID0gW0ZNYWduZXRpY0xpbmVzXTtcbiJdfQ==
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHJvdmlkZXJzLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vbGlicy9mLWZsb3cvc3JjL2YtbWFnbmV0aWMtbGluZXMvcHJvdmlkZXJzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxvQkFBb0IsQ0FBQztBQUVwRCxNQUFNLENBQUMsTUFBTSwwQkFBMEIsR0FBRyxDQUFDLGNBQWMsQ0FBQyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRk1hZ25ldGljTGluZXMgfSBmcm9tICcuL2YtbWFnbmV0aWMtbGluZXMnO1xuXG5leHBvcnQgY29uc3QgRl9NQUdORVRJQ19MSU5FU19QUk9WSURFUlMgPSBbRk1hZ25ldGljTGluZXNdO1xuIl19