@foblex/flow 17.8.0 → 17.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (230) hide show
  1. package/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior-request.d.ts +12 -0
  2. package/domain/f-connection/calculate-connection-line-by-behavior/{calculate-connection-line-by-behavior.execution.d.ts → calculate-connection-line-by-behavior.d.ts} +4 -4
  3. package/domain/f-connection/calculate-connection-line-by-behavior/fixed-center-behavior.d.ts +2 -2
  4. package/domain/f-connection/calculate-connection-line-by-behavior/fixed-outbound-behavior.d.ts +2 -2
  5. package/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.d.ts +2 -2
  6. package/domain/f-connection/calculate-connection-line-by-behavior/index.d.ts +2 -2
  7. package/domain/f-connection/providers.d.ts +2 -2
  8. package/domain/f-connection/redraw-connections/redraw-connections.execution.d.ts +2 -2
  9. package/domain/f-connectors/add-input-to-store/add-input-to-store-request.d.ts +2 -2
  10. package/domain/f-connectors/add-input-to-store/add-input-to-store.d.ts +12 -0
  11. package/domain/f-connectors/add-input-to-store/index.d.ts +1 -1
  12. package/domain/f-connectors/add-outlet-to-store/add-outlet-to-store-request.d.ts +2 -2
  13. package/domain/f-connectors/add-outlet-to-store/{add-outlet-to-store.execution.d.ts → add-outlet-to-store.d.ts} +5 -5
  14. package/domain/f-connectors/add-outlet-to-store/index.d.ts +1 -1
  15. package/domain/f-connectors/add-output-to-store/add-output-to-store-request.d.ts +2 -2
  16. package/domain/f-connectors/add-output-to-store/{add-output-to-store.execution.d.ts → add-output-to-store.d.ts} +5 -5
  17. package/domain/f-connectors/add-output-to-store/index.d.ts +1 -1
  18. package/domain/f-connectors/{find-closest-connector/find-closest-connector.request.d.ts → calculate-closest-connector/calculate-closest-connector-request.d.ts} +3 -3
  19. package/domain/f-connectors/calculate-closest-connector/calculate-closest-connector.d.ts +16 -0
  20. package/domain/f-connectors/calculate-closest-connector/index.d.ts +2 -0
  21. package/domain/f-connectors/get-all-can-be-connected-inputs-and-rects/get-all-can-be-connected-inputs-and-rects.execution.d.ts +3 -3
  22. package/domain/f-connectors/get-all-can-be-connected-inputs-and-rects/get-all-can-be-connected-inputs-and-rects.request.d.ts +2 -2
  23. package/domain/f-connectors/get-all-can-be-connected-source-connectors-and-rects/get-all-can-be-connected-source-connectors-and-rects.execution.d.ts +2 -2
  24. package/domain/f-connectors/get-all-can-be-connected-source-connectors-and-rects/get-all-can-be-connected-source-connectors-and-rects.request.d.ts +2 -2
  25. package/domain/f-connectors/get-connector-and-rect/get-connector-and-rect-request.d.ts +2 -2
  26. package/domain/f-connectors/get-connector-and-rect/{get-connector-and-rect.execution.d.ts → get-connector-and-rect.d.ts} +4 -4
  27. package/domain/f-connectors/get-connector-and-rect/index.d.ts +1 -1
  28. package/domain/f-connectors/index.d.ts +1 -1
  29. package/domain/f-connectors/mark-connectable-connectors/index.d.ts +2 -2
  30. package/domain/f-connectors/mark-connectable-connectors/{mark-connectable-connectors.request.d.ts → mark-connectable-connectors-request.d.ts} +2 -2
  31. package/domain/f-connectors/mark-connectable-connectors/{mark-connectable-connectors.execution.d.ts → mark-connectable-connectors.d.ts} +5 -5
  32. package/domain/f-connectors/providers.d.ts +11 -11
  33. package/domain/f-connectors/remove-input-from-store/index.d.ts +1 -1
  34. package/domain/f-connectors/remove-input-from-store/remove-input-from-store-request.d.ts +2 -2
  35. package/domain/f-connectors/remove-input-from-store/{remove-input-from-store.execution.d.ts → remove-input-from-store.d.ts} +4 -4
  36. package/domain/f-connectors/unmark-connectable-connectors/index.d.ts +2 -2
  37. package/domain/f-connectors/unmark-connectable-connectors/{unmark-connectable-connectors.request.d.ts → unmark-connectable-connectors-request.d.ts} +2 -2
  38. package/domain/f-connectors/unmark-connectable-connectors/{unmark-connectable-connectors.execution.d.ts → unmark-connectable-connectors.d.ts} +5 -5
  39. package/domain/f-flow/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.d.ts +1 -1
  40. package/domain/providers.d.ts +1 -1
  41. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior-request.mjs +16 -0
  42. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.mjs +32 -0
  43. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-center-behavior.mjs +4 -4
  44. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-outbound-behavior.mjs +8 -4
  45. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.mjs +10 -10
  46. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/index.mjs +3 -3
  47. package/esm2022/domain/f-connection/providers.mjs +3 -3
  48. package/esm2022/domain/f-connection/redraw-connections/redraw-connections-request.mjs +1 -1
  49. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.execution.mjs +9 -9
  50. package/esm2022/domain/f-connectors/add-input-to-store/add-input-to-store-request.mjs +4 -4
  51. package/esm2022/domain/f-connectors/add-input-to-store/add-input-to-store.mjs +25 -0
  52. package/esm2022/domain/f-connectors/add-input-to-store/index.mjs +2 -2
  53. package/esm2022/domain/f-connectors/add-outlet-to-store/add-outlet-to-store-request.mjs +4 -4
  54. package/esm2022/domain/f-connectors/add-outlet-to-store/add-outlet-to-store.mjs +25 -0
  55. package/esm2022/domain/f-connectors/add-outlet-to-store/index.mjs +2 -2
  56. package/esm2022/domain/f-connectors/add-output-to-store/add-output-to-store-request.mjs +4 -4
  57. package/esm2022/domain/f-connectors/add-output-to-store/add-output-to-store.mjs +25 -0
  58. package/esm2022/domain/f-connectors/add-output-to-store/index.mjs +2 -2
  59. package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector-request.mjs +10 -0
  60. package/esm2022/domain/f-connectors/calculate-closest-connector/calculate-closest-connector.mjs +49 -0
  61. package/esm2022/domain/f-connectors/calculate-closest-connector/index.mjs +3 -0
  62. package/esm2022/domain/f-connectors/find-connectable-connector-using-priority-and-position/find-connectable-connector-using-priority-and-position.execution.mjs +9 -6
  63. package/esm2022/domain/f-connectors/get-all-can-be-connected-inputs-and-rects/get-all-can-be-connected-inputs-and-rects.execution.mjs +14 -14
  64. package/esm2022/domain/f-connectors/get-all-can-be-connected-inputs-and-rects/get-all-can-be-connected-inputs-and-rects.request.mjs +4 -4
  65. package/esm2022/domain/f-connectors/get-all-can-be-connected-source-connectors-and-rects/get-all-can-be-connected-source-connectors-and-rects.execution.mjs +9 -9
  66. package/esm2022/domain/f-connectors/get-all-can-be-connected-source-connectors-and-rects/get-all-can-be-connected-source-connectors-and-rects.request.mjs +4 -4
  67. package/esm2022/domain/f-connectors/get-connector-and-rect/get-connector-and-rect-request.mjs +4 -4
  68. package/esm2022/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.mjs +31 -0
  69. package/esm2022/domain/f-connectors/get-connector-and-rect/index.mjs +2 -2
  70. package/esm2022/domain/f-connectors/index.mjs +2 -2
  71. package/esm2022/domain/f-connectors/mark-connectable-connectors/index.mjs +3 -3
  72. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors-request.mjs +8 -0
  73. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors.mjs +30 -0
  74. package/esm2022/domain/f-connectors/providers.mjs +20 -20
  75. package/esm2022/domain/f-connectors/remove-input-from-store/index.mjs +2 -2
  76. package/esm2022/domain/f-connectors/remove-input-from-store/remove-input-from-store-request.mjs +4 -4
  77. package/esm2022/domain/f-connectors/remove-input-from-store/remove-input-from-store.mjs +25 -0
  78. package/esm2022/domain/f-connectors/unmark-connectable-connectors/index.mjs +3 -3
  79. package/esm2022/domain/f-connectors/unmark-connectable-connectors/{unmark-connectable-connectors.request.mjs → unmark-connectable-connectors-request.mjs} +4 -4
  80. package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors.mjs +30 -0
  81. package/esm2022/domain/f-flow/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.mjs +4 -4
  82. package/esm2022/domain/f-flow/get-flow-state/get-flow-state-nodes/get-flow-state-nodes.execution.mjs +12 -6
  83. package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections.mjs +3 -6
  84. package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections.mjs +3 -6
  85. package/esm2022/f-connection/common/domain/f-bezier.path-builder.mjs +26 -10
  86. package/esm2022/f-connection/common/domain/f-segment.path-builder.mjs +41 -23
  87. package/esm2022/f-connection/common/domain/f-straight.path-builder.mjs +9 -3
  88. package/esm2022/f-connection/common/f-connection-base.mjs +34 -25
  89. package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +17 -27
  90. package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +20 -33
  91. package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +17 -27
  92. package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +16 -26
  93. package/esm2022/f-connection/common/f-selection/f-connection-selection.component.mjs +10 -20
  94. package/esm2022/f-connection/common/i-has-connection-from-to.mjs +1 -1
  95. package/esm2022/f-connection/f-connection/f-connection.component.mjs +24 -25
  96. package/esm2022/f-connection/f-connection-builder/i-f-connection-builder-response.mjs +1 -1
  97. package/esm2022/f-connection/f-connection-center/f-connection-center.directive.mjs +21 -4
  98. package/esm2022/f-connection/f-connection-content/f-connection-content.mjs +96 -0
  99. package/esm2022/f-connection/f-connection-content/index.mjs +3 -0
  100. package/esm2022/f-connection/f-connection-content/polyline-content-engine/i-polyline-content.mjs +2 -0
  101. package/esm2022/f-connection/f-connection-content/polyline-content-engine/index.mjs +6 -0
  102. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-content-align.mjs +6 -0
  103. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-content-layout-engine.mjs +29 -0
  104. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-content-place.mjs +65 -0
  105. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/i-sampler-result.mjs +2 -0
  106. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/i-tangent.mjs +2 -0
  107. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/index.mjs +5 -0
  108. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/polyline-sampler.mjs +143 -0
  109. package/esm2022/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/polyline.mjs +68 -0
  110. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +17 -21
  111. package/esm2022/f-connection/f-marker/f-marker-base.mjs +2 -8
  112. package/esm2022/f-connection/f-marker/f-marker.directive.mjs +13 -22
  113. package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +17 -21
  114. package/esm2022/f-connection/index.mjs +2 -1
  115. package/esm2022/f-connectors/f-connector-base.mjs +1 -1
  116. package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +2 -2
  117. package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +34 -32
  118. package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +6 -6
  119. package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +23 -26
  120. package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +4 -4
  121. package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +30 -32
  122. package/esm2022/f-connectors/f-source-connector-base.mjs +11 -0
  123. package/esm2022/f-connectors/index.mjs +2 -1
  124. package/esm2022/f-draggable/domain/f-drag-started-event.mjs +4 -2
  125. package/esm2022/f-draggable/domain/is-connection-under-node/is-connection-under-node.execution.mjs +7 -7
  126. package/esm2022/f-draggable/f-canvas/move-finalize/f-canvas-move-finalize.execution.mjs +2 -2
  127. package/esm2022/f-draggable/f-connection/f-create-connection/create-finalize/f-create-connection-finalize.execution.mjs +20 -18
  128. package/esm2022/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.mjs +38 -36
  129. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-connection.drag-handler.mjs +21 -19
  130. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-source.drag-handler.mjs +6 -6
  131. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-target.drag-handler.mjs +5 -5
  132. package/esm2022/f-draggable/f-connection/f-reassign-connection/reassign-finalize/f-reassign-connection-finalize.execution.mjs +5 -5
  133. package/esm2022/f-draggable/f-drag-handler/i-f-drag-handler.mjs +1 -1
  134. package/esm2022/f-draggable/f-draggable-base.mjs +2 -2
  135. package/esm2022/f-draggable/f-draggable.directive.mjs +10 -20
  136. package/esm2022/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.mjs +3 -3
  137. package/esm2022/f-draggable/f-node-move/create-drag-model-from-selection/create-drag-model-from-selection.mjs +9 -12
  138. package/esm2022/f-draggable/f-node-move/create-drag-model-from-selection/create-input-connection-handler-and-set-to-node-handler/create-input-connection-handler-and-set-to-node-handler.mjs +5 -5
  139. package/esm2022/f-draggable/f-node-move/create-drag-model-from-selection/create-output-connection-handler-and-set-to-node-handler/create-output-connection-handler-and-set-to-node-handler.mjs +5 -5
  140. package/esm2022/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.mjs +28 -16
  141. package/esm2022/f-node/f-node.directive.mjs +6 -2
  142. package/esm2022/mixins/change-selection/change-selection.mjs +5 -6
  143. package/esm2022/mixins/change-visibility/change-visibility.mjs +4 -3
  144. package/esm2022/mixins/constructor.mjs +1 -1
  145. package/esm2022/utils/index.mjs +2 -1
  146. package/esm2022/utils/string-attribute.mjs +4 -0
  147. package/f-backgroud/providers.d.ts +1 -1
  148. package/f-connection/common/domain/f-bezier.path-builder.d.ts +2 -2
  149. package/f-connection/common/domain/f-segment.path-builder.d.ts +7 -7
  150. package/f-connection/common/f-connection-base.d.ts +13 -11
  151. package/f-connection/common/f-connection-text/f-connection-text-path.directive.d.ts +6 -11
  152. package/f-connection/common/f-connection-text/f-connection-text.component.d.ts +6 -12
  153. package/f-connection/common/f-gradient/f-connection-gradient.component.d.ts +5 -10
  154. package/f-connection/common/f-path/f-connection-path.component.d.ts +2 -7
  155. package/f-connection/common/f-selection/f-connection-selection.component.d.ts +2 -6
  156. package/f-connection/common/i-has-connection-from-to.d.ts +3 -3
  157. package/f-connection/f-connection/f-connection.component.d.ts +6 -6
  158. package/f-connection/f-connection-builder/i-f-connection-builder-response.d.ts +1 -0
  159. package/f-connection/f-connection-center/f-connection-center.directive.d.ts +6 -1
  160. package/f-connection/f-connection-content/f-connection-content.d.ts +69 -0
  161. package/f-connection/f-connection-content/index.d.ts +2 -0
  162. package/f-connection/f-connection-content/polyline-content-engine/i-polyline-content.d.ts +9 -0
  163. package/f-connection/f-connection-content/polyline-content-engine/index.d.ts +5 -0
  164. package/f-connection/f-connection-content/polyline-content-engine/polyline-content-align.d.ts +4 -0
  165. package/f-connection/f-connection-content/polyline-content-engine/polyline-content-layout-engine.d.ts +21 -0
  166. package/f-connection/f-connection-content/polyline-content-engine/polyline-content-place.d.ts +18 -0
  167. package/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/i-sampler-result.d.ts +11 -0
  168. package/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/i-tangent.d.ts +4 -0
  169. package/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/index.d.ts +4 -0
  170. package/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/polyline-sampler.d.ts +60 -0
  171. package/f-connection/f-connection-content/polyline-content-engine/polyline-sampler/polyline.d.ts +29 -0
  172. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +4 -6
  173. package/f-connection/f-marker/f-marker-base.d.ts +0 -3
  174. package/f-connection/f-marker/f-marker.directive.d.ts +4 -6
  175. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +4 -6
  176. package/f-connection/index.d.ts +1 -0
  177. package/f-connection/providers.d.ts +2 -2
  178. package/f-connectors/f-connector-base.d.ts +3 -2
  179. package/f-connectors/f-node-input/f-node-input-base.d.ts +3 -2
  180. package/f-connectors/f-node-input/f-node-input.directive.d.ts +8 -9
  181. package/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +3 -3
  182. package/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +6 -8
  183. package/f-connectors/f-node-output/f-node-output-base.d.ts +4 -5
  184. package/f-connectors/f-node-output/f-node-output.directive.d.ts +7 -9
  185. package/f-connectors/f-source-connector-base.d.ts +7 -0
  186. package/f-connectors/index.d.ts +1 -0
  187. package/f-draggable/domain/is-connection-under-node/is-connection-under-node.execution.d.ts +1 -1
  188. package/f-draggable/domain/providers.d.ts +1 -1
  189. package/f-draggable/f-canvas/move-finalize/f-canvas-move-finalize.execution.d.ts +2 -2
  190. package/f-draggable/f-connection/f-create-connection/create-finalize/f-create-connection-finalize.execution.d.ts +9 -9
  191. package/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.d.ts +5 -5
  192. package/f-draggable/f-connection/f-reassign-connection/f-reassign-connection.drag-handler.d.ts +4 -4
  193. package/f-draggable/f-connection/f-reassign-connection/f-reassign-source.drag-handler.d.ts +5 -5
  194. package/f-draggable/f-connection/f-reassign-connection/f-reassign-target.drag-handler.d.ts +5 -5
  195. package/f-draggable/f-connection/providers.d.ts +1 -1
  196. package/f-draggable/f-draggable-base.d.ts +1 -1
  197. package/f-draggable/f-draggable.directive.d.ts +5 -6
  198. package/f-draggable/f-drop-to-group/providers.d.ts +1 -1
  199. package/f-draggable/f-node-move/create-drag-model-from-selection/providers.d.ts +1 -1
  200. package/f-draggable/f-node-move/providers.d.ts +1 -1
  201. package/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.d.ts +1 -1
  202. package/f-draggable/providers.d.ts +1 -1
  203. package/f-minimap/domain/providers.d.ts +1 -1
  204. package/f-minimap/providers.d.ts +1 -1
  205. package/f-node/f-node.directive.d.ts +1 -1
  206. package/f-node/providers.d.ts +2 -2
  207. package/f-selection-area/domain/providers.d.ts +1 -1
  208. package/f-storage/providers.d.ts +1 -1
  209. package/fesm2022/foblex-flow.mjs +1083 -669
  210. package/fesm2022/foblex-flow.mjs.map +1 -1
  211. package/package.json +1 -1
  212. package/utils/index.d.ts +1 -0
  213. package/utils/string-attribute.d.ts +1 -0
  214. package/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.request.d.ts +0 -12
  215. package/domain/f-connectors/add-input-to-store/add-input-to-store.execution.d.ts +0 -12
  216. package/domain/f-connectors/find-closest-connector/find-closest-connector.execution.d.ts +0 -16
  217. package/domain/f-connectors/find-closest-connector/index.d.ts +0 -2
  218. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.execution.mjs +0 -32
  219. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.request.mjs +0 -16
  220. package/esm2022/domain/f-connectors/add-input-to-store/add-input-to-store.execution.mjs +0 -25
  221. package/esm2022/domain/f-connectors/add-outlet-to-store/add-outlet-to-store.execution.mjs +0 -25
  222. package/esm2022/domain/f-connectors/add-output-to-store/add-output-to-store.execution.mjs +0 -25
  223. package/esm2022/domain/f-connectors/find-closest-connector/find-closest-connector.execution.mjs +0 -47
  224. package/esm2022/domain/f-connectors/find-closest-connector/find-closest-connector.request.mjs +0 -10
  225. package/esm2022/domain/f-connectors/find-closest-connector/index.mjs +0 -3
  226. package/esm2022/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.execution.mjs +0 -31
  227. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors.execution.mjs +0 -30
  228. package/esm2022/domain/f-connectors/mark-connectable-connectors/mark-connectable-connectors.request.mjs +0 -8
  229. package/esm2022/domain/f-connectors/remove-input-from-store/remove-input-from-store.execution.mjs +0 -25
  230. package/esm2022/domain/f-connectors/unmark-connectable-connectors/unmark-connectable-connectors.execution.mjs +0 -30
