@foblex/flow 14.0.0 → 16.0.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 (666) hide show
  1. package/esm2022/domain/create-connection-markers/create-connection-markers.execution.mjs +60 -0
  2. package/esm2022/domain/create-rounded-rect-from-element/create-rounded-rect-from-element.execution.mjs +38 -0
  3. package/esm2022/domain/emit-transform-changes/emit-transform-changes.execution.mjs +23 -0
  4. package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +46 -0
  5. package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node.execution.mjs +48 -0
  6. package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow.execution.mjs +55 -0
  7. package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +32 -0
  8. package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +27 -0
  9. package/esm2022/domain/f-canvas/reset-scale/reset-scale.execution.mjs +28 -0
  10. package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +50 -0
  11. package/esm2022/domain/f-canvas/update-scale/update-scale.execution.mjs +33 -0
  12. package/esm2022/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.mjs +38 -0
  13. package/esm2022/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.mjs +54 -0
  14. package/esm2022/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.mjs +27 -0
  15. package/esm2022/domain/f-selection/clear-selection/clear-selection.execution.mjs +25 -0
  16. package/esm2022/domain/f-selection/get-selection/get-selection.execution.mjs +34 -0
  17. package/esm2022/domain/f-selection/select/select.execution.mjs +43 -0
  18. package/esm2022/domain/f-selection/select-all/select-all.execution.mjs +37 -0
  19. package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.mjs +34 -0
  20. package/esm2022/domain/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +56 -0
  21. package/esm2022/domain/get-connection-line/get-connection-line.execution.mjs +66 -0
  22. package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.execution.mjs +34 -0
  23. package/esm2022/domain/get-element-rect-in-flow/get-element-rect-in-flow.execution.mjs +42 -0
  24. package/esm2022/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.mjs +32 -0
  25. package/esm2022/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes.execution.mjs +49 -0
  26. package/esm2022/domain/get-flow-state/get-flow-state.execution.mjs +38 -0
  27. package/esm2022/domain/get-nodes-rect/get-nodes-rect.execution.mjs +30 -0
  28. package/esm2022/domain/get-position-in-flow/get-position-in-flow.execution.mjs +31 -0
  29. package/esm2022/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.execution.mjs +33 -0
  30. package/esm2022/domain/is-connection-under-node/is-connection-under-node.execution.mjs +75 -0
  31. package/esm2022/domain/redraw-connections/redraw-connections.execution.mjs +62 -0
  32. package/esm2022/domain/show-connections-after-calculations/show-connections-after-calculations.execution.mjs +25 -0
  33. package/esm2022/domain/sort-item-layers/sort-item-layers.execution.mjs +29 -0
  34. package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +56 -0
  35. package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +58 -0
  36. package/esm2022/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.execution.mjs +25 -0
  37. package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.execution.mjs +29 -0
  38. package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +93 -0
  39. package/{esm2020 → esm2022}/f-backgroud/f-background-base.mjs +4 -4
  40. package/{esm2020 → esm2022}/f-backgroud/f-background.component.mjs +7 -7
  41. package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +104 -0
  42. package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +122 -0
  43. package/{esm2020 → esm2022}/f-canvas/f-canvas-base.mjs +4 -4
  44. package/esm2022/f-canvas/f-canvas.component.mjs +86 -0
  45. package/esm2022/f-connection/common/f-connection-base.mjs +66 -0
  46. package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +70 -0
  47. package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +66 -0
  48. package/{esm2020 → esm2022}/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +7 -7
  49. package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +63 -0
  50. package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +59 -0
  51. package/{esm2020 → esm2022}/f-connection/common/f-selection/f-connection-selection.component.mjs +8 -8
  52. package/esm2022/f-connection/f-connection/f-connection.component.mjs +171 -0
  53. package/{esm2020 → esm2022}/f-connection/f-connection-builder/f-connection-factory.mjs +4 -4
  54. package/{esm2020 → esm2022}/f-connection/f-connection-center/f-connection-center.directive.mjs +4 -4
  55. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +136 -0
  56. package/{esm2020 → esm2022}/f-connection/f-marker/f-marker-base.mjs +4 -4
  57. package/esm2022/f-connection/f-marker/f-marker.directive.mjs +58 -0
  58. package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +136 -0
  59. package/{esm2020 → esm2022}/f-connectors/f-node-input/f-node-input-base.mjs +4 -4
  60. package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +87 -0
  61. package/{esm2020 → esm2022}/f-connectors/f-node-outlet/f-node-outlet-base.mjs +4 -4
  62. package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +71 -0
  63. package/{esm2020 → esm2022}/f-connectors/f-node-output/f-node-output-base.mjs +4 -4
  64. package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +94 -0
  65. package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.mjs +23 -0
  66. package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.mjs +24 -0
  67. package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.mjs +35 -0
  68. package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.mjs +42 -0
  69. package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.mjs +54 -0
  70. package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.mjs +24 -0
  71. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.mjs +43 -0
  72. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.mjs +52 -0
  73. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.mjs +38 -0
  74. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.mjs +33 -0
  75. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +42 -0
  76. package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +31 -0
  77. package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +61 -0
  78. package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.mjs +42 -0
  79. package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.mjs +26 -0
  80. package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.mjs +84 -0
  81. package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.mjs +34 -0
  82. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.mjs +49 -0
  83. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.mjs +24 -0
  84. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +63 -0
  85. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +43 -0
  86. package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +4 -4
  87. package/esm2022/f-draggable/domain/get-node-padding/get-node-padding.execution.mjs +32 -0
  88. package/esm2022/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.mjs +28 -0
  89. package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.mjs +47 -0
  90. package/esm2022/f-draggable/domain/get-parent-nodes/get-parent-nodes.execution.mjs +35 -0
  91. package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.execution.mjs +33 -0
  92. package/{esm2020 → esm2022}/f-draggable/f-draggable-base.mjs +4 -4
  93. package/{esm2020 → esm2022}/f-draggable/f-draggable-data-context.mjs +4 -4
  94. package/esm2022/f-draggable/f-draggable.directive.mjs +160 -0
  95. package/{esm2020 → esm2022}/f-draggable/node/connection-base-drag-handler.mjs +4 -4
  96. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +84 -0
  97. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.mjs +43 -0
  98. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.mjs +69 -0
  99. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.mjs +69 -0
  100. package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +50 -0
  101. package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.validator.mjs +24 -0
  102. package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +58 -0
  103. package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +40 -0
  104. package/esm2022/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +48 -0
  105. package/esm2022/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.execution.mjs +48 -0
  106. package/esm2022/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +24 -0
  107. package/esm2022/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +33 -0
  108. package/esm2022/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.execution.mjs +30 -0
  109. package/esm2022/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.execution.mjs +40 -0
  110. package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.mjs +25 -0
  111. package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.mjs +24 -0
  112. package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.mjs +52 -0
  113. package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.mjs +40 -0
  114. package/esm2022/f-draggable/single-select/single-select.execution.mjs +88 -0
  115. package/esm2022/f-draggable/single-select/single-select.validator.mjs +26 -0
  116. package/esm2022/f-external-item/domain/external-item-finalize/external-item-finalize.execution.mjs +56 -0
  117. package/esm2022/f-external-item/domain/external-item-finalize/external-item-finalize.validator.mjs +24 -0
  118. package/esm2022/f-external-item/domain/external-item-preparation/external-item-preparation.execution.mjs +42 -0
  119. package/esm2022/f-external-item/domain/external-item-preparation/external-item-preparation.validator.mjs +28 -0
  120. package/{esm2020 → esm2022}/f-external-item/f-external-item-base.mjs +4 -4
  121. package/{esm2020 → esm2022}/f-external-item/f-external-item.directive.mjs +9 -9
  122. package/{esm2020 → esm2022}/f-external-item/f-external-item.service.mjs +4 -4
  123. package/esm2022/f-flow/f-flow.component.mjs +118 -0
  124. package/{esm2020 → esm2022}/f-flow.module.mjs +5 -5
  125. package/{esm2020 → esm2022}/f-line-alignment/f-line-alignment-base.mjs +4 -4
  126. package/esm2022/f-line-alignment/f-line-alignment.component.mjs +92 -0
  127. package/esm2022/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.execution.mjs +41 -0
  128. package/esm2022/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.execution.mjs +25 -0
  129. package/esm2022/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.validator.mjs +24 -0
  130. package/esm2022/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.mjs +48 -0
  131. package/esm2022/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.validator.mjs +27 -0
  132. package/esm2022/f-minimap/f-minimap-canvas.directive.mjs +66 -0
  133. package/{esm2020 → esm2022}/f-minimap/f-minimap-flow.directive.mjs +10 -10
  134. package/{esm2020 → esm2022}/f-minimap/f-minimap-view.directive.mjs +8 -8
  135. package/{esm2020 → esm2022}/f-minimap/f-minimap.component.mjs +6 -6
  136. package/{esm2020 → esm2022}/f-node/f-drag-handle/f-drag-handle.directive.mjs +7 -7
  137. package/esm2022/f-node/f-group.directive.mjs +145 -0
  138. package/esm2022/f-node/f-node.directive.mjs +146 -0
  139. package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +43 -0
  140. package/{esm2020 → esm2022}/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +5 -5
  141. package/esm2022/f-selection-area/domain/selection-area-finalize/selection-area-finalize.execution.mjs +25 -0
  142. package/esm2022/f-selection-area/domain/selection-area-finalize/selection-area-finalize.validator.mjs +24 -0
  143. package/esm2022/f-selection-area/domain/selection-area-preparation/selection-area-preparation.execution.mjs +37 -0
  144. package/esm2022/f-selection-area/domain/selection-area-preparation/selection-area-preparation.validator.mjs +30 -0
  145. package/{esm2020 → esm2022}/f-selection-area/domain/selection-area.drag-handle.mjs +4 -4
  146. package/{esm2020 → esm2022}/f-selection-area/f-selection-area-base.mjs +4 -4
  147. package/{esm2020 → esm2022}/f-selection-area/f-selection-area.component.mjs +9 -9
  148. package/{esm2020 → esm2022}/f-storage/f-components-store.mjs +4 -4
  149. package/{esm2020 → esm2022}/f-storage/f-transform-store.mjs +4 -4
  150. package/esm2022/f-zoom/f-zoom-base.mjs +97 -0
  151. package/esm2022/f-zoom/f-zoom.directive.mjs +59 -0
  152. package/esm2022/mixins/change-selection/change-selection.mjs +28 -0
  153. package/f-backgroud/f-background-base.d.ts +1 -1
  154. package/f-backgroud/f-background.component.d.ts +1 -1
  155. package/f-backgroud/f-circle-pattern/f-circle-pattern.component.d.ts +1 -1
  156. package/f-backgroud/f-rect-pattern/f-rect-pattern.component.d.ts +1 -1
  157. package/f-canvas/f-canvas-base.d.ts +1 -1
  158. package/f-canvas/f-canvas.component.d.ts +1 -1
  159. package/f-connection/common/f-connection-base.d.ts +1 -1
  160. package/f-connection/common/f-connection-text/f-connection-text-path.directive.d.ts +1 -1
  161. package/f-connection/common/f-connection-text/f-connection-text.component.d.ts +1 -1
  162. package/f-connection/common/f-drag-handle/f-connection-drag-handle.component.d.ts +1 -1
  163. package/f-connection/common/f-gradient/f-connection-gradient.component.d.ts +1 -1
  164. package/f-connection/common/f-path/f-connection-path.component.d.ts +1 -1
  165. package/f-connection/common/f-selection/f-connection-selection.component.d.ts +1 -1
  166. package/f-connection/f-connection/f-connection.component.d.ts +1 -1
  167. package/f-connection/f-connection-center/f-connection-center.directive.d.ts +1 -1
  168. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +1 -1
  169. package/f-connection/f-marker/f-marker-base.d.ts +1 -1
  170. package/f-connection/f-marker/f-marker.directive.d.ts +1 -1
  171. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +1 -1
  172. package/f-connectors/f-node-input/f-node-input-base.d.ts +1 -1
  173. package/f-connectors/f-node-input/f-node-input.directive.d.ts +1 -1
  174. package/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +1 -1
  175. package/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +1 -1
  176. package/f-connectors/f-node-output/f-node-output-base.d.ts +1 -1
  177. package/f-connectors/f-node-output/f-node-output.directive.d.ts +1 -1
  178. package/f-draggable/f-draggable-base.d.ts +1 -1
  179. package/f-draggable/f-draggable.directive.d.ts +1 -1
  180. package/f-draggable/node/connection-base-drag-handler.d.ts +1 -1
  181. package/f-external-item/f-external-item-base.d.ts +1 -1
  182. package/f-external-item/f-external-item.directive.d.ts +1 -1
  183. package/f-flow/f-flow.component.d.ts +1 -1
  184. package/f-line-alignment/f-line-alignment-base.d.ts +1 -1
  185. package/f-line-alignment/f-line-alignment.component.d.ts +1 -1
  186. package/f-minimap/f-minimap-canvas.directive.d.ts +1 -1
  187. package/f-minimap/f-minimap-flow.directive.d.ts +1 -1
  188. package/f-minimap/f-minimap-view.directive.d.ts +1 -1
  189. package/f-minimap/f-minimap.component.d.ts +1 -1
  190. package/f-node/f-drag-handle/f-drag-handle.directive.d.ts +1 -1
  191. package/f-node/f-group.directive.d.ts +1 -1
  192. package/f-node/f-node.directive.d.ts +1 -1
  193. package/f-node/f-resize-handle/f-resize-handle.directive.d.ts +1 -1
  194. package/f-selection-area/f-selection-area-base.d.ts +1 -1
  195. package/f-selection-area/f-selection-area.component.d.ts +1 -1
  196. package/f-zoom/f-zoom.directive.d.ts +1 -1
  197. package/{fesm2020 → fesm2022}/foblex-flow.mjs +841 -841
  198. package/{fesm2015 → fesm2022}/foblex-flow.mjs.map +1 -1
  199. package/mixins/change-selection/change-selection.d.ts +1 -1
  200. package/mixins/change-visibility/change-visibility.d.ts +1 -1
  201. package/mixins/constructor.d.ts +2 -2
  202. package/package.json +5 -11
  203. package/esm2020/domain/create-connection-markers/create-connection-markers.execution.mjs +0 -61
  204. package/esm2020/domain/create-rounded-rect-from-element/create-rounded-rect-from-element.execution.mjs +0 -39
  205. package/esm2020/domain/emit-transform-changes/emit-transform-changes.execution.mjs +0 -24
  206. package/esm2020/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +0 -47
  207. package/esm2020/domain/f-canvas/center-group-or-node/center-group-or-node.execution.mjs +0 -49
  208. package/esm2020/domain/f-canvas/fit-to-flow/fit-to-flow.execution.mjs +0 -56
  209. package/esm2020/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +0 -33
  210. package/esm2020/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +0 -28
  211. package/esm2020/domain/f-canvas/reset-scale/reset-scale.execution.mjs +0 -29
  212. package/esm2020/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +0 -51
  213. package/esm2020/domain/f-canvas/update-scale/update-scale.execution.mjs +0 -34
  214. package/esm2020/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.mjs +0 -39
  215. package/esm2020/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.mjs +0 -55
  216. package/esm2020/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.mjs +0 -28
  217. package/esm2020/domain/f-selection/clear-selection/clear-selection.execution.mjs +0 -26
  218. package/esm2020/domain/f-selection/get-selection/get-selection.execution.mjs +0 -35
  219. package/esm2020/domain/f-selection/select/select.execution.mjs +0 -44
  220. package/esm2020/domain/f-selection/select-all/select-all.execution.mjs +0 -38
  221. package/esm2020/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.mjs +0 -35
  222. package/esm2020/domain/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +0 -57
  223. package/esm2020/domain/get-connection-line/get-connection-line.execution.mjs +0 -67
  224. package/esm2020/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.execution.mjs +0 -35
  225. package/esm2020/domain/get-element-rect-in-flow/get-element-rect-in-flow.execution.mjs +0 -43
  226. package/esm2020/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.mjs +0 -33
  227. package/esm2020/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes.execution.mjs +0 -50
  228. package/esm2020/domain/get-flow-state/get-flow-state.execution.mjs +0 -39
  229. package/esm2020/domain/get-nodes-rect/get-nodes-rect.execution.mjs +0 -31
  230. package/esm2020/domain/get-position-in-flow/get-position-in-flow.execution.mjs +0 -32
  231. package/esm2020/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.execution.mjs +0 -34
  232. package/esm2020/domain/is-connection-under-node/is-connection-under-node.execution.mjs +0 -76
  233. package/esm2020/domain/redraw-connections/redraw-connections.execution.mjs +0 -63
  234. package/esm2020/domain/show-connections-after-calculations/show-connections-after-calculations.execution.mjs +0 -26
  235. package/esm2020/domain/sort-item-layers/sort-item-layers.execution.mjs +0 -30
  236. package/esm2020/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +0 -57
  237. package/esm2020/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +0 -59
  238. package/esm2020/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.execution.mjs +0 -26
  239. package/esm2020/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.execution.mjs +0 -30
  240. package/esm2020/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +0 -94
  241. package/esm2020/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +0 -104
  242. package/esm2020/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +0 -122
  243. package/esm2020/f-canvas/f-canvas.component.mjs +0 -86
  244. package/esm2020/f-connection/common/f-connection-base.mjs +0 -66
  245. package/esm2020/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +0 -70
  246. package/esm2020/f-connection/common/f-connection-text/f-connection-text.component.mjs +0 -66
  247. package/esm2020/f-connection/common/f-gradient/f-connection-gradient.component.mjs +0 -63
  248. package/esm2020/f-connection/common/f-path/f-connection-path.component.mjs +0 -59
  249. package/esm2020/f-connection/f-connection/f-connection.component.mjs +0 -171
  250. package/esm2020/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +0 -136
  251. package/esm2020/f-connection/f-marker/f-marker.directive.mjs +0 -58
  252. package/esm2020/f-connection/f-snap-connection/f-snap-connection.component.mjs +0 -136
  253. package/esm2020/f-connectors/f-node-input/f-node-input.directive.mjs +0 -87
  254. package/esm2020/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -71
  255. package/esm2020/f-connectors/f-node-output/f-node-output.directive.mjs +0 -94
  256. package/esm2020/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.mjs +0 -24
  257. package/esm2020/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.mjs +0 -25
  258. package/esm2020/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.mjs +0 -36
  259. package/esm2020/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.mjs +0 -43
  260. package/esm2020/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.mjs +0 -55
  261. package/esm2020/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.mjs +0 -25
  262. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.mjs +0 -44
  263. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.mjs +0 -53
  264. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.mjs +0 -39
  265. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.mjs +0 -34
  266. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +0 -43
  267. package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +0 -32
  268. package/esm2020/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +0 -61
  269. package/esm2020/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.mjs +0 -43
  270. package/esm2020/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.mjs +0 -27
  271. package/esm2020/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.mjs +0 -85
  272. package/esm2020/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.mjs +0 -35
  273. package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.mjs +0 -50
  274. package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.mjs +0 -25
  275. package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +0 -64
  276. package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +0 -44
  277. package/esm2020/f-draggable/domain/get-node-padding/get-node-padding.execution.mjs +0 -33
  278. package/esm2020/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.mjs +0 -29
  279. package/esm2020/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.mjs +0 -48
  280. package/esm2020/f-draggable/domain/get-parent-nodes/get-parent-nodes.execution.mjs +0 -36
  281. package/esm2020/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.execution.mjs +0 -34
  282. package/esm2020/f-draggable/f-draggable.directive.mjs +0 -160
  283. package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +0 -85
  284. package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.mjs +0 -44
  285. package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.mjs +0 -70
  286. package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.mjs +0 -70
  287. package/esm2020/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +0 -51
  288. package/esm2020/f-draggable/node/node-move-finalize/node-move-finalize.validator.mjs +0 -25
  289. package/esm2020/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +0 -59
  290. package/esm2020/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +0 -41
  291. package/esm2020/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +0 -49
  292. package/esm2020/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.execution.mjs +0 -49
  293. package/esm2020/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +0 -25
  294. package/esm2020/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +0 -34
  295. package/esm2020/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.execution.mjs +0 -31
  296. package/esm2020/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.execution.mjs +0 -41
  297. package/esm2020/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.mjs +0 -26
  298. package/esm2020/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.mjs +0 -25
  299. package/esm2020/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.mjs +0 -53
  300. package/esm2020/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.mjs +0 -41
  301. package/esm2020/f-draggable/single-select/single-select.execution.mjs +0 -89
  302. package/esm2020/f-draggable/single-select/single-select.validator.mjs +0 -27
  303. package/esm2020/f-external-item/domain/external-item-finalize/external-item-finalize.execution.mjs +0 -57
  304. package/esm2020/f-external-item/domain/external-item-finalize/external-item-finalize.validator.mjs +0 -25
  305. package/esm2020/f-external-item/domain/external-item-preparation/external-item-preparation.execution.mjs +0 -43
  306. package/esm2020/f-external-item/domain/external-item-preparation/external-item-preparation.validator.mjs +0 -29
  307. package/esm2020/f-flow/f-flow.component.mjs +0 -118
  308. package/esm2020/f-line-alignment/f-line-alignment.component.mjs +0 -92
  309. package/esm2020/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.execution.mjs +0 -42
  310. package/esm2020/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.execution.mjs +0 -26
  311. package/esm2020/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.validator.mjs +0 -25
  312. package/esm2020/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.mjs +0 -49
  313. package/esm2020/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.validator.mjs +0 -28
  314. package/esm2020/f-minimap/f-minimap-canvas.directive.mjs +0 -66
  315. package/esm2020/f-node/f-group.directive.mjs +0 -145
  316. package/esm2020/f-node/f-node.directive.mjs +0 -146
  317. package/esm2020/f-node/f-resize-handle/f-resize-handle.directive.mjs +0 -43
  318. package/esm2020/f-selection-area/domain/selection-area-finalize/selection-area-finalize.execution.mjs +0 -26
  319. package/esm2020/f-selection-area/domain/selection-area-finalize/selection-area-finalize.validator.mjs +0 -25
  320. package/esm2020/f-selection-area/domain/selection-area-preparation/selection-area-preparation.execution.mjs +0 -38
  321. package/esm2020/f-selection-area/domain/selection-area-preparation/selection-area-preparation.validator.mjs +0 -31
  322. package/esm2020/f-zoom/f-zoom-base.mjs +0 -97
  323. package/esm2020/f-zoom/f-zoom.directive.mjs +0 -59
  324. package/esm2020/mixins/change-selection/change-selection.mjs +0 -28
  325. package/fesm2015/foblex-flow.mjs +0 -7927
  326. package/fesm2020/foblex-flow.mjs.map +0 -1
  327. /package/{esm2020 → esm2022}/domain/constants.mjs +0 -0
  328. /package/{esm2020 → esm2022}/domain/create-connection-markers/create-connection-markers-request.mjs +0 -0
  329. /package/{esm2020 → esm2022}/domain/create-connection-markers/index.mjs +0 -0
  330. /package/{esm2020 → esm2022}/domain/create-dom-element.mjs +0 -0
  331. /package/{esm2020 → esm2022}/domain/create-rounded-rect-from-element/create-rounded-rect-from-element-request.mjs +0 -0
  332. /package/{esm2020 → esm2022}/domain/create-rounded-rect-from-element/index.mjs +0 -0
  333. /package/{esm2020 → esm2022}/domain/emit-transform-changes/emit-transform-changes.request.mjs +0 -0
  334. /package/{esm2020 → esm2022}/domain/emit-transform-changes/index.mjs +0 -0
  335. /package/{esm2020 → esm2022}/domain/f-background/add-pattern-to-background/add-pattern-to-background.request.mjs +0 -0
  336. /package/{esm2020 → esm2022}/domain/f-background/add-pattern-to-background/index.mjs +0 -0
  337. /package/{esm2020 → esm2022}/domain/f-background/index.mjs +0 -0
  338. /package/{esm2020 → esm2022}/domain/f-background/providers.mjs +0 -0
  339. /package/{esm2020 → esm2022}/domain/f-canvas/center-group-or-node/center-group-or-node-request.mjs +0 -0
  340. /package/{esm2020 → esm2022}/domain/f-canvas/center-group-or-node/index.mjs +0 -0
  341. /package/{esm2020 → esm2022}/domain/f-canvas/fit-to-flow/fit-to-flow-request.mjs +0 -0
  342. /package/{esm2020 → esm2022}/domain/f-canvas/fit-to-flow/index.mjs +0 -0
  343. /package/{esm2020 → esm2022}/domain/f-canvas/index.mjs +0 -0
  344. /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-position/index.mjs +0 -0
  345. /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-position/input-canvas-position-request.mjs +0 -0
  346. /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-scale/index.mjs +0 -0
  347. /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-scale/input-canvas-scale-request.mjs +0 -0
  348. /package/{esm2020 → esm2022}/domain/f-canvas/providers.mjs +0 -0
  349. /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale/index.mjs +0 -0
  350. /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale/reset-scale-request.mjs +0 -0
  351. /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale-and-center/index.mjs +0 -0
  352. /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale-and-center/reset-scale-and-center-request.mjs +0 -0
  353. /package/{esm2020 → esm2022}/domain/f-canvas/update-scale/index.mjs +0 -0
  354. /package/{esm2020 → esm2022}/domain/f-canvas/update-scale/update-scale-request.mjs +0 -0
  355. /package/{esm2020 → esm2022}/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.mjs +0 -0
  356. /package/{esm2020 → esm2022}/domain/f-connection/find-closest-input-using-snap-threshold/index.mjs +0 -0
  357. /package/{esm2020 → esm2022}/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.mjs +0 -0
  358. /package/{esm2020 → esm2022}/domain/f-connection/get-all-can-be-connected-input-positions/index.mjs +0 -0
  359. /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/get-connector-with-rect-request.mjs +0 -0
  360. /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/i-connector-with-rect.mjs +0 -0
  361. /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/index.mjs +0 -0
  362. /package/{esm2020 → esm2022}/domain/f-connection/index.mjs +0 -0
  363. /package/{esm2020 → esm2022}/domain/f-connection/providers.mjs +0 -0
  364. /package/{esm2020 → esm2022}/domain/f-selection/clear-selection/clear-selection.request.mjs +0 -0
  365. /package/{esm2020 → esm2022}/domain/f-selection/clear-selection/index.mjs +0 -0
  366. /package/{esm2020 → esm2022}/domain/f-selection/get-selection/get-selection.request.mjs +0 -0
  367. /package/{esm2020 → esm2022}/domain/f-selection/get-selection/index.mjs +0 -0
  368. /package/{esm2020 → esm2022}/domain/f-selection/index.mjs +0 -0
  369. /package/{esm2020 → esm2022}/domain/f-selection/providers.mjs +0 -0
  370. /package/{esm2020 → esm2022}/domain/f-selection/select/index.mjs +0 -0
  371. /package/{esm2020 → esm2022}/domain/f-selection/select/select.request.mjs +0 -0
  372. /package/{esm2020 → esm2022}/domain/f-selection/select-all/index.mjs +0 -0
  373. /package/{esm2020 → esm2022}/domain/f-selection/select-all/select-all.request.mjs +0 -0
  374. /package/{esm2020 → esm2022}/domain/f-selection/select-and-update-node-layer/index.mjs +0 -0
  375. /package/{esm2020 → esm2022}/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.mjs +0 -0
  376. /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/get-can-be-selected-items-request.mjs +0 -0
  377. /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/i-selectable-with-rect.mjs +0 -0
  378. /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/index.mjs +0 -0
  379. /package/{esm2020 → esm2022}/domain/get-connection-line/get-connection-line.request.mjs +0 -0
  380. /package/{esm2020 → esm2022}/domain/get-connection-line/index.mjs +0 -0
  381. /package/{esm2020 → esm2022}/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.request.mjs +0 -0
  382. /package/{esm2020 → esm2022}/domain/get-deep-children-nodes-and-groups/index.mjs +0 -0
  383. /package/{esm2020 → esm2022}/domain/get-element-rect-in-flow/get-element-rect-in-flow-request.mjs +0 -0
  384. /package/{esm2020 → esm2022}/domain/get-element-rect-in-flow/index.mjs +0 -0
  385. /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections-request.mjs +0 -0
  386. /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-connections/index.mjs +0 -0
  387. /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes-request.mjs +0 -0
  388. /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-nodes/index.mjs +0 -0
  389. /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state.request.mjs +0 -0
  390. /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-connection.mjs +0 -0
  391. /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-connector.mjs +0 -0
  392. /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-node.mjs +0 -0
  393. /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state.mjs +0 -0
  394. /package/{esm2020 → esm2022}/domain/get-flow-state/index.mjs +0 -0
  395. /package/{esm2020 → esm2022}/domain/get-flow-state/providers.mjs +0 -0
  396. /package/{esm2020 → esm2022}/domain/get-nodes-rect/get-nodes-rect.request.mjs +0 -0
  397. /package/{esm2020 → esm2022}/domain/get-nodes-rect/index.mjs +0 -0
  398. /package/{esm2020 → esm2022}/domain/get-position-in-flow/get-position-in-flow-request.mjs +0 -0
  399. /package/{esm2020 → esm2022}/domain/get-position-in-flow/index.mjs +0 -0
  400. /package/{esm2020 → esm2022}/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.request.mjs +0 -0
  401. /package/{esm2020 → esm2022}/domain/get-scaled-node-rects-with-flow-position/index.mjs +0 -0
  402. /package/{esm2020 → esm2022}/domain/i-map.mjs +0 -0
  403. /package/{esm2020 → esm2022}/domain/index.mjs +0 -0
  404. /package/{esm2020 → esm2022}/domain/is-connection-under-node/index.mjs +0 -0
  405. /package/{esm2020 → esm2022}/domain/is-connection-under-node/is-connection-under-node.request.mjs +0 -0
  406. /package/{esm2020 → esm2022}/domain/providers.mjs +0 -0
  407. /package/{esm2020 → esm2022}/domain/redraw-connections/index.mjs +0 -0
  408. /package/{esm2020 → esm2022}/domain/redraw-connections/redraw-connections-request.mjs +0 -0
  409. /package/{esm2020 → esm2022}/domain/show-connections-after-calculations/index.mjs +0 -0
  410. /package/{esm2020 → esm2022}/domain/show-connections-after-calculations/show-connections-after-calculations-request.mjs +0 -0
  411. /package/{esm2020 → esm2022}/domain/sort-item-layers/index.mjs +0 -0
  412. /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-item-layers.request.mjs +0 -0
  413. /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-items-by-parent/index.mjs +0 -0
  414. /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.request.mjs +0 -0
  415. /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-node-layers-by-groups/index.mjs +0 -0
  416. /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.request.mjs +0 -0
  417. /package/{esm2020 → esm2022}/domain/subscribe-on-transform-changes/index.mjs +0 -0
  418. /package/{esm2020 → esm2022}/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.request.mjs +0 -0
  419. /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/index.mjs +0 -0
  420. /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.mjs +0 -0
  421. /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.request.mjs +0 -0
  422. /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/update-item-and-children-layers.request.mjs +0 -0
  423. /package/{esm2020 → esm2022}/errors/conflict-error.mjs +0 -0
  424. /package/{esm2020 → esm2022}/errors/create-error-class.mjs +0 -0
  425. /package/{esm2020 → esm2022}/errors/errors.mjs +0 -0
  426. /package/{esm2020 → esm2022}/errors/index.mjs +0 -0
  427. /package/{esm2020 → esm2022}/errors/not-found-error.mjs +0 -0
  428. /package/{esm2020 → esm2022}/f-backgroud/domain/i-f-background-pattern.mjs +0 -0
  429. /package/{esm2020 → esm2022}/f-backgroud/domain/index.mjs +0 -0
  430. /package/{esm2020 → esm2022}/f-backgroud/f-circle-pattern/index.mjs +0 -0
  431. /package/{esm2020 → esm2022}/f-backgroud/f-rect-pattern/index.mjs +0 -0
  432. /package/{esm2020 → esm2022}/f-backgroud/index.mjs +0 -0
  433. /package/{esm2020 → esm2022}/f-backgroud/providers.mjs +0 -0
  434. /package/{esm2020 → esm2022}/f-canvas/domain/f-canvas-change.event.mjs +0 -0
  435. /package/{esm2020 → esm2022}/f-canvas/domain/index.mjs +0 -0
  436. /package/{esm2020 → esm2022}/f-canvas/index.mjs +0 -0
  437. /package/{esm2020 → esm2022}/f-canvas/providers.mjs +0 -0
  438. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.mjs +0 -0
  439. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.mjs +0 -0
  440. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/index.mjs +0 -0
  441. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.mjs +0 -0
  442. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.mjs +0 -0
  443. /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/index.mjs +0 -0
  444. /package/{esm2020 → esm2022}/f-connection/common/domain/f-bezier.path-builder.mjs +0 -0
  445. /package/{esm2020 → esm2022}/f-connection/common/domain/f-segment.path-builder.mjs +0 -0
  446. /package/{esm2020 → esm2022}/f-connection/common/domain/f-straight.path-builder.mjs +0 -0
  447. /package/{esm2020 → esm2022}/f-connection/common/domain/index.mjs +0 -0
  448. /package/{esm2020 → esm2022}/f-connection/common/e-f-connection-behavior.mjs +0 -0
  449. /package/{esm2020 → esm2022}/f-connection/common/e-f-connection-type.mjs +0 -0
  450. /package/{esm2020 → esm2022}/f-connection/common/f-connection-identifiers.mjs +0 -0
  451. /package/{esm2020 → esm2022}/f-connection/common/f-connection-text/i-connection-text.mjs +0 -0
  452. /package/{esm2020 → esm2022}/f-connection/common/f-connection-text/index.mjs +0 -0
  453. /package/{esm2020 → esm2022}/f-connection/common/f-connection.injection-token.mjs +0 -0
  454. /package/{esm2020 → esm2022}/f-connection/common/f-drag-handle/index.mjs +0 -0
  455. /package/{esm2020 → esm2022}/f-connection/common/f-gradient/i-connection-gradient.mjs +0 -0
  456. /package/{esm2020 → esm2022}/f-connection/common/f-gradient/index.mjs +0 -0
  457. /package/{esm2020 → esm2022}/f-connection/common/f-path/get-path-marker-id.mjs +0 -0
  458. /package/{esm2020 → esm2022}/f-connection/common/f-path/i-connection-path.mjs +0 -0
  459. /package/{esm2020 → esm2022}/f-connection/common/f-path/index.mjs +0 -0
  460. /package/{esm2020 → esm2022}/f-connection/common/f-selection/index.mjs +0 -0
  461. /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-color.mjs +0 -0
  462. /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-from-to.mjs +0 -0
  463. /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-text.mjs +0 -0
  464. /package/{esm2020 → esm2022}/f-connection/common/index.mjs +0 -0
  465. /package/{esm2020 → esm2022}/f-connection/f-connection/index.mjs +0 -0
  466. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/f-connection-builders.mjs +0 -0
  467. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-request.mjs +0 -0
  468. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-response.mjs +0 -0
  469. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder.mjs +0 -0
  470. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-factory-request.mjs +0 -0
  471. /package/{esm2020 → esm2022}/f-connection/f-connection-builder/index.mjs +0 -0
  472. /package/{esm2020 → esm2022}/f-connection/f-connection-center/index.mjs +0 -0
  473. /package/{esm2020 → esm2022}/f-connection/f-connection-for-create/index.mjs +0 -0
  474. /package/{esm2020 → esm2022}/f-connection/f-marker/e-f-marker-type.mjs +0 -0
  475. /package/{esm2020 → esm2022}/f-connection/f-marker/index.mjs +0 -0
  476. /package/{esm2020 → esm2022}/f-connection/f-snap-connection/index.mjs +0 -0
  477. /package/{esm2020 → esm2022}/f-connection/index.mjs +0 -0
  478. /package/{esm2020 → esm2022}/f-connection/providers.mjs +0 -0
  479. /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.mjs +0 -0
  480. /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.mjs +0 -0
  481. /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/index.mjs +0 -0
  482. /package/{esm2020 → esm2022}/f-connectors/domain/index.mjs +0 -0
  483. /package/{esm2020 → esm2022}/f-connectors/e-f-connectable-side.mjs +0 -0
  484. /package/{esm2020 → esm2022}/f-connectors/f-connector-base.mjs +0 -0
  485. /package/{esm2020 → esm2022}/f-connectors/f-node-input/index.mjs +0 -0
  486. /package/{esm2020 → esm2022}/f-connectors/f-node-outlet/index.mjs +0 -0
  487. /package/{esm2020 → esm2022}/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -0
  488. /package/{esm2020 → esm2022}/f-connectors/f-node-output/index.mjs +0 -0
  489. /package/{esm2020 → esm2022}/f-connectors/f-node-output/is-node-output.mjs +0 -0
  490. /package/{esm2020 → esm2022}/f-connectors/index.mjs +0 -0
  491. /package/{esm2020 → esm2022}/f-connectors/providers.mjs +0 -0
  492. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.request.mjs +0 -0
  493. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/index.mjs +0 -0
  494. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/providers.mjs +0 -0
  495. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.request.mjs +0 -0
  496. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/index.mjs +0 -0
  497. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/providers.mjs +0 -0
  498. /package/{esm2020 → esm2022}/f-draggable/canvas/canvas.drag-handler.mjs +0 -0
  499. /package/{esm2020 → esm2022}/f-draggable/canvas/index.mjs +0 -0
  500. /package/{esm2020 → esm2022}/f-draggable/canvas/providers.mjs +0 -0
  501. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.request.mjs +0 -0
  502. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-finalize/index.mjs +0 -0
  503. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.request.mjs +0 -0
  504. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/index.mjs +0 -0
  505. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.request.mjs +0 -0
  506. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/index.mjs +0 -0
  507. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.request.mjs +0 -0
  508. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/index.mjs +0 -0
  509. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.request.mjs +0 -0
  510. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/index.mjs +0 -0
  511. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/f-create-connection.event.mjs +0 -0
  512. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.request.mjs +0 -0
  513. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/index.mjs +0 -0
  514. /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/index.mjs +0 -0
  515. /package/{esm2020 → esm2022}/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.request.mjs +0 -0
  516. /package/{esm2020 → esm2022}/f-draggable/connections/get-input-under-pointer/index.mjs +0 -0
  517. /package/{esm2020 → esm2022}/f-draggable/connections/index.mjs +0 -0
  518. /package/{esm2020 → esm2022}/f-draggable/connections/providers.mjs +0 -0
  519. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/f-reassign-connection.event.mjs +0 -0
  520. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/index.mjs +0 -0
  521. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-finalize/index.mjs +0 -0
  522. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.request.mjs +0 -0
  523. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.mjs +0 -0
  524. /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.request.mjs +0 -0
  525. /package/{esm2020 → esm2022}/f-draggable/domain/get-node-padding/get-node-padding.request.mjs +0 -0
  526. /package/{esm2020 → esm2022}/f-draggable/domain/get-node-padding/index.mjs +0 -0
  527. /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.request.mjs +0 -0
  528. /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-node-rect/index.mjs +0 -0
  529. /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.request.mjs +0 -0
  530. /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-parent-node-rect/index.mjs +0 -0
  531. /package/{esm2020 → esm2022}/f-draggable/domain/get-parent-nodes/get-parent-nodes.request.mjs +0 -0
  532. /package/{esm2020 → esm2022}/f-draggable/domain/get-parent-nodes/index.mjs +0 -0
  533. /package/{esm2020 → esm2022}/f-draggable/domain/index.mjs +0 -0
  534. /package/{esm2020 → esm2022}/f-draggable/domain/is-array-has-parent-node/index.mjs +0 -0
  535. /package/{esm2020 → esm2022}/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.request.mjs +0 -0
  536. /package/{esm2020 → esm2022}/f-draggable/domain/providers.mjs +0 -0
  537. /package/{esm2020 → esm2022}/f-draggable/f-selection-change-event.mjs +0 -0
  538. /package/{esm2020 → esm2022}/f-draggable/i-draggable-item.mjs +0 -0
  539. /package/{esm2020 → esm2022}/f-draggable/i-f-drag-and-drop-plugin.mjs +0 -0
  540. /package/{esm2020 → esm2022}/f-draggable/index.mjs +0 -0
  541. /package/{esm2020 → esm2022}/f-draggable/node/connection-source.drag-handler.mjs +0 -0
  542. /package/{esm2020 → esm2022}/f-draggable/node/connection-target.drag-handler.mjs +0 -0
  543. /package/{esm2020 → esm2022}/f-draggable/node/connection.drag-handler.mjs +0 -0
  544. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.request.mjs +0 -0
  545. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.request.mjs +0 -0
  546. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/i-node-move-restrictions.mjs +0 -0
  547. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/index.mjs +0 -0
  548. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/index.mjs +0 -0
  549. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.request.mjs +0 -0
  550. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/index.mjs +0 -0
  551. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.request.mjs +0 -0
  552. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/i-node-with-distance-restrictions.mjs +0 -0
  553. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/index.mjs +0 -0
  554. /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/providers.mjs +0 -0
  555. /package/{esm2020 → esm2022}/f-draggable/node/index.mjs +0 -0
  556. /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/index.mjs +0 -0
  557. /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/node-move-finalize.request.mjs +0 -0
  558. /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/providers.mjs +0 -0
  559. /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/index.mjs +0 -0
  560. /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/node-move-preparation.request.mjs +0 -0
  561. /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/providers.mjs +0 -0
  562. /package/{esm2020 → esm2022}/f-draggable/node/node-resize-by-child.drag-handler.mjs +0 -0
  563. /package/{esm2020 → esm2022}/f-draggable/node/node.drag-handler.mjs +0 -0
  564. /package/{esm2020 → esm2022}/f-draggable/node/providers.mjs +0 -0
  565. /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.mjs +0 -0
  566. /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-child-resize-restrictions/index.mjs +0 -0
  567. /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.request.mjs +0 -0
  568. /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-parent-resize-restrictions/index.mjs +0 -0
  569. /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.request.mjs +0 -0
  570. /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-position/index.mjs +0 -0
  571. /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.request.mjs +0 -0
  572. /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-size/index.mjs +0 -0
  573. /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.request.mjs +0 -0
  574. /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/i-node-resize-restrictions.mjs +0 -0
  575. /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/index.mjs +0 -0
  576. /package/{esm2020 → esm2022}/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.request.mjs +0 -0
  577. /package/{esm2020 → esm2022}/f-draggable/node-resize/get-normalized-children-nodes-rect/index.mjs +0 -0
  578. /package/{esm2020 → esm2022}/f-draggable/node-resize/index.mjs +0 -0
  579. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/index.mjs +0 -0
  580. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.request.mjs +0 -0
  581. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/providers.mjs +0 -0
  582. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/index.mjs +0 -0
  583. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.request.mjs +0 -0
  584. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/providers.mjs +0 -0
  585. /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize.drag-handler.mjs +0 -0
  586. /package/{esm2020 → esm2022}/f-draggable/node-resize/providers.mjs +0 -0
  587. /package/{esm2020 → esm2022}/f-draggable/node-resize/resize-direction.mjs +0 -0
  588. /package/{esm2020 → esm2022}/f-draggable/providers.mjs +0 -0
  589. /package/{esm2020 → esm2022}/f-draggable/single-select/index.mjs +0 -0
  590. /package/{esm2020 → esm2022}/f-draggable/single-select/providers.mjs +0 -0
  591. /package/{esm2020 → esm2022}/f-draggable/single-select/single-select.request.mjs +0 -0
  592. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/external-item-finalize.request.mjs +0 -0
  593. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/index.mjs +0 -0
  594. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/providers.mjs +0 -0
  595. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/external-item-preparation.request.mjs +0 -0
  596. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/index.mjs +0 -0
  597. /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/providers.mjs +0 -0
  598. /package/{esm2020 → esm2022}/f-external-item/domain/external-item.drag-handler.mjs +0 -0
  599. /package/{esm2020 → esm2022}/f-external-item/domain/f-create-node.event.mjs +0 -0
  600. /package/{esm2020 → esm2022}/f-external-item/domain/index.mjs +0 -0
  601. /package/{esm2020 → esm2022}/f-external-item/domain/providers.mjs +0 -0
  602. /package/{esm2020 → esm2022}/f-external-item/index.mjs +0 -0
  603. /package/{esm2020 → esm2022}/f-external-item/is-external-item.mjs +0 -0
  604. /package/{esm2020 → esm2022}/f-external-item/providers.mjs +0 -0
  605. /package/{esm2020 → esm2022}/f-flow/f-flow-base.mjs +0 -0
  606. /package/{esm2020 → esm2022}/f-flow/index.mjs +0 -0
  607. /package/{esm2020 → esm2022}/f-flow/providers.mjs +0 -0
  608. /package/{esm2020 → esm2022}/f-line-alignment/domain/i-line-alignment-rect.mjs +0 -0
  609. /package/{esm2020 → esm2022}/f-line-alignment/domain/i-line-alignment-result.mjs +0 -0
  610. /package/{esm2020 → esm2022}/f-line-alignment/domain/i-nearest-coordinate-result.mjs +0 -0
  611. /package/{esm2020 → esm2022}/f-line-alignment/domain/index.mjs +0 -0
  612. /package/{esm2020 → esm2022}/f-line-alignment/domain/line-element.mjs +0 -0
  613. /package/{esm2020 → esm2022}/f-line-alignment/domain/line-service.mjs +0 -0
  614. /package/{esm2020 → esm2022}/f-line-alignment/domain/nearest-coordinate.mjs +0 -0
  615. /package/{esm2020 → esm2022}/f-line-alignment/index.mjs +0 -0
  616. /package/{esm2020 → esm2022}/f-line-alignment/providers.mjs +0 -0
  617. /package/{esm2020 → esm2022}/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.request.mjs +0 -0
  618. /package/{esm2020 → esm2022}/f-minimap/domain/calculate-flow-point-from-minimap-point/index.mjs +0 -0
  619. /package/{esm2020 → esm2022}/f-minimap/domain/check-rect-is-finite.mjs +0 -0
  620. /package/{esm2020 → esm2022}/f-minimap/domain/f-minimap-data.mjs +0 -0
  621. /package/{esm2020 → esm2022}/f-minimap/domain/f-minimap.drag-handler.mjs +0 -0
  622. /package/{esm2020 → esm2022}/f-minimap/domain/index.mjs +0 -0
  623. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/index.mjs +0 -0
  624. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.request.mjs +0 -0
  625. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/providers.mjs +0 -0
  626. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/index.mjs +0 -0
  627. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.request.mjs +0 -0
  628. /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/providers.mjs +0 -0
  629. /package/{esm2020 → esm2022}/f-minimap/domain/providers.mjs +0 -0
  630. /package/{esm2020 → esm2022}/f-minimap/index.mjs +0 -0
  631. /package/{esm2020 → esm2022}/f-minimap/providers.mjs +0 -0
  632. /package/{esm2020 → esm2022}/f-node/domain/index.mjs +0 -0
  633. /package/{esm2020 → esm2022}/f-node/domain/is-group.mjs +0 -0
  634. /package/{esm2020 → esm2022}/f-node/domain/is-node.mjs +0 -0
  635. /package/{esm2020 → esm2022}/f-node/f-drag-handle/index.mjs +0 -0
  636. /package/{esm2020 → esm2022}/f-node/f-node-base.mjs +0 -0
  637. /package/{esm2020 → esm2022}/f-node/f-resize-handle/e-f-resize-handle-type.mjs +0 -0
  638. /package/{esm2020 → esm2022}/f-node/f-resize-handle/index.mjs +0 -0
  639. /package/{esm2020 → esm2022}/f-node/f-resize-observer.mjs +0 -0
  640. /package/{esm2020 → esm2022}/f-node/f-rotate-handle/index.mjs +0 -0
  641. /package/{esm2020 → esm2022}/f-node/index.mjs +0 -0
  642. /package/{esm2020 → esm2022}/f-node/providers.mjs +0 -0
  643. /package/{esm2020 → esm2022}/f-selection-area/domain/index.mjs +0 -0
  644. /package/{esm2020 → esm2022}/f-selection-area/domain/providers.mjs +0 -0
  645. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/index.mjs +0 -0
  646. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/providers.mjs +0 -0
  647. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/selection-area-finalize.request.mjs +0 -0
  648. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/index.mjs +0 -0
  649. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/providers.mjs +0 -0
  650. /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/selection-area-preparation.request.mjs +0 -0
  651. /package/{esm2020 → esm2022}/f-selection-area/index.mjs +0 -0
  652. /package/{esm2020 → esm2022}/f-selection-area/providers.mjs +0 -0
  653. /package/{esm2020 → esm2022}/f-storage/index.mjs +0 -0
  654. /package/{esm2020 → esm2022}/f-zoom/index.mjs +0 -0
  655. /package/{esm2020 → esm2022}/f-zoom/providers.mjs +0 -0
  656. /package/{esm2020 → esm2022}/foblex-flow.mjs +0 -0
  657. /package/{esm2020 → esm2022}/i-has-host-element.mjs +0 -0
  658. /package/{esm2020 → esm2022}/i-has-state-changes.mjs +0 -0
  659. /package/{esm2020 → esm2022}/mixins/change-selection/i-can-change-selection.mjs +0 -0
  660. /package/{esm2020 → esm2022}/mixins/change-selection/index.mjs +0 -0
  661. /package/{esm2020 → esm2022}/mixins/change-visibility/change-visibility.mjs +0 -0
  662. /package/{esm2020 → esm2022}/mixins/change-visibility/i-can-change-visibility.mjs +0 -0
  663. /package/{esm2020 → esm2022}/mixins/change-visibility/index.mjs +0 -0
  664. /package/{esm2020 → esm2022}/mixins/constructor.mjs +0 -0
  665. /package/{esm2020 → esm2022}/mixins/index.mjs +0 -0
  666. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
@@ -61,10 +61,10 @@ class FComponentsStore {
61
61
  componentDataChanged() {
62
62
  this.componentsDataChanges.next();
63
63
  }
64
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FComponentsStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
65
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FComponentsStore }); }
64
66
  }
65
- FComponentsStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FComponentsStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
66
- FComponentsStore.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FComponentsStore });
67
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FComponentsStore, decorators: [{
67
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FComponentsStore, decorators: [{
68
68
  type: Injectable
69
69
  }] });
70
70
 
@@ -72,10 +72,10 @@ class FTransformStore {
72
72
  constructor() {
73
73
  this.changes = new Subject();
74
74
  }
75
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FTransformStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
76
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FTransformStore }); }
75
77
  }
76
- FTransformStore.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FTransformStore, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
77
- FTransformStore.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FTransformStore });
78
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FTransformStore, decorators: [{
78
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FTransformStore, decorators: [{
79
79
  type: Injectable
80
80
  }] });
81
81
 
@@ -118,13 +118,13 @@ let CreateConnectionMarkersExecution = class CreateConnectionMarkersExecution {
118
118
  markerElement.setAttribute('markerUnits', `${marker.markerUnits}`);
119
119
  return markerElement;
120
120
  }
121
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionMarkersExecution, deps: [{ token: i1.BrowserService }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
122
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionMarkersExecution }); }
121
123
  };
122
- CreateConnectionMarkersExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionMarkersExecution, deps: [{ token: i1.BrowserService }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
123
- CreateConnectionMarkersExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionMarkersExecution });
124
124
  CreateConnectionMarkersExecution = __decorate([
125
125
  FExecutionRegister(CreateConnectionMarkersRequest)
126
126
  ], CreateConnectionMarkersExecution);
127
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionMarkersExecution, decorators: [{
127
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionMarkersExecution, decorators: [{
128
128
  type: Injectable
129
129
  }], ctorParameters: function () { return [{ type: i1.BrowserService }, { type: FComponentsStore }]; } });
130
130
  function createSVGElement$1(tag, fBrowser) {
@@ -158,13 +158,13 @@ let CreateRoundedRectFromElementExecution = class CreateRoundedRectFromElementEx
158
158
  toPixels(value, element, fontSize) {
159
159
  return this.fBrowser.toPixels(value, element.clientWidth, element.clientHeight, fontSize) || 0;
160
160
  }
161
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateRoundedRectFromElementExecution, deps: [{ token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
162
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateRoundedRectFromElementExecution }); }
161
163
  };
162
- CreateRoundedRectFromElementExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateRoundedRectFromElementExecution, deps: [{ token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
163
- CreateRoundedRectFromElementExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateRoundedRectFromElementExecution });
164
164
  CreateRoundedRectFromElementExecution = __decorate([
165
165
  FExecutionRegister(CreateRoundedRectFromElementRequest)
166
166
  ], CreateRoundedRectFromElementExecution);
167
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateRoundedRectFromElementExecution, decorators: [{
167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateRoundedRectFromElementExecution, decorators: [{
168
168
  type: Injectable
169
169
  }], ctorParameters: function () { return [{ type: i1.BrowserService }]; } });
170
170
 
@@ -178,13 +178,13 @@ let EmitTransformChangesExecution = class EmitTransformChangesExecution {
178
178
  handle(request) {
179
179
  this.fTransformStore.changes.next();
180
180
  }
181
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EmitTransformChangesExecution, deps: [{ token: FTransformStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
182
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EmitTransformChangesExecution }); }
181
183
  };
182
- EmitTransformChangesExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: EmitTransformChangesExecution, deps: [{ token: FTransformStore }], target: i0.ɵɵFactoryTarget.Injectable });
183
- EmitTransformChangesExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: EmitTransformChangesExecution });
184
184
  EmitTransformChangesExecution = __decorate([
185
185
  FExecutionRegister(EmitTransformChangesRequest)
186
186
  ], EmitTransformChangesExecution);
187
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: EmitTransformChangesExecution, decorators: [{
187
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: EmitTransformChangesExecution, decorators: [{
188
188
  type: Injectable
189
189
  }], ctorParameters: function () { return [{ type: FTransformStore }]; } });
190
190
 
@@ -196,13 +196,13 @@ class AddPatternToBackgroundRequest {
196
196
 
197
197
  let uniqueId$c = 0;
198
198
  let AddPatternToBackgroundExecution = class AddPatternToBackgroundExecution {
199
+ get fBackground() {
200
+ return this.fComponentsStore.fBackground;
201
+ }
199
202
  constructor(fComponentsStore, fBrowser) {
200
203
  this.fComponentsStore = fComponentsStore;
201
204
  this.fBrowser = fBrowser;
202
205
  }
203
- get fBackground() {
204
- return this.fComponentsStore.fBackground;
205
- }
206
206
  handle(request) {
207
207
  const children = request.fPattern?.hostElement.getElementsByTagName('pattern') || [];
208
208
  const pattern = children.length ? children[0] : undefined;
@@ -221,13 +221,13 @@ let AddPatternToBackgroundExecution = class AddPatternToBackgroundExecution {
221
221
  request.fPattern?.setTransform(transform);
222
222
  }
223
223
  }
224
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddPatternToBackgroundExecution, deps: [{ token: FComponentsStore }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
225
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddPatternToBackgroundExecution }); }
224
226
  };
225
- AddPatternToBackgroundExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: AddPatternToBackgroundExecution, deps: [{ token: FComponentsStore }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
226
- AddPatternToBackgroundExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: AddPatternToBackgroundExecution });
227
227
  AddPatternToBackgroundExecution = __decorate([
228
228
  FExecutionRegister(AddPatternToBackgroundRequest)
229
229
  ], AddPatternToBackgroundExecution);
230
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: AddPatternToBackgroundExecution, decorators: [{
230
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AddPatternToBackgroundExecution, decorators: [{
231
231
  type: Injectable
232
232
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i1.BrowserService }]; } });
233
233
 
@@ -243,12 +243,12 @@ class CenterGroupOrNodeRequest {
243
243
  }
244
244
 
245
245
  let CenterGroupOrNodeExecution = class CenterGroupOrNodeExecution {
246
- constructor(fComponentsStore) {
247
- this.fComponentsStore = fComponentsStore;
248
- }
249
246
  get transform() {
250
247
  return this.fComponentsStore.fCanvas.transform;
251
248
  }
249
+ constructor(fComponentsStore) {
250
+ this.fComponentsStore = fComponentsStore;
251
+ }
252
252
  handle(request) {
253
253
  const fNode = this.getNode(request.id);
254
254
  if (!fNode) {
@@ -272,13 +272,13 @@ let CenterGroupOrNodeExecution = class CenterGroupOrNodeExecution {
272
272
  getFlowRect() {
273
273
  return RectExtensions.fromElement(this.fComponentsStore.fFlow.hostElement);
274
274
  }
275
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CenterGroupOrNodeExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
276
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CenterGroupOrNodeExecution }); }
275
277
  };
276
- CenterGroupOrNodeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CenterGroupOrNodeExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
277
- CenterGroupOrNodeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CenterGroupOrNodeExecution });
278
278
  CenterGroupOrNodeExecution = __decorate([
279
279
  FExecutionRegister(CenterGroupOrNodeRequest)
280
280
  ], CenterGroupOrNodeExecution);
281
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CenterGroupOrNodeExecution, decorators: [{
281
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CenterGroupOrNodeExecution, decorators: [{
282
282
  type: Injectable
283
283
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
284
284
 
@@ -290,13 +290,13 @@ class FitToFlowRequest {
290
290
  }
291
291
 
292
292
  let FitToFlowExecution = class FitToFlowExecution {
293
+ get transform() {
294
+ return this.fComponentsStore.fCanvas.transform;
295
+ }
293
296
  constructor(fComponentsStore, fMediator) {
294
297
  this.fComponentsStore = fComponentsStore;
295
298
  this.fMediator = fMediator;
296
299
  }
297
- get transform() {
298
- return this.fComponentsStore.fCanvas.transform;
299
- }
300
300
  handle(request) {
301
301
  const fNodesRect = this.fMediator.send(new GetNodesRectRequest()) || RectExtensions.initialize();
302
302
  if (fNodesRect.width === 0 || fNodesRect.height === 0) {
@@ -325,13 +325,13 @@ let FitToFlowExecution = class FitToFlowExecution {
325
325
  const yPoint = points.length ? Math.min(...points.map((point) => point.y)) : 0;
326
326
  return PointExtensions.initialize(xPoint, yPoint);
327
327
  }
328
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FitToFlowExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
329
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FitToFlowExecution }); }
328
330
  };
329
- FitToFlowExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FitToFlowExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
330
- FitToFlowExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FitToFlowExecution });
331
331
  FitToFlowExecution = __decorate([
332
332
  FExecutionRegister(FitToFlowRequest)
333
333
  ], FitToFlowExecution);
334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FitToFlowExecution, decorators: [{
334
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FitToFlowExecution, decorators: [{
335
335
  type: Injectable
336
336
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
337
337
 
@@ -357,13 +357,13 @@ let InputCanvasPositionExecution = class InputCanvasPositionExecution {
357
357
  this.fComponentsStore.fCanvas?.redraw();
358
358
  }
359
359
  }
360
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasPositionExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
361
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasPositionExecution }); }
360
362
  };
361
- InputCanvasPositionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasPositionExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
362
- InputCanvasPositionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasPositionExecution });
363
363
  InputCanvasPositionExecution = __decorate([
364
364
  FExecutionRegister(InputCanvasPositionRequest)
365
365
  ], InputCanvasPositionExecution);
366
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasPositionExecution, decorators: [{
366
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasPositionExecution, decorators: [{
367
367
  type: Injectable
368
368
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
369
369
 
@@ -385,13 +385,13 @@ let InputCanvasScaleExecution = class InputCanvasScaleExecution {
385
385
  request.transform.scale = request.scale;
386
386
  this.fComponentsStore.fCanvas?.redraw();
387
387
  }
388
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
389
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasScaleExecution }); }
388
390
  };
389
- InputCanvasScaleExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
390
- InputCanvasScaleExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasScaleExecution });
391
391
  InputCanvasScaleExecution = __decorate([
392
392
  FExecutionRegister(InputCanvasScaleRequest)
393
393
  ], InputCanvasScaleExecution);
394
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: InputCanvasScaleExecution, decorators: [{
394
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: InputCanvasScaleExecution, decorators: [{
395
395
  type: Injectable
396
396
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
397
397
 
@@ -399,23 +399,23 @@ class ResetScaleRequest {
399
399
  }
400
400
 
401
401
  let ResetScaleExecution = class ResetScaleExecution {
402
- constructor(fComponentsStore) {
403
- this.fComponentsStore = fComponentsStore;
404
- }
405
402
  get transform() {
406
403
  return this.fComponentsStore.fCanvas.transform;
407
404
  }
405
+ constructor(fComponentsStore) {
406
+ this.fComponentsStore = fComponentsStore;
407
+ }
408
408
  handle(request) {
409
409
  this.transform.scale = 1;
410
410
  this.transform.scaledPosition = PointExtensions.initialize();
411
411
  }
412
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
413
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleExecution }); }
412
414
  };
413
- ResetScaleExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
414
- ResetScaleExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleExecution });
415
415
  ResetScaleExecution = __decorate([
416
416
  FExecutionRegister(ResetScaleRequest)
417
417
  ], ResetScaleExecution);
418
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleExecution, decorators: [{
418
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleExecution, decorators: [{
419
419
  type: Injectable
420
420
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
421
421
 
@@ -426,13 +426,13 @@ class ResetScaleAndCenterRequest {
426
426
  }
427
427
 
428
428
  let ResetScaleAndCenterExecution = class ResetScaleAndCenterExecution {
429
+ get transform() {
430
+ return this.fComponentsStore.fCanvas.transform;
431
+ }
429
432
  constructor(fComponentsStore, fMediator) {
430
433
  this.fComponentsStore = fComponentsStore;
431
434
  this.fMediator = fMediator;
432
435
  }
433
- get transform() {
434
- return this.fComponentsStore.fCanvas.transform;
435
- }
436
436
  handle(request) {
437
437
  const fNodesRect = this.fMediator.send(new GetNodesRectRequest()) || RectExtensions.initialize();
438
438
  if (fNodesRect.width === 0 || fNodesRect.height === 0) {
@@ -456,13 +456,13 @@ let ResetScaleAndCenterExecution = class ResetScaleAndCenterExecution {
456
456
  const yPoint = points.length ? Math.min(...points.map((point) => point.y)) : 0;
457
457
  return PointExtensions.initialize(xPoint, yPoint);
458
458
  }
459
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleAndCenterExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
460
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleAndCenterExecution }); }
459
461
  };
460
- ResetScaleAndCenterExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleAndCenterExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
461
- ResetScaleAndCenterExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleAndCenterExecution });
462
462
  ResetScaleAndCenterExecution = __decorate([
463
463
  FExecutionRegister(ResetScaleAndCenterRequest)
464
464
  ], ResetScaleAndCenterExecution);
465
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ResetScaleAndCenterExecution, decorators: [{
465
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ResetScaleAndCenterExecution, decorators: [{
466
466
  type: Injectable
467
467
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
468
468
 
@@ -474,12 +474,12 @@ class UpdateScaleRequest {
474
474
  }
475
475
 
476
476
  let UpdateScaleExecution = class UpdateScaleExecution {
477
- constructor(fComponentsStore) {
478
- this.fComponentsStore = fComponentsStore;
479
- }
480
477
  get transform() {
481
478
  return this.fComponentsStore.fCanvas.transform;
482
479
  }
480
+ constructor(fComponentsStore) {
481
+ this.fComponentsStore = fComponentsStore;
482
+ }
483
483
  handle(request) {
484
484
  if (request.scale !== this.transform.scale) {
485
485
  const summaryPosition = PointExtensions.sum(this.transform.scaledPosition, this.transform.position);
@@ -489,13 +489,13 @@ let UpdateScaleExecution = class UpdateScaleExecution {
489
489
  this.transform.scaledPosition = PointExtensions.sub(PointExtensions.initialize(newX, newY), this.transform.position);
490
490
  }
491
491
  }
492
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
493
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateScaleExecution }); }
492
494
  };
493
- UpdateScaleExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateScaleExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
494
- UpdateScaleExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateScaleExecution });
495
495
  UpdateScaleExecution = __decorate([
496
496
  FExecutionRegister(UpdateScaleRequest)
497
497
  ], UpdateScaleExecution);
498
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateScaleExecution, decorators: [{
498
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateScaleExecution, decorators: [{
499
499
  type: Injectable
500
500
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
501
501
 
@@ -540,13 +540,13 @@ let FindClosestInputUsingSnapThresholdExecution = class FindClosestInputUsingSna
540
540
  clamp(value, min, max) {
541
541
  return Math.max(min, Math.min(max, value));
542
542
  }
543
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
544
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution }); }
543
545
  };
544
- FindClosestInputUsingSnapThresholdExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
545
- FindClosestInputUsingSnapThresholdExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution });
546
546
  FindClosestInputUsingSnapThresholdExecution = __decorate([
547
547
  FExecutionRegister(FindClosestInputUsingSnapThresholdRequest)
548
548
  ], FindClosestInputUsingSnapThresholdExecution);
549
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution, decorators: [{
549
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FindClosestInputUsingSnapThresholdExecution, decorators: [{
550
550
  type: Injectable
551
551
  }] });
552
552
 
@@ -569,16 +569,16 @@ class GetElementRectInFlowRequest {
569
569
  }
570
570
 
571
571
  let GetElementRectInFlowExecution = class GetElementRectInFlowExecution {
572
- constructor(fComponentsStore, fMediator) {
573
- this.fComponentsStore = fComponentsStore;
574
- this.fMediator = fMediator;
575
- }
576
572
  get transform() {
577
573
  return this.fComponentsStore.transform;
578
574
  }
579
575
  get flowHost() {
580
576
  return this.fComponentsStore.flowHost;
581
577
  }
578
+ constructor(fComponentsStore, fMediator) {
579
+ this.fComponentsStore = fComponentsStore;
580
+ this.fMediator = fMediator;
581
+ }
582
582
  handle(request) {
583
583
  const systemRect = this.fMediator.send(new CreateRoundedRectFromElementRequest(request.element));
584
584
  const position = this.transformElementPositionInFlow(systemRect);
@@ -591,13 +591,13 @@ let GetElementRectInFlowExecution = class GetElementRectInFlowExecution {
591
591
  transformElementSizeInFlow(rect) {
592
592
  return SizeExtensions.initialize(rect.width / this.transform.scale, rect.height / this.transform.scale);
593
593
  }
594
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetElementRectInFlowExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
595
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetElementRectInFlowExecution }); }
594
596
  };
595
- GetElementRectInFlowExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetElementRectInFlowExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
596
- GetElementRectInFlowExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetElementRectInFlowExecution });
597
597
  GetElementRectInFlowExecution = __decorate([
598
598
  FExecutionRegister(GetElementRectInFlowRequest)
599
599
  ], GetElementRectInFlowExecution);
600
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetElementRectInFlowExecution, decorators: [{
600
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetElementRectInFlowExecution, decorators: [{
601
601
  type: Injectable
602
602
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
603
603
 
@@ -611,27 +611,27 @@ let GetConnectorWithRectExecution = class GetConnectorWithRectExecution {
611
611
  fRect: this.fMediator.send(new GetElementRectInFlowRequest(request.connector.hostElement))
612
612
  };
613
613
  }
614
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectorWithRectExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
615
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectorWithRectExecution }); }
614
616
  };
615
- GetConnectorWithRectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectorWithRectExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
616
- GetConnectorWithRectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectorWithRectExecution });
617
617
  GetConnectorWithRectExecution = __decorate([
618
618
  FExecutionRegister(GetConnectorWithRectRequest)
619
619
  ], GetConnectorWithRectExecution);
620
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectorWithRectExecution, decorators: [{
620
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectorWithRectExecution, decorators: [{
621
621
  type: Injectable
622
622
  }], ctorParameters: function () { return [{ type: i2.FMediator }]; } });
623
623
 
624
624
  let GetAllCanBeConnectedInputPositionsExecution = class GetAllCanBeConnectedInputPositionsExecution {
625
- constructor(fComponentsStore, fMediator) {
626
- this.fComponentsStore = fComponentsStore;
627
- this.fMediator = fMediator;
628
- }
629
625
  get fNodes() {
630
626
  return this.fComponentsStore.fNodes;
631
627
  }
632
628
  get fInputs() {
633
629
  return this.fComponentsStore.fInputs;
634
630
  }
631
+ constructor(fComponentsStore, fMediator) {
632
+ this.fComponentsStore = fComponentsStore;
633
+ this.fMediator = fMediator;
634
+ }
635
635
  handle(payload) {
636
636
  return this.getCanBeConnectedInputs(this.getOutput(payload.fOutputId)).map((x) => {
637
637
  return this.fMediator.send(new GetConnectorWithRectRequest(x));
@@ -657,13 +657,13 @@ let GetAllCanBeConnectedInputPositionsExecution = class GetAllCanBeConnectedInpu
657
657
  getNodeOfConnector(connector) {
658
658
  return this.fNodes.find((x) => x.isContains(connector.hostElement));
659
659
  }
660
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
661
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution }); }
660
662
  };