@@ -1,7 +1,7 @@
1
- import { FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective } from './common';
1
+ import { FConnectionDragHandleEndComponent, FConnectionDragHandleStartComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionTextComponent, FConnectionTextPathDirective } from './common';
2
2
  import { FConnectionComponent } from './f-connection';
3
3
  import { FConnectionCenterDirective } from './f-connection-center';
4
4
  import { FConnectionForCreateComponent } from './f-connection-for-create';
5
5
  import { FMarkerDirective } from './f-marker';
6
6
  import { FSnapConnectionComponent } from './f-snap-connection';
7
- export declare const F_CONNECTION_PROVIDERS: (typeof FConnectionTextPathDirective | typeof FConnectionTextComponent | typeof FConnectionGradientComponent | typeof FConnectionPathComponent | typeof FConnectionSelectionComponent | typeof FConnectionCenterDirective | typeof FConnectionForCreateComponent | typeof FConnectionComponent | typeof FMarkerDirective | typeof FSnapConnectionComponent)[];
7
+ export declare const F_CONNECTION_PROVIDERS: (typeof FConnectionDragHandleStartComponent | typeof FConnectionDragHandleEndComponent | typeof FConnectionSelectionComponent | typeof FConnectionCenterDirective | typeof FConnectionTextComponent | typeof FConnectionTextPathDirective | typeof FConnectionGradientComponent | typeof FConnectionPathComponent | typeof FConnectionComponent | typeof FConnectionForCreateComponent | typeof FMarkerDirective | typeof FSnapConnectionComponent)[];
@@ -1,9 +1,10 @@
1
1
  import { EFConnectableSide } from './e-f-connectable-side';