661
- GetAllCanBeConnectedInputPositionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
662
- GetAllCanBeConnectedInputPositionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution });
663
663
  GetAllCanBeConnectedInputPositionsExecution = __decorate([
664
664
  FExecutionRegister(GetAllCanBeConnectedInputPositionsRequest)
665
665
  ], GetAllCanBeConnectedInputPositionsExecution);
666
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution, decorators: [{
666
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetAllCanBeConnectedInputPositionsExecution, decorators: [{
667
667
  type: Injectable
668
668
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
669
669
 
@@ -698,10 +698,10 @@ class FDraggableDataContext {
698
698
  markSelectionAsChanged() {
699
699
  this.isSelectedChanged = true;
700
700
  }
701
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableDataContext, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
702
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableDataContext }); }
701
703
  }
702
- FDraggableDataContext.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableDataContext, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
703
- FDraggableDataContext.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableDataContext });
704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableDataContext, decorators: [{
704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableDataContext, decorators: [{
705
705
  type: Injectable
706
706
  }] });
707
707
 
@@ -712,13 +712,13 @@ let CanvasMoveFinalizeExecution = class CanvasMoveFinalizeExecution {
712
712
  handle(request) {
713
713
  this.fDraggableDataContext.draggableItems.forEach((x) => x.complete?.());
714
714
  }
715
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
716
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeExecution }); }
715
717
  };
716
- CanvasMoveFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
717
- CanvasMoveFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeExecution });
718
718
  CanvasMoveFinalizeExecution = __decorate([
719
719
  FExecutionRegister(CanvasMoveFinalizeRequest)
720
720
  ], CanvasMoveFinalizeExecution);
721
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeExecution, decorators: [{
721
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeExecution, decorators: [{
722
722
  type: Injectable
723
723
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
724
724
 
@@ -746,13 +746,13 @@ let CanvasMoveFinalizeValidator = class CanvasMoveFinalizeValidator {
746
746
  handle(request) {
747
747
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof CanvasDragHandler);
748
748
  }
749
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
750
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeValidator }); }
749
751
  };
750
- CanvasMoveFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
751
- CanvasMoveFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeValidator });
752
752
  CanvasMoveFinalizeValidator = __decorate([
753
753
  FValidatorRegister(CanvasMoveFinalizeRequest)
754
754
  ], CanvasMoveFinalizeValidator);
755
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMoveFinalizeValidator, decorators: [{
755
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMoveFinalizeValidator, decorators: [{
756
756
  type: Injectable
757
757
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
758
758
 
@@ -768,13 +768,13 @@ class CanvasMovePreparationRequest {
768
768
  }
769
769
 
770
770
  let CanvasMovePreparationExecution = class CanvasMovePreparationExecution {
771
+ get flowHost() {
772
+ return this.fComponentsStore.fFlow.hostElement;
773
+ }
771
774
  constructor(fComponentsStore, fDraggableDataContext) {
772
775
  this.fComponentsStore = fComponentsStore;
773
776
  this.fDraggableDataContext = fDraggableDataContext;
774
777
  }
775
- get flowHost() {
776
- return this.fComponentsStore.fFlow.hostElement;
777
- }
778
778
  handle(request) {
779
779
  this.fDraggableDataContext.onPointerDownScale = 1;
780
780
  this.fDraggableDataContext.onPointerDownPosition = Point.fromPoint(request.event.getPosition())
@@ -783,24 +783,24 @@ let CanvasMovePreparationExecution = class CanvasMovePreparationExecution {
783
783
  new CanvasDragHandler(this.fComponentsStore)
784
784
  ];
785
785
  }
786
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
787
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationExecution }); }
786
788
  };
787
- CanvasMovePreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
788
- CanvasMovePreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationExecution });
789
789
  CanvasMovePreparationExecution = __decorate([
790
790
  FExecutionRegister(CanvasMovePreparationRequest)
791
791
  ], CanvasMovePreparationExecution);
792
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationExecution, decorators: [{
792
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationExecution, decorators: [{
793
793
  type: Injectable
794
794
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
795
795
 
796
796
  let CanvasMovePreparationValidator = class CanvasMovePreparationValidator {
797
+ get flowHost() {
798
+ return this.fComponentsStore.fFlow.hostElement;
799
+ }
797
800
  constructor(fComponentsStore, fDraggableDataContext) {
798
801
  this.fComponentsStore = fComponentsStore;
799
802
  this.fDraggableDataContext = fDraggableDataContext;
800
803
  }
801
- get flowHost() {
802
- return this.fComponentsStore.fFlow.hostElement;
803
- }
804
804
  handle(request) {
805
805
  return !this.fDraggableDataContext.draggableItems.length &&
806
806
  (this.isBackgroundElement(request.event.targetElement) || this.isDragOnHost(request.event.targetElement));
@@ -818,13 +818,13 @@ let CanvasMovePreparationValidator = class CanvasMovePreparationValidator {
818
818
  }
819
819
  return result;
820
820
  }
821
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
822
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationValidator }); }
821
823
  };
822
- CanvasMovePreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
823
- CanvasMovePreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationValidator });
824
824
  CanvasMovePreparationValidator = __decorate([
825
825
  FValidatorRegister(CanvasMovePreparationRequest)
826
826
  ], CanvasMovePreparationValidator);
827
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CanvasMovePreparationValidator, decorators: [{
827
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CanvasMovePreparationValidator, decorators: [{
828
828
  type: Injectable
829
829
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
830
830
 
@@ -914,10 +914,10 @@ class FNodeInputBase extends FConnectorBase {
914
914
  get canBeConnected() {
915
915
  return !this.disabled && (this.multiple ? true : !this.isConnected);
916
916
  }
917
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeInputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
918
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeInputBase, usesInheritance: true, ngImport: i0 }); }
917
919
  }
918
- FNodeInputBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeInputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive });
919
- FNodeInputBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeInputBase, usesInheritance: true, ngImport: i0 });
920
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeInputBase, decorators: [{
920
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeInputBase, decorators: [{
921
921
  type: Directive
922
922
  }] });
923
923
 
@@ -931,16 +931,16 @@ function isNode(element) {
931
931
 
932
932
  const F_DRAG_HANDLE = new InjectionToken('F_DRAG_HANDLE');
933
933
  class FDragHandleDirective {
934
- constructor(elementReference) {
935
- this.elementReference = elementReference;
936
- }
937
934
  get hostElement() {
938
935
  return this.elementReference.nativeElement;
939
936
  }
937
+ constructor(elementReference) {
938
+ this.elementReference = elementReference;
939
+ }
940
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDragHandleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
941
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FDragHandleDirective, selector: "[fDragHandle]", host: { classAttribute: "f-drag-handle f-component" }, providers: [{ provide: F_DRAG_HANDLE, useExisting: FDragHandleDirective }], ngImport: i0 }); }
940
942
  }
941
- FDragHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDragHandleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
942
- FDragHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FDragHandleDirective, selector: "[fDragHandle]", host: { classAttribute: "f-drag-handle f-component" }, providers: [{ provide: F_DRAG_HANDLE, useExisting: FDragHandleDirective }], ngImport: i0 });
943
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDragHandleDirective, decorators: [{
943
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDragHandleDirective, decorators: [{
944
944
  type: Directive,
945
945
  args: [{
946
946
  selector: "[fDragHandle]",
@@ -961,10 +961,6 @@ var EFResizeHandleType;
961
961
 
962
962
  const F_RESIZE_HANDLE = new InjectionToken('F_RESIZE_HANDLE');
963
963
  class FResizeHandleDirective {
964
- constructor(elementReference) {
965
- this.elementReference = elementReference;
966
- this._type = EFResizeHandleType.LEFT_TOP;
967
- }
968
964
  set type(type) {
969
965
  this._type = castToEnum(type, 'fResizeHandleType', EFResizeHandleType);
970
966
  }
@@ -977,10 +973,14 @@ class FResizeHandleDirective {
977
973
  get hostElement() {
978
974
  return this.elementReference.nativeElement;
979
975
  }
976
+ constructor(elementReference) {
977
+ this.elementReference = elementReference;
978
+ this._type = EFResizeHandleType.LEFT_TOP;
979
+ }
980
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FResizeHandleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
981
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FResizeHandleDirective, selector: "[fResizeHandle]", inputs: { type: ["fResizeHandleType", "type"] }, host: { properties: { "attr.data-f-resize-handle-type": "type", "class": "this.typeClass" }, classAttribute: "f-resize-handle f-component" }, providers: [{ provide: F_RESIZE_HANDLE, useExisting: FResizeHandleDirective }], ngImport: i0 }); }
980
982
  }
981
- FResizeHandleDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FResizeHandleDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
982
- FResizeHandleDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FResizeHandleDirective, selector: "[fResizeHandle]", inputs: { type: ["fResizeHandleType", "type"] }, host: { properties: { "attr.data-f-resize-handle-type": "type", "class": "this.typeClass" }, classAttribute: "f-resize-handle f-component" }, providers: [{ provide: F_RESIZE_HANDLE, useExisting: FResizeHandleDirective }], ngImport: i0 });
983
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FResizeHandleDirective, decorators: [{
983
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FResizeHandleDirective, decorators: [{
984
984
  type: Directive,
985
985
  args: [{
986
986
  selector: "[fResizeHandle]",
@@ -1009,10 +1009,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1009
1009
  // providers: [ { provide: F_ROTATE_HANDLE, useExisting: FRotateHandleDirective } ],
1010
1010
  // })
1011
1011
  class FRotateHandleDirective {
1012
- constructor(elementReference) {
1013
- this.elementReference = elementReference;
1014
- this.isDisabled = false;
1015
- }
1016
1012
  // @Input('fRotateHandleDisabled')
1017
1013
  // public set disabled(isDisabled: boolean | undefined | string) {
1018
1014
  // this.isDisabled = BooleanExtensions.castToBoolean(isDisabled);
@@ -1023,16 +1019,15 @@ class FRotateHandleDirective {
1023
1019
  get hostElement() {
1024
1020
  return this.elementReference.nativeElement;
1025
1021
  }
1022
+ constructor(elementReference) {
1023
+ this.elementReference = elementReference;
1024
+ this.isDisabled = false;
1025
+ }
1026
1026
  }
1027
1027
 
1028
1028
  const F_SELECTED_CLASS = 'f-selected';
1029
1029
  function mixinChangeSelection(base) {
1030
1030
  return class extends base {
1031
- constructor(...args) {
1032
- super(...args);
1033
- this.fId = '';
1034
- this.fSelectionDisabled = false;
1035
- }
1036
1031
  deselect() {
1037
1032
  this.deselectChild?.();
1038
1033
  this.hostElement.classList.remove(F_SELECTED_CLASS);
@@ -1050,6 +1045,11 @@ function mixinChangeSelection(base) {
1050
1045
  }
1051
1046
  deselectChild() {
1052
1047
  }
1048
+ constructor(...args) {
1049
+ super(...args);
1050
+ this.fId = '';
1051
+ this.fSelectionDisabled = false;
1052
+ }
1053
1053
  };
1054
1054
  }
1055
1055
 
@@ -1115,6 +1115,20 @@ class FResizeObserver extends Observable {
1115
1115
 
1116
1116
  let uniqueId$b = 0;
1117
1117
  class FGroupDirective extends FNodeBase {
1118
+ set position(value) {
1119
+ this._position = PointExtensions.castToPoint(value);
1120
+ this.refresh();
1121
+ }
1122
+ get position() {
1123
+ return this._position;
1124
+ }
1125
+ set size(value) {
1126
+ this._size = value;
1127
+ this.refresh();
1128
+ }
1129
+ get size() {
1130
+ return this._size;
1131
+ }
1118
1132
  constructor(elementReference, renderer, fComponentsStore, fMediator, fBrowser) {
1119
1133
  super(elementReference.nativeElement);
1120
1134
  this.renderer = renderer;
@@ -1132,20 +1146,6 @@ class FGroupDirective extends FNodeBase {
1132
1146
  this.fConnectOnNode = true;
1133
1147
  this.connectors = [];
1134
1148
  }
1135
- set position(value) {
1136
- this._position = PointExtensions.castToPoint(value);
1137
- this.refresh();
1138
- }
1139
- get position() {
1140
- return this._position;
1141
- }
1142
- set size(value) {
1143
- this._size = value;
1144
- this.refresh();
1145
- }
1146
- get size() {
1147
- return this._size;
1148
- }
1149
1149
  ngOnInit() {
1150
1150
  this.setStyle('position', 'absolute');
1151
1151
  this.setStyle('transform-origin', 'center');
@@ -1196,12 +1196,12 @@ class FGroupDirective extends FNodeBase {
1196
1196
  this.stateChanges.complete();
1197
1197
  this.subscriptions$.unsubscribe();
1198
1198
  }
1199
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FGroupDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive }); }
1200
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FGroupDirective, selector: "[fGroup]", inputs: { fId: ["fGroupId", "fId"], fParentId: ["fGroupParentId", "fParentId"], position: ["fGroupPosition", "position"], size: ["fGroupSize", "size"], fDraggingDisabled: ["fGroupDraggingDisabled", "fDraggingDisabled"], fSelectionDisabled: ["fGroupSelectionDisabled", "fSelectionDisabled"], fIncludePadding: "fIncludePadding", fConnectOnNode: "fConnectOnNode" }, outputs: { positionChange: "fGroupPositionChange", sizeChange: "fGroupSizeChange" }, host: { properties: { "attr.data-f-group-id": "fId", "class.f-group-dragging-disabled": "fDraggingDisabled", "class.f-group-selection-disabled": "fSelectionDisabled" }, classAttribute: "f-group f-component" }, providers: [
1201
+ { provide: F_NODE, useExisting: FGroupDirective }
1202
+ ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
1199
1203
  }
1200
- FGroupDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FGroupDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
1201
- FGroupDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FGroupDirective, selector: "[fGroup]", inputs: { fId: ["fGroupId", "fId"], fParentId: ["fGroupParentId", "fParentId"], position: ["fGroupPosition", "position"], size: ["fGroupSize", "size"], fDraggingDisabled: ["fGroupDraggingDisabled", "fDraggingDisabled"], fSelectionDisabled: ["fGroupSelectionDisabled", "fSelectionDisabled"], fIncludePadding: "fIncludePadding", fConnectOnNode: "fConnectOnNode" }, outputs: { positionChange: "fGroupPositionChange", sizeChange: "fGroupSizeChange" }, host: { properties: { "attr.data-f-group-id": "fId", "class.f-group-dragging-disabled": "fDraggingDisabled", "class.f-group-selection-disabled": "fSelectionDisabled" }, classAttribute: "f-group f-component" }, providers: [
1202
- { provide: F_NODE, useExisting: FGroupDirective }
1203
- ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 });
1204
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FGroupDirective, decorators: [{
1204
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FGroupDirective, decorators: [{
1205
1205
  type: Directive,
1206
1206
  args: [{
1207
1207
  selector: "[fGroup]",
@@ -1248,6 +1248,20 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
1248
1248
 
1249
1249
  let uniqueId$a = 0;
1250
1250
  class FNodeDirective extends FNodeBase {
1251
+ set position(value) {
1252
+ this._position = PointExtensions.castToPoint(value);
1253
+ this.refresh();
1254
+ }
1255
+ get position() {
1256
+ return this._position;
1257
+ }
1258
+ set size(value) {
1259
+ this._size = value;
1260
+ this.refresh();
1261
+ }
1262
+ get size() {
1263
+ return this._size;
1264
+ }
1251
1265
  constructor(elementReference, renderer, fComponentsStore, fMediator, fBrowser) {
1252
1266
  super(elementReference.nativeElement);
1253
1267
  this.renderer = renderer;
@@ -1266,20 +1280,6 @@ class FNodeDirective extends FNodeBase {
1266
1280
  this.fConnectOnNode = true;
1267
1281
  this.connectors = [];
1268
1282
  }
1269
- set position(value) {
1270
- this._position = PointExtensions.castToPoint(value);
1271
- this.refresh();
1272
- }
1273
- get position() {
1274
- return this._position;
1275
- }
1276
- set size(value) {
1277
- this._size = value;
1278
- this.refresh();
1279
- }
1280
- get size() {
1281
- return this._size;
1282
- }
1283
1283
  ngOnInit() {
1284
1284
  this.setStyle('position', 'absolute');
1285
1285
  this.setStyle('transform-origin', 'center');
@@ -1330,12 +1330,12 @@ class FNodeDirective extends FNodeBase {
1330
1330
  this.stateChanges.complete();
1331
1331
  this.subscriptions$.unsubscribe();
1332
1332
  }
1333
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive }); }
1334
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeDirective, selector: "[fNode]", inputs: { fId: ["fNodeId", "fId"], fParentId: ["fNodeParentId", "fParentId"], position: ["fNodePosition", "position"], size: ["fNodeSize", "size"], fDraggingDisabled: ["fNodeDraggingDisabled", "fDraggingDisabled"], fSelectionDisabled: ["fNodeSelectionDisabled", "fSelectionDisabled"], fIncludePadding: "fIncludePadding", fConnectOnNode: "fConnectOnNode" }, outputs: { positionChange: "fNodePositionChange", sizeChange: "fNodeSizeChange" }, host: { properties: { "attr.data-f-node-id": "fId", "class.f-node-dragging-disabled": "fDraggingDisabled", "class.f-node-selection-disabled": "fSelectionDisabled" }, classAttribute: "f-node f-component" }, providers: [
1335
+ { provide: F_NODE, useExisting: FNodeDirective }
1336
+ ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
1333
1337
  }
1334
- FNodeDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeDirective, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
1335
- FNodeDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeDirective, selector: "[fNode]", inputs: { fId: ["fNodeId", "fId"], fParentId: ["fNodeParentId", "fParentId"], position: ["fNodePosition", "position"], size: ["fNodeSize", "size"], fDraggingDisabled: ["fNodeDraggingDisabled", "fDraggingDisabled"], fSelectionDisabled: ["fNodeSelectionDisabled", "fSelectionDisabled"], fIncludePadding: "fIncludePadding", fConnectOnNode: "fConnectOnNode" }, outputs: { positionChange: "fNodePositionChange", sizeChange: "fNodeSizeChange" }, host: { properties: { "attr.data-f-node-id": "fId", "class.f-node-dragging-disabled": "fDraggingDisabled", "class.f-node-selection-disabled": "fSelectionDisabled" }, classAttribute: "f-node f-component" }, providers: [
1336
- { provide: F_NODE, useExisting: FNodeDirective }
1337
- ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 });
1338
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeDirective, decorators: [{
1338
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeDirective, decorators: [{
1339
1339
  type: Directive,
1340
1340
  args: [{
1341
1341
  selector: "[fNode]",
@@ -1389,17 +1389,6 @@ const F_NODE_PROVIDERS = [
1389
1389
 
1390
1390
  let uniqueId$9 = 0;
1391
1391
  class FNodeInputDirective extends FNodeInputBase {
1392
- constructor(elementReference, fNode, fComponentsStore) {
1393
- super();
1394
- this.elementReference = elementReference;
1395
- this.fNode = fNode;
1396
- this.fComponentsStore = fComponentsStore;
1397
- this.id = `f-node-input-${uniqueId$9++}`;
1398
- this.multiple = true;
1399
- this.isDisabled = false;
1400
- this._fConnectableSide = EFConnectableSide.AUTO;
1401
- this.isConnected = false;
1402
- }
1403
1392
  get disabled() {
1404
1393
  return this.isDisabled;
1405
1394
  }
@@ -1420,6 +1409,17 @@ class FNodeInputDirective extends FNodeInputBase {
1420
1409
  get hostElement() {
1421
1410
  return this.elementReference.nativeElement;
1422
1411
  }
1412
+ constructor(elementReference, fNode, fComponentsStore) {
1413
+ super();
1414
+ this.elementReference = elementReference;
1415
+ this.fNode = fNode;
1416
+ this.fComponentsStore = fComponentsStore;
1417
+ this.id = `f-node-input-${uniqueId$9++}`;
1418
+ this.multiple = true;
1419
+ this.isDisabled = false;
1420
+ this._fConnectableSide = EFConnectableSide.AUTO;
1421
+ this.isConnected = false;
1422
+ }
1423
1423
  ngOnInit() {
1424
1424
  this.fComponentsStore.addComponent(this.fComponentsStore.fInputs, this);
1425
1425
  this.fNode.addConnector(this);
@@ -1432,10 +1432,10 @@ class FNodeInputDirective extends FNodeInputBase {
1432
1432
  this.fNode.removeConnector(this);
1433
1433
  this.fComponentsStore.removeComponent(this.fComponentsStore.fInputs, this);
1434
1434
  }
1435
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeInputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
1436
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeInputDirective, selector: "[fNodeInput]", inputs: { id: ["fInputId", "id"], multiple: ["fInputMultiple", "multiple"], disabled: ["fInputDisabled", "disabled"], _fSide: ["fInputConnectableSide", "_fSide"] }, host: { properties: { "attr.data-f-input-id": "id", "class.f-node-input-multiple": "multiple", "class.f-node-input-disabled": "disabled", "class.f-node-input-not-connectable": "!canBeConnected" }, classAttribute: "f-component f-node-input" }, providers: [{ provide: F_NODE_INPUT, useExisting: FNodeInputDirective }], exportAs: ["fNodeInput"], usesInheritance: true, ngImport: i0 }); }
1435
1437
  }
1436
- FNodeInputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeInputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
1437
- FNodeInputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeInputDirective, selector: "[fNodeInput]", inputs: { id: ["fInputId", "id"], multiple: ["fInputMultiple", "multiple"], disabled: ["fInputDisabled", "disabled"], _fSide: ["fInputConnectableSide", "_fSide"] }, host: { properties: { "attr.data-f-input-id": "id", "class.f-node-input-multiple": "multiple", "class.f-node-input-disabled": "disabled", "class.f-node-input-not-connectable": "!canBeConnected" }, classAttribute: "f-component f-node-input" }, providers: [{ provide: F_NODE_INPUT, useExisting: FNodeInputDirective }], exportAs: ["fNodeInput"], usesInheritance: true, ngImport: i0 });
1438
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeInputDirective, decorators: [{
1438
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeInputDirective, decorators: [{
1439
1439
  type: Directive,
1440
1440
  args: [{
1441
1441
  selector: "[fNodeInput]",
@@ -1479,10 +1479,10 @@ class FNodeOutletBase extends FConnectorBase {
1479
1479
  setOutputs(outputs) {
1480
1480
  this.outputs = outputs;
1481
1481
  }
1482
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutletBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
1483
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeOutletBase, usesInheritance: true, ngImport: i0 }); }
1482
1484
  }
1483
- FNodeOutletBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutletBase, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1484
- FNodeOutletBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeOutletBase, usesInheritance: true, ngImport: i0 });
1485
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutletBase, decorators: [{
1485
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutletBase, decorators: [{
1486
1486
  type: Directive
1487
1487
  }] });
1488
1488
 
@@ -1492,17 +1492,6 @@ function isNodeOutlet(element) {
1492
1492
 
1493
1493
  let uniqueId$8 = 0;
1494
1494
  class FNodeOutletDirective extends FNodeOutletBase {
1495
- constructor(elementReference, fNode, fComponentsStore) {
1496
- super();
1497
- this.elementReference = elementReference;
1498
- this.fNode = fNode;
1499
- this.fComponentsStore = fComponentsStore;
1500
- this.id = `f-node-outlet-${uniqueId$8++}`;
1501
- this.isDisabled = false;
1502
- this.fConnectableSide = EFConnectableSide.AUTO;
1503
- this._fConnectableSide = EFConnectableSide.AUTO;
1504
- this.isConnectionFromOutlet = false;
1505
- }
1506
1495
  get disabled() {
1507
1496
  return this.isDisabled;
1508
1497
  }
@@ -1516,6 +1505,17 @@ class FNodeOutletDirective extends FNodeOutletBase {
1516
1505
  get hostElement() {
1517
1506
  return this.elementReference.nativeElement;
1518
1507
  }
1508
+ constructor(elementReference, fNode, fComponentsStore) {
1509
+ super();
1510
+ this.elementReference = elementReference;
1511
+ this.fNode = fNode;
1512
+ this.fComponentsStore = fComponentsStore;
1513
+ this.id = `f-node-outlet-${uniqueId$8++}`;
1514
+ this.isDisabled = false;
1515
+ this.fConnectableSide = EFConnectableSide.AUTO;
1516
+ this._fConnectableSide = EFConnectableSide.AUTO;
1517
+ this.isConnectionFromOutlet = false;
1518
+ }
1519
1519
  ngOnInit() {
1520
1520
  if (!this.fNode) {
1521
1521
  throw new Error('fNodeOutlet must be inside fNode Directive');
@@ -1525,10 +1525,10 @@ class FNodeOutletDirective extends FNodeOutletBase {
1525
1525
  ngOnDestroy() {
1526
1526
  this.fComponentsStore.removeComponent(this.fComponentsStore.fOutlets, this);
1527
1527
  }
1528
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutletDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
1529
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeOutletDirective, selector: "[fNodeOutlet]", inputs: { id: ["fOutletId", "id"], disabled: ["fOutletDisabled", "disabled"], isConnectionFromOutlet: "isConnectionFromOutlet" }, host: { properties: { "attr.data-f-outlet-id": "id", "class.f-node-outlet-disabled": "disabled" }, classAttribute: "f-component f-node-outlet" }, providers: [{ provide: F_NODE_OUTLET, useExisting: FNodeOutletDirective }], exportAs: ["fNodeOutlet"], usesInheritance: true, ngImport: i0 }); }
1528
1530
  }
1529
- FNodeOutletDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutletDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
1530
- FNodeOutletDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeOutletDirective, selector: "[fNodeOutlet]", inputs: { id: ["fOutletId", "id"], disabled: ["fOutletDisabled", "disabled"], isConnectionFromOutlet: "isConnectionFromOutlet" }, host: { properties: { "attr.data-f-outlet-id": "id", "class.f-node-outlet-disabled": "disabled" }, classAttribute: "f-component f-node-outlet" }, providers: [{ provide: F_NODE_OUTLET, useExisting: FNodeOutletDirective }], exportAs: ["fNodeOutlet"], usesInheritance: true, ngImport: i0 });
1531
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutletDirective, decorators: [{
1531
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutletDirective, decorators: [{
1532
1532
  type: Directive,
1533
1533
  args: [{
1534
1534
  selector: "[fNodeOutlet]",
@@ -1562,10 +1562,10 @@ class FNodeOutputBase extends FConnectorBase {
1562
1562
  get canBeConnected() {
1563
1563
  return !this.disabled && (this.multiple ? true : !this.isConnected);
1564
1564
  }
1565
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
1566
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeOutputBase, usesInheritance: true, ngImport: i0 }); }
1565
1567
  }
1566
- FNodeOutputBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive });
1567
- FNodeOutputBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeOutputBase, usesInheritance: true, ngImport: i0 });
1568
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutputBase, decorators: [{
1568
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutputBase, decorators: [{
1569
1569
  type: Directive
1570
1570
  }] });
1571
1571
 
@@ -1575,18 +1575,6 @@ function isNodeOutput(element) {
1575
1575
 
1576
1576
  let uniqueId$7 = 0;
1577
1577
  class FNodeOutputDirective extends FNodeOutputBase {
1578
- constructor(elementReference, fNode, fComponentsStore) {
1579
- super();
1580
- this.elementReference = elementReference;
1581
- this.fNode = fNode;
1582
- this.fComponentsStore = fComponentsStore;
1583
- this.id = `f-node-output-${uniqueId$7++}`;
1584
- this.multiple = false;
1585
- this.isDisabled = false;
1586
- this._fConnectableSide = EFConnectableSide.AUTO;
1587
- this.isConnected = false;
1588
- this.isSelfConnectable = true;
1589
- }
1590
1578
  get disabled() {
1591
1579
  return this.isDisabled;
1592
1580
  }
@@ -1607,6 +1595,18 @@ class FNodeOutputDirective extends FNodeOutputBase {
1607
1595
  get hostElement() {
1608
1596
  return this.elementReference.nativeElement;
1609
1597
  }
1598
+ constructor(elementReference, fNode, fComponentsStore) {
1599
+ super();
1600
+ this.elementReference = elementReference;
1601
+ this.fNode = fNode;
1602
+ this.fComponentsStore = fComponentsStore;
1603
+ this.id = `f-node-output-${uniqueId$7++}`;
1604
+ this.multiple = false;
1605
+ this.isDisabled = false;
1606
+ this._fConnectableSide = EFConnectableSide.AUTO;
1607
+ this.isConnected = false;
1608
+ this.isSelfConnectable = true;
1609
+ }
1610
1610
  ngOnInit() {
1611
1611
  if (!this.fNode) {
1612
1612
  throw new Error('fNodeOutput must be inside fNode Directive');
@@ -1622,10 +1622,10 @@ class FNodeOutputDirective extends FNodeOutputBase {
1622
1622
  this.fNode.removeConnector(this);
1623
1623
  this.fComponentsStore.removeComponent(this.fComponentsStore.fOutputs, this);
1624
1624
  }
1625
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
1626
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FNodeOutputDirective, selector: "[fNodeOutput]", inputs: { id: ["fOutputId", "id"], multiple: ["fOutputMultiple", "multiple"], disabled: ["fOutputDisabled", "disabled"], _fSide: ["fOutputConnectableSide", "_fSide"], isSelfConnectable: "isSelfConnectable" }, host: { properties: { "attr.data-f-output-id": "id", "class.f-node-output-multiple": "multiple", "class.f-node-output-disabled": "disabled", "class.f-node-output-not-connectable": "!canBeConnected", "class.f-node-output-self-connectable": "isSelfConnectable" }, classAttribute: "f-component f-node-output" }, providers: [{ provide: F_NODE_OUTPUT, useExisting: FNodeOutputDirective }], exportAs: ["fNodeOutput"], usesInheritance: true, ngImport: i0 }); }
1625
1627
  }
1626
- FNodeOutputDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutputDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
1627
- FNodeOutputDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FNodeOutputDirective, selector: "[fNodeOutput]", inputs: { id: ["fOutputId", "id"], multiple: ["fOutputMultiple", "multiple"], disabled: ["fOutputDisabled", "disabled"], _fSide: ["fOutputConnectableSide", "_fSide"], isSelfConnectable: "isSelfConnectable" }, host: { properties: { "attr.data-f-output-id": "id", "class.f-node-output-multiple": "multiple", "class.f-node-output-disabled": "disabled", "class.f-node-output-not-connectable": "!canBeConnected", "class.f-node-output-self-connectable": "isSelfConnectable" }, classAttribute: "f-component f-node-output" }, providers: [{ provide: F_NODE_OUTPUT, useExisting: FNodeOutputDirective }], exportAs: ["fNodeOutput"], usesInheritance: true, ngImport: i0 });
1628
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FNodeOutputDirective, decorators: [{
1628
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FNodeOutputDirective, decorators: [{
1629
1629
  type: Directive,
1630
1630
  args: [{
1631
1631
  selector: "[fNodeOutput]",
@@ -1710,15 +1710,15 @@ class GetCanBeConnectedOutputByOutletRequest {
1710
1710
  }
1711
1711
 
1712
1712
  let GetCanBeConnectedOutputByOutletExecution = class GetCanBeConnectedOutputByOutletExecution {
1713
- constructor(fComponentsStore) {
1714
- this.fComponentsStore = fComponentsStore;
1715
- }
1716
1713
  get fNodes() {
1717
1714
  return this.fComponentsStore.fNodes;
1718
1715
  }
1719
1716
  get fOutputs() {
1720
1717
  return this.fComponentsStore.fOutputs;
1721
1718
  }
1719
+ constructor(fComponentsStore) {
1720
+ this.fComponentsStore = fComponentsStore;
1721
+ }
1722
1722
  handle(request) {
1723
1723
  const outputs = this.getConnectableOutputs(this.getNode(request.outlet));
1724
1724
  if (!outputs.length) {
@@ -1734,33 +1734,33 @@ let GetCanBeConnectedOutputByOutletExecution = class GetCanBeConnectedOutputByOu
1734
1734
  getNode(outlet) {
1735
1735
  return this.fNodes.find((x) => x.isContains(outlet.hostElement));
1736
1736
  }
1737
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1738
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution }); }
1737
1739
  };
1738
- GetCanBeConnectedOutputByOutletExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
1739
- GetCanBeConnectedOutputByOutletExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution });
1740
1740
  GetCanBeConnectedOutputByOutletExecution = __decorate([
1741
1741
  FExecutionRegister(GetCanBeConnectedOutputByOutletRequest)
1742
1742
  ], GetCanBeConnectedOutputByOutletExecution);
1743
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution, decorators: [{
1743
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletExecution, decorators: [{
1744
1744
  type: Injectable
1745
1745
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
1746
1746
 
1747
1747
  let GetCanBeConnectedOutputByOutletValidator = class GetCanBeConnectedOutputByOutletValidator {
1748
- constructor(fComponentsStore) {
1749
- this.fComponentsStore = fComponentsStore;
1750
- }
1751
1748
  get fNodes() {
1752
1749
  return this.fComponentsStore.fNodes;
1753
1750
  }
1751
+ constructor(fComponentsStore) {
1752
+ this.fComponentsStore = fComponentsStore;
1753
+ }
1754
1754
  handle(request) {
1755
1755
  return !!this.fNodes.find((x) => x.isContains(request.outlet.hostElement));
1756
1756
  }
1757
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1758
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator }); }
1757
1759
  };
1758
- GetCanBeConnectedOutputByOutletValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
1759
- GetCanBeConnectedOutputByOutletValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator });
1760
1760
  GetCanBeConnectedOutputByOutletValidator = __decorate([
1761
1761
  FValidatorRegister(GetCanBeConnectedOutputByOutletRequest)
1762
1762
  ], GetCanBeConnectedOutputByOutletValidator);
1763
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator, decorators: [{
1763
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeConnectedOutputByOutletValidator, decorators: [{
1764
1764
  type: Injectable
1765
1765
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
1766
1766
 
@@ -1780,17 +1780,17 @@ class GetInputUnderPointerRequest {
1780
1780
  }
1781
1781
 
1782
1782
  let GetInputUnderPointerExecution = class GetInputUnderPointerExecution {
1783
- constructor(fComponentsStore, fDraggableDataContext, fBrowser) {
1784
- this.fComponentsStore = fComponentsStore;
1785
- this.fDraggableDataContext = fDraggableDataContext;
1786
- this.fBrowser = fBrowser;
1787
- }
1788
1783
  get fNodes() {
1789
1784
  return this.fComponentsStore.fNodes;
1790
1785
  }
1791
1786
  get fInputs() {
1792
1787
  return this.fComponentsStore.fInputs;
1793
1788
  }
1789
+ constructor(fComponentsStore, fDraggableDataContext, fBrowser) {
1790
+ this.fComponentsStore = fComponentsStore;
1791
+ this.fDraggableDataContext = fDraggableDataContext;
1792
+ this.fBrowser = fBrowser;
1793
+ }
1794
1794
  handle(payload) {
1795
1795
  const output = (this.getOutput(payload.dragHandler) || this.getOutlet(payload.dragHandler));
1796
1796
  const inputsUnderPointer = this.getInputsUnderPointer(payload.event.getPosition(), payload.dragHandler);
@@ -1844,13 +1844,13 @@ let GetInputUnderPointerExecution = class GetInputUnderPointerExecution {
1844
1844
  return sourceNode?.hostElement !== targetNode?.hostElement;
1845
1845
  });
1846
1846
  }
1847
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
1848
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerExecution }); }
1847
1849
  };
1848
- GetInputUnderPointerExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
1849
- GetInputUnderPointerExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerExecution });
1850
1850
  GetInputUnderPointerExecution = __decorate([
1851
1851
  FExecutionRegister(GetInputUnderPointerRequest)
1852
1852
  ], GetInputUnderPointerExecution);
1853
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerExecution, decorators: [{
1853
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerExecution, decorators: [{
1854
1854
  type: Injectable
1855
1855
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i1.BrowserService }]; } });
1856
1856
 
@@ -1871,25 +1871,25 @@ let GetInputUnderPointerValidator = class GetInputUnderPointerValidator {
1871
1871
  getOutlet(dragHandler) {
1872
1872
  return this.fComponentsStore.fOutlets.find((x) => x.id === dragHandler.fConnection.fOutputId);
1873
1873
  }
1874
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
1875
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerValidator }); }
1874
1876
  };
1875
- GetInputUnderPointerValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
1876
- GetInputUnderPointerValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerValidator });
1877
1877
  GetInputUnderPointerValidator = __decorate([
1878
1878
  FValidatorRegister(GetInputUnderPointerRequest)
1879
1879
  ], GetInputUnderPointerValidator);
1880
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetInputUnderPointerValidator, decorators: [{
1880
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetInputUnderPointerValidator, decorators: [{
1881
1881
  type: Injectable
1882
1882
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
1883
1883
 
1884
1884
  let CreateConnectionFinalizeExecution = class CreateConnectionFinalizeExecution {
1885
+ get dragHandler() {
1886
+ return this.fDraggableDataContext.draggableItems[0];
1887
+ }
1885
1888
  constructor(fComponentsStore, fDraggableDataContext, fMediator) {
1886
1889
  this.fComponentsStore = fComponentsStore;
1887
1890
  this.fDraggableDataContext = fDraggableDataContext;
1888
1891
  this.fMediator = fMediator;
1889
1892
  }
1890
- get dragHandler() {
1891
- return this.fDraggableDataContext.draggableItems[0];
1892
- }
1893
1893
  handle(request) {
1894
1894
  this.emitEvent(request.event);
1895
1895
  this.dragHandler.complete();
@@ -1912,17 +1912,23 @@ let CreateConnectionFinalizeExecution = class CreateConnectionFinalizeExecution
1912
1912
  getInputUnderPointer(event) {
1913
1913
  return this.fMediator.send(new GetInputUnderPointerRequest(event, this.dragHandler));
1914
1914
  }
1915
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
1916
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeExecution }); }
1915
1917
  };
1916
- CreateConnectionFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
1917
- CreateConnectionFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeExecution });
1918
1918
  CreateConnectionFinalizeExecution = __decorate([
1919
1919
  FExecutionRegister(CreateConnectionFinalizeRequest)
1920
1920
  ], CreateConnectionFinalizeExecution);
1921
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeExecution, decorators: [{
1921
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeExecution, decorators: [{
1922
1922
  type: Injectable
1923
1923
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
1924
1924
 
1925
1925
  class CreateConnectionDragHandler {
1926
+ get fConnection() {
1927
+ return this.fComponentsStore.fTempConnection;
1928
+ }
1929
+ get fSnapConnection() {
1930
+ return this.fComponentsStore.fSnapConnection;
1931
+ }
1926
1932
  constructor(fMediator, fComponentsStore, fOutput, onPointerDownPosition) {
1927
1933
  this.fMediator = fMediator;
1928
1934
  this.fComponentsStore = fComponentsStore;
@@ -1931,12 +1937,6 @@ class CreateConnectionDragHandler {
1931
1937
  this.toConnectorRect = new RoundedRect();
1932
1938
  this.canBeConnectedInputs = [];
1933
1939
  }
1934
- get fConnection() {
1935
- return this.fComponentsStore.fTempConnection;
1936
- }
1937
- get fSnapConnection() {
1938
- return this.fComponentsStore.fSnapConnection;
1939
- }
1940
1940
  initialize() {
1941
1941
  if (this.fSnapConnection) {
1942
1942
  this.fSnapConnection.fOutputId = this.fOutput.id;
@@ -1987,13 +1987,13 @@ let CreateConnectionFinalizeValidator = class CreateConnectionFinalizeValidator
1987
1987
  handle(request) {
1988
1988
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof CreateConnectionDragHandler);
1989
1989
  }
1990
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
1991
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeValidator }); }
1990
1992
  };
1991
- CreateConnectionFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
1992
- CreateConnectionFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeValidator });
1993
1993
  CreateConnectionFinalizeValidator = __decorate([
1994
1994
  FValidatorRegister(CreateConnectionFinalizeRequest)
1995
1995
  ], CreateConnectionFinalizeValidator);
1996
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFinalizeValidator, decorators: [{
1996
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFinalizeValidator, decorators: [{
1997
1997
  type: Injectable
1998
1998
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
1999
1999
 
@@ -2005,17 +2005,17 @@ class CreateConnectionDragHandlerRequest {
2005
2005
  }
2006
2006
 
2007
2007
  let CreateConnectionDragHandlerExecution = class CreateConnectionDragHandlerExecution {
2008
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
2009
- this.fComponentsStore = fComponentsStore;
2010
- this.fDraggableDataContext = fDraggableDataContext;
2011
- this.fMediator = fMediator;
2012
- }
2013
2008
  get flowHost() {
2014
2009
  return this.fComponentsStore.flowHost;
2015
2010
  }
2016
2011
  get transform() {
2017
2012
  return this.fComponentsStore.fCanvas.transform;
2018
2013
  }
2014
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
2015
+ this.fComponentsStore = fComponentsStore;
2016
+ this.fDraggableDataContext = fDraggableDataContext;
2017
+ this.fMediator = fMediator;
2018
+ }
2019
2019
  handle(request) {
2020
2020
  this.fDraggableDataContext.onPointerDownScale = this.transform.scale;
2021
2021
  const positionRelativeToFlowComponent = Point.fromPoint(request.onPointerDownPosition)
@@ -2027,13 +2027,13 @@ let CreateConnectionDragHandlerExecution = class CreateConnectionDragHandlerExec
2027
2027
  new CreateConnectionDragHandler(this.fMediator, this.fComponentsStore, request.connector, positionRelativeToCanvasComponent)
2028
2028
  ];
2029
2029
  }
2030
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionDragHandlerExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
2031
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionDragHandlerExecution }); }
2030
2032
  };
2031
- CreateConnectionDragHandlerExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionDragHandlerExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
2032
- CreateConnectionDragHandlerExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionDragHandlerExecution });
2033
2033
  CreateConnectionDragHandlerExecution = __decorate([
2034
2034
  FExecutionRegister(CreateConnectionDragHandlerRequest)
2035
2035
  ], CreateConnectionDragHandlerExecution);
2036
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionDragHandlerExecution, decorators: [{
2036
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionDragHandlerExecution, decorators: [{
2037
2037
  type: Injectable
2038
2038
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
2039
2039
 
@@ -2075,13 +2075,13 @@ let CreateConnectionFromOutletPreparationExecution = class CreateConnectionFromO
2075
2075
  createDragHandler(position, output) {
2076
2076
  this.fMediator.send(new CreateConnectionDragHandlerRequest(position, output));
2077
2077
  }
2078
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
2079
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution }); }
2078
2080
  };
2079
- CreateConnectionFromOutletPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
2080
- CreateConnectionFromOutletPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution });
2081
2081
  CreateConnectionFromOutletPreparationExecution = __decorate([
2082
2082
  FExecutionRegister(CreateConnectionFromOutletPreparationRequest)
2083
2083
  ], CreateConnectionFromOutletPreparationExecution);
2084
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution, decorators: [{
2084
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutletPreparationExecution, decorators: [{
2085
2085
  type: Injectable
2086
2086
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
2087
2087
 
@@ -2111,13 +2111,13 @@ let CreateConnectionFromOutputPreparationExecution = class CreateConnectionFromO
2111
2111
  createDragHandler(position, output) {
2112
2112
  this.fMediator.send(new CreateConnectionDragHandlerRequest(position, output));
2113
2113
  }
2114
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
2115
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution }); }
2114
2116
  };
2115
- CreateConnectionFromOutputPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
2116
- CreateConnectionFromOutputPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution });
2117
2117
  CreateConnectionFromOutputPreparationExecution = __decorate([
2118
2118
  FExecutionRegister(CreateConnectionFromOutputPreparationRequest)
2119
2119
  ], CreateConnectionFromOutputPreparationExecution);
2120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution, decorators: [{
2120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationExecution, decorators: [{
2121
2121
  type: Injectable
2122
2122
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
2123
2123
 
@@ -2137,13 +2137,13 @@ let CreateConnectionFromOutputPreparationValidator = class CreateConnectionFromO
2137
2137
  getOutlets(node) {
2138
2138
  return this.fComponentsStore.fOutlets.filter((x) => node.isContains(x.hostElement));
2139
2139
  }
2140
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
2141
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator }); }
2140
2142
  };
2141
- CreateConnectionFromOutputPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
2142
- CreateConnectionFromOutputPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator });
2143
2143
  CreateConnectionFromOutputPreparationValidator = __decorate([
2144
2144
  FValidatorRegister(CreateConnectionFromOutputPreparationRequest)
2145
2145
  ], CreateConnectionFromOutputPreparationValidator);
2146
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator, decorators: [{
2146
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionFromOutputPreparationValidator, decorators: [{
2147
2147
  type: Injectable
2148
2148
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
2149
2149
 
@@ -2175,13 +2175,13 @@ let CreateConnectionPreparationExecution = class CreateConnectionPreparationExec
2175
2175
  getOutlets(node) {
2176
2176
  return this.fComponentsStore.fOutlets.filter((x) => node.isContains(x.hostElement));
2177
2177
  }
2178
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
2179
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationExecution }); }
2178
2180
  };
2179
- CreateConnectionPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
2180
- CreateConnectionPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationExecution });
2181
2181
  CreateConnectionPreparationExecution = __decorate([
2182
2182
  FExecutionRegister(CreateConnectionPreparationRequest)
2183
2183
  ], CreateConnectionPreparationExecution);
2184
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationExecution, decorators: [{
2184
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationExecution, decorators: [{
2185
2185
  type: Injectable
2186
2186
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
2187
2187
 
@@ -2199,13 +2199,13 @@ let CreateConnectionPreparationValidator = class CreateConnectionPreparationVali
2199
2199
  isValidConditions() {
2200
2200
  return !this.fDraggableDataContext.draggableItems.length && !!this.fComponentsStore.fTempConnection;
2201
2201
  }
2202
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
2203
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationValidator }); }
2202
2204
  };
2203
- CreateConnectionPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
2204
- CreateConnectionPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationValidator });
2205
2205
  CreateConnectionPreparationValidator = __decorate([
2206
2206
  FValidatorRegister(CreateConnectionPreparationRequest)
2207
2207
  ], CreateConnectionPreparationValidator);
2208
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateConnectionPreparationValidator, decorators: [{
2208
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateConnectionPreparationValidator, decorators: [{
2209
2209
  type: Injectable
2210
2210
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
2211
2211
 
@@ -2225,17 +2225,17 @@ class FReassignConnectionEvent {
2225
2225
  }
2226
2226
 
2227
2227
  let ReassignConnectionFinalizeExecution = class ReassignConnectionFinalizeExecution {
2228
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
2229
- this.fComponentsStore = fComponentsStore;
2230
- this.fDraggableDataContext = fDraggableDataContext;
2231
- this.fMediator = fMediator;
2232
- }
2233
2228
  get fDraggable() {
2234
2229
  return this.fComponentsStore.fDraggable;
2235
2230
  }
2236
2231
  get dragHandler() {
2237
2232
  return this.fDraggableDataContext.draggableItems[0];
2238
2233
  }
2234
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
2235
+ this.fComponentsStore = fComponentsStore;
2236
+ this.fDraggableDataContext = fDraggableDataContext;
2237
+ this.fMediator = fMediator;
2238
+ }
2239
2239
  handle(request) {
2240
2240
  this.emitEvent(request.event);
2241
2241
  this.dragHandler.complete();
@@ -2253,17 +2253,20 @@ let ReassignConnectionFinalizeExecution = class ReassignConnectionFinalizeExecut
2253
2253
  isReassignToDifferentInput(inputsUnderPointer) {
2254
2254
  return this.dragHandler.fConnection.fInputId !== inputsUnderPointer.id;
2255
2255
  }
2256
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
2257
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeExecution }); }
2256
2258
  };
2257
- ReassignConnectionFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
2258
- ReassignConnectionFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeExecution });
2259
2259
  ReassignConnectionFinalizeExecution = __decorate([
2260
2260
  FExecutionRegister(ReassignConnectionFinalizeRequest)
2261
2261
  ], ReassignConnectionFinalizeExecution);
2262
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeExecution, decorators: [{
2262
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeExecution, decorators: [{
2263
2263
  type: Injectable
2264
2264
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
2265
2265
 
2266
2266
  class ReassignConnectionDragHandler {
2267
+ get fSnapConnection() {
2268
+ return this.fComponentsStore.fSnapConnection;
2269
+ }
2267
2270
  constructor(fMediator, fComponentsStore, fConnection) {
2268
2271
  this.fMediator = fMediator;
2269
2272
  this.fComponentsStore = fComponentsStore;
@@ -2271,9 +2274,6 @@ class ReassignConnectionDragHandler {
2271
2274
  this.toConnectorRect = new RoundedRect();
2272
2275
  this.canBeConnectedInputs = [];
2273
2276
  }
2274
- get fSnapConnection() {
2275
- return this.fComponentsStore.fSnapConnection;
2276
- }
2277
2277
  initialize() {
2278
2278
  if (this.fSnapConnection) {
2279
2279
  this.fSnapConnection.fOutputId = this.fConnection.fOutputId;
@@ -2326,13 +2326,13 @@ let ReassignConnectionFinalizeValidator = class ReassignConnectionFinalizeValida
2326
2326
  handle(request) {
2327
2327
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof ReassignConnectionDragHandler);
2328
2328
  }
2329
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
2330
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeValidator }); }
2329
2331
  };
2330
- ReassignConnectionFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
2331
- ReassignConnectionFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeValidator });
2332
2332
  ReassignConnectionFinalizeValidator = __decorate([
2333
2333
  FValidatorRegister(ReassignConnectionFinalizeRequest)
2334
2334
  ], ReassignConnectionFinalizeValidator);
2335
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionFinalizeValidator, decorators: [{
2335
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionFinalizeValidator, decorators: [{
2336
2336
  type: Injectable
2337
2337
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
2338
2338
 
@@ -2607,6 +2607,12 @@ const F_CONNECTION_IDENTIFIERS = {
2607
2607
  const F_CONNECTION = new InjectionToken('F_CONNECTION');
2608
2608
 
2609
2609
  class FConnectionTextPathDirective {
2610
+ get linkToConnection() {
2611
+ return F_CONNECTION_IDENTIFIERS.linkToConnection(this.base.fId + this.base.fOutputId + this.base.fInputId);
2612
+ }
2613
+ get hostElement() {
2614
+ return this.elementReference.nativeElement;
2615
+ }
2610
2616
  constructor(elementReference, base, fBrowser) {
2611
2617
  this.elementReference = elementReference;
2612
2618
  this.base = base;
@@ -2614,12 +2620,6 @@ class FConnectionTextPathDirective {
2614
2620
  this.symbolWidth = 8;
2615
2621
  this.fontSize = '12px';
2616
2622
  }
2617
- get linkToConnection() {
2618
- return F_CONNECTION_IDENTIFIERS.linkToConnection(this.base.fId + this.base.fOutputId + this.base.fInputId);
2619
- }
2620
- get hostElement() {
2621
- return this.elementReference.nativeElement;
2622
- }
2623
2623
  ngOnInit() {
2624
2624
  this.hostElement.setAttribute('startOffset', '50%');
2625
2625
  this.hostElement.setAttribute('text-anchor', `middle`);
@@ -2655,10 +2655,10 @@ class FConnectionTextPathDirective {
2655
2655
  const symbolWidth = metrics.width / text.length;
2656
2656
  return symbolWidth;
2657
2657
  }
2658
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionTextPathDirective, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive }); }
2659
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]", host: { properties: { "attr.href": "linkToConnection" } }, ngImport: i0 }); }
2658
2660
  }
2659
- FConnectionTextPathDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionTextPathDirective, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
2660
- FConnectionTextPathDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]", host: { properties: { "attr.href": "linkToConnection" } }, ngImport: i0 });
2661
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionTextPathDirective, decorators: [{
2661
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionTextPathDirective, decorators: [{
2662
2662
  type: Directive,
2663
2663
  args: [{
2664
2664
  selector: 'textPath[f-connection-text-path]',
@@ -2674,10 +2674,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
2674
2674
  const CONNECTION_TEXT = new InjectionToken('CONNECTION_TEXT');
2675
2675
 
2676
2676
  class FConnectionTextComponent {
2677
- constructor(elementReference, base) {
2678
- this.elementReference = elementReference;
2679
- this.base = base;
2680
- }
2681
2677
  get textId() {
2682
2678
  return F_CONNECTION_IDENTIFIERS.textId(this.base.fId + this.base.fOutputId + this.base.fInputId);
2683
2679
  }
@@ -2687,6 +2683,10 @@ class FConnectionTextComponent {
2687
2683
  get text() {
2688
2684
  return this.base.fText || '';
2689
2685
  }
2686
+ constructor(elementReference, base) {
2687
+ this.elementReference = elementReference;
2688
+ this.base = base;
2689
+ }
2690
2690
  redraw(line) {
2691
2691
  const isTextReverse = FConnectionTextComponent.isTextReverse(line);
2692
2692
  const dyValue = this.calculateDy(this.textPathDirective.fontSize, isTextReverse);
@@ -2714,10 +2714,10 @@ class FConnectionTextComponent {
2714
2714
  const vectorLength = PointExtensions.hypotenuse(line.point1, line.point2);
2715
2715
  return vectorLength / 2 - ((name || '').length * symbolWidth) / 2;
2716
2716
  }
2717
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionTextComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component }); }
2718
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionTextComponent, selector: "text[f-connection-text]", host: { properties: { "attr.id": "textId" }, classAttribute: "f-component f-connection-text" }, providers: [{ provide: CONNECTION_TEXT, useExisting: FConnectionTextComponent }], viewQueries: [{ propertyName: "textPathDirective", first: true, predicate: FConnectionTextPathDirective, descendants: true, static: true }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:textPath f-connection-text-path>\n {{ text }}\n </svg:textPath>\n</ng-container>\n", dependencies: [{ kind: "directive", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2717
2719
  }
2718
- FConnectionTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionTextComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component });
2719
- FConnectionTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionTextComponent, selector: "text[f-connection-text]", host: { properties: { "attr.id": "textId" }, classAttribute: "f-component f-connection-text" }, providers: [{ provide: CONNECTION_TEXT, useExisting: FConnectionTextComponent }], viewQueries: [{ propertyName: "textPathDirective", first: true, predicate: FConnectionTextPathDirective, descendants: true, static: true }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:textPath f-connection-text-path>\n {{ text }}\n </svg:textPath>\n</ng-container>\n", dependencies: [{ kind: "directive", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
2720
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionTextComponent, decorators: [{
2720
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionTextComponent, decorators: [{
2721
2721
  type: Component,
2722
2722
  args: [{ selector: "text[f-connection-text]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
2723
2723
  class: "f-component f-connection-text",
@@ -2733,13 +2733,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
2733
2733
 
2734
2734
  const F_CONNECTION_DRAG_HANDLE_CLASS = 'f-connection-drag-handle';
2735
2735
  class FConnectionDragHandleComponent {
2736
+ get hostElement() {
2737
+ return this.elementReference.nativeElement;
2738
+ }
2736
2739
  constructor(elementReference) {
2737
2740
  this.elementReference = elementReference;
2738
2741
  this.class = F_CONNECTION_DRAG_HANDLE_CLASS;
2739
2742
  }
2740
- get hostElement() {
2741
- return this.elementReference.nativeElement;
2742
- }
2743
2743
  redraw(penultimatePoint, endPoint) {
2744
2744
  const point = this.calculateCircleCenter(penultimatePoint, endPoint, 8);
2745
2745
  this.hostElement.setAttribute('cx', point.x.toString());
@@ -2752,10 +2752,10 @@ class FConnectionDragHandleComponent {
2752
2752
  const scaledDirection = { x: unitDirection.x * radius, y: unitDirection.y * radius };
2753
2753
  return { x: end.x - scaledDirection.x, y: end.y - scaledDirection.y };
2754
2754
  }
2755
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionDragHandleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
2756
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]", host: { properties: { "class": "class" } }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2755
2757
  }
2756
- FConnectionDragHandleComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionDragHandleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
2757
- FConnectionDragHandleComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]", host: { properties: { "class": "class" } }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2758
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionDragHandleComponent, decorators: [{
2758
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionDragHandleComponent, decorators: [{
2759
2759
  type: Component,
2760
2760
  args: [{
2761
2761
  selector: "circle[f-connection-drag-handle]",
@@ -2770,10 +2770,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
2770
2770
  const CONNECTION_GRADIENT = new InjectionToken('CONNECTION_GRADIENT');
2771
2771
 
2772
2772
  class FConnectionGradientComponent {
2773
- constructor(elementReference, base) {
2774
- this.elementReference = elementReference;
2775
- this.base = base;
2776
- }
2777
2773
  get gradientId() {
2778
2774
  return F_CONNECTION_IDENTIFIERS.gradientId(this.base.fId + this.base.fOutputId + this.base.fInputId);
2779
2775
  }
@@ -2786,6 +2782,10 @@ class FConnectionGradientComponent {
2786
2782
  get stop2Element() {
2787
2783
  return this.elementReference.nativeElement.children.item(1);
2788
2784
  }
2785
+ constructor(elementReference, base) {
2786
+ this.elementReference = elementReference;
2787
+ this.base = base;
2788
+ }
2789
2789
  initialize() {
2790
2790
  this.stop1Element.setAttribute('offset', '0%');
2791
2791
  this.stop2Element.setAttribute('offset', '100%');
@@ -2812,10 +2812,10 @@ class FConnectionGradientComponent {
2812
2812
  this.hostElement.setAttribute('y2', to.y.toString());
2813
2813
  this.updateGradient();
2814
2814
  }
2815
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionGradientComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component }); }
2816
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]", host: { properties: { "attr.id": "gradientId" }, classAttribute: "f-component f-connection-gradient" }, providers: [{ provide: CONNECTION_GRADIENT, useExisting: FConnectionGradientComponent }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:stop/>\n <svg:stop/>\n</ng-container>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2815
2817
  }
2816
- FConnectionGradientComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionGradientComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component });
2817
- FConnectionGradientComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]", host: { properties: { "attr.id": "gradientId" }, classAttribute: "f-component f-connection-gradient" }, providers: [{ provide: CONNECTION_GRADIENT, useExisting: FConnectionGradientComponent }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:stop/>\n <svg:stop/>\n</ng-container>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush });
2818
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionGradientComponent, decorators: [{
2818
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionGradientComponent, decorators: [{
2819
2819
  type: Component,
2820
2820
  args: [{ selector: "linearGradient[fConnectionGradient]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
2821
2821
  class: "f-component f-connection-gradient",
@@ -2842,10 +2842,6 @@ function getMarkerSelectedEndId(fConnectionId) {
2842
2842
  }
2843
2843
 
2844
2844
  class FConnectionPathComponent {
2845
- constructor(elementReference, base) {
2846
- this.elementReference = elementReference;
2847
- this.base = base;
2848
- }
2849
2845
  get fPathId() {
2850
2846
  return this.base.fId;
2851
2847
  }
@@ -2858,6 +2854,10 @@ class FConnectionPathComponent {
2858
2854
  get hostElement() {
2859
2855
  return this.elementReference.nativeElement;
2860
2856
  }
2857
+ constructor(elementReference, base) {
2858
+ this.elementReference = elementReference;
2859
+ this.base = base;
2860
+ }
2861
2861
  initialize() {
2862
2862
  this.deselect();
2863
2863
  }
@@ -2872,10 +2872,10 @@ class FConnectionPathComponent {
2872
2872
  this.hostElement.setAttribute('marker-start', `url(#${getMarkerStartId(this.base.fId)})`);
2873
2873
  this.hostElement.setAttribute('marker-end', `url(#${getMarkerEndId(this.base.fId)})`);
2874
2874
  }
2875
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionPathComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component }); }
2876
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionPathComponent, selector: "path[f-connection-path]", host: { properties: { "attr.id": "attrConnectionId", "attr.data-f-path-id": "fPathId", "attr.stroke": "linkToGradient" }, classAttribute: "f-component f-connection-path" }, providers: [{ provide: CONNECTION_PATH, useExisting: FConnectionPathComponent }], ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2875
2877
  }
2876
- FConnectionPathComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionPathComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component });
2877
- FConnectionPathComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionPathComponent, selector: "path[f-connection-path]", host: { properties: { "attr.id": "attrConnectionId", "attr.data-f-path-id": "fPathId", "attr.stroke": "linkToGradient" }, classAttribute: "f-component f-connection-path" }, providers: [{ provide: CONNECTION_PATH, useExisting: FConnectionPathComponent }], ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2878
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionPathComponent, decorators: [{
2878
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionPathComponent, decorators: [{
2879
2879
  type: Component,
2880
2880
  args: [{
2881
2881
  selector: "path[f-connection-path]",
@@ -2895,23 +2895,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
2895
2895
  }] }]; } });
2896
2896
 
2897
2897
  class FConnectionSelectionComponent {
2898
- constructor(elementReference, base) {
2899
- this.elementReference = elementReference;
2900
- this.base = base;
2901
- }
2902
2898
  get connectionForSelectionId() {
2903
2899
  return F_CONNECTION_IDENTIFIERS.connectionForSelectionId(this.base.fId + this.base.fOutputId + this.base.fInputId);
2904
2900
  }
2905
2901
  get hostElement() {
2906
2902
  return this.elementReference.nativeElement;
2907
2903
  }
2904
+ constructor(elementReference, base) {
2905
+ this.elementReference = elementReference;
2906
+ this.base = base;
2907
+ }
2908
2908
  setPath(path) {
2909
2909
  this.hostElement.setAttribute("d", `${path}`);
2910
2910
  }
2911
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionSelectionComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component }); }
2912
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]", host: { properties: { "attr.id": "connectionForSelectionId" }, classAttribute: "f-component f-connection-selection" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
2911
2913
  }
2912
- FConnectionSelectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionSelectionComponent, deps: [{ token: i0.ElementRef }, { token: F_CONNECTION }], target: i0.ɵɵFactoryTarget.Component });
2913
- FConnectionSelectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]", host: { properties: { "attr.id": "connectionForSelectionId" }, classAttribute: "f-component f-connection-selection" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
2914
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionSelectionComponent, decorators: [{
2914
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionSelectionComponent, decorators: [{
2915
2915
  type: Component,
2916
2916
  args: [{
2917
2917
  selector: "path[fConnectionSelection]",
@@ -2947,10 +2947,10 @@ class FConnectionFactory {
2947
2947
  }
2948
2948
  return builder.handle(request.payload);
2949
2949
  }
2950
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionFactory, deps: [{ token: F_CONNECTION_BUILDERS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable }); }
2951
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionFactory }); }
2950
2952
  }
2951
- FConnectionFactory.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionFactory, deps: [{ token: F_CONNECTION_BUILDERS, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
2952
- FConnectionFactory.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionFactory });
2953
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionFactory, decorators: [{
2953
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionFactory, decorators: [{
2954
2954
  type: Injectable
2955
2955
  }], ctorParameters: function () { return [{ type: undefined, decorators: [{
2956
2956
  type: Optional
@@ -2979,7 +2979,7 @@ class FConnectionBase extends MIXIN_BASE {
2979
2979
  this.redraw();
2980
2980
  }
2981
2981
  isContains(element) {
2982
- return this.hostElement.firstChild?.lastChild.contains(element);
2982
+ return (this.hostElement.firstChild?.lastChild).contains(element);
2983
2983
  }
2984
2984
  setLine(source, sourceSide, target, targetSide) {
2985
2985
  this.line = LineExtensions.initialize(source, target);
@@ -3012,10 +3012,10 @@ class FConnectionBase extends MIXIN_BASE {
3012
3012
  this.fDragHandle.redraw(this.penultimatePoint, this.line.point2);
3013
3013
  this.fTextComponent.redraw(this.line);
3014
3014
  }
3015
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionBase, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }], target: i0.ɵɵFactoryTarget.Directive }); }
3016
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionBase, usesInheritance: true, ngImport: i0 }); }
3015
3017
  }
3016
- FConnectionBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionBase, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }], target: i0.ɵɵFactoryTarget.Directive });
3017
- FConnectionBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionBase, usesInheritance: true, ngImport: i0 });
3018
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionBase, decorators: [{
3018
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionBase, decorators: [{
3019
3019
  type: Directive
3020
3020
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: FConnectionFactory }]; } });
3021
3021
 
@@ -3034,10 +3034,10 @@ var EFConnectionType;
3034
3034
  })(EFConnectionType || (EFConnectionType = {}));
3035
3035
 
3036
3036
  class FConnectionCenterDirective {
3037
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionCenterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3038
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionCenterDirective, selector: "[fConnectionCenter]", ngImport: i0 }); }
3037
3039
  }