2
2
  import { IHasHostElement } from '../i-has-host-element';
3
+ import { Signal } from '@angular/core';
3
4
  export declare abstract class FConnectorBase implements IHasHostElement {
4
- abstract fId: string;
5
+ abstract fId: Signal<string>;
5
6
  abstract fNodeId: string;
6
- abstract disabled: boolean;
7
+ abstract disabled: Signal<boolean>;
7
8
  abstract hostElement: HTMLElement | SVGElement;
8
9
  abstract canBeConnected: boolean;
9
10
  private _isConnected;
@@ -1,9 +1,10 @@
1
- import { InjectionToken } from '@angular/core';
1
+ import { InjectionToken, Signal } from '@angular/core';
2
2
  import { FConnectorBase } from '../f-connector-base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare const F_NODE_INPUT: InjectionToken<FNodeInputBase>;
5
5
  export declare abstract class FNodeInputBase extends FConnectorBase {
6
- abstract multiple: boolean;
6
+ abstract category: Signal<string | undefined>;
7
+ abstract multiple: Signal<boolean>;
7
8
  get canBeConnected(): boolean;
8
9
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeInputBase, never>;
9
10
  static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeInputBase, never, never, {}, {}, never, never, false, never>;
@@ -4,22 +4,21 @@ import { EFConnectableSide } from '../e-f-connectable-side';
4
4
  import { FConnectorBase } from '../f-connector-base';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class FNodeInputDirective extends FNodeInputBase implements OnInit, OnChanges, OnDestroy {
7
- private _elementReference;
8
- private _fMediator;
9
- private _fNode;
10
- fId: any;
11
- multiple: boolean;
12
- disabled: boolean;
7
+ readonly hostElement: any;
8
+ private readonly _mediator;
9
+ private readonly _node;
10
+ fId: import("@angular/core").InputSignalWithTransform<string, unknown>;
11
+ category: import("@angular/core").InputSignalWithTransform<string | undefined, unknown>;
12
+ multiple: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
+ disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
14
  userFConnectableSide: EFConnectableSide;
14
15
  get fNodeId(): string;
15
- get hostElement(): HTMLElement | SVGElement;
16
16
  ngOnInit(): void;
17
17
  ngOnChanges(changes: SimpleChanges): void;
18
18
  setConnected(toConnector: FConnectorBase): void;
19
19
  resetConnected(): void;
20
20
  ngOnDestroy(): void;
21
21
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeInputDirective, never>;
22
- static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeInputDirective, "[fNodeInput]", ["fNodeInput"], { "fId": { "alias": "fInputId"; "required": false; }; "multiple": { "alias": "fInputMultiple"; "required": false; }; "disabled": { "alias": "fInputDisabled"; "required": false; }; "userFConnectableSide": { "alias": "fInputConnectableSide"; "required": false; }; }, {}, never, never, false, never>;
23
- static ngAcceptInputType_disabled: unknown;
22
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeInputDirective, "[fNodeInput]", ["fNodeInput"], { "fId": { "alias": "fInputId"; "required": false; "isSignal": true; }; "category": { "alias": "fInputCategory"; "required": false; "isSignal": true; }; "multiple": { "alias": "fInputMultiple"; "required": false; "isSignal": true; }; "disabled": { "alias": "fInputDisabled"; "required": false; "isSignal": true; }; "userFConnectableSide": { "alias": "fInputConnectableSide"; "required": false; }; }, {}, never, never, false, never>;
24
23
  static ngAcceptInputType_userFConnectableSide: unknown;
25
24
  }
@@ -1,12 +1,12 @@
1
1
  import { InjectionToken } from '@angular/core';
2
2
  import { FConnectorBase } from '../f-connector-base';
3
+ import { FSourceConnectorBase } from '../f-source-connector-base';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare const F_NODE_OUTLET: InjectionToken<FNodeOutletBase>;
5
- export declare abstract class FNodeOutletBase extends FConnectorBase {
6
+ export declare abstract class FNodeOutletBase extends FSourceConnectorBase {
6
7
  abstract isConnectionFromOutlet: boolean;
7
- private outputs;
8
+ private _outputs;
8
9
  get canBeConnected(): boolean;
9
- abstract canBeConnectedInputs: string[];
10
10
  setOutputs(outputs: FConnectorBase[]): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutletBase, never>;
12
12
  static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutletBase, never, never, {}, {}, never, never, false, never>;
@@ -3,20 +3,18 @@ import { FNodeOutletBase } from './f-node-outlet-base';
3
3
  import { EFConnectableSide } from '../e-f-connectable-side';
4
4
  import * as i0 from "@angular/core";
5
5
  export declare class FNodeOutletDirective extends FNodeOutletBase implements OnInit, OnDestroy {
6
- private _elementReference;
7
- private _fMediator;
8
- private _fNode;
9
- fId: string;
10
- disabled: boolean;
6
+ readonly hostElement: any;
7
+ private readonly _mediator;
8
+ private readonly _node;
9
+ fId: import("@angular/core").InputSignalWithTransform<string, unknown>;
10
+ disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
11
11
  fConnectableSide: EFConnectableSide;
12
12
  userFConnectableSide: EFConnectableSide;
13
13
  isConnectionFromOutlet: boolean;
14
14
  canBeConnectedInputs: string[];
15
15
  get fNodeId(): string;
16
- get hostElement(): HTMLElement | SVGElement;
17
16
  ngOnInit(): void;
18
17
  ngOnDestroy(): void;
19
18
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutletDirective, never>;
20
- static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutletDirective, "[fNodeOutlet]", ["fNodeOutlet"], { "fId": { "alias": "fOutletId"; "required": false; }; "disabled": { "alias": "fOutletDisabled"; "required": false; }; "isConnectionFromOutlet": { "alias": "isConnectionFromOutlet"; "required": false; }; "canBeConnectedInputs": { "alias": "fCanBeConnectedInputs"; "required": false; }; }, {}, never, never, false, never>;
21
- static ngAcceptInputType_disabled: unknown;
19
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutletDirective, "[fNodeOutlet]", ["fNodeOutlet"], { "fId": { "alias": "fOutletId"; "required": false; "isSignal": true; }; "disabled": { "alias": "fOutletDisabled"; "required": false; "isSignal": true; }; "isConnectionFromOutlet": { "alias": "isConnectionFromOutlet"; "required": false; }; "canBeConnectedInputs": { "alias": "fCanBeConnectedInputs"; "required": false; }; }, {}, never, never, false, never>;
22
20
  }
@@ -1,11 +1,10 @@
1
- import { InjectionToken } from '@angular/core';
2
- import { FConnectorBase } from '../f-connector-base';
1
+ import { InjectionToken, Signal } from '@angular/core';
2
+ import { FSourceConnectorBase } from '../f-source-connector-base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare const F_NODE_OUTPUT: InjectionToken<FNodeOutputBase>;
5
- export declare abstract class FNodeOutputBase extends FConnectorBase {
6
- abstract multiple: boolean;
5
+ export declare abstract class FNodeOutputBase extends FSourceConnectorBase {
6
+ abstract multiple: Signal<boolean>;
7
7
  get canBeConnected(): boolean;
8
- abstract canBeConnectedInputs: string[];
9
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutputBase, never>;
10
9
  static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutputBase, never, never, {}, {}, never, never, false, never>;
11
10
  }
@@ -4,24 +4,22 @@ import { EFConnectableSide } from '../e-f-connectable-side';
4
4
  import { FConnectorBase } from '../f-connector-base';
5
5
  import * as i0 from "@angular/core";
6
6
  export declare class FNodeOutputDirective extends FNodeOutputBase implements OnInit, OnChanges, OnDestroy {
7
- private _elementReference;
8
- private _fMediator;
9
- private _fNode;
10
- fId: string;
11
- multiple: boolean;
12
- disabled: boolean;
7
+ readonly hostElement: any;
8
+ private readonly _mediator;
9
+ private readonly _node;
10
+ fId: import("@angular/core").InputSignalWithTransform<string, unknown>;
11
+ multiple: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
12
+ disabled: import("@angular/core").InputSignalWithTransform<boolean, unknown>;
13
13
  userFConnectableSide: EFConnectableSide;
14
14
  isSelfConnectable: boolean;
15
15
  canBeConnectedInputs: string[];
16
16
  get fNodeId(): string;
17
- get hostElement(): HTMLElement | SVGElement;
18
17
  ngOnInit(): void;
19
18
  ngOnChanges(changes: SimpleChanges): void;
20
19
  setConnected(toConnector: FConnectorBase): void;
21
20
  resetConnected(): void;
22
21
  ngOnDestroy(): void;
23
22
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutputDirective, never>;
24
- static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutputDirective, "[fNodeOutput]", ["fNodeOutput"], { "fId": { "alias": "fOutputId"; "required": false; }; "multiple": { "alias": "fOutputMultiple"; "required": false; }; "disabled": { "alias": "fOutputDisabled"; "required": false; }; "userFConnectableSide": { "alias": "fOutputConnectableSide"; "required": false; }; "isSelfConnectable": { "alias": "isSelfConnectable"; "required": false; }; "canBeConnectedInputs": { "alias": "fCanBeConnectedInputs"; "required": false; }; }, {}, never, never, false, never>;
25
- static ngAcceptInputType_disabled: unknown;
23
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutputDirective, "[fNodeOutput]", ["fNodeOutput"], { "fId": { "alias": "fOutputId"; "required": false; "isSignal": true; }; "multiple": { "alias": "fOutputMultiple"; "required": false; "isSignal": true; }; "disabled": { "alias": "fOutputDisabled"; "required": false; "isSignal": true; }; "userFConnectableSide": { "alias": "fOutputConnectableSide"; "required": false; }; "isSelfConnectable": { "alias": "isSelfConnectable"; "required": false; }; "canBeConnectedInputs": { "alias": "fCanBeConnectedInputs"; "required": false; }; }, {}, never, never, false, never>;
26
24
  static ngAcceptInputType_userFConnectableSide: unknown;
27
25
  }
@@ -0,0 +1,7 @@
1
+ import { FConnectorBase } from './f-connector-base';
2
+ import { FNodeInputBase } from './f-node-input';
3
+ export declare abstract class FSourceConnectorBase extends FConnectorBase {
4
+ abstract canBeConnectedInputs: string[];
5
+ get hasConnectionLimits(): boolean;
6
+ canConnectTo(targetConnector: FNodeInputBase): boolean;
7
+ }
@@ -2,5 +2,6 @@ export * from './f-node-input';
2
2
  export * from './f-node-outlet';
3
3
  export * from './f-node-output';
4
4
  export * from './f-connector-base';
5
+ export * from './f-source-connector-base';
5
6
  export * from './e-f-connectable-side';
6
7
  export * from './providers';
@@ -2,7 +2,7 @@ import { IExecution } from '@foblex/mediator';
2
2
  import { IsConnectionUnderNodeRequest } from './is-connection-under-node.request';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class IsConnectionUnderNodeExecution implements IExecution<IsConnectionUnderNodeRequest, void> {
5
- private readonly _fMediator;
5
+ private readonly _mediator;
6
6
  private readonly _store;
7
7
  handle(request: IsConnectionUnderNodeRequest): void;
8
8
  private _getOutputConnectors;
@@ -1,4 +1,4 @@
1
1
  import { IsArrayHasParentNodeExecution } from './is-array-has-parent-node';
2
2
  import { GetNormalizedParentNodeRectExecution } from './get-normalized-parent-node-rect';
3
3
  import { IsConnectionUnderNodeExecution } from './is-connection-under-node';
4
- export declare const DRAG_AND_DROP_COMMON_PROVIDERS: (typeof GetNormalizedParentNodeRectExecution | typeof IsArrayHasParentNodeExecution | typeof IsConnectionUnderNodeExecution)[];
4
+ export declare const DRAG_AND_DROP_COMMON_PROVIDERS: (typeof IsConnectionUnderNodeExecution | typeof GetNormalizedParentNodeRectExecution | typeof IsArrayHasParentNodeExecution)[];
@@ -2,8 +2,8 @@ import { FCanvasMoveFinalizeRequest } from './f-canvas-move-finalize.request';
2
2
  import { IExecution } from '@foblex/mediator';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FCanvasMoveFinalizeExecution implements IExecution<FCanvasMoveFinalizeRequest, void> {
5
- private _dragContext;
6
- handle(request: FCanvasMoveFinalizeRequest): void;
5
+ private readonly _dragContext;
6
+ handle(_request: FCanvasMoveFinalizeRequest): void;
7
7
  private _isValid;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FCanvasMoveFinalizeExecution, never>;
9
9
  static ɵprov: i0.ɵɵInjectableDeclaration<FCanvasMoveFinalizeExecution>;
@@ -2,17 +2,17 @@ import { IHandler } from '@foblex/mediator';
2
2
  import { FCreateConnectionFinalizeRequest } from './f-create-connection-finalize.request';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FCreateConnectionFinalizeExecution implements IHandler<FCreateConnectionFinalizeRequest, void> {
5
- private _fResult;
6
- private _fMediator;
7
- private _store;
8
- private _dragContext;
9
- private get _fDragHandler();
5
+ private readonly _result;
6
+ private readonly _mediator;
7
+ private readonly _store;
8
+ private readonly _dragContext;
9
+ private get _dragHandler();
10
10
  handle(request: FCreateConnectionFinalizeRequest): void;
11
11
  private _isValid;
12
- private getTargetOutput;
13
- private getOutput;
14
- private getOutlet;
15
- private emitEvent;
12
+ private _getTargetOutput;
13
+ private _getOutput;
14
+ private _getOutlet;
15
+ private _emitEvent;
16
16
  private _getInputUnderPointer;
17
17
  static ɵfac: i0.ɵɵFactoryDeclaration<FCreateConnectionFinalizeExecution, never>;
18
18
  static ɵprov: i0.ɵɵInjectableDeclaration<FCreateConnectionFinalizeExecution>;
@@ -5,13 +5,13 @@ import { Injector } from '@angular/core';
5
5
  export declare class FCreateConnectionDragHandler implements IFDragHandler {
6
6
  private _fOutputOrOutlet;
7
7
  fEventType: string;
8
- fData: any;
9
- private readonly _fResult;
10
- private readonly _fMediator;
8
+ fData: unknown;
9
+ private readonly _result;
10
+ private readonly _mediator;
11
11
  private readonly _store;
12
12
  private readonly _toConnectorRect;
13
- private get _fConnection();
14
- private get _fSnapConnection();
13
+ private get _connection();
14
+ private get _snapConnection();
15
15
  private _fOutputWithRect;
16
16
  private _canBeConnectedInputs;
17
17
  constructor(_injector: Injector, _fOutputOrOutlet: FNodeOutputBase | FNodeOutletBase, _onPointerDownPosition: IPoint);
@@ -6,11 +6,11 @@ export declare class FReassignConnectionDragHandler implements IFDragHandler {
6
6
  private _connection;
7
7
  private _isTargetDragHandle;
8
8
  fEventType: string;
9
- fData: any;
10
- private readonly _fResult;
11
- private readonly _fMediator;
9
+ fData: unknown;
10
+ private readonly _result;
11
+ private readonly _mediator;
12
12
  private readonly _store;
13
- private get _fSnapConnection();
13
+ private get _snapConnection();
14
14
  private get _sourceConnector();
15
15
  private get _targetConnector();
16
16
  private get _sourceConnectorAndRect();
@@ -1,8 +1,8 @@
1
- import { FMediator } from "@foblex/mediator";
2
- import { IConnectorAndRect } from "../../../domain";
3
- import { FConnectionBase, FSnapConnectionComponent } from "../../../f-connection";
4
- import { IPoint } from "@foblex/2d";
5
- import { IFReassignHandler } from "./i-f-reassign-handler";
1
+ import { FMediator } from '@foblex/mediator';
2
+ import { IConnectorAndRect } from '../../../domain';
3
+ import { FConnectionBase, FSnapConnectionComponent } from '../../../f-connection';
4
+ import { IPoint } from '@foblex/2d';
5
+ import { IFReassignHandler } from './i-f-reassign-handler';
6
6
  export declare class FReassignSourceDragHandler implements IFReassignHandler {
7
7
  private readonly _mediator;
8
8
  private readonly _connection;
@@ -1,8 +1,8 @@
1
- import { FMediator } from "@foblex/mediator";
2
- import { IConnectorAndRect } from "../../../domain";
3
- import { FConnectionBase, FSnapConnectionComponent } from "../../../f-connection";
4
- import { IPoint } from "@foblex/2d";
5
- import { IFReassignHandler } from "./i-f-reassign-handler";
1
+ import { FMediator } from '@foblex/mediator';
2
+ import { IConnectorAndRect } from '../../../domain';
3
+ import { FConnectionBase, FSnapConnectionComponent } from '../../../f-connection';
4
+ import { IPoint } from '@foblex/2d';
5
+ import { IFReassignHandler } from './i-f-reassign-handler';
6
6
  export declare class FReassignTargetDragHandler implements IFReassignHandler {
7
7
  private readonly _mediator;
8
8
  private readonly _connection;
@@ -1,3 +1,3 @@
1
1
  import { FCreateConnectionDragHandlerPreparationExecution, FCreateConnectionFinalizeExecution, FCreateConnectionFromOutletPreparationExecution, FCreateConnectionFromOutputPreparationExecution, FCreateConnectionPreparationExecution, GetFirstConnectableOutputExecution } from './f-create-connection';
2
2
  import { FReassignConnectionFinalizeExecution, FReassignConnectionPreparationExecution } from './f-reassign-connection';
3
- export declare const CONNECTIONS_PROVIDERS: (typeof GetFirstConnectableOutputExecution | typeof FCreateConnectionFinalizeExecution | typeof FCreateConnectionDragHandlerPreparationExecution | typeof FCreateConnectionFromOutletPreparationExecution | typeof FCreateConnectionFromOutputPreparationExecution | typeof FReassignConnectionFinalizeExecution | typeof FReassignConnectionPreparationExecution | typeof FCreateConnectionPreparationExecution)[];
3
+ export declare const CONNECTIONS_PROVIDERS: (typeof FCreateConnectionPreparationExecution | typeof FReassignConnectionFinalizeExecution | typeof FReassignConnectionPreparationExecution | typeof FCreateConnectionFromOutputPreparationExecution | typeof FCreateConnectionFromOutletPreparationExecution | typeof FCreateConnectionFinalizeExecution | typeof FCreateConnectionDragHandlerPreparationExecution | typeof GetFirstConnectableOutputExecution)[];
@@ -20,5 +20,5 @@ export declare abstract class FDraggableBase extends DragAndDropBase {
20
20
  abstract fCellSizeWhileDragging: InputSignalWithTransform<boolean, unknown>;
21
21
  abstract fDragStarted: EventEmitter<FDragStartedEvent>;
22
22
  abstract fDragEnded: EventEmitter<void>;
23
- protected constructor(ngZone: ICanRunOutsideAngular | undefined);
23
+ protected constructor(ngZone: ICanRunOutsideAngular | null);
24
24
  }
@@ -7,16 +7,15 @@ import { FEventTrigger } from '../domain';
7
7
  import { FCreateNodeEvent } from '../f-external-item';
8
8
  import { FDragStartedEvent, FNodeIntersectedWithConnections } from './domain';
9
9
  import { FDropToGroupEvent } from './f-drop-to-group';
10
- import { ICanRunOutsideAngular, IPointerEvent } from '../drag-toolkit';
10
+ import { IPointerEvent } from '../drag-toolkit';
11
11
  import * as i0 from "@angular/core";
12
12
  export declare class FDraggableDirective extends FDraggableBase implements OnInit, AfterViewInit, OnDestroy {
13
- private readonly _elementReference;
14
- private readonly _fResult;
13
+ readonly hostElement: any;
14
+ private readonly _result;
15
15
  private readonly _mediator;
16
16
  private readonly _platform;
17
17
  private readonly _browser;
18
18
  disabled: boolean;
19
- get hostElement(): HTMLElement;
20
19
  fMultiSelectTrigger: FEventTrigger;
21
20
  fReassignConnectionTrigger: FEventTrigger;
22
21
  fCreateConnectionTrigger: FEventTrigger;
@@ -55,7 +54,7 @@ export declare class FDraggableDirective extends FDraggableBase implements OnIni
55
54
  fDragEnded: EventEmitter<void>;
56
55
  private _beforePlugins;
57
56
  private _afterPlugins;
58
- constructor(ngZone: ICanRunOutsideAngular);
57
+ constructor();
59
58
  ngOnInit(): void;
60
59
  ngAfterViewInit(): void;
61
60
  onPointerDown(event: IPointerEvent): boolean;
@@ -65,7 +64,7 @@ export declare class FDraggableDirective extends FDraggableBase implements OnIni
65
64
  onPointerUp(event: IPointerEvent): void;
66
65
  protected finalizeDragSequence(): void;
67
66
  ngOnDestroy(): void;
68
- static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableDirective, [{ optional: true; }]>;
67
+ static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableDirective, never>;
69
68
  static ɵdir: i0.ɵɵDirectiveDeclaration<FDraggableDirective, "f-flow[fDraggable]", ["fDraggable"], { "disabled": { "alias": "fDraggableDisabled"; "required": false; }; "fMultiSelectTrigger": { "alias": "fMultiSelectTrigger"; "required": false; }; "fReassignConnectionTrigger": { "alias": "fReassignConnectionTrigger"; "required": false; }; "fCreateConnectionTrigger": { "alias": "fCreateConnectionTrigger"; "required": false; }; "fNodeResizeTrigger": { "alias": "fNodeResizeTrigger"; "required": false; }; "fNodeRotateTrigger": { "alias": "fNodeRotateTrigger"; "required": false; }; "fNodeMoveTrigger": { "alias": "fNodeMoveTrigger"; "required": false; }; "fCanvasMoveTrigger": { "alias": "fCanvasMoveTrigger"; "required": false; }; "fExternalItemTrigger": { "alias": "fExternalItemTrigger"; "required": false; }; "fEmitOnNodeIntersect": { "alias": "fEmitOnNodeIntersect"; "required": false; }; "vCellSize": { "alias": "vCellSize"; "required": false; "isSignal": true; }; "hCellSize": { "alias": "hCellSize"; "required": false; "isSignal": true; }; "fCellSizeWhileDragging": { "alias": "fCellSizeWhileDragging"; "required": false; "isSignal": true; }; }, { "fSelectionChange": "fSelectionChange"; "fNodeIntersectedWithConnections": "fNodeIntersectedWithConnections"; "fCreateNode": "fCreateNode"; "fMoveNodes": "fMoveNodes"; "fReassignConnection": "fReassignConnection"; "fCreateConnection": "fCreateConnection"; "fDropToGroup": "fDropToGroup"; "fDragStarted": "fDragStarted"; "fDragEnded": "fDragEnded"; }, ["_beforePlugins", "_afterPlugins"], never, false, never>;
70
69
  static ngAcceptInputType_disabled: unknown;
71
70
  static ngAcceptInputType_fEmitOnNodeIntersect: unknown;
@@ -1,4 +1,4 @@
1
1
  import { DropToGroupPreparation } from './drop-to-group-preparation';
2
2
  import { DropToGroupFinalize } from './drop-to-group-finalize';
3
3
  import { SortContainersForDropByLayer } from './sort-containers-for-drop-by-layer';
4
- export declare const NODE_DROP_TO_GROUP_PROVIDERS: (typeof DropToGroupFinalize | typeof SortContainersForDropByLayer | typeof DropToGroupPreparation)[];
4
+ export declare const NODE_DROP_TO_GROUP_PROVIDERS: (typeof SortContainersForDropByLayer | typeof DropToGroupPreparation | typeof DropToGroupFinalize)[];
@@ -5,4 +5,4 @@ import { BuildDragHierarchy } from "./build-drag-hierarchy";
5
5
  import { CalculateDragLimits } from "./calculate-drag-limits";
6
6
  import { CreateSummaryDragHandler } from "./create-summary-drag-handler";
7
7
  import { GetNodeBoundingIncludePaddings } from "./get-node-bounding-include-paddings";
8
- export declare const CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS: (typeof BuildDragHierarchy | typeof GetNodeBoundingIncludePaddings | typeof CalculateDragLimits | typeof CreateSummaryDragHandler | typeof CreateInputConnectionHandlerAndSetToNodeHandler | typeof CreateOutputConnectionHandlerAndSetToNodeHandler | typeof CreateDragModelFromSelection)[];
8
+ export declare const CREATE_MOVE_NODE_DRAG_MODEL_FROM_SELECTION_PROVIDERS: (typeof CalculateDragLimits | typeof BuildDragHierarchy | typeof CreateSummaryDragHandler | typeof CreateInputConnectionHandlerAndSetToNodeHandler | typeof CreateOutputConnectionHandlerAndSetToNodeHandler | typeof GetNodeBoundingIncludePaddings | typeof CreateDragModelFromSelection)[];
@@ -1,4 +1,4 @@
1
1
  import { FNodeMoveFinalizeExecution } from './move-finalize';
2
2
  import { FNodeMovePreparationExecution } from './move-preparation';
3
3
  import { CreateSnapLines } from './create-snap-lines';
4
- export declare const NODE_PROVIDERS: (typeof import("./create-drag-model-from-selection").BuildDragHierarchy | typeof import("./create-drag-model-from-selection").GetNodeBoundingIncludePaddings | typeof import("./create-drag-model-from-selection").CalculateDragLimits | typeof import("./create-drag-model-from-selection").CreateSummaryDragHandler | typeof import("./create-drag-model-from-selection").CreateInputConnectionHandlerAndSetToNodeHandler | typeof import("./create-drag-model-from-selection").CreateOutputConnectionHandlerAndSetToNodeHandler | typeof import("./create-drag-model-from-selection").CreateDragModelFromSelection | typeof CreateSnapLines | typeof FNodeMovePreparationExecution | typeof FNodeMoveFinalizeExecution)[];
4
+ export declare const NODE_PROVIDERS: (typeof import("./create-drag-model-from-selection").CalculateDragLimits | typeof import("./create-drag-model-from-selection").BuildDragHierarchy | typeof import("./create-drag-model-from-selection").CreateSummaryDragHandler | typeof import("./create-drag-model-from-selection").CreateInputConnectionHandlerAndSetToNodeHandler | typeof import("./create-drag-model-from-selection").CreateOutputConnectionHandlerAndSetToNodeHandler | typeof import("./create-drag-model-from-selection").GetNodeBoundingIncludePaddings | typeof import("./create-drag-model-from-selection").CreateDragModelFromSelection | typeof CreateSnapLines | typeof FNodeMoveFinalizeExecution | typeof FNodeMovePreparationExecution)[];
@@ -2,7 +2,7 @@ import { FNodeRotatePreparationRequest } from './f-node-rotate-preparation.reque
2
2
  import { IExecution } from '@foblex/mediator';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FNodeRotatePreparationExecution implements IExecution<FNodeRotatePreparationRequest, void> {
5
- private readonly _fMediator;
5
+ private readonly _mediator;
6
6
  private readonly _store;
7
7
  private readonly _dragContext;
8
8
  private readonly _injector;
@@ -1 +1 @@
1
- export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./domain").GetNormalizedParentNodeRectExecution | typeof import("./domain").IsArrayHasParentNodeExecution | typeof import("./domain").IsConnectionUnderNodeExecution | typeof import("./f-canvas").FCanvasMoveFinalizeExecution | typeof import("./f-canvas").FCanvasMovePreparationExecution | typeof import("./f-connection").GetFirstConnectableOutputExecution | typeof import("./f-connection").FCreateConnectionFinalizeExecution | typeof import("./f-connection").FCreateConnectionDragHandlerPreparationExecution | typeof import("./f-connection").FCreateConnectionFromOutletPreparationExecution | typeof import("./f-connection").FCreateConnectionFromOutputPreparationExecution | typeof import("../f-external-item").FExternalItemCreatePlaceholderExecution | typeof import("../f-external-item").FExternalItemCreatePreviewExecution | typeof import("../f-external-item").FExternalItemFinalizeExecution | typeof import("../f-external-item").FExternalItemPreparationExecution | typeof import("../f-external-item").PreventDefaultIsExternalItemExecution | typeof import("./f-node-move").BuildDragHierarchy | typeof import("./f-node-move").GetNodeBoundingIncludePaddings | typeof import("./f-node-move").CalculateDragLimits | typeof import("./f-node-move").CreateSummaryDragHandler | typeof import("./f-node-move").CreateInputConnectionHandlerAndSetToNodeHandler | typeof import("./f-node-move").CreateOutputConnectionHandlerAndSetToNodeHandler | typeof import("./f-node-move").CreateDragModelFromSelection | typeof import("./f-node-move").CreateSnapLines | typeof import("./f-node-move").FNodeMovePreparationExecution | typeof import("./f-node-move").FNodeMoveFinalizeExecution | typeof import("./f-drop-to-group").DropToGroupFinalize | typeof import("./f-drop-to-group").SortContainersForDropByLayer | typeof import("./f-drop-to-group").DropToGroupPreparation | typeof import("./f-connection").FReassignConnectionFinalizeExecution | typeof import("./f-connection").FReassignConnectionPreparationExecution | typeof import("./f-connection").FCreateConnectionPreparationExecution | typeof import("./f-node-resize").ApplyChildResizeConstraints | typeof import("./f-node-resize").ApplyParentResizeConstraints | typeof import("./f-node-resize").CalculateChangedRectFromDifference | typeof import("./f-node-resize").CalculateDirectChildrenUnionRect | typeof import("./f-node-resize").CalculateResizeLimits | typeof import("./f-node-resize").NodeResizeFinalize | typeof import("./f-node-resize").NodeResizePreparation | typeof import("./f-node-rotate").FNodeRotateFinalizeExecution | typeof import("./f-node-rotate").FNodeRotatePreparationExecution | typeof import("./f-single-select").FSingleSelectExecution | typeof import("@foblex/flow").CalculateFlowPointFromMinimapPointExecution | typeof import("@foblex/flow").MinimapDragPreparationExecution | typeof import("@foblex/flow").MinimapDragFinalizeExecution | typeof import("@foblex/flow").MinimapDrawNodesExecution | typeof import("@foblex/flow").MinimapCalculateViewBoxExecution | typeof import("@foblex/flow").MinimapCalculateSvgScaleAndViewBoxExecution | typeof import("../f-selection-area").SelectionAreaFinalizeExecution | typeof import("../f-selection-area").SelectionAreaPreparationExecution)[];
1
+ export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./f-connection").FCreateConnectionPreparationExecution | typeof import("./f-connection").FReassignConnectionFinalizeExecution | typeof import("./f-connection").FReassignConnectionPreparationExecution | typeof import("./f-connection").FCreateConnectionFromOutputPreparationExecution | typeof import("./f-connection").FCreateConnectionFromOutletPreparationExecution | typeof import("./f-connection").FCreateConnectionFinalizeExecution | typeof import("./f-connection").FCreateConnectionDragHandlerPreparationExecution | typeof import("./f-connection").GetFirstConnectableOutputExecution | typeof import("./domain").IsConnectionUnderNodeExecution | typeof import("./f-node-move").CalculateDragLimits | typeof import("./f-canvas").FCanvasMoveFinalizeExecution | typeof import("./f-canvas").FCanvasMovePreparationExecution | typeof import("./domain").GetNormalizedParentNodeRectExecution | typeof import("./domain").IsArrayHasParentNodeExecution | typeof import("./f-single-select").FSingleSelectExecution | typeof import("../f-external-item").FExternalItemCreatePlaceholderExecution | typeof import("../f-external-item").FExternalItemCreatePreviewExecution | typeof import("../f-external-item").FExternalItemFinalizeExecution | typeof import("../f-external-item").FExternalItemPreparationExecution | typeof import("../f-external-item").PreventDefaultIsExternalItemExecution | typeof import("./f-node-move").BuildDragHierarchy | typeof import("./f-node-move").CreateSummaryDragHandler | typeof import("./f-node-move").CreateInputConnectionHandlerAndSetToNodeHandler | typeof import("./f-node-move").CreateOutputConnectionHandlerAndSetToNodeHandler | typeof import("./f-node-move").GetNodeBoundingIncludePaddings | typeof import("./f-node-move").CreateDragModelFromSelection | typeof import("./f-node-move").CreateSnapLines | typeof import("./f-node-move").FNodeMoveFinalizeExecution | typeof import("./f-node-move").FNodeMovePreparationExecution | typeof import("./f-drop-to-group").SortContainersForDropByLayer | typeof import("./f-drop-to-group").DropToGroupPreparation | typeof import("./f-drop-to-group").DropToGroupFinalize | typeof import("./f-node-resize").ApplyChildResizeConstraints | typeof import("./f-node-resize").ApplyParentResizeConstraints | typeof import("./f-node-resize").CalculateChangedRectFromDifference | typeof import("./f-node-resize").CalculateDirectChildrenUnionRect | typeof import("./f-node-resize").CalculateResizeLimits | typeof import("./f-node-resize").NodeResizeFinalize | typeof import("./f-node-resize").NodeResizePreparation | typeof import("./f-node-rotate").FNodeRotateFinalizeExecution | typeof import("./f-node-rotate").FNodeRotatePreparationExecution | typeof import("../f-selection-area").SelectionAreaPreparationExecution | typeof import("../f-selection-area").SelectionAreaFinalizeExecution | typeof import("@foblex/flow").CalculateFlowPointFromMinimapPointExecution | typeof import("@foblex/flow").MinimapDragFinalizeExecution | typeof import("@foblex/flow").MinimapDragPreparationExecution | typeof import("@foblex/flow").MinimapDrawNodesExecution | typeof import("@foblex/flow").MinimapCalculateSvgScaleAndViewBoxExecution | typeof import("@foblex/flow").MinimapCalculateViewBoxExecution)[];
@@ -2,4 +2,4 @@ import { CalculateFlowPointFromMinimapPointExecution } from './calculate-flow-po
2
2
  import { MinimapDrawNodesExecution } from './minimap-draw-nodes';
3
3
  import { MinimapCalculateViewBoxExecution } from './minimap-calculate-view-box';
4
4
  import { MinimapCalculateSvgScaleAndViewBoxExecution } from './minimap-calculate-svg-scale-and-view-box';
5
- export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof MinimapDrawNodesExecution | typeof MinimapCalculateViewBoxExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution)[];
5
+ export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof MinimapDrawNodesExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution | typeof MinimapCalculateViewBoxExecution)[];
@@ -2,4 +2,4 @@ import { FMinimapComponent } from './f-minimap.component';
2
2
  import { FMinimapViewDirective } from './f-minimap-view.directive';
3
3
  import { FMinimapFlowDirective } from './f-minimap-flow.directive';
4
4
  import { FMinimapCanvasDirective } from './f-minimap-canvas.directive';
5
- export declare const F_MINIMAP_PROVIDERS: (typeof FMinimapFlowDirective | typeof FMinimapCanvasDirective | typeof FMinimapViewDirective | typeof FMinimapComponent)[];
5
+ export declare const F_MINIMAP_PROVIDERS: (typeof FMinimapComponent | typeof FMinimapCanvasDirective | typeof FMinimapViewDirective | typeof FMinimapFlowDirective)[];
@@ -6,7 +6,7 @@ import * as i0 from "@angular/core";
6
6
  export declare class FNodeDirective extends FNodeBase implements OnInit, AfterViewInit, IHasHostElement, OnDestroy {
7
7
  private readonly _destroyRef;
8
8
  private readonly _mediator;
9
- readonly fId: import("@angular/core").InputSignal<string>;
9
+ readonly fId: import("@angular/core").InputSignalWithTransform<string, unknown>;
10
10
  readonly fParentId: import("@angular/core").InputSignal<string | null | undefined>;
11
11
  readonly position: import("@angular/core").ModelSignal<import("@foblex/2d").IPoint>;
12
12
  readonly size: import("@angular/core").InputSignal<ISize | undefined>;
@@ -1,4 +1,4 @@
1
1
  import { FNodeDirective } from './f-node.directive';
2
2
  import { FGroupDirective } from './f-group.directive';
3
- import { FRotateHandleDirective } from './f-rotate-handle';
4
- export declare const F_NODE_PROVIDERS: (typeof FRotateHandleDirective | typeof FGroupDirective | typeof FNodeDirective)[];
3
+ import { FDragHandleDirective } from './f-drag-handle.directive';
4
+ export declare const F_NODE_PROVIDERS: (typeof FGroupDirective | typeof FNodeDirective | typeof FDragHandleDirective)[];
@@ -1,3 +1,3 @@
1
1
  import { SelectionAreaPreparationExecution } from './selection-area-preparation';
2
2
  import { SelectionAreaFinalizeExecution } from './selection-area-finalize';
3
- export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof SelectionAreaFinalizeExecution | typeof SelectionAreaPreparationExecution)[];
3
+ export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof SelectionAreaPreparationExecution | typeof SelectionAreaFinalizeExecution)[];
@@ -4,4 +4,4 @@ import { FComponentsStore } from './f-components-store';
4
4
  import { ListenCountChangesExecution } from './features/listen-count-changes';
5
5
  import { ListenTransformChangesExecution } from './features/listen-transform-changes';
6
6
  import { NotifyTransformChangedExecution } from './features/notify-transform-changed';
7
- export declare const F_STORAGE_PROVIDERS: (typeof NotifyDataChangedExecution | typeof FComponentsStore | typeof ListenDataChangesExecution | typeof ListenCountChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];
7
+ export declare const F_STORAGE_PROVIDERS: (typeof FComponentsStore | typeof NotifyDataChangedExecution | typeof ListenCountChangesExecution | typeof ListenDataChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];