3038
- FConnectionCenterDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionCenterDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3039
- FConnectionCenterDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionCenterDirective, selector: "[fConnectionCenter]", ngImport: i0 });
3040
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionCenterDirective, decorators: [{
3040
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionCenterDirective, decorators: [{
3041
3041
  type: Directive,
3042
3042
  args: [{
3043
3043
  selector: "[fConnectionCenter]"
@@ -3046,20 +3046,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
3046
3046
 
3047
3047
  let uniqueId$6 = 0;
3048
3048
  class FConnectionForCreateComponent extends FConnectionBase {
3049
- constructor(elementReference, fConnectionFactory, fComponentsStore) {
3050
- super(elementReference, fConnectionFactory);
3051
- this.fComponentsStore = fComponentsStore;
3052
- this.fId = `f-connection-for-create-${uniqueId$6++}`;
3053
- this.fText = '';
3054
- this._fStartColor = 'black';
3055
- this._fEndColor = 'black';
3056
- this._fRadius = 8;
3057
- this._fOffset = 32;
3058
- this._behavior = EFConnectionBehavior.FIXED;
3059
- this._type = EFConnectionType.STRAIGHT;
3060
- this.fDraggingDisabled = false;
3061
- this.fSelectionDisabled = false;
3062
- }
3063
3049
  set fStartColor(value) {
3064
3050
  this._fStartColor = value;
3065
3051
  this.fComponentsStore.componentDataChanged();
@@ -3105,6 +3091,20 @@ class FConnectionForCreateComponent extends FConnectionBase {
3105
3091
  get boundingElement() {
3106
3092
  return this.fPath.hostElement;
3107
3093
  }
3094
+ constructor(elementReference, fConnectionFactory, fComponentsStore) {
3095
+ super(elementReference, fConnectionFactory);
3096
+ this.fComponentsStore = fComponentsStore;
3097
+ this.fId = `f-connection-for-create-${uniqueId$6++}`;
3098
+ this.fText = '';
3099
+ this._fStartColor = 'black';
3100
+ this._fEndColor = 'black';
3101
+ this._fRadius = 8;
3102
+ this._fOffset = 32;
3103
+ this._behavior = EFConnectionBehavior.FIXED;
3104
+ this._type = EFConnectionType.STRAIGHT;
3105
+ this.fDraggingDisabled = false;
3106
+ this.fSelectionDisabled = false;
3107
+ }
3108
3108
  ngOnInit() {
3109
3109
  this.fComponentsStore.fTempConnection = this;
3110
3110
  }
@@ -3114,10 +3114,10 @@ class FConnectionForCreateComponent extends FConnectionBase {
3114
3114
  ngOnDestroy() {
3115
3115
  this.fComponentsStore.fTempConnection = undefined;
3116
3116
  }
3117
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionForCreateComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
3118
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionForCreateComponent, selector: "f-connection-for-create", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType" }, host: { classAttribute: "f-component f-connection f-connection-for-create" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionForCreateComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3117
3119
  }
3118
- FConnectionForCreateComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionForCreateComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component });
3119
- FConnectionForCreateComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionForCreateComponent, selector: "f-connection-for-create", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType" }, host: { classAttribute: "f-component f-connection f-connection-for-create" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionForCreateComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3120
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionForCreateComponent, decorators: [{
3120
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionForCreateComponent, decorators: [{
3121
3121
  type: Component,
3122
3122
  args: [{ selector: "f-connection-for-create", changeDetection: ChangeDetectionStrategy.OnPush, host: {
3123
3123
  class: "f-component f-connection f-connection-for-create"
@@ -3162,20 +3162,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
3162
3162
 
3163
3163
  let uniqueId$5 = 0;
3164
3164
  class FConnectionComponent extends FConnectionBase {
3165
- constructor(elementReference, fConnectionFactory, fComponentsStore) {
3166
- super(elementReference, fConnectionFactory);
3167
- this.fComponentsStore = fComponentsStore;
3168
- this.fId = `f-connection-${uniqueId$5++}`;
3169
- this._fText = '';
3170
- this._fStartColor = 'black';
3171
- this._fEndColor = 'black';
3172
- this._fRadius = 8;
3173
- this._fOffset = 32;
3174
- this._behavior = EFConnectionBehavior.FIXED;
3175
- this._type = EFConnectionType.STRAIGHT;
3176
- this.fDraggingDisabled = false;
3177
- this.fSelectionDisabled = false;
3178
- }
3179
3165
  set fText(value) {
3180
3166
  this._fText = value;
3181
3167
  this.fComponentsStore.componentDataChanged();
@@ -3242,16 +3228,30 @@ class FConnectionComponent extends FConnectionBase {
3242
3228
  get boundingElement() {
3243
3229
  return this.fPath.hostElement;
3244
3230
  }
3231
+ constructor(elementReference, fConnectionFactory, fComponentsStore) {
3232
+ super(elementReference, fConnectionFactory);
3233
+ this.fComponentsStore = fComponentsStore;
3234
+ this.fId = `f-connection-${uniqueId$5++}`;
3235
+ this._fText = '';
3236
+ this._fStartColor = 'black';
3237
+ this._fEndColor = 'black';
3238
+ this._fRadius = 8;
3239
+ this._fOffset = 32;
3240
+ this._behavior = EFConnectionBehavior.FIXED;
3241
+ this._type = EFConnectionType.STRAIGHT;
3242
+ this.fDraggingDisabled = false;
3243
+ this.fSelectionDisabled = false;
3244
+ }
3245
3245
  ngOnInit() {
3246
3246
  this.fComponentsStore.addComponent(this.fComponentsStore.fConnections, this);
3247
3247
  }
3248
3248
  ngOnDestroy() {
3249
3249
  this.fComponentsStore.removeComponent(this.fComponentsStore.fConnections, this);
3250
3250
  }
3251
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
3252
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FConnectionComponent, selector: "f-connection", inputs: { fId: ["fConnectionId", "fId"], fText: "fText", fStartColor: "fStartColor", fEndColor: "fEndColor", fOutputId: "fOutputId", fInputId: "fInputId", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType", fDraggingDisabled: ["fReassignDisabled", "fDraggingDisabled"], fSelectionDisabled: "fSelectionDisabled" }, host: { properties: { "attr.id": "fId", "class.f-connection-selection-disabled": "fSelectionDisabled", "class.f-connection-reassign-disabled": "fDraggingDisabled" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"overflow: visible; display: block; vertical-align: middle;\">\n <defs #defs></defs>\n <ng-content></ng-content>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3251
3253
  }
3252
- FConnectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component });
3253
- FConnectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FConnectionComponent, selector: "f-connection", inputs: { fId: ["fConnectionId", "fId"], fText: "fText", fStartColor: "fStartColor", fEndColor: "fEndColor", fOutputId: "fOutputId", fInputId: "fInputId", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType", fDraggingDisabled: ["fReassignDisabled", "fDraggingDisabled"], fSelectionDisabled: "fSelectionDisabled" }, host: { properties: { "attr.id": "fId", "class.f-connection-selection-disabled": "fSelectionDisabled", "class.f-connection-reassign-disabled": "fDraggingDisabled" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FConnectionComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\" style=\"overflow: visible; display: block; vertical-align: middle;\">\n <defs #defs></defs>\n <ng-content></ng-content>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path [attr.d]=\"path\"></path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3254
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FConnectionComponent, decorators: [{
3254
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FConnectionComponent, decorators: [{
3255
3255
  type: Component,
3256
3256
  args: [{ selector: "f-connection", exportAs: 'fComponent', changeDetection: ChangeDetectionStrategy.OnPush, host: {
3257
3257
  '[attr.id]': 'fId',
@@ -3321,14 +3321,17 @@ var EFMarkerType;
3321
3321
 
3322
3322
  const F_MARKER = new InjectionToken('F_MARKER');
3323
3323
  class FMarkerBase {
3324
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMarkerBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
3325
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FMarkerBase, ngImport: i0 }); }
3324
3326
  }
3325
- FMarkerBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMarkerBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
3326
- FMarkerBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FMarkerBase, ngImport: i0 });
3327
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMarkerBase, decorators: [{
3327
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMarkerBase, decorators: [{
3328
3328
  type: Directive
3329
3329
  }] });
3330
3330
 
3331
3331
  class FMarkerDirective extends FMarkerBase {
3332
+ get hostElement() {
3333
+ return this.elementReference.nativeElement;
3334
+ }
3332
3335
  constructor(fComponentsStore, elementReference) {
3333
3336
  super();
3334
3337
  this.fComponentsStore = fComponentsStore;
@@ -3342,19 +3345,16 @@ class FMarkerDirective extends FMarkerBase {
3342
3345
  this.markerUnits = 'strokeWidth';
3343
3346
  this.hostElement.style.display = 'none';
3344
3347
  }
3345
- get hostElement() {
3346
- return this.elementReference.nativeElement;
3347
- }
3348
3348
  ngOnInit() {
3349
3349
  this.fComponentsStore.addComponent(this.fComponentsStore.fMarkers, this);
3350
3350
  }
3351
3351
  ngOnDestroy() {
3352
3352
  this.fComponentsStore.removeComponent(this.fComponentsStore.fMarkers, this);
3353
3353
  }
3354
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMarkerDirective, deps: [{ token: FComponentsStore }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
3355
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FMarkerDirective, selector: "svg[fMarker]", inputs: { hostElement: "hostElement", width: "width", height: "height", refX: "refX", refY: "refY", type: "type", orient: "orient", markerUnits: "markerUnits" }, host: { classAttribute: "f-component f-marker" }, providers: [{ provide: F_MARKER, useExisting: FMarkerDirective }], usesInheritance: true, ngImport: i0 }); }
3354
3356
  }
3355
- FMarkerDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMarkerDirective, deps: [{ token: FComponentsStore }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
3356
- FMarkerDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FMarkerDirective, selector: "svg[fMarker]", inputs: { hostElement: "hostElement", width: "width", height: "height", refX: "refX", refY: "refY", type: "type", orient: "orient", markerUnits: "markerUnits" }, host: { classAttribute: "f-component f-marker" }, providers: [{ provide: F_MARKER, useExisting: FMarkerDirective }], usesInheritance: true, ngImport: i0 });
3357
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMarkerDirective, decorators: [{
3357
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMarkerDirective, decorators: [{
3358
3358
  type: Directive,
3359
3359
  args: [{
3360
3360
  selector: "svg[fMarker]",
@@ -3383,21 +3383,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
3383
3383
 
3384
3384
  let uniqueId$4 = 0;
3385
3385
  class FSnapConnectionComponent extends FConnectionBase {
3386
- constructor(elementReference, fConnectionFactory, fComponentsStore) {
3387
- super(elementReference, fConnectionFactory);
3388
- this.fComponentsStore = fComponentsStore;
3389
- this.fId = `f-snap-connection-${uniqueId$4++}`;
3390
- this.fText = '';
3391
- this._fStartColor = 'black';
3392
- this._fEndColor = 'black';
3393
- this.fSnapThreshold = 20;
3394
- this._fRadius = 8;
3395
- this._fOffset = 32;
3396
- this._behavior = EFConnectionBehavior.FIXED;
3397
- this._type = EFConnectionType.STRAIGHT;
3398
- this.fDraggingDisabled = false;
3399
- this.fSelectionDisabled = false;
3400
- }
3401
3386
  set fStartColor(value) {
3402
3387
  this._fStartColor = value;
3403
3388
  this.fComponentsStore.componentDataChanged();
@@ -3443,6 +3428,21 @@ class FSnapConnectionComponent extends FConnectionBase {
3443
3428
  get boundingElement() {
3444
3429
  return this.fPath.hostElement;
3445
3430
  }
3431
+ constructor(elementReference, fConnectionFactory, fComponentsStore) {
3432
+ super(elementReference, fConnectionFactory);
3433
+ this.fComponentsStore = fComponentsStore;
3434
+ this.fId = `f-snap-connection-${uniqueId$4++}`;
3435
+ this.fText = '';
3436
+ this._fStartColor = 'black';
3437
+ this._fEndColor = 'black';
3438
+ this.fSnapThreshold = 20;
3439
+ this._fRadius = 8;
3440
+ this._fOffset = 32;
3441
+ this._behavior = EFConnectionBehavior.FIXED;
3442
+ this._type = EFConnectionType.STRAIGHT;
3443
+ this.fDraggingDisabled = false;
3444
+ this.fSelectionDisabled = false;
3445
+ }
3446
3446
  ngOnInit() {
3447
3447
  this.fComponentsStore.fSnapConnection = this;
3448
3448
  }
@@ -3452,10 +3452,10 @@ class FSnapConnectionComponent extends FConnectionBase {
3452
3452
  ngOnDestroy() {
3453
3453
  this.fComponentsStore.fSnapConnection = undefined;
3454
3454
  }
3455
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSnapConnectionComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
3456
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FSnapConnectionComponent, selector: "f-snap-connection", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fSnapThreshold: "fSnapThreshold", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType" }, host: { classAttribute: "f-component f-connection f-snap-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FSnapConnectionComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
3455
3457
  }
3456
- FSnapConnectionComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSnapConnectionComponent, deps: [{ token: i0.ElementRef }, { token: FConnectionFactory }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component });
3457
- FSnapConnectionComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FSnapConnectionComponent, selector: "f-snap-connection", inputs: { fStartColor: "fStartColor", fEndColor: "fEndColor", fSnapThreshold: "fSnapThreshold", fRadius: "fRadius", fOffset: "fOffset", fBehavior: "fBehavior", fType: "fType" }, host: { classAttribute: "f-component f-connection f-snap-connection" }, providers: [{ provide: F_CONNECTION, useExisting: FSnapConnectionComponent }], queries: [{ propertyName: "fConnectionCenters", predicate: FConnectionCenterDirective, descendants: true }], viewQueries: [{ propertyName: "fDefs", first: true, predicate: ["defs"], descendants: true, static: true }, { propertyName: "fPath", first: true, predicate: CONNECTION_PATH, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: CONNECTION_GRADIENT, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fTextComponent", first: true, predicate: CONNECTION_TEXT, descendants: true, static: true }, { propertyName: "fConnectionCenter", first: true, predicate: ["fConnectionCenter"], descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg xmlns=\"http://www.w3.org/2000/svg\">\n <defs #defs></defs>\n <g class=\"f-connection-group\">\n <linearGradient fConnectionGradient></linearGradient>\n <path fConnectionSelection [attr.d]=\"path\"></path>\n <g>\n <path f-connection-path\n [attr.d]=\"path\">\n </path>\n <circle f-connection-drag-handle r=\"8\"></circle>\n </g>\n <text f-connection-text></text>\n </g>\n <ng-content></ng-content>\n</svg>\n<div #fConnectionCenter class=\"f-connection-center\" *ngIf=\"fConnectionCenters.length\">\n <ng-content select=\"[fConnectionCenter]\"></ng-content>\n</div>\n", styles: [":host{pointer-events:none;position:absolute}:host svg{overflow:visible}:host svg .f-connection-group{pointer-events:all}:host .f-connection-center{pointer-events:all}\n"], dependencies: [{ kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]" }, { kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]" }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]" }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
3458
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSnapConnectionComponent, decorators: [{
3458
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSnapConnectionComponent, decorators: [{
3459
3459
  type: Component,
3460
3460
  args: [{ selector: "f-snap-connection", changeDetection: ChangeDetectionStrategy.OnPush, host: {
3461
3461
  class: "f-component f-connection f-snap-connection"
@@ -3515,12 +3515,6 @@ const F_CONNECTION_PROVIDERS = [
3515
3515
  ];
3516
3516
 
3517
3517
  let ReassignConnectionPreparationExecution = class ReassignConnectionPreparationExecution {
3518
- constructor(fComponentsStore, fDraggableDataContext, fMediator, fBrowser) {
3519
- this.fComponentsStore = fComponentsStore;
3520
- this.fDraggableDataContext = fDraggableDataContext;
3521
- this.fMediator = fMediator;
3522
- this.fBrowser = fBrowser;
3523
- }
3524
3518
  get transform() {
3525
3519
  return this.fComponentsStore.fCanvas.transform;
3526
3520
  }
@@ -3530,6 +3524,12 @@ let ReassignConnectionPreparationExecution = class ReassignConnectionPreparation
3530
3524
  get fConnections() {
3531
3525
  return this.fComponentsStore.fConnections;
3532
3526
  }
3527
+ constructor(fComponentsStore, fDraggableDataContext, fMediator, fBrowser) {
3528
+ this.fComponentsStore = fComponentsStore;
3529
+ this.fDraggableDataContext = fDraggableDataContext;
3530
+ this.fMediator = fMediator;
3531
+ this.fBrowser = fBrowser;
3532
+ }
3533
3533
  handle(request) {
3534
3534
  const connectionToReassign = this.getConnectionHandler(this.getDragHandleElement(request.event.getPosition()));
3535
3535
  if (connectionToReassign.fDraggingDisabled) {
@@ -3554,25 +3554,25 @@ let ReassignConnectionPreparationExecution = class ReassignConnectionPreparation
3554
3554
  getConnectionHandler(element) {
3555
3555
  return this.fConnections.find(c => c.isContains(element));
3556
3556
  }
3557
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
3558
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationExecution }); }
3557
3559
  };
3558
- ReassignConnectionPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
3559
- ReassignConnectionPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationExecution });
3560
3560
  ReassignConnectionPreparationExecution = __decorate([
3561
3561
  FExecutionRegister(ReassignConnectionPreparationRequest)
3562
3562
  ], ReassignConnectionPreparationExecution);
3563
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationExecution, decorators: [{
3563
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationExecution, decorators: [{
3564
3564
  type: Injectable
3565
3565
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }, { type: i1.BrowserService }]; } });
3566
3566
 
3567
3567
  let ReassignConnectionPreparationValidator = class ReassignConnectionPreparationValidator {
3568
+ get fConnections() {
3569
+ return this.fComponentsStore.fConnections;
3570
+ }
3568
3571
  constructor(fComponentsStore, fDraggableDataContext, fBrowser) {
3569
3572
  this.fComponentsStore = fComponentsStore;
3570
3573
  this.fDraggableDataContext = fDraggableDataContext;
3571
3574
  this.fBrowser = fBrowser;
3572
3575
  }
3573
- get fConnections() {
3574
- return this.fComponentsStore.fConnections;
3575
- }
3576
3576
  handle(request) {
3577
3577
  return !!this.getDragHandleElements(request.event.getPosition()).length
3578
3578
  && !this.fDraggableDataContext.draggableItems.length;
@@ -3588,13 +3588,13 @@ let ReassignConnectionPreparationValidator = class ReassignConnectionPreparation
3588
3588
  getConnectionHandler(element) {
3589
3589
  return this.fConnections.find(c => c.isContains(element));
3590
3590
  }
3591
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
3592
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationValidator }); }
3591
3593
  };
3592
- ReassignConnectionPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
3593
- ReassignConnectionPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationValidator });
3594
3594
  ReassignConnectionPreparationValidator = __decorate([
3595
3595
  FValidatorRegister(ReassignConnectionPreparationRequest)
3596
3596
  ], ReassignConnectionPreparationValidator);
3597
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ReassignConnectionPreparationValidator, decorators: [{
3597
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ReassignConnectionPreparationValidator, decorators: [{
3598
3598
  type: Injectable
3599
3599
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i1.BrowserService }]; } });
3600
3600
 
@@ -3640,13 +3640,13 @@ let GetNodePaddingExecution = class GetNodePaddingExecution {
3640
3640
  this.fBrowser.toPixels(style.paddingBottom, rect.width, rect.height, style.fontSize)
3641
3641
  ];
3642
3642
  }
3643
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodePaddingExecution, deps: [{ token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
3644
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodePaddingExecution }); }
3643
3645
  };
3644
- GetNodePaddingExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodePaddingExecution, deps: [{ token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
3645
- GetNodePaddingExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodePaddingExecution });
3646
3646
  GetNodePaddingExecution = __decorate([
3647
3647
  FExecutionRegister(GetNodePaddingRequest)
3648
3648
  ], GetNodePaddingExecution);
3649
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodePaddingExecution, decorators: [{
3649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodePaddingExecution, decorators: [{
3650
3650
  type: Injectable
3651
3651
  }], ctorParameters: function () { return [{ type: i1.BrowserService }]; } });
3652
3652
 
@@ -3667,13 +3667,13 @@ let GetNormalizedNodeRectExecution = class GetNormalizedNodeRectExecution {
3667
3667
  const rect = RectExtensions.div(scaledRect, this.fComponentsStore.fCanvas.transform.scale);
3668
3668
  return RectExtensions.initialize(position.x, position.y, rect.width, rect.height);
3669
3669
  }
3670
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedNodeRectExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
3671
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedNodeRectExecution }); }
3670
3672
  };
3671
- GetNormalizedNodeRectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedNodeRectExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
3672
- GetNormalizedNodeRectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedNodeRectExecution });
3673
3673
  GetNormalizedNodeRectExecution = __decorate([
3674
3674
  FExecutionRegister(GetNormalizedNodeRectRequest)
3675
3675
  ], GetNormalizedNodeRectExecution);
3676
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedNodeRectExecution, decorators: [{
3676
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedNodeRectExecution, decorators: [{
3677
3677
  type: Injectable
3678
3678
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
3679
3679
 
@@ -3710,13 +3710,13 @@ let GetNormalizedParentNodeRectExecution = class GetNormalizedParentNodeRectExec
3710
3710
  getNodePadding(node, rect) {
3711
3711
  return this.fMediator.send(new GetNodePaddingRequest(node, rect));
3712
3712
  }
3713
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedParentNodeRectExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
3714
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedParentNodeRectExecution }); }
3713
3715
  };
3714
- GetNormalizedParentNodeRectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedParentNodeRectExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
3715
- GetNormalizedParentNodeRectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedParentNodeRectExecution });
3716
3716
  GetNormalizedParentNodeRectExecution = __decorate([
3717
3717
  FExecutionRegister(GetNormalizedParentNodeRectRequest)
3718
3718
  ], GetNormalizedParentNodeRectExecution);
3719
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedParentNodeRectExecution, decorators: [{
3719
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedParentNodeRectExecution, decorators: [{
3720
3720
  type: Injectable
3721
3721
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
3722
3722
 
@@ -3745,13 +3745,13 @@ let GetParentNodesExecution = class GetParentNodesExecution {
3745
3745
  result.push(parent);
3746
3746
  return this.getParentNodes(parent, visited, result);
3747
3747
  }
3748
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetParentNodesExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
3749
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetParentNodesExecution }); }
3748
3750
  };
3749
- GetParentNodesExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetParentNodesExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
3750
- GetParentNodesExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetParentNodesExecution });
3751
3751
  GetParentNodesExecution = __decorate([
3752
3752
  FExecutionRegister(GetParentNodesRequest)
3753
3753
  ], GetParentNodesExecution);
3754
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetParentNodesExecution, decorators: [{
3754
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetParentNodesExecution, decorators: [{
3755
3755
  type: Injectable
3756
3756
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
3757
3757
 
@@ -3778,13 +3778,13 @@ let IsArrayHasParentNodeExecution = class IsArrayHasParentNodeExecution {
3778
3778
  isParentNodeInArray(parentNodeIds, fNodes) {
3779
3779
  return fNodes.some((x) => parentNodeIds.includes(x.fId));
3780
3780
  }
3781
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsArrayHasParentNodeExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
3782
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsArrayHasParentNodeExecution }); }
3781
3783
  };
3782
- IsArrayHasParentNodeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsArrayHasParentNodeExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
3783
- IsArrayHasParentNodeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsArrayHasParentNodeExecution });
3784
3784
  IsArrayHasParentNodeExecution = __decorate([
3785
3785
  FExecutionRegister(IsArrayHasParentNodeRequest)
3786
3786
  ], IsArrayHasParentNodeExecution);
3787
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsArrayHasParentNodeExecution, decorators: [{
3787
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsArrayHasParentNodeExecution, decorators: [{
3788
3788
  type: Injectable
3789
3789
  }], ctorParameters: function () { return [{ type: i2.FMediator }]; } });
3790
3790
 
@@ -3830,10 +3830,10 @@ class ConnectionBaseDragHandler {
3830
3830
  this.connection.setLine(line.point1, this.fOutputWithRect.fConnector.fConnectableSide, line.point2, this.fInputWithRect.fConnector.fConnectableSide);
3831
3831
  this.connection.redraw();
3832
3832
  }
3833
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ConnectionBaseDragHandler, deps: [{ token: i2.FMediator }, { token: FComponentsStore }, { token: FConnectionBase }], target: i0.ɵɵFactoryTarget.Directive }); }
3834
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: ConnectionBaseDragHandler, ngImport: i0 }); }
3833
3835
  }
3834
- ConnectionBaseDragHandler.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ConnectionBaseDragHandler, deps: [{ token: i2.FMediator }, { token: FComponentsStore }, { token: FConnectionBase }], target: i0.ɵɵFactoryTarget.Directive });
3835
- ConnectionBaseDragHandler.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: ConnectionBaseDragHandler, ngImport: i0 });
3836
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ConnectionBaseDragHandler, decorators: [{
3836
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ConnectionBaseDragHandler, decorators: [{
3837
3837
  type: Directive
3838
3838
  }], ctorParameters: function () { return [{ type: i2.FMediator }, { type: FComponentsStore }, { type: FConnectionBase }]; } });
3839
3839
 
@@ -3870,13 +3870,13 @@ class ConnectionTargetDragHandler extends ConnectionBaseDragHandler {
3870
3870
  }
3871
3871
 
3872
3872
  let PutInputConnectionHandlersToArrayExecution = class PutInputConnectionHandlersToArrayExecution {
3873
+ get fConnections() {
3874
+ return this.fComponentsStore.fConnections;
3875
+ }
3873
3876
  constructor(fComponentsStore, fMediator) {
3874
3877
  this.fComponentsStore = fComponentsStore;
3875
3878
  this.fMediator = fMediator;
3876
3879
  }
3877
- get fConnections() {
3878
- return this.fComponentsStore.fConnections;
3879
- }
3880
3880
  handle(request) {
3881
3881
  this.getInputConnections(request.nodeDragHandler.fNode).forEach((connection) => {
3882
3882
  const index = this.getExistingConnectionHandlerIndex(request.result, connection);
@@ -3919,13 +3919,13 @@ let PutInputConnectionHandlersToArrayExecution = class PutInputConnectionHandler
3919
3919
  getNewSourceConnectionHandler(connection, nodeDragHandler) {
3920
3920
  return new ConnectionTargetDragHandler(this.fMediator, this.fComponentsStore, connection, nodeDragHandler.minDistance, nodeDragHandler.maxDistance);
3921
3921
  }
3922
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
3923
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution }); }
3922
3924
  };
3923
- PutInputConnectionHandlersToArrayExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
3924
- PutInputConnectionHandlersToArrayExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution });
3925
3925
  PutInputConnectionHandlersToArrayExecution = __decorate([
3926
3926
  FExecutionRegister(PutInputConnectionHandlersToArrayRequest)
3927
3927
  ], PutInputConnectionHandlersToArrayExecution);
3928
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution, decorators: [{
3928
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutInputConnectionHandlersToArrayExecution, decorators: [{
3929
3929
  type: Injectable
3930
3930
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
3931
3931
 
@@ -3952,13 +3952,13 @@ class ConnectionSourceDragHandler extends ConnectionBaseDragHandler {
3952
3952
  }
3953
3953
 
3954
3954
  let PutOutputConnectionHandlersToArrayExecution = class PutOutputConnectionHandlersToArrayExecution {
3955
+ get fConnections() {
3956
+ return this.fComponentsStore.fConnections;
3957
+ }
3955
3958
  constructor(fComponentsStore, fMediator) {
3956
3959
  this.fComponentsStore = fComponentsStore;
3957
3960
  this.fMediator = fMediator;
3958
3961
  }
3959
- get fConnections() {
3960
- return this.fComponentsStore.fConnections;
3961
- }
3962
3962
  handle(request) {
3963
3963
  this.getOutputConnections(request.nodeDragHandler.fNode).forEach((connection) => {
3964
3964
  const index = this.getExistingConnectionHandlerIndex(request.result, connection);
@@ -4001,13 +4001,13 @@ let PutOutputConnectionHandlersToArrayExecution = class PutOutputConnectionHandl
4001
4001
  getNewSourceConnectionHandler(connection, nodeDragHandler) {
4002
4002
  return new ConnectionSourceDragHandler(this.fMediator, this.fComponentsStore, connection, nodeDragHandler.minDistance, nodeDragHandler.maxDistance);
4003
4003
  }
4004
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4005
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution }); }
4004
4006
  };
4005
- PutOutputConnectionHandlersToArrayExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4006
- PutOutputConnectionHandlersToArrayExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution });
4007
4007
  PutOutputConnectionHandlersToArrayExecution = __decorate([
4008
4008
  FExecutionRegister(PutOutputConnectionHandlersToArrayRequest)
4009
4009
  ], PutOutputConnectionHandlersToArrayExecution);
4010
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution, decorators: [{
4010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PutOutputConnectionHandlersToArrayExecution, decorators: [{
4011
4011
  type: Injectable
4012
4012
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
4013
4013
 
@@ -4039,13 +4039,13 @@ let GetNodeMoveRestrictionsExecution = class GetNodeMoveRestrictionsExecution {
4039
4039
  getParentNodeRect(fNode) {
4040
4040
  return this.fMediator.send(new GetNormalizedParentNodeRectRequest(fNode));
4041
4041
  }
4042
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeMoveRestrictionsExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4043
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeMoveRestrictionsExecution }); }
4042
4044
  };
4043
- GetNodeMoveRestrictionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeMoveRestrictionsExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4044
- GetNodeMoveRestrictionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeMoveRestrictionsExecution });
4045
4045
  GetNodeMoveRestrictionsExecution = __decorate([
4046
4046
  FExecutionRegister(GetNodeMoveRestrictionsRequest)
4047
4047
  ], GetNodeMoveRestrictionsExecution);
4048
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeMoveRestrictionsExecution, decorators: [{
4048
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeMoveRestrictionsExecution, decorators: [{
4049
4049
  type: Injectable
4050
4050
  }], ctorParameters: function () { return [{ type: i2.FMediator }]; } });
4051
4051
  const DEFAULT_RESTRICTIONS = {
@@ -4158,13 +4158,13 @@ let CreateMoveNodesDragModelFromSelectionExecution = class CreateMoveNodesDragMo
4158
4158
  });
4159
4159
  return result;
4160
4160
  }
4161
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4162
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution }); }
4161
4163
  };
4162
- CreateMoveNodesDragModelFromSelectionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4163
- CreateMoveNodesDragModelFromSelectionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution });
4164
4164
  CreateMoveNodesDragModelFromSelectionExecution = __decorate([
4165
4165
  FExecutionRegister(CreateMoveNodesDragModelFromSelectionRequest)
4166
4166
  ], CreateMoveNodesDragModelFromSelectionExecution);
4167
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution, decorators: [{
4167
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CreateMoveNodesDragModelFromSelectionExecution, decorators: [{
4168
4168
  type: Injectable
4169
4169
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
4170
4170
 
@@ -4182,17 +4182,17 @@ class NodeMovePreparationRequest {
4182
4182
  }
4183
4183
 
4184
4184
  let NodeMovePreparationExecution = class NodeMovePreparationExecution {
4185
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
4186
- this.fComponentsStore = fComponentsStore;
4187
- this.fDraggableDataContext = fDraggableDataContext;
4188
- this.fMediator = fMediator;
4189
- }
4190
4185
  get transform() {
4191
4186
  return this.fComponentsStore.fCanvas.transform;
4192
4187
  }
4193
4188
  get flowHost() {
4194
4189
  return this.fComponentsStore.fFlow.hostElement;
4195
4190
  }
4191
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
4192
+ this.fComponentsStore = fComponentsStore;
4193
+ this.fDraggableDataContext = fDraggableDataContext;
4194
+ this.fMediator = fMediator;
4195
+ }
4196
4196
  handle(request) {
4197
4197
  this.selectAndUpdateNodeLayer(request.event.targetElement);
4198
4198
  const itemsToDrag = this.createDragModelFromSelection();
@@ -4217,13 +4217,13 @@ let NodeMovePreparationExecution = class NodeMovePreparationExecution {
4217
4217
  filterNodesFromDraggableItems(items) {
4218
4218
  return items.filter((x) => x instanceof NodeDragHandler).map(x => x.fNode);
4219
4219
  }
4220
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4221
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationExecution }); }
4220
4222
  };
4221
- NodeMovePreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4222
- NodeMovePreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationExecution });
4223
4223
  NodeMovePreparationExecution = __decorate([
4224
4224
  FExecutionRegister(NodeMovePreparationRequest)
4225
4225
  ], NodeMovePreparationExecution);
4226
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationExecution, decorators: [{
4226
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationExecution, decorators: [{
4227
4227
  type: Injectable
4228
4228
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
4229
4229
 
@@ -4249,13 +4249,13 @@ let NodeMovePreparationValidator = class NodeMovePreparationValidator {
4249
4249
  isDragHandleElement(targetElement) {
4250
4250
  return isClosestElementHasClass(targetElement, '.f-drag-handle');
4251
4251
  }
4252
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4253
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationValidator }); }
4252
4254
  };
4253
- NodeMovePreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4254
- NodeMovePreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationValidator });
4255
4255
  NodeMovePreparationValidator = __decorate([
4256
4256
  FValidatorRegister(NodeMovePreparationRequest)
4257
4257
  ], NodeMovePreparationValidator);
4258
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMovePreparationValidator, decorators: [{
4258
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMovePreparationValidator, decorators: [{
4259
4259
  type: Injectable
4260
4260
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
4261
4261
 
@@ -4274,14 +4274,14 @@ class IsConnectionUnderNodeRequest {
4274
4274
  }
4275
4275
 
4276
4276
  let NodeMoveFinalizeExecution = class NodeMoveFinalizeExecution {
4277
+ get flowHost() {
4278
+ return this.fComponentsStore.fFlow.hostElement;
4279
+ }
4277
4280
  constructor(fComponentsStore, fDraggableDataContext, fMediator) {
4278
4281
  this.fComponentsStore = fComponentsStore;
4279
4282
  this.fDraggableDataContext = fDraggableDataContext;
4280
4283
  this.fMediator = fMediator;
4281
4284
  }
4282
- get flowHost() {
4283
- return this.fComponentsStore.fFlow.hostElement;
4284
- }
4285
4285
  handle(request) {
4286
4286
  const difference = this.getDifferenceWithLineAlignment(this.getDifferenceBetweenPreparationAndFinalize(request.event.getPosition()));
4287
4287
  this.fDraggableDataContext.draggableItems.forEach((x) => {
@@ -4303,13 +4303,13 @@ let NodeMoveFinalizeExecution = class NodeMoveFinalizeExecution {
4303
4303
  }
4304
4304
  return difference;
4305
4305
  }
4306
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4307
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeExecution }); }
4306
4308
  };
4307
- NodeMoveFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4308
- NodeMoveFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeExecution });
4309
4309
  NodeMoveFinalizeExecution = __decorate([
4310
4310
  FExecutionRegister(NodeMoveFinalizeRequest)
4311
4311
  ], NodeMoveFinalizeExecution);
4312
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeExecution, decorators: [{
4312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeExecution, decorators: [{
4313
4313
  type: Injectable
4314
4314
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
4315
4315
 
@@ -4320,13 +4320,13 @@ let NodeMoveFinalizeValidator = class NodeMoveFinalizeValidator {
4320
4320
  handle(request) {
4321
4321
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof NodeDragHandler);
4322
4322
  }
4323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4324
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeValidator }); }
4323
4325
  };
4324
- NodeMoveFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4325
- NodeMoveFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeValidator });
4326
4326
  NodeMoveFinalizeValidator = __decorate([
4327
4327
  FValidatorRegister(NodeMoveFinalizeRequest)
4328
4328
  ], NodeMoveFinalizeValidator);
4329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeMoveFinalizeValidator, decorators: [{
4329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeMoveFinalizeValidator, decorators: [{
4330
4330
  type: Injectable
4331
4331
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
4332
4332
 
@@ -4381,13 +4381,13 @@ let ApplyChildResizeRestrictionsExecution = class ApplyChildResizeRestrictionsEx
4381
4381
  rect.height = restrictionsRect.y + restrictionsRect.height - rect.y + OFFSET$1;
4382
4382
  }
4383
4383
  }
4384
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyChildResizeRestrictionsExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4385
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyChildResizeRestrictionsExecution }); }
4384
4386
  };
4385
- ApplyChildResizeRestrictionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyChildResizeRestrictionsExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4386
- ApplyChildResizeRestrictionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyChildResizeRestrictionsExecution });
4387
4387
  ApplyChildResizeRestrictionsExecution = __decorate([
4388
4388
  FExecutionRegister(ApplyChildResizeRestrictionsRequest)
4389
4389
  ], ApplyChildResizeRestrictionsExecution);
4390
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyChildResizeRestrictionsExecution, decorators: [{
4390
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyChildResizeRestrictionsExecution, decorators: [{
4391
4391
  type: Injectable
4392
4392
  }] });
4393
4393
 
@@ -4431,13 +4431,13 @@ let ApplyParentResizeRestrictionsExecution = class ApplyParentResizeRestrictions
4431
4431
  rect.height = restrictionsRect.y + restrictionsRect.height - rect.y - OFFSET;
4432
4432
  }
4433
4433
  }
4434
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyParentResizeRestrictionsExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4435
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyParentResizeRestrictionsExecution }); }
4434
4436
  };
4435
- ApplyParentResizeRestrictionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyParentResizeRestrictionsExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4436
- ApplyParentResizeRestrictionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyParentResizeRestrictionsExecution });
4437
4437
  ApplyParentResizeRestrictionsExecution = __decorate([
4438
4438
  FExecutionRegister(ApplyParentResizeRestrictionsRequest)
4439
4439
  ], ApplyParentResizeRestrictionsExecution);
4440
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ApplyParentResizeRestrictionsExecution, decorators: [{
4440
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ApplyParentResizeRestrictionsExecution, decorators: [{
4441
4441
  type: Injectable
4442
4442
  }] });
4443
4443
 
@@ -4464,13 +4464,13 @@ let CalculateChangedPositionExecution = class CalculateChangedPositionExecution
4464
4464
  change(originalRect, difference, direction, changedRect) {
4465
4465
  return RectExtensions.initialize(originalRect.x + (direction.x === -1 ? difference.x : 0) + changedRect.x, originalRect.y + (direction.y === -1 ? difference.y : 0) + changedRect.y, changedRect.width, changedRect.height);
4466
4466
  }
4467
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedPositionExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4468
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedPositionExecution }); }
4467
4469
  };
4468
- CalculateChangedPositionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedPositionExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4469
- CalculateChangedPositionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedPositionExecution });
4470
4470
  CalculateChangedPositionExecution = __decorate([
4471
4471
  FExecutionRegister(CalculateChangedPositionRequest)
4472
4472
  ], CalculateChangedPositionExecution);
4473
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedPositionExecution, decorators: [{
4473
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedPositionExecution, decorators: [{
4474
4474
  type: Injectable
4475
4475
  }] });
4476
4476
 
@@ -4498,13 +4498,13 @@ let CalculateChangedSizeExecution = class CalculateChangedSizeExecution {
4498
4498
  }
4499
4499
  return RectExtensions.copy(result);
4500
4500
  }
4501
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedSizeExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
4502
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedSizeExecution }); }
4501
4503
  };
4502
- CalculateChangedSizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedSizeExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4503
- CalculateChangedSizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedSizeExecution });
4504
4504
  CalculateChangedSizeExecution = __decorate([
4505
4505
  FExecutionRegister(CalculateChangedSizeRequest)
4506
4506
  ], CalculateChangedSizeExecution);
4507
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateChangedSizeExecution, decorators: [{
4507
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateChangedSizeExecution, decorators: [{
4508
4508
  type: Injectable
4509
4509
  }] });
4510
4510
 
@@ -4536,13 +4536,13 @@ let GetNormalizedChildrenNodesRectExecution = class GetNormalizedChildrenNodesRe
4536
4536
  concatRectWithParentPadding(rect, padding) {
4537
4537
  return RectExtensions.initialize(rect.x - padding[0], rect.y - padding[1], rect.width + padding[0] + padding[2], rect.height + +padding[1] + padding[3]);
4538
4538
  }
4539
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4540
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution }); }
4539
4541
  };
4540
- GetNormalizedChildrenNodesRectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4541
- GetNormalizedChildrenNodesRectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution });
4542
4542
  GetNormalizedChildrenNodesRectExecution = __decorate([
4543
4543
  FExecutionRegister(GetNormalizedChildrenNodesRectRequest)
4544
4544
  ], GetNormalizedChildrenNodesRectExecution);
4545
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution, decorators: [{
4545
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNormalizedChildrenNodesRectExecution, decorators: [{
4546
4546
  type: Injectable
4547
4547
  }], ctorParameters: function () { return [{ type: i2.FMediator }]; } });
4548
4548
 
@@ -4565,13 +4565,13 @@ let GetNodeResizeRestrictionsExecution = class GetNodeResizeRestrictionsExecutio
4565
4565
  childRect,
4566
4566
  };
4567
4567
  }
4568
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeResizeRestrictionsExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4569
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeResizeRestrictionsExecution }); }
4568
4570
  };
4569
- GetNodeResizeRestrictionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeResizeRestrictionsExecution, deps: [{ token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4570
- GetNodeResizeRestrictionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeResizeRestrictionsExecution });
4571
4571
  GetNodeResizeRestrictionsExecution = __decorate([
4572
4572
  FExecutionRegister(GetNodeResizeRestrictionsRequest)
4573
4573
  ], GetNodeResizeRestrictionsExecution);
4574
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodeResizeRestrictionsExecution, decorators: [{
4574
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodeResizeRestrictionsExecution, decorators: [{
4575
4575
  type: Injectable
4576
4576
  }], ctorParameters: function () { return [{ type: i2.FMediator }]; } });
4577
4577
 
@@ -4590,13 +4590,13 @@ let NodeResizeFinalizeExecution = class NodeResizeFinalizeExecution {
4590
4590
  x.complete?.();
4591
4591
  });
4592
4592
  }
4593
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4594
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeExecution }); }
4593
4595
  };
4594
- NodeResizeFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4595
- NodeResizeFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeExecution });
4596
4596
  NodeResizeFinalizeExecution = __decorate([
4597
4597
  FExecutionRegister(NodeResizeFinalizeRequest)
4598
4598
  ], NodeResizeFinalizeExecution);
4599
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeExecution, decorators: [{
4599
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeExecution, decorators: [{
4600
4600
  type: Injectable
4601
4601
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
4602
4602
 
@@ -4648,13 +4648,13 @@ let NodeResizeFinalizeValidator = class NodeResizeFinalizeValidator {
4648
4648
  handle(request) {
4649
4649
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof NodeResizeDragHandler);
4650
4650
  }
4651
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4652
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeValidator }); }
4651
4653
  };
4652
- NodeResizeFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4653
- NodeResizeFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeValidator });
4654
4654
  NodeResizeFinalizeValidator = __decorate([
4655
4655
  FValidatorRegister(NodeResizeFinalizeRequest)
4656
4656
  ], NodeResizeFinalizeValidator);
4657
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizeFinalizeValidator, decorators: [{
4657
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizeFinalizeValidator, decorators: [{
4658
4658
  type: Injectable
4659
4659
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
4660
4660
 
@@ -4670,17 +4670,17 @@ class NodeResizePreparationRequest {
4670
4670
  }
4671
4671
 
4672
4672
  let NodeResizePreparationExecution = class NodeResizePreparationExecution {
4673
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
4674
- this.fComponentsStore = fComponentsStore;
4675
- this.fDraggableDataContext = fDraggableDataContext;
4676
- this.fMediator = fMediator;
4677
- }
4678
4673
  get transform() {
4679
4674
  return this.fComponentsStore.fCanvas.transform;
4680
4675
  }
4681
4676
  get flowHost() {
4682
4677
  return this.fComponentsStore.fFlow.hostElement;
4683
4678
  }
4679
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
4680
+ this.fComponentsStore = fComponentsStore;
4681
+ this.fDraggableDataContext = fDraggableDataContext;
4682
+ this.fMediator = fMediator;
4683
+ }
4684
4684
  handle(request) {
4685
4685
  this.selectAndUpdateNodeLayer(request.event.targetElement);
4686
4686
  const handleType = getDataAttrValueFromClosestElementWithClass(request.event.targetElement, 'fResizeHandleType', '.f-resize-handle');
@@ -4698,13 +4698,13 @@ let NodeResizePreparationExecution = class NodeResizePreparationExecution {
4698
4698
  getNode(targetElement) {
4699
4699
  return this.fComponentsStore.findNode(targetElement);
4700
4700
  }
4701
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4702
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationExecution }); }
4701
4703
  };
4702
- NodeResizePreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4703
- NodeResizePreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationExecution });
4704
4704
  NodeResizePreparationExecution = __decorate([
4705
4705
  FExecutionRegister(NodeResizePreparationRequest)
4706
4706
  ], NodeResizePreparationExecution);
4707
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationExecution, decorators: [{
4707
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationExecution, decorators: [{
4708
4708
  type: Injectable
4709
4709
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
4710
4710
 
@@ -4730,13 +4730,13 @@ let NodeResizePreparationValidator = class NodeResizePreparationValidator {
4730
4730
  isDragHandleElement(targetElement) {
4731
4731
  return isClosestElementHasClass(targetElement, '.f-resize-handle');
4732
4732
  }
4733
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4734
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationValidator }); }
4733
4735
  };
4734
- NodeResizePreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4735
- NodeResizePreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationValidator });
4736
4736
  NodeResizePreparationValidator = __decorate([
4737
4737
  FValidatorRegister(NodeResizePreparationRequest)
4738
4738
  ], NodeResizePreparationValidator);
4739
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: NodeResizePreparationValidator, decorators: [{
4739
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: NodeResizePreparationValidator, decorators: [{
4740
4740
  type: Injectable
4741
4741
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
4742
4742
 
@@ -4829,13 +4829,13 @@ let SingleSelectExecution = class SingleSelectExecution {
4829
4829
  });
4830
4830
  this.fDraggableDataContext.selectedItems = [];
4831
4831
  }
4832
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectExecution, deps: [{ token: i1.PlatformService }, { token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
4833
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectExecution }); }
4832
4834
  };
4833
- SingleSelectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectExecution, deps: [{ token: i1.PlatformService }, { token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
4834
- SingleSelectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectExecution });
4835
4835
  SingleSelectExecution = __decorate([
4836
4836
  FExecutionRegister(SingleSelectRequest)
4837
4837
  ], SingleSelectExecution);
4838
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectExecution, decorators: [{
4838
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectExecution, decorators: [{
4839
4839
  type: Injectable
4840
4840
  }], ctorParameters: function () { return [{ type: i1.PlatformService }, { type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
4841
4841
 
@@ -4848,13 +4848,13 @@ let SingleSelectValidator = class SingleSelectValidator {
4848
4848
  return this.fComponentsStore.fFlow.hostElement.contains(request.event.targetElement)
4849
4849
  && !this.fDraggableDataContext.draggableItems.length;
4850
4850
  }
4851
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4852
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectValidator }); }
4851
4853
  };
4852
- SingleSelectValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4853
- SingleSelectValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectValidator });
4854
4854
  SingleSelectValidator = __decorate([
4855
4855
  FValidatorRegister(SingleSelectRequest)
4856
4856
  ], SingleSelectValidator);
4857
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SingleSelectValidator, decorators: [{
4857
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SingleSelectValidator, decorators: [{
4858
4858
  type: Injectable
4859
4859
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
4860
4860
 
@@ -4867,10 +4867,10 @@ class FDraggableBase extends DragAndDropBase {
4867
4867
  constructor(ngZone) {
4868
4868
  super(ngZone);
4869
4869
  }
4870
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableBase, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
4871
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FDraggableBase, usesInheritance: true, ngImport: i0 }); }
4870
4872
  }
4871
- FDraggableBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableBase, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive });
4872
- FDraggableBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FDraggableBase, usesInheritance: true, ngImport: i0 });
4873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableBase, decorators: [{
4873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableBase, decorators: [{
4874
4874
  type: Directive
4875
4875
  }], ctorParameters: function () { return [{ type: undefined }]; } });
4876
4876
 
@@ -4887,13 +4887,7 @@ class FCreateNodeEvent {
4887
4887
  }
4888
4888
  }
4889
4889
 
4890
- let ExternalItemFinalizeExecution = class ExternalItemFinalizeExecution {
4891
- constructor(fComponentsStore, fDraggableDataContext, fMediator, fBrowser) {
4892
- this.fComponentsStore = fComponentsStore;
4893
- this.fDraggableDataContext = fDraggableDataContext;
4894
- this.fMediator = fMediator;
4895
- this.fBrowser = fBrowser;
4896
- }
4890
+ let ExternalItemFinalizeExecution = class ExternalItemFinalizeExecution {
4897
4891
  get flowHost() {
4898
4892
  return this.fComponentsStore.fFlow.hostElement;
4899
4893
  }
@@ -4903,6 +4897,12 @@ let ExternalItemFinalizeExecution = class ExternalItemFinalizeExecution {
4903
4897
  get dragHandler() {
4904
4898
  return this.fDraggableDataContext.draggableItems[0];
4905
4899
  }
4900
+ constructor(fComponentsStore, fDraggableDataContext, fMediator, fBrowser) {
4901
+ this.fComponentsStore = fComponentsStore;
4902
+ this.fDraggableDataContext = fDraggableDataContext;
4903
+ this.fMediator = fMediator;
4904
+ this.fBrowser = fBrowser;
4905
+ }
4906
4906
  handle(request) {
4907
4907
  this.emitEvent(this.getExternalItemElementsFromPoint(request.event.getPosition()));
4908
4908
  this.dragHandler.complete();
@@ -4922,13 +4922,13 @@ let ExternalItemFinalizeExecution = class ExternalItemFinalizeExecution {
4922
4922
  getRectInCanvas() {
4923
4923
  return this.fMediator.send(new GetElementRectInFlowRequest(this.dragHandler.placeholder));
4924
4924
  }
4925
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
4926
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeExecution }); }
4925
4927
  };
4926
- ExternalItemFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
4927
- ExternalItemFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeExecution });
4928
4928
  ExternalItemFinalizeExecution = __decorate([
4929
4929
  FExecutionRegister(ExternalItemFinalizeRequest)
4930
4930
  ], ExternalItemFinalizeExecution);
4931
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeExecution, decorators: [{
4931
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeExecution, decorators: [{
4932
4932
  type: Injectable
4933
4933
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }, { type: i1.BrowserService }]; } });
4934
4934
 
@@ -4973,13 +4973,13 @@ let ExternalItemFinalizeValidator = class ExternalItemFinalizeValidator {
4973
4973
  handle(request) {
4974
4974
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof ExternalItemDragHandler);
4975
4975
  }
4976
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
4977
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeValidator }); }
4976
4978
  };
4977
- ExternalItemFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
4978
- ExternalItemFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeValidator });
4979
4979
  ExternalItemFinalizeValidator = __decorate([
4980
4980
  FValidatorRegister(ExternalItemFinalizeRequest)
4981
4981
  ], ExternalItemFinalizeValidator);
4982
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemFinalizeValidator, decorators: [{
4982
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemFinalizeValidator, decorators: [{
4983
4983
  type: Injectable
4984
4984
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
4985
4985
 
@@ -4995,15 +4995,15 @@ class ExternalItemPreparationRequest {
4995
4995
  }
4996
4996
 
4997
4997
  let ExternalItemPreparationExecution = class ExternalItemPreparationExecution {
4998
+ get flowHost() {
4999
+ return this.fComponentsStore.fFlow.hostElement;
5000
+ }
4998
5001
  constructor(fComponentsStore, fDraggableDataContext, fExternalItemService, fBrowser) {
4999
5002
  this.fComponentsStore = fComponentsStore;
5000
5003
  this.fDraggableDataContext = fDraggableDataContext;
5001
5004
  this.fExternalItemService = fExternalItemService;
5002
5005
  this.fBrowser = fBrowser;
5003
5006
  }
5004
- get flowHost() {
5005
- return this.fComponentsStore.fFlow.hostElement;
5006
- }
5007
5007
  handle(request) {
5008
5008
  this.fDraggableDataContext.onPointerDownScale = 1;
5009
5009
  this.fDraggableDataContext.onPointerDownPosition = Point.fromPoint(request.event.getPosition()).elementTransform(this.flowHost);
@@ -5014,13 +5014,13 @@ let ExternalItemPreparationExecution = class ExternalItemPreparationExecution {
5014
5014
  getExternalItem(targetElement) {
5015
5015
  return this.fExternalItemService.getItem(getExternalItem(targetElement));
5016
5016
  }
5017
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: FExternalItemService }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
5018
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationExecution }); }
5017
5019
  };
5018
- ExternalItemPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: FExternalItemService }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
5019
- ExternalItemPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationExecution });
5020
5020
  ExternalItemPreparationExecution = __decorate([
5021
5021
  FExecutionRegister(ExternalItemPreparationRequest)
5022
5022
  ], ExternalItemPreparationExecution);
5023
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationExecution, decorators: [{
5023
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationExecution, decorators: [{
5024
5024
  type: Injectable
5025
5025
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: FExternalItemService }, { type: i1.BrowserService }]; } });
5026
5026
 
@@ -5035,13 +5035,13 @@ let ExternalItemPreparationValidator = class ExternalItemPreparationValidator {
5035
5035
  getExternalItem(targetElement) {
5036
5036
  return this.fExternalItemService.getItem(getExternalItem(targetElement));
5037
5037
  }
5038
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationValidator, deps: [{ token: FExternalItemService }], target: i0.ɵɵFactoryTarget.Injectable }); }
5039
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationValidator }); }
5038
5040
  };
5039
- ExternalItemPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationValidator, deps: [{ token: FExternalItemService }], target: i0.ɵɵFactoryTarget.Injectable });
5040
- ExternalItemPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationValidator });
5041
5041
  ExternalItemPreparationValidator = __decorate([
5042
5042
  FValidatorRegister(ExternalItemPreparationRequest)
5043
5043
  ], ExternalItemPreparationValidator);
5044
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ExternalItemPreparationValidator, decorators: [{
5044
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ExternalItemPreparationValidator, decorators: [{
5045
5045
  type: Injectable
5046
5046
  }], ctorParameters: function () { return [{ type: FExternalItemService }]; } });
5047
5047
 
@@ -5057,10 +5057,10 @@ const F_EXTERNAL_ITEM_DRAG_AND_DROP_PROVIDERS = [
5057
5057
 
5058
5058
  const F_EXTERNAL_ITEM = new InjectionToken('F_EXTERNAL_ITEM');
5059
5059
  class FExternalItemBase {
5060
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5061
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FExternalItemBase, ngImport: i0 }); }
5060
5062
  }
5061
- FExternalItemBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
5062
- FExternalItemBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FExternalItemBase, ngImport: i0 });
5063
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemBase, decorators: [{
5063
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemBase, decorators: [{
5064
5064
  type: Directive
5065
5065
  }] });
5066
5066
 
@@ -5087,10 +5087,10 @@ class FExternalItemService {
5087
5087
  this.items.splice(index, 1);
5088
5088
  }
5089
5089
  }
5090
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5091
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemService, providedIn: 'root' }); }
5090
5092
  }
5091
- FExternalItemService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5092
- FExternalItemService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemService, providedIn: 'root' });
5093
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemService, decorators: [{
5093
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemService, decorators: [{
5094
5094
  type: Injectable,
5095
5095
  args: [{
5096
5096
  providedIn: 'root'
@@ -5099,6 +5099,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
5099
5099
 
5100
5100
  let uniqueId$3 = 0;
5101
5101
  class FExternalItemDirective extends FExternalItemBase {
5102
+ get hostElement() {
5103
+ return this.elementReference.nativeElement;
5104
+ }
5102
5105
  constructor(elementReference, fExternalItemService) {
5103
5106
  super();
5104
5107
  this.elementReference = elementReference;
@@ -5106,9 +5109,6 @@ class FExternalItemDirective extends FExternalItemBase {
5106
5109
  this.fExternalItemId = `f-external-item-${uniqueId$3++}`;
5107
5110
  this.fDisabled = false;
5108
5111
  }
5109
- get hostElement() {
5110
- return this.elementReference.nativeElement;
5111
- }
5112
5112
  ngOnInit() {
5113
5113
  this.fExternalItemService.registerItem(this);
5114
5114
  this.disablePointerEvents(Array.from(this.hostElement.children));
@@ -5122,12 +5122,12 @@ class FExternalItemDirective extends FExternalItemBase {
5122
5122
  ngOnDestroy() {
5123
5123
  this.fExternalItemService.removeItem(this);
5124
5124
  }
5125
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemDirective, deps: [{ token: i0.ElementRef }, { token: FExternalItemService }], target: i0.ɵɵFactoryTarget.Directive }); }
5126
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FExternalItemDirective, selector: "[fExternalItem]", inputs: { fExternalItemId: "fExternalItemId", fData: "fData", fDisabled: "fDisabled" }, host: { properties: { "attr.id": "fExternalItemId", "class.f-external-item-disabled": "fDisabled" }, classAttribute: "f-component f-external-item" }, providers: [
5127
+ { provide: F_EXTERNAL_ITEM, useExisting: FExternalItemDirective }
5128
+ ], usesInheritance: true, ngImport: i0 }); }
5125
5129
  }
5126
- FExternalItemDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemDirective, deps: [{ token: i0.ElementRef }, { token: FExternalItemService }], target: i0.ɵɵFactoryTarget.Directive });
5127
- FExternalItemDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FExternalItemDirective, selector: "[fExternalItem]", inputs: { fExternalItemId: "fExternalItemId", fData: "fData", fDisabled: "fDisabled" }, host: { properties: { "attr.id": "fExternalItemId", "class.f-external-item-disabled": "fDisabled" }, classAttribute: "f-component f-external-item" }, providers: [
5128
- { provide: F_EXTERNAL_ITEM, useExisting: FExternalItemDirective }
5129
- ], usesInheritance: true, ngImport: i0 });
5130
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FExternalItemDirective, decorators: [{
5130
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FExternalItemDirective, decorators: [{
5131
5131
  type: Directive,
5132
5132
  args: [{
5133
5133
  selector: "[fExternalItem]",
@@ -5155,6 +5155,9 @@ const F_EXTERNAL_ITEM_PROVIDERS = [
5155
5155
  const F_DRAG_AND_DROP_PLUGIN = new InjectionToken('F_DRAG_AND_DROP_PLUGIN');
5156
5156
 
5157
5157
  class FDraggableDirective extends FDraggableBase {
5158
+ get hostElement() {
5159
+ return this.elementReference.nativeElement;
5160
+ }
5158
5161
  constructor(elementReference, fDraggableDataContext, ngZone, fComponentsStore, fMediator, fBrowser) {
5159
5162
  super(ngZone);
5160
5163
  this.elementReference = elementReference;
@@ -5171,9 +5174,6 @@ class FDraggableDirective extends FDraggableBase {
5171
5174
  this.fReassignConnection = new EventEmitter();
5172
5175
  this.fCreateConnection = new EventEmitter();
5173
5176
  }
5174
- get hostElement() {
5175
- return this.elementReference.nativeElement;
5176
- }
5177
5177
  ngOnInit() {
5178
5178
  this.fComponentsStore.fDraggable = this;
5179
5179
  }
@@ -5267,10 +5267,10 @@ class FDraggableDirective extends FDraggableBase {
5267
5267
  super.unsubscribe();
5268
5268
  this.subscriptions$.unsubscribe();
5269
5269
  }
5270
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableDirective, deps: [{ token: i0.ElementRef }, { token: FDraggableDataContext }, { token: NgZone, optional: true }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive }); }
5271
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FDraggableDirective, selector: "f-flow[fDraggable]", inputs: { disabled: ["fDraggableDisabled", "disabled"] }, outputs: { fSelectionChange: "fSelectionChange", fCreateNode: "fCreateNode", fReassignConnection: "fReassignConnection", fCreateConnection: "fCreateConnection" }, queries: [{ propertyName: "plugins", predicate: F_DRAG_AND_DROP_PLUGIN, descendants: true }], exportAs: ["fDraggable"], usesInheritance: true, ngImport: i0 }); }
5270
5272
  }
5271
- FDraggableDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableDirective, deps: [{ token: i0.ElementRef }, { token: FDraggableDataContext }, { token: NgZone, optional: true }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
5272
- FDraggableDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FDraggableDirective, selector: "f-flow[fDraggable]", inputs: { disabled: ["fDraggableDisabled", "disabled"] }, outputs: { fSelectionChange: "fSelectionChange", fCreateNode: "fCreateNode", fReassignConnection: "fReassignConnection", fCreateConnection: "fCreateConnection" }, queries: [{ propertyName: "plugins", predicate: F_DRAG_AND_DROP_PLUGIN, descendants: true }], exportAs: ["fDraggable"], usesInheritance: true, ngImport: i0 });
5273
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FDraggableDirective, decorators: [{
5273
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FDraggableDirective, decorators: [{
5274
5274
  type: Directive,
5275
5275
  args: [{
5276
5276
  selector: "f-flow[fDraggable]",
@@ -5314,12 +5314,12 @@ class CalculateFlowPointFromMinimapPointRequest {
5314
5314
  }
5315
5315
 
5316
5316
  let CalculateFlowPointFromMinimapPointExecution = class CalculateFlowPointFromMinimapPointExecution {
5317
- constructor(fComponentsStore) {
5318
- this.fComponentsStore = fComponentsStore;
5319
- }
5320
5317
  get canvasScale() {
5321
5318
  return this.fComponentsStore.fCanvas.transform.scale;
5322
5319
  }
5320
+ constructor(fComponentsStore) {
5321
+ this.fComponentsStore = fComponentsStore;
5322
+ }
5323
5323
  handle(payload) {
5324
5324
  return PointExtensions.sub(payload.canvasPosition, PointExtensions.sub(this.getPositionInViewBox(payload.eventPoint, payload.minimap), this.getNormalizedFlowCenter(payload.flowRect)));
5325
5325
  }
@@ -5337,13 +5337,13 @@ let CalculateFlowPointFromMinimapPointExecution = class CalculateFlowPointFromMi
5337
5337
  getEventPointInMinimap(eventPoint, minimap) {
5338
5338
  return Point.fromPoint(eventPoint).elementTransform(minimap.element);
5339
5339
  }
5340
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
5341
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution }); }
5340
5342
  };
5341
- CalculateFlowPointFromMinimapPointExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
5342
- CalculateFlowPointFromMinimapPointExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution });
5343
5343
  CalculateFlowPointFromMinimapPointExecution = __decorate([
5344
5344
  FExecutionRegister(CalculateFlowPointFromMinimapPointRequest)
5345
5345
  ], CalculateFlowPointFromMinimapPointExecution);
5346
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution, decorators: [{
5346
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: CalculateFlowPointFromMinimapPointExecution, decorators: [{
5347
5347
  type: Injectable
5348
5348
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
5349
5349
 
@@ -5362,13 +5362,13 @@ let MinimapDragFinalizeExecution = class MinimapDragFinalizeExecution {
5362
5362
  x.complete?.();
5363
5363
  });
5364
5364
  }
5365
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5366
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeExecution }); }
5365
5367
  };
5366
- MinimapDragFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5367
- MinimapDragFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeExecution });
5368
5368
  MinimapDragFinalizeExecution = __decorate([
5369
5369
  FExecutionRegister(MinimapDragFinalizeRequest)
5370
5370
  ], MinimapDragFinalizeExecution);
5371
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeExecution, decorators: [{
5371
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeExecution, decorators: [{
5372
5372
  type: Injectable
5373
5373
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5374
5374
 
@@ -5412,13 +5412,13 @@ let MinimapDragFinalizeValidator = class MinimapDragFinalizeValidator {
5412
5412
  handle(request) {
5413
5413
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof FMinimapDragHandler);
5414
5414
  }
5415
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5416
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeValidator }); }
5415
5417
  };
5416
- MinimapDragFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5417
- MinimapDragFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeValidator });
5418
5418
  MinimapDragFinalizeValidator = __decorate([
5419
5419
  FValidatorRegister(MinimapDragFinalizeRequest)
5420
5420
  ], MinimapDragFinalizeValidator);
5421
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragFinalizeValidator, decorators: [{
5421
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragFinalizeValidator, decorators: [{
5422
5422
  type: Injectable
5423
5423
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5424
5424
 
@@ -5435,14 +5435,14 @@ class MinimapDragPreparationRequest {
5435
5435
  }
5436
5436
 
5437
5437
  let MinimapDragPreparationExecution = class MinimapDragPreparationExecution {
5438
+ get flowHost() {
5439
+ return this.fComponentsStore.fFlow.hostElement;
5440
+ }
5438
5441
  constructor(fComponentsStore, fMediator, fDraggableDataContext) {
5439
5442
  this.fComponentsStore = fComponentsStore;
5440
5443
  this.fMediator = fMediator;
5441
5444
  this.fDraggableDataContext = fDraggableDataContext;
5442
5445
  }
5443
- get flowHost() {
5444
- return this.fComponentsStore.fFlow.hostElement;
5445
- }
5446
5446
  handle(request) {
5447
5447
  const eventPoint = request.event.getPosition();
5448
5448
  const startCanvasPosition = Point.fromPoint(this.fComponentsStore.fCanvas.transform.position);
@@ -5461,13 +5461,13 @@ let MinimapDragPreparationExecution = class MinimapDragPreparationExecution {
5461
5461
  getFlowRect() {
5462
5462
  return RectExtensions.fromElement(this.flowHost);
5463
5463
  }
5464
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5465
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationExecution }); }
5464
5466
  };
5465
- MinimapDragPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5466
- MinimapDragPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationExecution });
5467
5467
  MinimapDragPreparationExecution = __decorate([
5468
5468
  FExecutionRegister(MinimapDragPreparationRequest)
5469
5469
  ], MinimapDragPreparationExecution);
5470
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationExecution, decorators: [{
5470
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationExecution, decorators: [{
5471
5471
  type: Injectable
5472
5472
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }, { type: FDraggableDataContext }]; } });
5473
5473
 
@@ -5481,13 +5481,13 @@ let MinimapDragPreparationValidator = class MinimapDragPreparationValidator {
5481
5481
  !!request.event.targetElement.closest('.f-minimap') &&
5482
5482
  this.fComponentsStore.flowHost.contains(request.event.targetElement);
5483
5483
  }
5484
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5485
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationValidator }); }
5484
5486
  };
5485
- MinimapDragPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationValidator, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5486
- MinimapDragPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationValidator });
5487
5487
  MinimapDragPreparationValidator = __decorate([
5488
5488
  FValidatorRegister(MinimapDragPreparationRequest)
5489
5489
  ], MinimapDragPreparationValidator);
5490
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MinimapDragPreparationValidator, decorators: [{
5490
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MinimapDragPreparationValidator, decorators: [{
5491
5491
  type: Injectable
5492
5492
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
5493
5493
 
@@ -5532,13 +5532,13 @@ let SelectionAreaFinalizeExecution = class SelectionAreaFinalizeExecution {
5532
5532
  x.complete?.();
5533
5533
  });
5534
5534
  }
5535
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5536
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeExecution }); }
5535
5537
  };
5536
- SelectionAreaFinalizeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5537
- SelectionAreaFinalizeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeExecution });
5538
5538
  SelectionAreaFinalizeExecution = __decorate([
5539
5539
  FExecutionRegister(SelectionAreaFinalizeRequest)
5540
5540
  ], SelectionAreaFinalizeExecution);
5541
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeExecution, decorators: [{
5541
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeExecution, decorators: [{
5542
5542
  type: Injectable
5543
5543
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5544
5544
 
@@ -5546,6 +5546,9 @@ class GetCanBeSelectedItemsRequest {
5546
5546
  }
5547
5547
 
5548
5548
  class SelectionAreaDragHandle {
5549
+ get canvasPosition() {
5550
+ return Point.fromPoint(this.fComponentsStore.fCanvas.transform.position).add(this.fComponentsStore.fCanvas.transform.scaledPosition);
5551
+ }
5549
5552
  constructor(fComponentsStore, fSelectionArea, fDraggableDataContext, fMediator) {
5550
5553
  this.fComponentsStore = fComponentsStore;
5551
5554
  this.fSelectionArea = fSelectionArea;
@@ -5554,9 +5557,6 @@ class SelectionAreaDragHandle {
5554
5557
  this.canBeSelected = [];
5555
5558
  this.selectedByMove = [];
5556
5559
  }
5557
- get canvasPosition() {
5558
- return Point.fromPoint(this.fComponentsStore.fCanvas.transform.position).add(this.fComponentsStore.fCanvas.transform.scaledPosition);
5559
- }
5560
5560
  initialize() {
5561
5561
  this.canBeSelected = this.fMediator.send(new GetCanBeSelectedItemsRequest());
5562
5562
  this.fSelectionArea.show();
@@ -5597,13 +5597,13 @@ let SelectionAreaFinalizeValidator = class SelectionAreaFinalizeValidator {
5597
5597
  handle(request) {
5598
5598
  return this.fDraggableDataContext.draggableItems.some((x) => x instanceof SelectionAreaDragHandle);
5599
5599
  }
5600
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5601
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeValidator }); }
5600
5602
  };
5601
- SelectionAreaFinalizeValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5602
- SelectionAreaFinalizeValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeValidator });
5603
5603
  SelectionAreaFinalizeValidator = __decorate([
5604
5604
  FValidatorRegister(SelectionAreaFinalizeRequest)
5605
5605
  ], SelectionAreaFinalizeValidator);
5606
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaFinalizeValidator, decorators: [{
5606
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaFinalizeValidator, decorators: [{
5607
5607
  type: Injectable
5608
5608
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5609
5609
 
@@ -5620,14 +5620,14 @@ class SelectionAreaPreparationRequest {
5620
5620
  }
5621
5621
 
5622
5622
  let SelectionAreaPreparationExecution = class SelectionAreaPreparationExecution {
5623
+ get flowHost() {
5624
+ return this.fComponentsStore.fFlow.hostElement;
5625
+ }
5623
5626
  constructor(fComponentsStore, fDraggableDataContext, fMediator) {
5624
5627
  this.fComponentsStore = fComponentsStore;
5625
5628
  this.fDraggableDataContext = fDraggableDataContext;
5626
5629
  this.fMediator = fMediator;
5627
5630
  }
5628
- get flowHost() {
5629
- return this.fComponentsStore.fFlow.hostElement;
5630
- }
5631
5631
  handle(request) {
5632
5632
  this.fDraggableDataContext.draggableItems = [
5633
5633
  new SelectionAreaDragHandle(this.fComponentsStore, request.fSelectionArea, this.fDraggableDataContext, this.fMediator)
@@ -5636,13 +5636,13 @@ let SelectionAreaPreparationExecution = class SelectionAreaPreparationExecution
5636
5636
  this.fDraggableDataContext.onPointerDownPosition = Point.fromPoint(request.event.getPosition())
5637
5637
  .elementTransform(this.flowHost);
5638
5638
  }
5639
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
5640
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationExecution }); }
5639
5641
  };
5640
- SelectionAreaPreparationExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
5641
- SelectionAreaPreparationExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationExecution });
5642
5642
  SelectionAreaPreparationExecution = __decorate([
5643
5643
  FExecutionRegister(SelectionAreaPreparationRequest)
5644
5644
  ], SelectionAreaPreparationExecution);
5645
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationExecution, decorators: [{
5645
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationExecution, decorators: [{
5646
5646
  type: Injectable
5647
5647
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
5648
5648
 
@@ -5660,13 +5660,13 @@ let SelectionAreaPreparationValidator = class SelectionAreaPreparationValidator
5660
5660
  isShiftPressed(event) {
5661
5661
  return event.shiftKey;
5662
5662
  }
5663
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5664
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationValidator }); }
5663
5665
  };
5664
- SelectionAreaPreparationValidator.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationValidator, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5665
- SelectionAreaPreparationValidator.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationValidator });
5666
5666
  SelectionAreaPreparationValidator = __decorate([
5667
5667
  FValidatorRegister(SelectionAreaPreparationRequest)
5668
5668
  ], SelectionAreaPreparationValidator);
5669
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectionAreaPreparationValidator, decorators: [{
5669
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectionAreaPreparationValidator, decorators: [{
5670
5670
  type: Injectable
5671
5671
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5672
5672
 
@@ -5681,22 +5681,22 @@ const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS = [
5681
5681
  ];
5682
5682
 
5683
5683
  class FSelectionAreaBase {
5684
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSelectionAreaBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
5685
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FSelectionAreaBase, ngImport: i0 }); }
5684
5686
  }
5685
- FSelectionAreaBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSelectionAreaBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
5686
- FSelectionAreaBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FSelectionAreaBase, ngImport: i0 });
5687
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSelectionAreaBase, decorators: [{
5687
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSelectionAreaBase, decorators: [{
5688
5688
  type: Directive
5689
5689
  }] });
5690
5690
 
5691
5691
  class FSelectionAreaComponent extends FSelectionAreaBase {
5692
+ get hostElement() {
5693
+ return this.elementReference.nativeElement;
5694
+ }
5692
5695
  constructor(elementReference, fMediator) {
5693
5696
  super();
5694
5697
  this.elementReference = elementReference;
5695
5698
  this.fMediator = fMediator;
5696
5699
  }
5697
- get hostElement() {
5698
- return this.elementReference.nativeElement;
5699
- }
5700
5700
  ngOnInit() {
5701
5701
  this.hostElement.style.display = 'none';
5702
5702
  }
@@ -5719,12 +5719,12 @@ class FSelectionAreaComponent extends FSelectionAreaBase {
5719
5719
  onPointerUp(event) {
5720
5720
  this.fMediator.send(new SelectionAreaFinalizeRequest(event));
5721
5721
  }
5722
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSelectionAreaComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component }); }
5723
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FSelectionAreaComponent, selector: "f-selection-area", host: { classAttribute: "f-selection-area f-component" }, providers: [
5724
+ { provide: F_DRAG_AND_DROP_PLUGIN, useExisting: FSelectionAreaComponent },
5725
+ ], usesInheritance: true, ngImport: i0, template: ``, isInline: true, styles: [":host{position:absolute}\n"] }); }
5722
5726
  }
5723
- FSelectionAreaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSelectionAreaComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component });
5724
- FSelectionAreaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FSelectionAreaComponent, selector: "f-selection-area", host: { classAttribute: "f-selection-area f-component" }, providers: [
5725
- { provide: F_DRAG_AND_DROP_PLUGIN, useExisting: FSelectionAreaComponent },
5726
- ], usesInheritance: true, ngImport: i0, template: ``, isInline: true, styles: [":host{position:absolute}\n"] });
5727
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FSelectionAreaComponent, decorators: [{
5727
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FSelectionAreaComponent, decorators: [{
5728
5728
  type: Component,
5729
5729
  args: [{ selector: "f-selection-area", template: ``, host: {
5730
5730
  'class': 'f-selection-area f-component'
@@ -5758,13 +5758,13 @@ let ClearSelectionExecution = class ClearSelectionExecution {
5758
5758
  this.fDraggableDataContext.selectedItems = [];
5759
5759
  this.fDraggableDataContext.isSelectedChanged = true;
5760
5760
  }
5761
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClearSelectionExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5762
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClearSelectionExecution }); }
5761
5763
  };
5762
- ClearSelectionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ClearSelectionExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5763
- ClearSelectionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ClearSelectionExecution });
5764
5764
  ClearSelectionExecution = __decorate([
5765
5765
  FExecutionRegister(ClearSelectionRequest)
5766
5766
  ], ClearSelectionExecution);
5767
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ClearSelectionExecution, decorators: [{
5767
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ClearSelectionExecution, decorators: [{
5768
5768
  type: Injectable
5769
5769
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5770
5770
 
@@ -5788,13 +5788,13 @@ let GetSelectionExecution = class GetSelectionExecution {
5788
5788
  });
5789
5789
  return new FSelectionChangeEvent(selectedNodes, selectedConnections);
5790
5790
  }
5791
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetSelectionExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5792
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetSelectionExecution }); }
5791
5793
  };
5792
- GetSelectionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetSelectionExecution, deps: [{ token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5793
- GetSelectionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetSelectionExecution });
5794
5794
  GetSelectionExecution = __decorate([
5795
5795
  FExecutionRegister(GetSelectionRequest)
5796
5796
  ], GetSelectionExecution);
5797
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetSelectionExecution, decorators: [{
5797
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetSelectionExecution, decorators: [{
5798
5798
  type: Injectable
5799
5799
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }]; } });
5800
5800
 
@@ -5831,13 +5831,13 @@ let SelectExecution = class SelectExecution {
5831
5831
  });
5832
5832
  this.fDraggableDataContext.isSelectedChanged = true;
5833
5833
  }
5834
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5835
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectExecution }); }
5834
5836
  };
5835
- SelectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5836
- SelectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectExecution });
5837
5837
  SelectExecution = __decorate([
5838
5838
  FExecutionRegister(SelectRequest)
5839
5839
  ], SelectExecution);
5840
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectExecution, decorators: [{
5840
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectExecution, decorators: [{
5841
5841
  type: Injectable
5842
5842
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
5843
5843
 
@@ -5864,13 +5864,13 @@ let SelectAllExecution = class SelectAllExecution {
5864
5864
  });
5865
5865
  this.fDraggableDataContext.isSelectedChanged = true;
5866
5866
  }
5867
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAllExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable }); }
5868
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAllExecution }); }
5867
5869
  };
5868
- SelectAllExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAllExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }], target: i0.ɵɵFactoryTarget.Injectable });
5869
- SelectAllExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAllExecution });
5870
5870
  SelectAllExecution = __decorate([
5871
5871
  FExecutionRegister(SelectAllRequest)
5872
5872
  ], SelectAllExecution);
5873
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAllExecution, decorators: [{
5873
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAllExecution, decorators: [{
5874
5874
  type: Injectable
5875
5875
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }]; } });
5876
5876
 
@@ -5904,13 +5904,13 @@ let MoveFrontElementsBeforeTargetElementExecution = class MoveFrontElementsBefor
5904
5904
  request.fItemsContainer.insertBefore(x, request.allElements[request.targetIndex]);
5905
5905
  });
5906
5906
  }
5907
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
5908
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution }); }
5907
5909
  };
5908
- MoveFrontElementsBeforeTargetElementExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
5909
- MoveFrontElementsBeforeTargetElementExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution });
5910
5910
  MoveFrontElementsBeforeTargetElementExecution = __decorate([
5911
5911
  FExecutionRegister(MoveFrontElementsBeforeTargetElementRequest)
5912
5912
  ], MoveFrontElementsBeforeTargetElementExecution);
5913
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution, decorators: [{
5913
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: MoveFrontElementsBeforeTargetElementExecution, decorators: [{
5914
5914
  type: Injectable
5915
5915
  }] });
5916
5916
 
@@ -5945,21 +5945,17 @@ let GetDeepChildrenNodesAndGroupsExecution = class GetDeepChildrenNodesAndGroups
5945
5945
  });
5946
5946
  return result;
5947
5947
  }
5948
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
5949
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution }); }
5948
5950
  };
5949
- GetDeepChildrenNodesAndGroupsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
5950
- GetDeepChildrenNodesAndGroupsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution });
5951
5951
  GetDeepChildrenNodesAndGroupsExecution = __decorate([
5952
5952
  FExecutionRegister(GetDeepChildrenNodesAndGroupsRequest)
5953
5953
  ], GetDeepChildrenNodesAndGroupsExecution);
5954
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution, decorators: [{
5954
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetDeepChildrenNodesAndGroupsExecution, decorators: [{
5955
5955
  type: Injectable
5956
5956
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
5957
5957
 
5958
5958
  let UpdateItemAndChildrenLayersExecution = class UpdateItemAndChildrenLayersExecution {
5959
- constructor(fComponentsStore, fMediator) {
5960
- this.fComponentsStore = fComponentsStore;
5961
- this.fMediator = fMediator;
5962
- }
5963
5959
  get fGroupsContainer() {
5964
5960
  return this.fComponentsStore.fCanvas.fGroupsContainer.nativeElement;
5965
5961
  }
@@ -5969,6 +5965,10 @@ let UpdateItemAndChildrenLayersExecution = class UpdateItemAndChildrenLayersExec
5969
5965
  get fConnectionsContainer() {
5970
5966
  return this.fComponentsStore.fCanvas.fConnectionsContainer.nativeElement;
5971
5967
  }
5968
+ constructor(fComponentsStore, fMediator) {
5969
+ this.fComponentsStore = fComponentsStore;
5970
+ this.fMediator = fMediator;
5971
+ }
5972
5972
  handle(request) {
5973
5973
  switch (request.itemContainer) {
5974
5974
  case this.fGroupsContainer:
@@ -6029,13 +6029,13 @@ let UpdateItemAndChildrenLayersExecution = class UpdateItemAndChildrenLayersExec
6029
6029
  getChildrenNodesAndGroups(fId) {
6030
6030
  return this.fMediator.send(new GetDeepChildrenNodesAndGroupsRequest(fId)).map((x) => x.hostElement);
6031
6031
  }
6032
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateItemAndChildrenLayersExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6033
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateItemAndChildrenLayersExecution }); }
6032
6034
  };
6033
- UpdateItemAndChildrenLayersExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateItemAndChildrenLayersExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6034
- UpdateItemAndChildrenLayersExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateItemAndChildrenLayersExecution });
6035
6035
  UpdateItemAndChildrenLayersExecution = __decorate([
6036
6036
  FExecutionRegister(UpdateItemAndChildrenLayersRequest)
6037
6037
  ], UpdateItemAndChildrenLayersExecution);
6038
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: UpdateItemAndChildrenLayersExecution, decorators: [{
6038
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: UpdateItemAndChildrenLayersExecution, decorators: [{
6039
6039
  type: Injectable
6040
6040
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
6041
6041
 
@@ -6055,13 +6055,13 @@ let SelectAndUpdateNodeLayerExecution = class SelectAndUpdateNodeLayerExecution
6055
6055
  this.fDraggableDataContext.isSelectedChanged = true;
6056
6056
  }
6057
6057
  }
6058
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAndUpdateNodeLayerExecution, deps: [{ token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6059
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAndUpdateNodeLayerExecution }); }
6058
6060
  };
6059
- SelectAndUpdateNodeLayerExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAndUpdateNodeLayerExecution, deps: [{ token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6060
- SelectAndUpdateNodeLayerExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAndUpdateNodeLayerExecution });
6061
6061
  SelectAndUpdateNodeLayerExecution = __decorate([
6062
6062
  FExecutionRegister(SelectAndUpdateNodeLayerRequest)
6063
6063
  ], SelectAndUpdateNodeLayerExecution);
6064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SelectAndUpdateNodeLayerExecution, decorators: [{
6064
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SelectAndUpdateNodeLayerExecution, decorators: [{
6065
6065
  type: Injectable
6066
6066
  }], ctorParameters: function () { return [{ type: FDraggableDataContext }, { type: i2.FMediator }]; } });
6067
6067
 
@@ -6074,11 +6074,6 @@ const F_SELECTION_FEATURES = [
6074
6074
  ];
6075
6075
 
6076
6076
  let GetCanBeSelectedItemsExecution = class GetCanBeSelectedItemsExecution {
6077
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
6078
- this.fComponentsStore = fComponentsStore;
6079
- this.fDraggableDataContext = fDraggableDataContext;
6080
- this.fMediator = fMediator;
6081
- }
6082
6077
  get fNodes() {
6083
6078
  return this.fComponentsStore.fNodes;
6084
6079
  }
@@ -6088,6 +6083,11 @@ let GetCanBeSelectedItemsExecution = class GetCanBeSelectedItemsExecution {
6088
6083
  get transform() {
6089
6084
  return this.fComponentsStore.fCanvas.transform;
6090
6085
  }
6086
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
6087
+ this.fComponentsStore = fComponentsStore;
6088
+ this.fDraggableDataContext = fDraggableDataContext;
6089
+ this.fMediator = fMediator;
6090
+ }
6091
6091
  handle() {
6092
6092
  return [...this.getNodesWithRects(), ...this.getConnectionsWithRects()].filter((x) => {
6093
6093
  return !this.fDraggableDataContext.selectedItems.includes(x.element);
@@ -6109,13 +6109,13 @@ let GetCanBeSelectedItemsExecution = class GetCanBeSelectedItemsExecution {
6109
6109
  };
6110
6110
  });
6111
6111
  }
6112
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeSelectedItemsExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6113
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeSelectedItemsExecution }); }
6112
6114
  };
6113
- GetCanBeSelectedItemsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeSelectedItemsExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6114
- GetCanBeSelectedItemsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeSelectedItemsExecution });
6115
6115
  GetCanBeSelectedItemsExecution = __decorate([
6116
6116
  FExecutionRegister(GetCanBeSelectedItemsRequest)
6117
6117
  ], GetCanBeSelectedItemsExecution);
6118
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetCanBeSelectedItemsExecution, decorators: [{
6118
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetCanBeSelectedItemsExecution, decorators: [{
6119
6119
  type: Injectable
6120
6120
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
6121
6121
 
@@ -6151,13 +6151,13 @@ let GetConnectionLineExecution = class GetConnectionLineExecution {
6151
6151
  fixedOutboundBehaviour(payload) {
6152
6152
  return new Line(positionFixedOutbound[payload.outputSide === EFConnectableSide.AUTO ? EFConnectableSide.BOTTOM : payload.outputSide](payload.outputRect), positionFixedOutbound[payload.inputSide === EFConnectableSide.AUTO ? EFConnectableSide.TOP : payload.inputSide](payload.inputRect));
6153
6153
  }
6154
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectionLineExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
6155
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectionLineExecution }); }
6154
6156
  };
6155
- GetConnectionLineExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectionLineExecution, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
6156
- GetConnectionLineExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectionLineExecution });
6157
6157
  GetConnectionLineExecution = __decorate([
6158
6158
  FExecutionRegister(GetConnectionLineRequest)
6159
6159
  ], GetConnectionLineExecution);
6160
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetConnectionLineExecution, decorators: [{
6160
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetConnectionLineExecution, decorators: [{
6161
6161
  type: Injectable
6162
6162
  }] });
6163
6163
  const positionFixedOutbound = {
@@ -6206,13 +6206,13 @@ let GetFlowStateConnectionsExecution = class GetFlowStateConnectionsExecution {
6206
6206
  };
6207
6207
  });
6208
6208
  }
6209
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateConnectionsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6210
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateConnectionsExecution }); }
6209
6211
  };
6210
- GetFlowStateConnectionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateConnectionsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6211
- GetFlowStateConnectionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateConnectionsExecution });
6212
6212
  GetFlowStateConnectionsExecution = __decorate([
6213
6213
  FExecutionRegister(GetFlowStateConnectionsRequest)
6214
6214
  ], GetFlowStateConnectionsExecution);
6215
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateConnectionsExecution, decorators: [{
6215
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateConnectionsExecution, decorators: [{
6216
6216
  type: Injectable
6217
6217
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6218
6218
 
@@ -6255,13 +6255,13 @@ let GetFlowStateNodesExecution = class GetFlowStateNodesExecution {
6255
6255
  };
6256
6256
  });
6257
6257
  }
6258
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateNodesExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6259
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateNodesExecution }); }
6258
6260
  };
6259
- GetFlowStateNodesExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateNodesExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6260
- GetFlowStateNodesExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateNodesExecution });
6261
6261
  GetFlowStateNodesExecution = __decorate([
6262
6262
  FExecutionRegister(GetFlowStateNodesRequest)
6263
6263
  ], GetFlowStateNodesExecution);
6264
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateNodesExecution, decorators: [{
6264
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateNodesExecution, decorators: [{
6265
6265
  type: Injectable
6266
6266
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6267
6267
 
@@ -6285,13 +6285,13 @@ let GetFlowStateExecution = class GetFlowStateExecution {
6285
6285
  getCanvasPosition(transform) {
6286
6286
  return PointExtensions.sum(transform.position, transform.scaledPosition);
6287
6287
  }
6288
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6289
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateExecution }); }
6288
6290
  };
6289
- GetFlowStateExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6290
- GetFlowStateExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateExecution });
6291
6291
  GetFlowStateExecution = __decorate([
6292
6292
  FExecutionRegister(GetFlowStateRequest)
6293
6293
  ], GetFlowStateExecution);
6294
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetFlowStateExecution, decorators: [{
6294
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetFlowStateExecution, decorators: [{
6295
6295
  type: Injectable
6296
6296
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
6297
6297
 
@@ -6320,13 +6320,13 @@ let GetScaledNodeRectsWithFlowPositionExecution = class GetScaledNodeRectsWithFl
6320
6320
  getNodes() {
6321
6321
  return this.fComponentsStore.fNodes;
6322
6322
  }
6323
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6324
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution }); }
6323
6325
  };
6324
- GetScaledNodeRectsWithFlowPositionExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6325
- GetScaledNodeRectsWithFlowPositionExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution });
6326
6326
  GetScaledNodeRectsWithFlowPositionExecution = __decorate([
6327
6327
  FExecutionRegister(GetScaledNodeRectsWithFlowPositionRequest)
6328
6328
  ], GetScaledNodeRectsWithFlowPositionExecution);
6329
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution, decorators: [{
6329
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetScaledNodeRectsWithFlowPositionExecution, decorators: [{
6330
6330
  type: Injectable
6331
6331
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6332
6332
 
@@ -6346,13 +6346,13 @@ let GetNodesRectExecution = class GetNodesRectExecution {
6346
6346
  getNodes() {
6347
6347
  return this.fComponentsStore.fNodes;
6348
6348
  }
6349
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodesRectExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6350
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodesRectExecution }); }
6349
6351
  };
6350
- GetNodesRectExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodesRectExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6351
- GetNodesRectExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodesRectExecution });
6352
6352
  GetNodesRectExecution = __decorate([
6353
6353
  FExecutionRegister(GetNodesRectRequest)
6354
6354
  ], GetNodesRectExecution);
6355
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetNodesRectExecution, decorators: [{
6355
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetNodesRectExecution, decorators: [{
6356
6356
  type: Injectable
6357
6357
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6358
6358
 
@@ -6363,41 +6363,41 @@ class GetPositionInFlowRequest {
6363
6363
  }
6364
6364
 
6365
6365
  let GetPositionInFlowExecution = class GetPositionInFlowExecution {
6366
- constructor(fComponentsStore) {
6367
- this.fComponentsStore = fComponentsStore;
6368
- }
6369
6366
  get transform() {
6370
6367
  return this.fComponentsStore.transform;
6371
6368
  }
6372
6369
  get flowHost() {
6373
6370
  return this.fComponentsStore.flowHost;
6374
6371
  }
6372
+ constructor(fComponentsStore) {
6373
+ this.fComponentsStore = fComponentsStore;
6374
+ }
6375
6375
  handle(request) {
6376
6376
  return Point.fromPoint(request.position).elementTransform(this.flowHost)
6377
6377
  .sub(this.transform.scaledPosition).sub(this.transform.position).div(this.transform.scale);
6378
6378
  }
6379
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetPositionInFlowExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6380
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetPositionInFlowExecution }); }
6379
6381
  };
6380
- GetPositionInFlowExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetPositionInFlowExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6381
- GetPositionInFlowExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetPositionInFlowExecution });
6382
6382
  GetPositionInFlowExecution = __decorate([
6383
6383
  FExecutionRegister(GetPositionInFlowRequest)
6384
6384
  ], GetPositionInFlowExecution);
6385
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: GetPositionInFlowExecution, decorators: [{
6385
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: GetPositionInFlowExecution, decorators: [{
6386
6386
  type: Injectable
6387
6387
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6388
6388
 
6389
6389
  let IsConnectionUnderNodeExecution = class IsConnectionUnderNodeExecution {
6390
- constructor(fComponentsStore, fDraggableDataContext, fMediator) {
6391
- this.fComponentsStore = fComponentsStore;
6392
- this.fDraggableDataContext = fDraggableDataContext;
6393
- this.fMediator = fMediator;
6394
- }
6395
6390
  get transform() {
6396
6391
  return this.fComponentsStore.fCanvas.transform;
6397
6392
  }
6398
6393
  get flowHost() {
6399
6394
  return this.fComponentsStore.fFlow.hostElement;
6400
6395
  }
6396
+ constructor(fComponentsStore, fDraggableDataContext, fMediator) {
6397
+ this.fComponentsStore = fComponentsStore;
6398
+ this.fDraggableDataContext = fDraggableDataContext;
6399
+ this.fMediator = fMediator;
6400
+ }
6401
6401
  handle() {
6402
6402
  const isValid = this.isValidRequest();
6403
6403
  if (!isValid) {
@@ -6441,13 +6441,13 @@ let IsConnectionUnderNodeExecution = class IsConnectionUnderNodeExecution {
6441
6441
  return ([]).length > 0;
6442
6442
  });
6443
6443
  }
6444
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsConnectionUnderNodeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6445
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsConnectionUnderNodeExecution }); }
6444
6446
  };
6445
- IsConnectionUnderNodeExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsConnectionUnderNodeExecution, deps: [{ token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6446
- IsConnectionUnderNodeExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsConnectionUnderNodeExecution });
6447
6447
  IsConnectionUnderNodeExecution = __decorate([
6448
6448
  FExecutionRegister(IsConnectionUnderNodeRequest)
6449
6449
  ], IsConnectionUnderNodeExecution);
6450
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: IsConnectionUnderNodeExecution, decorators: [{
6450
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: IsConnectionUnderNodeExecution, decorators: [{
6451
6451
  type: Injectable
6452
6452
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: FDraggableDataContext }, { type: i2.FMediator }]; } });
6453
6453
 
@@ -6496,13 +6496,13 @@ let RedrawConnectionsExecution = class RedrawConnectionsExecution {
6496
6496
  setMarkers(connection) {
6497
6497
  this.fMediator.send(new CreateConnectionMarkersRequest(connection));
6498
6498
  }
6499
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RedrawConnectionsExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable }); }
6500
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RedrawConnectionsExecution }); }
6499
6501
  };
6500
- RedrawConnectionsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: RedrawConnectionsExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Injectable });
6501
- RedrawConnectionsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: RedrawConnectionsExecution });
6502
6502
  RedrawConnectionsExecution = __decorate([
6503
6503
  FExecutionRegister(RedrawConnectionsRequest)
6504
6504
  ], RedrawConnectionsExecution);
6505
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: RedrawConnectionsExecution, decorators: [{
6505
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: RedrawConnectionsExecution, decorators: [{
6506
6506
  type: Injectable
6507
6507
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }]; } });
6508
6508
 
@@ -6518,13 +6518,13 @@ let ShowConnectionsAfterCalculationsExecution = class ShowConnectionsAfterCalcul
6518
6518
  connection.hostElement.style.display = 'unset';
6519
6519
  });
6520
6520
  }
6521
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6522
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution }); }
6521
6523
  };
6522
- ShowConnectionsAfterCalculationsExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6523
- ShowConnectionsAfterCalculationsExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution });
6524
6524
  ShowConnectionsAfterCalculationsExecution = __decorate([
6525
6525
  FExecutionRegister(ShowConnectionsAfterCalculationsRequest)
6526
6526
  ], ShowConnectionsAfterCalculationsExecution);
6527
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution, decorators: [{
6527
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: ShowConnectionsAfterCalculationsExecution, decorators: [{
6528
6528
  type: Injectable
6529
6529
  }], ctorParameters: function () { return [{ type: FComponentsStore }]; } });
6530
6530
 
@@ -6532,11 +6532,6 @@ class SortNodeLayersRequest {
6532
6532
  }
6533
6533
 
6534
6534
  let SortNodeLayersExecution = class SortNodeLayersExecution {
6535
- constructor(fComponentsStore, fMediator, fBrowser) {
6536
- this.fComponentsStore = fComponentsStore;
6537
- this.fMediator = fMediator;
6538
- this.fBrowser = fBrowser;
6539
- }
6540
6535
  get fGroupsContainer() {
6541
6536
  return this.fComponentsStore.fCanvas.fGroupsContainer.nativeElement;
6542
6537
  }
@@ -6546,6 +6541,11 @@ let SortNodeLayersExecution = class SortNodeLayersExecution {
6546
6541
  get fNodesContainerElements() {
6547
6542
  return Array.from(this.fNodesContainer.children);
6548
6543
  }
6544
+ constructor(fComponentsStore, fMediator, fBrowser) {
6545
+ this.fComponentsStore = fComponentsStore;
6546
+ this.fMediator = fMediator;
6547
+ this.fBrowser = fBrowser;
6548
+ }
6549
6549
  handle(request) {
6550
6550
  this.getGroups().forEach((parent) => {
6551
6551
  this.moveChildrenNodes(this.getSortedChildrenNodes(parent));
@@ -6570,13 +6570,13 @@ let SortNodeLayersExecution = class SortNodeLayersExecution {
6570
6570
  });
6571
6571
  this.fNodesContainer.appendChild(fragment);
6572
6572
  }
6573
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortNodeLayersExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
6574
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortNodeLayersExecution }); }
6573
6575
  };
6574
- SortNodeLayersExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortNodeLayersExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
6575
- SortNodeLayersExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortNodeLayersExecution });
6576
6576
  SortNodeLayersExecution = __decorate([
6577
6577
  FExecutionRegister(SortNodeLayersRequest)
6578
6578
  ], SortNodeLayersExecution);
6579
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortNodeLayersExecution, decorators: [{
6579
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortNodeLayersExecution, decorators: [{
6580
6580
  type: Injectable
6581
6581
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }, { type: i1.BrowserService }]; } });
6582
6582
 
@@ -6588,14 +6588,14 @@ class SortItemsByParentRequest {
6588
6588
  }
6589
6589
 
6590
6590
  let SortItemsByParentExecution = class SortItemsByParentExecution {
6591
+ get fItemsFromContainer() {
6592
+ return Array.from(this.fItemsContainer.children);
6593
+ }
6591
6594
  constructor(fComponentsStore, fMediator, fBrowser) {
6592
6595
  this.fComponentsStore = fComponentsStore;
6593
6596
  this.fMediator = fMediator;
6594
6597
  this.fBrowser = fBrowser;
6595
6598
  }
6596
- get fItemsFromContainer() {
6597
- return Array.from(this.fItemsContainer.children);
6598
- }
6599
6599
  handle(request) {
6600
6600
  this.fItemsContainer = request.fItemsContainer;
6601
6601
  this.getItems().forEach((parent) => {
@@ -6624,13 +6624,13 @@ let SortItemsByParentExecution = class SortItemsByParentExecution {
6624
6624
  });
6625
6625
  this.fItemsContainer.insertBefore(fragment, nextSibling);
6626
6626
  }
6627
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemsByParentExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable }); }
6628
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemsByParentExecution }); }
6627
6629
  };
6628
- SortItemsByParentExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemsByParentExecution, deps: [{ token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Injectable });
6629
- SortItemsByParentExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemsByParentExecution });
6630
6630
  SortItemsByParentExecution = __decorate([
6631
6631
  FExecutionRegister(SortItemsByParentRequest)
6632
6632
  ], SortItemsByParentExecution);
6633
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemsByParentExecution, decorators: [{
6633
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemsByParentExecution, decorators: [{
6634
6634
  type: Injectable
6635
6635
  }], ctorParameters: function () { return [{ type: FComponentsStore }, { type: i2.FMediator }, { type: i1.BrowserService }]; } });
6636
6636
 
@@ -6647,13 +6647,13 @@ let SortItemLayersExecution = class SortItemLayersExecution {
6647
6647
  this.fMediator.send(new SortNodeLayersRequest());
6648
6648
  this.fMediator.send(new SortItemsByParentRequest(this.fComponentsStore.fCanvas.fNodesContainer.nativeElement));
6649
6649
  }
6650
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemLayersExecution, deps: [{ token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6651
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemLayersExecution }); }
6650
6652
  };
6651
- SortItemLayersExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemLayersExecution, deps: [{ token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6652
- SortItemLayersExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemLayersExecution });
6653
6653
  SortItemLayersExecution = __decorate([
6654
6654
  FExecutionRegister(SortItemLayersRequest)
6655
6655
  ], SortItemLayersExecution);
6656
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SortItemLayersExecution, decorators: [{
6656
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SortItemLayersExecution, decorators: [{
6657
6657
  type: Injectable
6658
6658
  }], ctorParameters: function () { return [{ type: i2.FMediator }, { type: FComponentsStore }]; } });
6659
6659
 
@@ -6668,13 +6668,13 @@ let SubscribeOnTransformChangesExecution = class SubscribeOnTransformChangesExec
6668
6668
  handle(request) {
6669
6669
  return merge(this.fTransformStore.changes, this.fComponentsStore.componentsData$, this.fComponentsStore.componentsCount$);
6670
6670
  }
6671
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SubscribeOnTransformChangesExecution, deps: [{ token: FTransformStore }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable }); }
6672
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SubscribeOnTransformChangesExecution }); }
6671
6673
  };
6672
- SubscribeOnTransformChangesExecution.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SubscribeOnTransformChangesExecution, deps: [{ token: FTransformStore }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Injectable });
6673
- SubscribeOnTransformChangesExecution.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SubscribeOnTransformChangesExecution });
6674
6674
  SubscribeOnTransformChangesExecution = __decorate([
6675
6675
  FExecutionRegister(SubscribeOnTransformChangesRequest)
6676
6676
  ], SubscribeOnTransformChangesExecution);
6677
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: SubscribeOnTransformChangesExecution, decorators: [{
6677
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: SubscribeOnTransformChangesExecution, decorators: [{
6678
6678
  type: Injectable
6679
6679
  }], ctorParameters: function () { return [{ type: FTransformStore }, { type: FComponentsStore }]; } });
6680
6680
 
@@ -6713,21 +6713,6 @@ const COMMON_PROVIDERS = [
6713
6713
 
6714
6714
  let uniqueId$2 = 0;
6715
6715
  class FRectPatternComponent {
6716
- constructor(elementReference, fBrowser) {
6717
- this.elementReference = elementReference;
6718
- this.fBrowser = fBrowser;
6719
- this._subscription$ = new Subscription();
6720
- this._stateChanges = new Subject();
6721
- this.id = `f-pattern-${uniqueId$2++}`;
6722
- this._vColor = 'rgba(0,0,0,0.1)';
6723
- this._hColor = 'rgba(0,0,0,0.1)';
6724
- this._vSize = 20;
6725
- this._hSize = 20;
6726
- this._transform = TransformModelExtensions.default();
6727
- this._position = PointExtensions.initialize();
6728
- this._size = SizeExtensions.initialize(this._hSize, this._vSize);
6729
- this.createPattern();
6730
- }
6731
6716
  get hostElement() {
6732
6717
  return this.elementReference.nativeElement;
6733
6718
  }
@@ -6747,6 +6732,21 @@ class FRectPatternComponent {
6747
6732
  this._hSize = value;
6748
6733
  this._stateChanges.next();
6749
6734
  }
6735
+ constructor(elementReference, fBrowser) {
6736
+ this.elementReference = elementReference;
6737
+ this.fBrowser = fBrowser;
6738
+ this._subscription$ = new Subscription();
6739
+ this._stateChanges = new Subject();
6740
+ this.id = `f-pattern-${uniqueId$2++}`;
6741
+ this._vColor = 'rgba(0,0,0,0.1)';
6742
+ this._hColor = 'rgba(0,0,0,0.1)';
6743
+ this._vSize = 20;
6744
+ this._hSize = 20;
6745
+ this._transform = TransformModelExtensions.default();
6746
+ this._position = PointExtensions.initialize();
6747
+ this._size = SizeExtensions.initialize(this._hSize, this._vSize);
6748
+ this.createPattern();
6749
+ }
6750
6750
  createPattern() {
6751
6751
  this._pattern = createSVGElement('pattern', this.fBrowser);
6752
6752
  this._pattern.setAttribute('patternUnits', 'userSpaceOnUse');
@@ -6795,12 +6795,12 @@ class FRectPatternComponent {
6795
6795
  ngOnDestroy() {
6796
6796
  this._subscription$.unsubscribe();
6797
6797
  }
6798
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FRectPatternComponent, deps: [{ token: i0.ElementRef }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component }); }
6799
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FRectPatternComponent, selector: "f-rect-pattern", inputs: { id: "id", vColor: "vColor", hColor: "hColor", vSize: "vSize", hSize: "hSize" }, host: { properties: { "attr.id": "id" } }, providers: [
6800
+ { provide: F_BACKGROUND_PATTERN, useExisting: FRectPatternComponent }
6801
+ ], ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6798
6802
  }
6799
- FRectPatternComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FRectPatternComponent, deps: [{ token: i0.ElementRef }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component });
6800
- FRectPatternComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FRectPatternComponent, selector: "f-rect-pattern", inputs: { id: "id", vColor: "vColor", hColor: "hColor", vSize: "vSize", hSize: "hSize" }, host: { properties: { "attr.id": "id" } }, providers: [
6801
- { provide: F_BACKGROUND_PATTERN, useExisting: FRectPatternComponent }
6802
- ], ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
6803
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FRectPatternComponent, decorators: [{
6803
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FRectPatternComponent, decorators: [{
6804
6804
  type: Component,
6805
6805
  args: [{
6806
6806
  selector: "f-rect-pattern",
@@ -6827,6 +6827,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
6827
6827
 
6828
6828
  let uniqueId$1 = 0;
6829
6829
  class FCirclePatternComponent {
6830
+ get hostElement() {
6831
+ return this.elementReference.nativeElement;
6832
+ }
6833
+ set color(value) {
6834
+ this._color = value;
6835
+ this._stateChanges.next();
6836
+ }
6837
+ set radius(value) {
6838
+ this._radius = value;
6839
+ this._stateChanges.next();
6840
+ }
6830
6841
  constructor(elementReference, fBrowser) {
6831
6842
  this.elementReference = elementReference;
6832
6843
  this.fBrowser = fBrowser;
@@ -6840,17 +6851,6 @@ class FCirclePatternComponent {
6840
6851
  this._position = PointExtensions.initialize();
6841
6852
  this.createPattern();
6842
6853
  }
6843
- get hostElement() {
6844
- return this.elementReference.nativeElement;
6845
- }
6846
- set color(value) {
6847
- this._color = value;
6848
- this._stateChanges.next();
6849
- }
6850
- set radius(value) {
6851
- this._radius = value;
6852
- this._stateChanges.next();
6853
- }
6854
6854
  createPattern() {
6855
6855
  this._pattern = createSVGElement('pattern', this.fBrowser);
6856
6856
  this._pattern.setAttribute('patternUnits', 'userSpaceOnUse');
@@ -6895,12 +6895,12 @@ class FCirclePatternComponent {
6895
6895
  ngOnDestroy() {
6896
6896
  this._subscription$.unsubscribe();
6897
6897
  }
6898
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCirclePatternComponent, deps: [{ token: i0.ElementRef }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component }); }
6899
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FCirclePatternComponent, selector: "f-circle-pattern", inputs: { id: "id", color: "color", radius: "radius" }, host: { properties: { "attr.id": "id" } }, providers: [
6900
+ { provide: F_BACKGROUND_PATTERN, useExisting: FCirclePatternComponent }
6901
+ ], ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6898
6902
  }
6899
- FCirclePatternComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCirclePatternComponent, deps: [{ token: i0.ElementRef }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component });
6900
- FCirclePatternComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FCirclePatternComponent, selector: "f-circle-pattern", inputs: { id: "id", color: "color", radius: "radius" }, host: { properties: { "attr.id": "id" } }, providers: [
6901
- { provide: F_BACKGROUND_PATTERN, useExisting: FCirclePatternComponent }
6902
- ], ngImport: i0, template: ``, isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
6903
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCirclePatternComponent, decorators: [{
6903
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCirclePatternComponent, decorators: [{
6904
6904
  type: Component,
6905
6905
  args: [{
6906
6906
  selector: "f-circle-pattern",
@@ -6923,23 +6923,23 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
6923
6923
 
6924
6924
  const F_BACKGROUND = new InjectionToken('F_BACKGROUND');
6925
6925
  class FBackgroundBase {
6926
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FBackgroundBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
6927
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FBackgroundBase, ngImport: i0 }); }
6926
6928
  }
6927
- FBackgroundBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FBackgroundBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
6928
- FBackgroundBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FBackgroundBase, ngImport: i0 });
6929
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FBackgroundBase, decorators: [{
6929
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FBackgroundBase, decorators: [{
6930
6930
  type: Directive
6931
6931
  }] });
6932
6932
 
6933
6933
  class FBackgroundComponent extends FBackgroundBase {
6934
+ get hostElement() {
6935
+ return this.elementReference.nativeElement;
6936
+ }
6934
6937
  constructor(elementReference, fComponentsStore, fMediator) {
6935
6938
  super();
6936
6939
  this.elementReference = elementReference;
6937
6940
  this.fComponentsStore = fComponentsStore;
6938
6941
  this.fMediator = fMediator;
6939
6942
  }
6940
- get hostElement() {
6941
- return this.elementReference.nativeElement;
6942
- }
6943
6943
  ngOnInit() {
6944
6944
  this.fComponentsStore.fBackground = this;
6945
6945
  }
@@ -6955,10 +6955,10 @@ class FBackgroundComponent extends FBackgroundBase {
6955
6955
  ngOnDestroy() {
6956
6956
  this.fComponentsStore.fBackground = undefined;
6957
6957
  }
6958
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FBackgroundComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component }); }
6959
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FBackgroundComponent, selector: "f-background", host: { classAttribute: "f-component f-background" }, providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundComponent }], queries: [{ propertyName: "fBackgroundPattern", first: true, predicate: F_BACKGROUND_PATTERN, descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg><ng-content></ng-content></svg>", isInline: true, styles: [":host{position:absolute;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host svg{width:100%;height:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
6958
6960
  }
6959
- FBackgroundComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FBackgroundComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component });
6960
- FBackgroundComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FBackgroundComponent, selector: "f-background", host: { classAttribute: "f-component f-background" }, providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundComponent }], queries: [{ propertyName: "fBackgroundPattern", first: true, predicate: F_BACKGROUND_PATTERN, descendants: true }], usesInheritance: true, ngImport: i0, template: "<svg><ng-content></ng-content></svg>", isInline: true, styles: [":host{position:absolute;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host svg{width:100%;height:100%}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
6961
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FBackgroundComponent, decorators: [{
6961
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FBackgroundComponent, decorators: [{
6962
6962
  type: Component,
6963
6963
  args: [{ selector: "f-background", template: "<svg><ng-content></ng-content></svg>", host: {
6964
6964
  'class': 'f-component f-background'
@@ -6995,21 +6995,14 @@ class FCanvasBase {
6995
6995
  emitCanvasChangeEvent() {
6996
6996
  this.fCanvasChange.emit(new FCanvasChangeEvent(PointExtensions.sum(this.transform.position, this.transform.scaledPosition), this.transform.scale));
6997
6997
  }
6998
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCanvasBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
6999
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FCanvasBase, ngImport: i0 }); }
6998
7000
  }
6999
- FCanvasBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCanvasBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
7000
- FCanvasBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FCanvasBase, ngImport: i0 });
7001
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCanvasBase, decorators: [{
7001
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCanvasBase, decorators: [{
7002
7002
  type: Directive
7003
7003
  }] });
7004
7004
 
7005
7005
  class FCanvasComponent extends FCanvasBase {
7006
- constructor(elementReference, fMediator, fComponentsStore) {
7007
- super();
7008
- this.elementReference = elementReference;
7009
- this.fMediator = fMediator;
7010
- this.fComponentsStore = fComponentsStore;
7011
- this.fCanvasChange = new EventEmitter();
7012
- }
7013
7006
  set position(value) {
7014
7007
  this.fMediator.send(new InputCanvasPositionRequest(this.transform, value));
7015
7008
  }
@@ -7022,6 +7015,13 @@ class FCanvasComponent extends FCanvasBase {
7022
7015
  get hostElement() {
7023
7016
  return this.elementReference.nativeElement;
7024
7017
  }
7018
+ constructor(elementReference, fMediator, fComponentsStore) {
7019
+ super();
7020
+ this.elementReference = elementReference;
7021
+ this.fMediator = fMediator;
7022
+ this.fComponentsStore = fComponentsStore;
7023
+ this.fCanvasChange = new EventEmitter();
7024
+ }
7025
7025
  ngOnInit() {
7026
7026
  this.fComponentsStore.fCanvas = this;
7027
7027
  }
@@ -7052,12 +7052,12 @@ class FCanvasComponent extends FCanvasBase {
7052
7052
  resetZoom() {
7053
7053
  this.fMediator.send(new ResetScaleRequest());
7054
7054
  }
7055
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCanvasComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component }); }
7056
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FCanvasComponent, selector: "f-canvas", inputs: { position: "position", scale: "scale" }, outputs: { fCanvasChange: "fCanvasChange" }, host: { classAttribute: "f-component f-canvas" }, providers: [
7057
+ { provide: F_CANVAS, useExisting: FCanvasComponent }
7058
+ ], viewQueries: [{ propertyName: "fGroupsContainer", first: true, predicate: ["fGroupsContainer"], descendants: true, static: true }, { propertyName: "fNodesContainer", first: true, predicate: ["fNodesContainer"], descendants: true, static: true }, { propertyName: "fConnectionsContainer", first: true, predicate: ["fConnectionsContainer"], descendants: true, static: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <div #fGroupsContainer>\n <ng-content select=\"[fGroup]\"></ng-content>\n </div>\n <div #fConnectionsContainer>\n <ng-content select=\"f-snap-connection\"></ng-content>\n <ng-content select=\"f-connection\"></ng-content>\n <ng-content select=\"f-connection-for-create\"></ng-content>\n </div>\n\n <div #fNodesContainer>\n <ng-content select=\"[fNode]\"></ng-content>\n </div>\n</ng-container>\n", styles: [":host{position:absolute;overflow:visible;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host.f-scaled-animate{transition:transform .09s}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7055
7059
  }
7056
- FCanvasComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCanvasComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Component });
7057
- FCanvasComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FCanvasComponent, selector: "f-canvas", inputs: { position: "position", scale: "scale" }, outputs: { fCanvasChange: "fCanvasChange" }, host: { classAttribute: "f-component f-canvas" }, providers: [
7058
- { provide: F_CANVAS, useExisting: FCanvasComponent }
7059
- ], viewQueries: [{ propertyName: "fGroupsContainer", first: true, predicate: ["fGroupsContainer"], descendants: true, static: true }, { propertyName: "fNodesContainer", first: true, predicate: ["fNodesContainer"], descendants: true, static: true }, { propertyName: "fConnectionsContainer", first: true, predicate: ["fConnectionsContainer"], descendants: true, static: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <div #fGroupsContainer>\n <ng-content select=\"[fGroup]\"></ng-content>\n </div>\n <div #fConnectionsContainer>\n <ng-content select=\"f-snap-connection\"></ng-content>\n <ng-content select=\"f-connection\"></ng-content>\n <ng-content select=\"f-connection-for-create\"></ng-content>\n </div>\n\n <div #fNodesContainer>\n <ng-content select=\"[fNode]\"></ng-content>\n </div>\n</ng-container>\n", styles: [":host{position:absolute;overflow:visible;width:100%;height:100%;left:0;top:0;transform-origin:0 0;pointer-events:none}:host.f-scaled-animate{transition:transform .09s}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7060
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FCanvasComponent, decorators: [{
7060
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FCanvasComponent, decorators: [{
7061
7061
  type: Component,
7062
7062
  args: [{ selector: 'f-canvas', exportAs: 'fComponent', host: {
7063
7063
  'class': 'f-component f-canvas',
@@ -7244,14 +7244,23 @@ class NearestCoordinateFinder {
7244
7244
 
7245
7245
  const F_LINE_ALIGNMENT = new InjectionToken('F_LINE_ALIGNMENT');
7246
7246
  class FLineAlignmentBase {
7247
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FLineAlignmentBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
7248
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FLineAlignmentBase, ngImport: i0 }); }
7247
7249
  }
7248
- FLineAlignmentBase.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FLineAlignmentBase, deps: [], target: i0.ɵɵFactoryTarget.Directive });
7249
- FLineAlignmentBase.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FLineAlignmentBase, ngImport: i0 });
7250
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FLineAlignmentBase, decorators: [{
7250
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FLineAlignmentBase, decorators: [{
7251
7251
  type: Directive
7252
7252
  }] });
7253
7253
 
7254
7254
  class FLineAlignmentComponent extends FLineAlignmentBase {
7255
+ get hostElement() {
7256
+ return this.elementReference.nativeElement;
7257
+ }
7258
+ get transform() {
7259
+ return this.fComponentsStore.fCanvas.transform;
7260
+ }
7261
+ get flowHost() {
7262
+ return this.fComponentsStore.fFlow.hostElement;
7263
+ }
7255
7264
  constructor(elementReference, fComponentsStore, fDraggableDataContext, fMediator, fBrowser) {
7256
7265
  super();
7257
7266
  this.elementReference = elementReference;
@@ -7264,15 +7273,6 @@ class FLineAlignmentComponent extends FLineAlignmentBase {
7264
7273
  this.rects = [];
7265
7274
  this.lineService = new LineService(fBrowser, this.hostElement);
7266
7275
  }
7267
- get hostElement() {
7268
- return this.elementReference.nativeElement;
7269
- }
7270
- get transform() {
7271
- return this.fComponentsStore.fCanvas.transform;
7272
- }
7273
- get flowHost() {
7274
- return this.fComponentsStore.fFlow.hostElement;
7275
- }
7276
7276
  ngOnInit() {
7277
7277
  this.fDraggableDataContext.fLineAlignment = this;
7278
7278
  }
@@ -7317,12 +7317,12 @@ class FLineAlignmentComponent extends FLineAlignmentBase {
7317
7317
  this.lineService.hideVerticalLine();
7318
7318
  this.lineService.hideHorizontalLine();
7319
7319
  }
7320
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FLineAlignmentComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component }); }
7321
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FLineAlignmentComponent, selector: "f-line-alignment", inputs: { fAlignThreshold: "fAlignThreshold" }, host: { classAttribute: "f-line-alignment f-component" }, providers: [
7322
+ { provide: F_LINE_ALIGNMENT, useExisting: FLineAlignmentComponent }
7323
+ ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "", isInline: true, 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"] }); }
7320
7324
  }
7321
- FLineAlignmentComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FLineAlignmentComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: FDraggableDataContext }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component });
7322
- FLineAlignmentComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FLineAlignmentComponent, selector: "f-line-alignment", inputs: { fAlignThreshold: "fAlignThreshold" }, host: { classAttribute: "f-line-alignment f-component" }, providers: [
7323
- { provide: F_LINE_ALIGNMENT, useExisting: FLineAlignmentComponent }
7324
- ], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "", isInline: true, 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"] });
7325
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FLineAlignmentComponent, decorators: [{
7325
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FLineAlignmentComponent, decorators: [{
7326
7326
  type: Component,
7327
7327
  args: [{ selector: "f-line-alignment", template: "", exportAs: "fComponent", host: {
7328
7328
  'class': 'f-line-alignment f-component'
@@ -7338,6 +7338,12 @@ const F_LINE_ALIGNMENT_PROVIDERS = [
7338
7338
  ];
7339
7339
 
7340
7340
  class FMinimapFlowDirective {
7341
+ get flowHost() {
7342
+ return this.fComponentsStore.flowHost;
7343
+ }
7344
+ get hostElement() {
7345
+ return this.elementReference.nativeElement;
7346
+ }
7341
7347
  constructor(elementReference, fMediator, fComponentsStore) {
7342
7348
  this.elementReference = elementReference;
7343
7349
  this.fMediator = fMediator;
@@ -7345,12 +7351,6 @@ class FMinimapFlowDirective {
7345
7351
  this.fMinSize = 1000;
7346
7352
  this.model = new FMinimapData(this.hostElement);
7347
7353
  }
7348
- get flowHost() {
7349
- return this.fComponentsStore.flowHost;
7350
- }
7351
- get hostElement() {
7352
- return this.elementReference.nativeElement;
7353
- }
7354
7354
  update() {
7355
7355
  const nodesRect = this.getProcessedNodesRect();
7356
7356
  const minimapRect = this.getMinimapRect();
@@ -7394,10 +7394,10 @@ class FMinimapFlowDirective {
7394
7394
  viewBox = checkRectIsFinite(viewBox);
7395
7395
  this.hostElement.setAttribute('viewBox', `${viewBox.x} ${viewBox.y} ${viewBox.width} ${viewBox.height}`);
7396
7396
  }
7397
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapFlowDirective, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
7398
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FMinimapFlowDirective, selector: "svg[fMinimapFlow]", inputs: { fMinSize: "fMinSize" }, ngImport: i0 }); }
7397
7399
  }
7398
- FMinimapFlowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapFlowDirective, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
7399
- FMinimapFlowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FMinimapFlowDirective, selector: "svg[fMinimapFlow]", inputs: { fMinSize: "fMinSize" }, ngImport: i0 });
7400
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapFlowDirective, decorators: [{
7400
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapFlowDirective, decorators: [{
7401
7401
  type: Directive,
7402
7402
  args: [{
7403
7403
  selector: 'svg[fMinimapFlow]'
@@ -7407,11 +7407,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
7407
7407
  }] } });
7408
7408
 
7409
7409
  class FMinimapCanvasDirective {
7410
- constructor(elementReference, fComponentsStore, fBrowser) {
7411
- this.elementReference = elementReference;
7412
- this.fComponentsStore = fComponentsStore;
7413
- this.fBrowser = fBrowser;
7414
- }
7415
7410
  get hostElement() {
7416
7411
  return this.elementReference.nativeElement;
7417
7412
  }
@@ -7421,6 +7416,11 @@ class FMinimapCanvasDirective {
7421
7416
  get flowScale() {
7422
7417
  return this.fComponentsStore.transform.scale;
7423
7418
  }
7419
+ constructor(elementReference, fComponentsStore, fBrowser) {
7420
+ this.elementReference = elementReference;
7421
+ this.fComponentsStore = fComponentsStore;
7422
+ this.fBrowser = fBrowser;
7423
+ }
7424
7424
  redraw() {
7425
7425
  this.clearCanvas();
7426
7426
  this.fComponentsStore.fNodes.forEach((x) => this.renderNode(x));
@@ -7454,10 +7454,10 @@ class FMinimapCanvasDirective {
7454
7454
  element.classList.add('f-selected');
7455
7455
  }
7456
7456
  }
7457
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapCanvasDirective, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive }); }
7458
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FMinimapCanvasDirective, selector: "g[fMinimapCanvas]", ngImport: i0 }); }
7457
7459
  }
7458
- FMinimapCanvasDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapCanvasDirective, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Directive });
7459
- FMinimapCanvasDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FMinimapCanvasDirective, selector: "g[fMinimapCanvas]", ngImport: i0 });
7460
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapCanvasDirective, decorators: [{
7460
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapCanvasDirective, decorators: [{
7461
7461
  type: Directive,
7462
7462
  args: [{
7463
7463
  selector: 'g[fMinimapCanvas]'
@@ -7465,16 +7465,16 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImpor
7465
7465
  }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: FComponentsStore }, { type: i1.BrowserService }]; } });
7466
7466
 
7467
7467
  class FMinimapViewDirective {
7468
- constructor(elementReference, fComponentsStore) {
7469
- this.elementReference = elementReference;
7470
- this.fComponentsStore = fComponentsStore;
7471
- }
7472
7468
  get hostElement() {
7473
7469
  return this.elementReference.nativeElement;
7474
7470
  }
7475
7471
  get flowScale() {
7476
7472
  return this.fComponentsStore.transform.scale;
7477
7473
  }
7474
+ constructor(elementReference, fComponentsStore) {
7475
+ this.elementReference = elementReference;
7476
+ this.fComponentsStore = fComponentsStore;
7477
+ }
7478
7478
  update() {
7479
7479
  const viewBox = RectExtensions.div(RectExtensions.fromElement(this.fComponentsStore.flowHost), this.flowScale);
7480
7480
  this.setAttributes(viewBox);
@@ -7486,10 +7486,10 @@ class FMinimapViewDirective {
7486
7486
  this.hostElement.setAttribute('width', viewBox.width.toString());
7487
7487
  this.hostElement.setAttribute('height', viewBox.height.toString());
7488
7488
  }
7489
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapViewDirective, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
7490
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FMinimapViewDirective, selector: "rect[fMinimapView]", host: { classAttribute: "f-component f-minimap-view" }, ngImport: i0 }); }
7489
7491
  }
7490
- FMinimapViewDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapViewDirective, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
7491
- FMinimapViewDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FMinimapViewDirective, selector: "rect[fMinimapView]", host: { classAttribute: "f-component f-minimap-view" }, ngImport: i0 });
7492
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapViewDirective, decorators: [{
7492
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapViewDirective, decorators: [{
7493
7493
  type: Directive,
7494
7494
  args: [{
7495
7495
  selector: 'rect[fMinimapView]',
@@ -7528,12 +7528,12 @@ class FMinimapComponent {
7528
7528
  ngOnDestroy() {
7529
7529
  this.subscriptions$.unsubscribe();
7530
7530
  }
7531
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component }); }
7532
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FMinimapComponent, selector: "f-minimap", inputs: { fMinSize: "fMinSize" }, host: { classAttribute: "f-component f-minimap" }, providers: [
7533
+ { provide: F_DRAG_AND_DROP_PLUGIN, useExisting: FMinimapComponent },
7534
+ ], viewQueries: [{ propertyName: "fMinimapCanvas", first: true, predicate: FMinimapCanvasDirective, descendants: true, static: true }, { propertyName: "fMinimapFlow", first: true, predicate: FMinimapFlowDirective, descendants: true, static: true }, { propertyName: "fMinimapView", first: true, predicate: FMinimapViewDirective, descendants: true, static: true }], exportAs: ["fComponent"], ngImport: i0, template: "<svg fMinimapFlow width=\"100%\" height=\"100%\" fLockedContext [fMinSize]=\"fMinSize\">\n <g fMinimapCanvas></g>\n <rect fMinimapView x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" stroke=\"none\"/>\n</svg>\n\n", styles: [":host{display:block;position:absolute}:host svg{overflow:hidden}\n"], dependencies: [{ kind: "directive", type: FMinimapCanvasDirective, selector: "g[fMinimapCanvas]" }, { kind: "directive", type: FMinimapViewDirective, selector: "rect[fMinimapView]" }, { kind: "directive", type: FMinimapFlowDirective, selector: "svg[fMinimapFlow]", inputs: ["fMinSize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7531
7535
  }
7532
- FMinimapComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapComponent, deps: [{ token: i0.ElementRef }, { token: i2.FMediator }], target: i0.ɵɵFactoryTarget.Component });
7533
- FMinimapComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FMinimapComponent, selector: "f-minimap", inputs: { fMinSize: "fMinSize" }, host: { classAttribute: "f-component f-minimap" }, providers: [
7534
- { provide: F_DRAG_AND_DROP_PLUGIN, useExisting: FMinimapComponent },
7535
- ], viewQueries: [{ propertyName: "fMinimapCanvas", first: true, predicate: FMinimapCanvasDirective, descendants: true, static: true }, { propertyName: "fMinimapFlow", first: true, predicate: FMinimapFlowDirective, descendants: true, static: true }, { propertyName: "fMinimapView", first: true, predicate: FMinimapViewDirective, descendants: true, static: true }], exportAs: ["fComponent"], ngImport: i0, template: "<svg fMinimapFlow width=\"100%\" height=\"100%\" fLockedContext [fMinSize]=\"fMinSize\">\n <g fMinimapCanvas></g>\n <rect fMinimapView x=\"0\" y=\"0\" width=\"100%\" height=\"100%\" stroke=\"none\"/>\n</svg>\n\n", styles: [":host{display:block;position:absolute}:host svg{overflow:hidden}\n"], dependencies: [{ kind: "directive", type: FMinimapCanvasDirective, selector: "g[fMinimapCanvas]" }, { kind: "directive", type: FMinimapViewDirective, selector: "rect[fMinimapView]" }, { kind: "directive", type: FMinimapFlowDirective, selector: "svg[fMinimapFlow]", inputs: ["fMinSize"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7536
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FMinimapComponent, decorators: [{
7536
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FMinimapComponent, decorators: [{
7537
7537
  type: Component,
7538
7538
  args: [{ selector: 'f-minimap', exportAs: 'fComponent', host: {
7539
7539
  'class': 'f-component f-minimap',
@@ -7566,6 +7566,9 @@ class FFlowBase {
7566
7566
 
7567
7567
  let uniqueId = 0;
7568
7568
  class FFlowComponent extends FFlowBase {
7569
+ get hostElement() {
7570
+ return this.elementReference.nativeElement;
7571
+ }
7569
7572
  constructor(elementReference, fComponentsStore, fMediator, fBrowser) {
7570
7573
  super();
7571
7574
  this.elementReference = elementReference;
@@ -7577,9 +7580,6 @@ class FFlowComponent extends FFlowBase {
7577
7580
  this.fLoaded = new EventEmitter();
7578
7581
  this.isLoaded = false;
7579
7582
  }
7580
- get hostElement() {
7581
- return this.elementReference.nativeElement;
7582
- }
7583
7583
  ngOnInit() {
7584
7584
  this.fComponentsStore.fFlow = this;
7585
7585
  }
@@ -7634,19 +7634,19 @@ class FFlowComponent extends FFlowBase {
7634
7634
  ngOnDestroy() {
7635
7635
  this.subscription$.unsubscribe();
7636
7636
  }
7637
- }
7638
- FFlowComponentfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FFlowComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component });
7639
- FFlowComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.3.0", type: FFlowComponent, selector: "f-flow", inputs: { fFlowId: "fFlowId" }, outputs: { fLoaded: "fLoaded" }, host: { properties: { "attr.id": "fFlowId" }, classAttribute: "f-component f-flow" }, providers: [
7640
- FMediator,
7641
- FComponentsStore,
7642
- FTransformStore,
7643
- FDraggableDataContext,
7644
- FConnectionFactory,
7645
- ...COMMON_PROVIDERS,
7646
- ...F_DRAGGABLE_PROVIDERS,
7647
- { provide: F_FLOW, useExisting: FFlowComponent },
7648
- ], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <ng-content select=\"[fDefinitions]\"></ng-content>\n\n <ng-content select=\"f-background\"></ng-content>\n\n <ng-content select=\"f-line-alignment\"></ng-content>\n\n <ng-content select=\"f-canvas\"></ng-content>\n\n <ng-content select=\"f-selection-area\"></ng-content>\n\n <ng-content select=\"f-minimap\"></ng-content>\n</ng-container>\n", styles: [":host{display:block;position:relative;width:100%;height:100%;overflow:hidden;pointer-events:all;-webkit-user-select:none;user-select:none;touch-action:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
7649
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FFlowComponent, decorators: [{
7637
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FFlowComponent, deps: [{ token: i0.ElementRef }, { token: FComponentsStore }, { token: i2.FMediator }, { token: i1.BrowserService }], target: i0.ɵɵFactoryTarget.Component }); }
7638
+ static { thiscmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: FFlowComponent, selector: "f-flow", inputs: { fFlowId: "fFlowId" }, outputs: { fLoaded: "fLoaded" }, host: { properties: { "attr.id": "fFlowId" }, classAttribute: "f-component f-flow" }, providers: [
7639
+ FMediator,
7640
+ FComponentsStore,
7641
+ FTransformStore,
7642
+ FDraggableDataContext,
7643
+ FConnectionFactory,
7644
+ ...COMMON_PROVIDERS,
7645
+ ...F_DRAGGABLE_PROVIDERS,
7646
+ { provide: F_FLOW, useExisting: FFlowComponent },
7647
+ ], usesInheritance: true, ngImport: i0, template: "<ng-container>\n <ng-content select=\"[fDefinitions]\"></ng-content>\n\n <ng-content select=\"f-background\"></ng-content>\n\n <ng-content select=\"f-line-alignment\"></ng-content>\n\n <ng-content select=\"f-canvas\"></ng-content>\n\n <ng-content select=\"f-selection-area\"></ng-content>\n\n <ng-content select=\"f-minimap\"></ng-content>\n</ng-container>\n", styles: [":host{display:block;position:relative;width:100%;height:100%;overflow:hidden;pointer-events:all;-webkit-user-select:none;user-select:none;touch-action:none}\n"], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
7648
+ }
7649
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FFlowComponent, decorators: [{
7650
7650
  type: Component,
7651
7651
  args: [{ selector: 'f-flow', host: {
7652
7652
  '[attr.id]': 'fFlowId',
@@ -7673,17 +7673,17 @@ const F_FLOW_PROVIDERS = [
7673
7673
 
7674
7674
  const F_ZOOM = new InjectionToken('F_ZOOM');
7675
7675
  class FZoomBase {
7676
- constructor(fComponentsStore) {
7677
- this.fComponentsStore = fComponentsStore;
7678
- this.isEnabled = false;
7679
- this.listeners = EventExtensions.emptyListener();
7680
- }
7681
7676
  get flowHost() {
7682
7677
  return this.fComponentsStore.flowHost;
7683
7678
  }
7684
7679
  get fCanvas() {
7685
7680
  return this.fComponentsStore.fCanvas;
7686
7681
  }
7682
+ constructor(fComponentsStore) {
7683
+ this.fComponentsStore = fComponentsStore;
7684
+ this.isEnabled = false;
7685
+ this.listeners = EventExtensions.emptyListener();
7686
+ }
7687
7687
  toggleZoom() {
7688
7688
  if (this.isEnabled) {
7689
7689
  this.subscribe();
@@ -7765,13 +7765,6 @@ class FZoomBase {
7765
7765
  }
7766
7766
 
7767
7767
  class FZoomDirective extends FZoomBase {
7768
- constructor(fComponentsStore) {
7769
- super(fComponentsStore);
7770
- this.minimum = 0.1;
7771
- this.maximum = 4;
7772
- this.step = 0.1;
7773
- this.dblClickStep = 0.5;
7774
- }
7775
7768
  get fFlowZoom() {
7776
7769
  return this.isEnabled;
7777
7770
  }
@@ -7782,16 +7775,23 @@ class FZoomDirective extends FZoomBase {
7782
7775
  this.toggleZoom();
7783
7776
  }
7784
7777
  }
7778
+ constructor(fComponentsStore) {
7779
+ super(fComponentsStore);
7780
+ this.minimum = 0.1;
7781
+ this.maximum = 4;
7782
+ this.step = 0.1;
7783
+ this.dblClickStep = 0.5;
7784
+ }
7785
7785
  ngAfterViewInit() {
7786
7786
  super.toggleZoom();
7787
7787
  }
7788
7788
  ngOnDestroy() {
7789
7789
  super.unsubscribe();
7790
7790
  }
7791
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FZoomDirective, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive }); }
7792
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: FZoomDirective, selector: "f-canvas[fZoom]", inputs: { fFlowZoom: ["fZoom", "fFlowZoom"], minimum: ["fZoomMinimum", "minimum"], maximum: ["fZoomMaximum", "maximum"], step: ["fZoomStep", "step"], dblClickStep: ["fZoomDblClickStep", "dblClickStep"] }, host: { classAttribute: "f-zoom f-component" }, providers: [{ provide: F_ZOOM, useExisting: FZoomDirective }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
7791
7793
  }
7792
- FZoomDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FZoomDirective, deps: [{ token: FComponentsStore }], target: i0.ɵɵFactoryTarget.Directive });
7793
- FZoomDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.3.0", type: FZoomDirective, selector: "f-canvas[fZoom]", inputs: { fFlowZoom: ["fZoom", "fFlowZoom"], minimum: ["fZoomMinimum", "minimum"], maximum: ["fZoomMaximum", "maximum"], step: ["fZoomStep", "step"], dblClickStep: ["fZoomDblClickStep", "dblClickStep"] }, host: { classAttribute: "f-zoom f-component" }, providers: [{ provide: F_ZOOM, useExisting: FZoomDirective }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 });
7794
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FZoomDirective, decorators: [{
7794
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FZoomDirective, decorators: [{
7795
7795
  type: Directive,
7796
7796
  args: [{
7797
7797
  selector: "f-canvas[fZoom]",
@@ -7823,11 +7823,11 @@ const F_ZOOM_PROVIDERS = [
7823
7823
  ];
7824
7824
 
7825
7825
  class FFlowModule {
7826
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FFlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
7827
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: FFlowModule, declarations: [FBackgroundComponent, FRectPatternComponent, FCirclePatternComponent, FCanvasComponent, FZoomDirective, FConnectionTextComponent, FConnectionTextPathDirective, FConnectionDragHandleComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionComponent, FConnectionCenterDirective, FConnectionForCreateComponent, FMarkerDirective, FSnapConnectionComponent, FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective, FExternalItemDirective, FFlowComponent, FLineAlignmentComponent, FMinimapComponent, FMinimapCanvasDirective, FMinimapViewDirective, FMinimapFlowDirective, FGroupDirective, FNodeDirective, FDragHandleDirective, FResizeHandleDirective, FSelectionAreaComponent, FDraggableDirective], imports: [CommonModule], exports: [FBackgroundComponent, FRectPatternComponent, FCirclePatternComponent, FCanvasComponent, FZoomDirective, FConnectionTextComponent, FConnectionTextPathDirective, FConnectionDragHandleComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionComponent, FConnectionCenterDirective, FConnectionForCreateComponent, FMarkerDirective, FSnapConnectionComponent, FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective, FExternalItemDirective, FFlowComponent, FLineAlignmentComponent, FMinimapComponent, FMinimapCanvasDirective, FMinimapViewDirective, FMinimapFlowDirective, FGroupDirective, FNodeDirective, FDragHandleDirective, FResizeHandleDirective, FSelectionAreaComponent, FDraggableDirective] }); }
7828
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FFlowModule, imports: [CommonModule] }); }
7826
7829
  }
7827
- FFlowModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FFlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
7828
- FFlowModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.3.0", ngImport: i0, type: FFlowModule, declarations: [FBackgroundComponent, FRectPatternComponent, FCirclePatternComponent, FCanvasComponent, FZoomDirective, FConnectionTextComponent, FConnectionTextPathDirective, FConnectionDragHandleComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionComponent, FConnectionCenterDirective, FConnectionForCreateComponent, FMarkerDirective, FSnapConnectionComponent, FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective, FExternalItemDirective, FFlowComponent, FLineAlignmentComponent, FMinimapComponent, FMinimapCanvasDirective, FMinimapViewDirective, FMinimapFlowDirective, FGroupDirective, FNodeDirective, FDragHandleDirective, FResizeHandleDirective, FSelectionAreaComponent, FDraggableDirective], imports: [CommonModule], exports: [FBackgroundComponent, FRectPatternComponent, FCirclePatternComponent, FCanvasComponent, FZoomDirective, FConnectionTextComponent, FConnectionTextPathDirective, FConnectionDragHandleComponent, FConnectionGradientComponent, FConnectionPathComponent, FConnectionSelectionComponent, FConnectionComponent, FConnectionCenterDirective, FConnectionForCreateComponent, FMarkerDirective, FSnapConnectionComponent, FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective, FExternalItemDirective, FFlowComponent, FLineAlignmentComponent, FMinimapComponent, FMinimapCanvasDirective, FMinimapViewDirective, FMinimapFlowDirective, FGroupDirective, FNodeDirective, FDragHandleDirective, FResizeHandleDirective, FSelectionAreaComponent, FDraggableDirective] });
7829
- FFlowModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FFlowModule, imports: [CommonModule] });
7830
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.3.0", ngImport: i0, type: FFlowModule, decorators: [{
7830
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: FFlowModule, decorators: [{
7831
7831
  type: NgModule,
7832
7832
  args: [{
7833
7833
  declarations: [