@foblex/flow 1.0.6 → 1.0.8

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 (628) hide show
  1. package/{lib/directives → directives}/f-containers/f-items-container/f-items-container.directive.d.ts +2 -2
  2. package/esm2022/common-behaviours/change-position.mjs +15 -0
  3. package/esm2022/common-behaviours/change-zoom/change-zoom.mjs +25 -0
  4. package/esm2022/common-behaviours/change-zoom/i-can-change-zoom.mjs +2 -0
  5. package/esm2022/common-behaviours/change-zoom/index.mjs +3 -0
  6. package/esm2022/common-behaviours/constructor.mjs +2 -0
  7. package/esm2022/common-behaviours/fit-to-parent/fit-to-parent.mjs +27 -0
  8. package/esm2022/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +2 -0
  9. package/esm2022/common-behaviours/fit-to-parent/index.mjs +3 -0
  10. package/esm2022/common-behaviours/index.mjs +6 -0
  11. package/esm2022/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +2 -0
  12. package/esm2022/common-behaviours/one-to-one-centering/index.mjs +3 -0
  13. package/esm2022/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +24 -0
  14. package/esm2022/components/f-connection/f-connection-base.mjs +33 -0
  15. package/esm2022/components/f-connection/f-connection-identifiers.mjs +21 -0
  16. package/esm2022/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +38 -0
  17. package/esm2022/components/f-connection/f-connection-text/f-connection-text.component.mjs +55 -0
  18. package/esm2022/components/f-connection/f-connection-text/index.mjs +3 -0
  19. package/esm2022/components/f-connection/f-connection.component.mjs +91 -0
  20. package/esm2022/components/f-connection/f-connection.module.mjs +47 -0
  21. package/esm2022/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
  22. package/esm2022/components/f-connection/f-drag-handle/index.mjs +2 -0
  23. package/esm2022/components/f-connection/f-gradient/f-connection-gradient.component.mjs +59 -0
  24. package/esm2022/components/f-connection/f-gradient/index.mjs +2 -0
  25. package/esm2022/components/f-connection/f-path/f-connection-path.component.mjs +58 -0
  26. package/esm2022/components/f-connection/f-path/index.mjs +2 -0
  27. package/esm2022/components/f-connection/f-selection/f-connection-selection.component.mjs +34 -0
  28. package/esm2022/components/f-connection/f-selection/index.mjs +2 -0
  29. package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +61 -0
  30. package/esm2022/components/f-connection/f-temp-connection/index.mjs +3 -0
  31. package/esm2022/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +7 -0
  32. package/esm2022/components/f-connection/get-connection-intersect.mjs +10 -0
  33. package/esm2022/components/f-connection/i-input-output-model.mjs +2 -0
  34. package/esm2022/components/f-connection/index.mjs +13 -0
  35. package/esm2022/components/f-connection/public-api.mjs +4 -0
  36. package/esm2022/components/f-connectors/f-connector-base.mjs +14 -0
  37. package/esm2022/components/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
  38. package/esm2022/components/f-connectors/f-node-input/f-node-input.directive.mjs +58 -0
  39. package/esm2022/components/f-connectors/f-node-input/index.mjs +4 -0
  40. package/esm2022/components/f-connectors/f-node-input/is-node-input.mjs +4 -0
  41. package/esm2022/components/f-connectors/f-node-input/public-api.mjs +2 -0
  42. package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +22 -0
  43. package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +56 -0
  44. package/esm2022/components/f-connectors/f-node-outlet/index.mjs +4 -0
  45. package/esm2022/components/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
  46. package/esm2022/components/f-connectors/f-node-outlet/public-api.mjs +2 -0
  47. package/esm2022/components/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
  48. package/esm2022/components/f-connectors/f-node-output/f-node-output.directive.mjs +54 -0
  49. package/esm2022/components/f-connectors/f-node-output/index.mjs +4 -0
  50. package/esm2022/components/f-connectors/f-node-output/is-node-output.mjs +4 -0
  51. package/esm2022/components/f-connectors/f-node-output/public-api.mjs +2 -0
  52. package/esm2022/components/f-connectors/f-out-connector-base.mjs +4 -0
  53. package/esm2022/components/f-connectors/get-element-rect-in-canvas.mjs +8 -0
  54. package/esm2022/components/f-connectors/index.mjs +7 -0
  55. package/esm2022/components/f-connectors/public-api.mjs +4 -0
  56. package/esm2022/components/f-flow/f-flow-base.mjs +49 -0
  57. package/esm2022/components/f-flow/f-flow.component.mjs +67 -0
  58. package/esm2022/components/f-flow/index.mjs +3 -0
  59. package/esm2022/components/f-flow/public-api.mjs +2 -0
  60. package/esm2022/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +54 -0
  61. package/esm2022/components/f-node/f-drag-handle/index.mjs +3 -0
  62. package/esm2022/components/f-node/f-drag-handle/is-drag-handle.mjs +20 -0
  63. package/esm2022/components/f-node/f-drag-handle/public-api.mjs +2 -0
  64. package/esm2022/components/f-node/f-foreign-object/f-foreign-object-base.mjs +40 -0
  65. package/esm2022/components/f-node/f-foreign-object/f-foreign-object.component.mjs +49 -0
  66. package/esm2022/components/f-node/f-foreign-object/index.mjs +3 -0
  67. package/esm2022/components/f-node/f-foreign-object/public-api.mjs +2 -0
  68. package/esm2022/components/f-node/f-node-base.mjs +33 -0
  69. package/esm2022/components/f-node/f-node.component.mjs +62 -0
  70. package/esm2022/components/f-node/index.mjs +6 -0
  71. package/esm2022/components/f-node/is-node.mjs +4 -0
  72. package/esm2022/components/f-node/public-api.mjs +4 -0
  73. package/esm2022/components/index.mjs +6 -0
  74. package/esm2022/components/public-api.mjs +5 -0
  75. package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +58 -0
  76. package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +6 -0
  77. package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +3 -0
  78. package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +41 -0
  79. package/esm2022/directives/f-connect-if-intersect/index.mjs +3 -0
  80. package/esm2022/directives/f-connect-if-intersect/public-api.mjs +2 -0
  81. package/esm2022/directives/f-containers/f-connections-container/f-connections-container-base.mjs +32 -0
  82. package/esm2022/directives/f-containers/f-connections-container/f-connections-container.component.mjs +30 -0
  83. package/esm2022/directives/f-containers/f-connections-container/index.mjs +3 -0
  84. package/esm2022/directives/f-containers/f-connections-container/public-api.mjs +2 -0
  85. package/esm2022/directives/f-containers/f-items-container/canvas-change.event.mjs +7 -0
  86. package/esm2022/directives/f-containers/f-items-container/f-items-container-base.mjs +45 -0
  87. package/esm2022/directives/f-containers/f-items-container/f-items-container.directive.mjs +48 -0
  88. package/esm2022/directives/f-containers/f-items-container/index.mjs +4 -0
  89. package/esm2022/directives/f-containers/f-items-container/public-api.mjs +3 -0
  90. package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +39 -0
  91. package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +25 -0
  92. package/esm2022/directives/f-containers/f-nodes-container/index.mjs +3 -0
  93. package/esm2022/directives/f-containers/f-nodes-container/public-api.mjs +2 -0
  94. package/esm2022/directives/f-containers/index.mjs +4 -0
  95. package/esm2022/directives/f-containers/public-api.mjs +4 -0
  96. package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +24 -0
  97. package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +6 -0
  98. package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +3 -0
  99. package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +20 -0
  100. package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +2 -0
  101. package/esm2022/directives/f-draggable/canvas/index.mjs +3 -0
  102. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +7 -0
  103. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +78 -0
  104. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +3 -0
  105. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +7 -0
  106. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +31 -0
  107. package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +3 -0
  108. package/esm2022/directives/f-draggable/connections/create-connection/create-connection.event.mjs +7 -0
  109. package/esm2022/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +28 -0
  110. package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +20 -0
  111. package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +6 -0
  112. package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +3 -0
  113. package/esm2022/directives/f-draggable/connections/create-connection/index.mjs +6 -0
  114. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +25 -0
  115. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +7 -0
  116. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.mjs +20 -0
  117. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +6 -0
  118. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +3 -0
  119. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +5 -0
  120. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +3 -0
  121. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +14 -0
  122. package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +6 -0
  123. package/esm2022/directives/f-draggable/connections/index.mjs +4 -0
  124. package/esm2022/directives/f-draggable/connections/reassign-connection/index.mjs +5 -0
  125. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +9 -0
  126. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +3 -0
  127. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +7 -0
  128. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +36 -0
  129. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +2 -0
  130. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +31 -0
  131. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +3 -0
  132. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +7 -0
  133. package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +26 -0
  134. package/esm2022/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +11 -0
  135. package/esm2022/directives/f-draggable/default-drag-handler/index.mjs +2 -0
  136. package/esm2022/directives/f-draggable/e-draggable-type.mjs +12 -0
  137. package/esm2022/directives/f-draggable/external-item/create-node.event.mjs +7 -0
  138. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +28 -0
  139. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +6 -0
  140. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +3 -0
  141. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +30 -0
  142. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +2 -0
  143. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +26 -0
  144. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +7 -0
  145. package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +3 -0
  146. package/esm2022/directives/f-draggable/external-item/index.mjs +5 -0
  147. package/esm2022/directives/f-draggable/f-draggable-base.mjs +103 -0
  148. package/esm2022/directives/f-draggable/f-draggable.directive.mjs +52 -0
  149. package/esm2022/directives/f-draggable/f-draggable.module.mjs +49 -0
  150. package/esm2022/directives/f-draggable/f-draggable.service.mjs +23 -0
  151. package/esm2022/directives/f-draggable/i-drag-handler.mjs +2 -0
  152. package/esm2022/directives/f-draggable/i-draggable-item.mjs +2 -0
  153. package/esm2022/directives/f-draggable/index.mjs +14 -0
  154. package/esm2022/directives/f-draggable/node/index.mjs +4 -0
  155. package/esm2022/directives/f-draggable/node/node-on-pointer-down/index.mjs +3 -0
  156. package/esm2022/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +9 -0
  157. package/esm2022/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +88 -0
  158. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +24 -0
  159. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +24 -0
  160. package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +22 -0
  161. package/esm2022/directives/f-draggable/node/node-on-pointer-move/index.mjs +5 -0
  162. package/esm2022/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +23 -0
  163. package/esm2022/directives/f-draggable/node/node-on-pointer-up/index.mjs +3 -0
  164. package/esm2022/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +7 -0
  165. package/esm2022/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +28 -0
  166. package/esm2022/directives/f-draggable/public-api.mjs +2 -0
  167. package/esm2022/directives/f-draggable/selection/index.mjs +4 -0
  168. package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +3 -0
  169. package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +8 -0
  170. package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +61 -0
  171. package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +2 -0
  172. package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +54 -0
  173. package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +3 -0
  174. package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +8 -0
  175. package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +22 -0
  176. package/esm2022/directives/f-external-item/f-external-item-base.mjs +11 -0
  177. package/esm2022/directives/f-external-item/f-external-item.directive.mjs +44 -0
  178. package/esm2022/directives/f-external-item/f-external-item.service.mjs +25 -0
  179. package/esm2022/directives/f-external-item/index.mjs +5 -0
  180. package/esm2022/directives/f-external-item/is-external-item.mjs +7 -0
  181. package/esm2022/directives/f-external-item/public-api.mjs +2 -0
  182. package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +40 -0
  183. package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +40 -0
  184. package/esm2022/directives/f-line-alignment/domain/i-line-alignment-result.mjs +2 -0
  185. package/esm2022/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +2 -0
  186. package/esm2022/directives/f-line-alignment/domain/index.mjs +5 -0
  187. package/esm2022/directives/f-line-alignment/f-line-alignment.directive.mjs +105 -0
  188. package/esm2022/directives/f-line-alignment/index.mjs +3 -0
  189. package/esm2022/directives/f-line-alignment/public-api.mjs +2 -0
  190. package/esm2022/directives/f-selection/f-selection.directive.mjs +40 -0
  191. package/esm2022/directives/f-selection/index.mjs +2 -0
  192. package/esm2022/directives/f-selection/public-api.mjs +2 -0
  193. package/esm2022/directives/f-zoom/f-zoom-base.mjs +89 -0
  194. package/esm2022/directives/f-zoom/f-zoom.directive.mjs +57 -0
  195. package/esm2022/directives/f-zoom/index.mjs +3 -0
  196. package/esm2022/directives/f-zoom/public-api.mjs +2 -0
  197. package/esm2022/directives/index.mjs +8 -0
  198. package/esm2022/directives/public-api.mjs +8 -0
  199. package/esm2022/f-flow.module.mjs +79 -0
  200. package/esm2022/i-has-state-changes.mjs +2 -0
  201. package/esm2022/i-selectable.mjs +2 -0
  202. package/esm2022/internal/f-backgroud/f-background-base.mjs +25 -0
  203. package/esm2022/internal/f-backgroud/f-background.directive.mjs +24 -0
  204. package/esm2022/internal/f-backgroud/index.mjs +3 -0
  205. package/esm2022/internal/f-canvas/f-canvas-base.mjs +25 -0
  206. package/esm2022/internal/f-canvas/f-canvas.directive.mjs +19 -0
  207. package/esm2022/internal/f-canvas/index.mjs +3 -0
  208. package/esm2022/internal/index.mjs +3 -0
  209. package/esm2022/public-api.mjs +5 -2
  210. package/fesm2022/foblex-flow.mjs +6 -0
  211. package/fesm2022/foblex-flow.mjs.map +1 -1
  212. package/package.json +9 -6
  213. package/public-api.d.ts +4 -1
  214. package/esm2022/lib/common-behaviours/change-position.mjs +0 -15
  215. package/esm2022/lib/common-behaviours/change-zoom/change-zoom.mjs +0 -25
  216. package/esm2022/lib/common-behaviours/change-zoom/i-can-change-zoom.mjs +0 -2
  217. package/esm2022/lib/common-behaviours/change-zoom/index.mjs +0 -3
  218. package/esm2022/lib/common-behaviours/constructor.mjs +0 -2
  219. package/esm2022/lib/common-behaviours/fit-to-parent/fit-to-parent.mjs +0 -27
  220. package/esm2022/lib/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +0 -2
  221. package/esm2022/lib/common-behaviours/fit-to-parent/index.mjs +0 -3
  222. package/esm2022/lib/common-behaviours/index.mjs +0 -6
  223. package/esm2022/lib/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +0 -2
  224. package/esm2022/lib/common-behaviours/one-to-one-centering/index.mjs +0 -3
  225. package/esm2022/lib/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +0 -24
  226. package/esm2022/lib/components/f-connection/f-connection-base.mjs +0 -33
  227. package/esm2022/lib/components/f-connection/f-connection-identifiers.mjs +0 -21
  228. package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +0 -38
  229. package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text.component.mjs +0 -55
  230. package/esm2022/lib/components/f-connection/f-connection-text/index.mjs +0 -3
  231. package/esm2022/lib/components/f-connection/f-connection.component.mjs +0 -91
  232. package/esm2022/lib/components/f-connection/f-connection.module.mjs +0 -47
  233. package/esm2022/lib/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +0 -30
  234. package/esm2022/lib/components/f-connection/f-drag-handle/index.mjs +0 -2
  235. package/esm2022/lib/components/f-connection/f-gradient/f-connection-gradient.component.mjs +0 -59
  236. package/esm2022/lib/components/f-connection/f-gradient/index.mjs +0 -2
  237. package/esm2022/lib/components/f-connection/f-path/f-connection-path.component.mjs +0 -58
  238. package/esm2022/lib/components/f-connection/f-path/index.mjs +0 -2
  239. package/esm2022/lib/components/f-connection/f-selection/f-connection-selection.component.mjs +0 -34
  240. package/esm2022/lib/components/f-connection/f-selection/index.mjs +0 -2
  241. package/esm2022/lib/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +0 -61
  242. package/esm2022/lib/components/f-connection/f-temp-connection/index.mjs +0 -3
  243. package/esm2022/lib/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +0 -7
  244. package/esm2022/lib/components/f-connection/get-connection-intersect.mjs +0 -10
  245. package/esm2022/lib/components/f-connection/i-input-output-model.mjs +0 -2
  246. package/esm2022/lib/components/f-connection/index.mjs +0 -13
  247. package/esm2022/lib/components/f-connection/public-api.mjs +0 -4
  248. package/esm2022/lib/components/f-connectors/f-connector-base.mjs +0 -14
  249. package/esm2022/lib/components/f-connectors/f-node-input/f-node-input-base.mjs +0 -19
  250. package/esm2022/lib/components/f-connectors/f-node-input/f-node-input.directive.mjs +0 -58
  251. package/esm2022/lib/components/f-connectors/f-node-input/index.mjs +0 -4
  252. package/esm2022/lib/components/f-connectors/f-node-input/is-node-input.mjs +0 -4
  253. package/esm2022/lib/components/f-connectors/f-node-input/public-api.mjs +0 -2
  254. package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +0 -22
  255. package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -56
  256. package/esm2022/lib/components/f-connectors/f-node-outlet/index.mjs +0 -4
  257. package/esm2022/lib/components/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -4
  258. package/esm2022/lib/components/f-connectors/f-node-outlet/public-api.mjs +0 -2
  259. package/esm2022/lib/components/f-connectors/f-node-output/f-node-output-base.mjs +0 -19
  260. package/esm2022/lib/components/f-connectors/f-node-output/f-node-output.directive.mjs +0 -54
  261. package/esm2022/lib/components/f-connectors/f-node-output/index.mjs +0 -4
  262. package/esm2022/lib/components/f-connectors/f-node-output/is-node-output.mjs +0 -4
  263. package/esm2022/lib/components/f-connectors/f-node-output/public-api.mjs +0 -2
  264. package/esm2022/lib/components/f-connectors/f-out-connector-base.mjs +0 -4
  265. package/esm2022/lib/components/f-connectors/get-element-rect-in-canvas.mjs +0 -8
  266. package/esm2022/lib/components/f-connectors/index.mjs +0 -7
  267. package/esm2022/lib/components/f-connectors/public-api.mjs +0 -4
  268. package/esm2022/lib/components/f-flow/f-flow-base.mjs +0 -49
  269. package/esm2022/lib/components/f-flow/f-flow.component.mjs +0 -67
  270. package/esm2022/lib/components/f-flow/index.mjs +0 -3
  271. package/esm2022/lib/components/f-flow/public-api.mjs +0 -2
  272. package/esm2022/lib/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +0 -54
  273. package/esm2022/lib/components/f-node/f-drag-handle/index.mjs +0 -3
  274. package/esm2022/lib/components/f-node/f-drag-handle/is-drag-handle.mjs +0 -20
  275. package/esm2022/lib/components/f-node/f-drag-handle/public-api.mjs +0 -2
  276. package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object-base.mjs +0 -40
  277. package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object.component.mjs +0 -49
  278. package/esm2022/lib/components/f-node/f-foreign-object/index.mjs +0 -3
  279. package/esm2022/lib/components/f-node/f-foreign-object/public-api.mjs +0 -2
  280. package/esm2022/lib/components/f-node/f-node-base.mjs +0 -33
  281. package/esm2022/lib/components/f-node/f-node.component.mjs +0 -62
  282. package/esm2022/lib/components/f-node/index.mjs +0 -6
  283. package/esm2022/lib/components/f-node/is-node.mjs +0 -4
  284. package/esm2022/lib/components/f-node/public-api.mjs +0 -4
  285. package/esm2022/lib/components/index.mjs +0 -6
  286. package/esm2022/lib/components/public-api.mjs +0 -5
  287. package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +0 -58
  288. package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +0 -6
  289. package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +0 -3
  290. package/esm2022/lib/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +0 -41
  291. package/esm2022/lib/directives/f-connect-if-intersect/index.mjs +0 -3
  292. package/esm2022/lib/directives/f-connect-if-intersect/public-api.mjs +0 -2
  293. package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container-base.mjs +0 -32
  294. package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container.component.mjs +0 -30
  295. package/esm2022/lib/directives/f-containers/f-connections-container/index.mjs +0 -3
  296. package/esm2022/lib/directives/f-containers/f-connections-container/public-api.mjs +0 -2
  297. package/esm2022/lib/directives/f-containers/f-items-container/canvas-change.event.mjs +0 -7
  298. package/esm2022/lib/directives/f-containers/f-items-container/f-items-container-base.mjs +0 -45
  299. package/esm2022/lib/directives/f-containers/f-items-container/f-items-container.directive.mjs +0 -42
  300. package/esm2022/lib/directives/f-containers/f-items-container/index.mjs +0 -4
  301. package/esm2022/lib/directives/f-containers/f-items-container/public-api.mjs +0 -3
  302. package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +0 -39
  303. package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +0 -25
  304. package/esm2022/lib/directives/f-containers/f-nodes-container/index.mjs +0 -3
  305. package/esm2022/lib/directives/f-containers/f-nodes-container/public-api.mjs +0 -2
  306. package/esm2022/lib/directives/f-containers/index.mjs +0 -4
  307. package/esm2022/lib/directives/f-containers/public-api.mjs +0 -4
  308. package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +0 -24
  309. package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +0 -6
  310. package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +0 -3
  311. package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +0 -20
  312. package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +0 -2
  313. package/esm2022/lib/directives/f-draggable/canvas/index.mjs +0 -3
  314. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +0 -7
  315. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +0 -78
  316. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +0 -3
  317. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +0 -7
  318. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +0 -31
  319. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +0 -3
  320. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.event.mjs +0 -7
  321. package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +0 -28
  322. package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +0 -20
  323. package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +0 -6
  324. package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +0 -3
  325. package/esm2022/lib/directives/f-draggable/connections/create-connection/index.mjs +0 -6
  326. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +0 -25
  327. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +0 -7
  328. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.mjs +0 -20
  329. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +0 -6
  330. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +0 -3
  331. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +0 -5
  332. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +0 -3
  333. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +0 -14
  334. package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +0 -6
  335. package/esm2022/lib/directives/f-draggable/connections/index.mjs +0 -4
  336. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/index.mjs +0 -5
  337. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +0 -9
  338. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +0 -3
  339. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +0 -7
  340. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +0 -36
  341. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +0 -2
  342. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +0 -31
  343. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +0 -3
  344. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +0 -7
  345. package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +0 -26
  346. package/esm2022/lib/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +0 -11
  347. package/esm2022/lib/directives/f-draggable/default-drag-handler/index.mjs +0 -2
  348. package/esm2022/lib/directives/f-draggable/e-draggable-type.mjs +0 -12
  349. package/esm2022/lib/directives/f-draggable/external-item/create-node.event.mjs +0 -7
  350. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +0 -28
  351. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +0 -6
  352. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +0 -3
  353. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +0 -30
  354. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +0 -2
  355. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +0 -26
  356. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +0 -7
  357. package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +0 -3
  358. package/esm2022/lib/directives/f-draggable/external-item/index.mjs +0 -5
  359. package/esm2022/lib/directives/f-draggable/f-draggable-base.mjs +0 -103
  360. package/esm2022/lib/directives/f-draggable/f-draggable.directive.mjs +0 -52
  361. package/esm2022/lib/directives/f-draggable/f-draggable.module.mjs +0 -49
  362. package/esm2022/lib/directives/f-draggable/f-draggable.service.mjs +0 -23
  363. package/esm2022/lib/directives/f-draggable/i-drag-handler.mjs +0 -2
  364. package/esm2022/lib/directives/f-draggable/i-draggable-item.mjs +0 -2
  365. package/esm2022/lib/directives/f-draggable/index.mjs +0 -14
  366. package/esm2022/lib/directives/f-draggable/node/index.mjs +0 -4
  367. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/index.mjs +0 -3
  368. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +0 -9
  369. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +0 -88
  370. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +0 -24
  371. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +0 -24
  372. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +0 -22
  373. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/index.mjs +0 -5
  374. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +0 -23
  375. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/index.mjs +0 -3
  376. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +0 -7
  377. package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +0 -28
  378. package/esm2022/lib/directives/f-draggable/public-api.mjs +0 -2
  379. package/esm2022/lib/directives/f-draggable/selection/index.mjs +0 -4
  380. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +0 -3
  381. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +0 -8
  382. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +0 -61
  383. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +0 -2
  384. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +0 -54
  385. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +0 -3
  386. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +0 -8
  387. package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +0 -22
  388. package/esm2022/lib/directives/f-external-item/f-external-item-base.mjs +0 -11
  389. package/esm2022/lib/directives/f-external-item/f-external-item.directive.mjs +0 -44
  390. package/esm2022/lib/directives/f-external-item/f-external-item.service.mjs +0 -25
  391. package/esm2022/lib/directives/f-external-item/index.mjs +0 -5
  392. package/esm2022/lib/directives/f-external-item/is-external-item.mjs +0 -7
  393. package/esm2022/lib/directives/f-external-item/public-api.mjs +0 -2
  394. package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +0 -40
  395. package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +0 -40
  396. package/esm2022/lib/directives/f-line-alignment/domain/i-line-alignment-result.mjs +0 -2
  397. package/esm2022/lib/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +0 -2
  398. package/esm2022/lib/directives/f-line-alignment/domain/index.mjs +0 -5
  399. package/esm2022/lib/directives/f-line-alignment/f-line-alignment.directive.mjs +0 -105
  400. package/esm2022/lib/directives/f-line-alignment/index.mjs +0 -3
  401. package/esm2022/lib/directives/f-line-alignment/public-api.mjs +0 -2
  402. package/esm2022/lib/directives/f-selection/f-selection.directive.mjs +0 -40
  403. package/esm2022/lib/directives/f-selection/index.mjs +0 -2
  404. package/esm2022/lib/directives/f-selection/public-api.mjs +0 -2
  405. package/esm2022/lib/directives/f-zoom/f-zoom-base.mjs +0 -89
  406. package/esm2022/lib/directives/f-zoom/f-zoom.directive.mjs +0 -57
  407. package/esm2022/lib/directives/f-zoom/index.mjs +0 -3
  408. package/esm2022/lib/directives/f-zoom/public-api.mjs +0 -2
  409. package/esm2022/lib/directives/index.mjs +0 -8
  410. package/esm2022/lib/directives/public-api.mjs +0 -8
  411. package/esm2022/lib/f-flow.module.mjs +0 -79
  412. package/esm2022/lib/i-has-state-changes.mjs +0 -2
  413. package/esm2022/lib/i-selectable.mjs +0 -2
  414. package/esm2022/lib/internal/f-backgroud/f-background-base.mjs +0 -25
  415. package/esm2022/lib/internal/f-backgroud/f-background.directive.mjs +0 -24
  416. package/esm2022/lib/internal/f-backgroud/index.mjs +0 -3
  417. package/esm2022/lib/internal/f-canvas/f-canvas-base.mjs +0 -25
  418. package/esm2022/lib/internal/f-canvas/f-canvas.directive.mjs +0 -19
  419. package/esm2022/lib/internal/f-canvas/index.mjs +0 -3
  420. package/esm2022/lib/internal/index.mjs +0 -3
  421. package/esm2022/lib/public-api.mjs +0 -5
  422. package/lib/public-api.d.ts +0 -4
  423. /package/{lib/common-behaviours → common-behaviours}/change-position.d.ts +0 -0
  424. /package/{lib/common-behaviours → common-behaviours}/change-zoom/change-zoom.d.ts +0 -0
  425. /package/{lib/common-behaviours → common-behaviours}/change-zoom/i-can-change-zoom.d.ts +0 -0
  426. /package/{lib/common-behaviours → common-behaviours}/change-zoom/index.d.ts +0 -0
  427. /package/{lib/common-behaviours → common-behaviours}/constructor.d.ts +0 -0
  428. /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/fit-to-parent.d.ts +0 -0
  429. /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/i-can-fit-to-parent.d.ts +0 -0
  430. /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/index.d.ts +0 -0
  431. /package/{lib/common-behaviours → common-behaviours}/index.d.ts +0 -0
  432. /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/i-can-one-to-one-centering.d.ts +0 -0
  433. /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/index.d.ts +0 -0
  434. /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/one-to-one-centering.d.ts +0 -0
  435. /package/{lib/components → components}/f-connection/f-connection-base.d.ts +0 -0
  436. /package/{lib/components → components}/f-connection/f-connection-identifiers.d.ts +0 -0
  437. /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text-path.directive.d.ts +0 -0
  438. /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text.component.d.ts +0 -0
  439. /package/{lib/components → components}/f-connection/f-connection-text/index.d.ts +0 -0
  440. /package/{lib/components → components}/f-connection/f-connection.component.d.ts +0 -0
  441. /package/{lib/components → components}/f-connection/f-connection.module.d.ts +0 -0
  442. /package/{lib/components → components}/f-connection/f-drag-handle/f-connection-drag-handle.component.d.ts +0 -0
  443. /package/{lib/components → components}/f-connection/f-drag-handle/index.d.ts +0 -0
  444. /package/{lib/components → components}/f-connection/f-gradient/f-connection-gradient.component.d.ts +0 -0
  445. /package/{lib/components → components}/f-connection/f-gradient/index.d.ts +0 -0
  446. /package/{lib/components → components}/f-connection/f-path/f-connection-path.component.d.ts +0 -0
  447. /package/{lib/components → components}/f-connection/f-path/index.d.ts +0 -0
  448. /package/{lib/components → components}/f-connection/f-selection/f-connection-selection.component.d.ts +0 -0
  449. /package/{lib/components → components}/f-connection/f-selection/index.d.ts +0 -0
  450. /package/{lib/components → components}/f-connection/f-temp-connection/f-temp-connection.component.d.ts +0 -0
  451. /package/{lib/components → components}/f-connection/f-temp-connection/index.d.ts +0 -0
  452. /package/{lib/components → components}/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +0 -0
  453. /package/{lib/components → components}/f-connection/get-connection-intersect.d.ts +0 -0
  454. /package/{lib/components → components}/f-connection/i-input-output-model.d.ts +0 -0
  455. /package/{lib/components → components}/f-connection/index.d.ts +0 -0
  456. /package/{lib/components → components}/f-connection/public-api.d.ts +0 -0
  457. /package/{lib/components → components}/f-connectors/f-connector-base.d.ts +0 -0
  458. /package/{lib/components → components}/f-connectors/f-node-input/f-node-input-base.d.ts +0 -0
  459. /package/{lib/components → components}/f-connectors/f-node-input/f-node-input.directive.d.ts +0 -0
  460. /package/{lib/components → components}/f-connectors/f-node-input/index.d.ts +0 -0
  461. /package/{lib/components → components}/f-connectors/f-node-input/is-node-input.d.ts +0 -0
  462. /package/{lib/components → components}/f-connectors/f-node-input/public-api.d.ts +0 -0
  463. /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +0 -0
  464. /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +0 -0
  465. /package/{lib/components → components}/f-connectors/f-node-outlet/index.d.ts +0 -0
  466. /package/{lib/components → components}/f-connectors/f-node-outlet/is-node-outlet.d.ts +0 -0
  467. /package/{lib/components → components}/f-connectors/f-node-outlet/public-api.d.ts +0 -0
  468. /package/{lib/components → components}/f-connectors/f-node-output/f-node-output-base.d.ts +0 -0
  469. /package/{lib/components → components}/f-connectors/f-node-output/f-node-output.directive.d.ts +0 -0
  470. /package/{lib/components → components}/f-connectors/f-node-output/index.d.ts +0 -0
  471. /package/{lib/components → components}/f-connectors/f-node-output/is-node-output.d.ts +0 -0
  472. /package/{lib/components → components}/f-connectors/f-node-output/public-api.d.ts +0 -0
  473. /package/{lib/components → components}/f-connectors/f-out-connector-base.d.ts +0 -0
  474. /package/{lib/components → components}/f-connectors/get-element-rect-in-canvas.d.ts +0 -0
  475. /package/{lib/components → components}/f-connectors/index.d.ts +0 -0
  476. /package/{lib/components → components}/f-connectors/public-api.d.ts +0 -0
  477. /package/{lib/components → components}/f-flow/f-flow-base.d.ts +0 -0
  478. /package/{lib/components → components}/f-flow/f-flow.component.d.ts +0 -0
  479. /package/{lib/components → components}/f-flow/index.d.ts +0 -0
  480. /package/{lib/components → components}/f-flow/public-api.d.ts +0 -0
  481. /package/{lib/components → components}/f-node/f-drag-handle/f-drag-handle.directive.d.ts +0 -0
  482. /package/{lib/components → components}/f-node/f-drag-handle/index.d.ts +0 -0
  483. /package/{lib/components → components}/f-node/f-drag-handle/is-drag-handle.d.ts +0 -0
  484. /package/{lib/components → components}/f-node/f-drag-handle/public-api.d.ts +0 -0
  485. /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object-base.d.ts +0 -0
  486. /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object.component.d.ts +0 -0
  487. /package/{lib/components → components}/f-node/f-foreign-object/index.d.ts +0 -0
  488. /package/{lib/components → components}/f-node/f-foreign-object/public-api.d.ts +0 -0
  489. /package/{lib/components → components}/f-node/f-node-base.d.ts +0 -0
  490. /package/{lib/components → components}/f-node/f-node.component.d.ts +0 -0
  491. /package/{lib/components → components}/f-node/index.d.ts +0 -0
  492. /package/{lib/components → components}/f-node/is-node.d.ts +0 -0
  493. /package/{lib/components → components}/f-node/public-api.d.ts +0 -0
  494. /package/{lib/components → components}/index.d.ts +0 -0
  495. /package/{lib/components → components}/public-api.d.ts +0 -0
  496. /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +0 -0
  497. /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.d.ts +0 -0
  498. /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/index.d.ts +0 -0
  499. /package/{lib/directives → directives}/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +0 -0
  500. /package/{lib/directives → directives}/f-connect-if-intersect/index.d.ts +0 -0
  501. /package/{lib/directives → directives}/f-connect-if-intersect/public-api.d.ts +0 -0
  502. /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container-base.d.ts +0 -0
  503. /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container.component.d.ts +0 -0
  504. /package/{lib/directives → directives}/f-containers/f-connections-container/index.d.ts +0 -0
  505. /package/{lib/directives → directives}/f-containers/f-connections-container/public-api.d.ts +0 -0
  506. /package/{lib/directives → directives}/f-containers/f-items-container/canvas-change.event.d.ts +0 -0
  507. /package/{lib/directives → directives}/f-containers/f-items-container/f-items-container-base.d.ts +0 -0
  508. /package/{lib/directives → directives}/f-containers/f-items-container/index.d.ts +0 -0
  509. /package/{lib/directives → directives}/f-containers/f-items-container/public-api.d.ts +0 -0
  510. /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container-base.d.ts +0 -0
  511. /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container.component.d.ts +0 -0
  512. /package/{lib/directives → directives}/f-containers/f-nodes-container/index.d.ts +0 -0
  513. /package/{lib/directives → directives}/f-containers/f-nodes-container/public-api.d.ts +0 -0
  514. /package/{lib/directives → directives}/f-containers/index.d.ts +0 -0
  515. /package/{lib/directives → directives}/f-containers/public-api.d.ts +0 -0
  516. /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.d.ts +0 -0
  517. /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.d.ts +0 -0
  518. /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/index.d.ts +0 -0
  519. /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.d.ts +0 -0
  520. /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/index.d.ts +0 -0
  521. /package/{lib/directives → directives}/f-draggable/canvas/index.d.ts +0 -0
  522. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.d.ts +0 -0
  523. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.d.ts +0 -0
  524. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.d.ts +0 -0
  525. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.d.ts +0 -0
  526. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.d.ts +0 -0
  527. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.d.ts +0 -0
  528. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.event.d.ts +0 -0
  529. /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +0 -0
  530. /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.d.ts +0 -0
  531. /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.d.ts +0 -0
  532. /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.d.ts +0 -0
  533. /package/{lib/directives → directives}/f-draggable/connections/create-connection/index.d.ts +0 -0
  534. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +0 -0
  535. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.d.ts +0 -0
  536. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.d.ts +0 -0
  537. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.d.ts +0 -0
  538. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.d.ts +0 -0
  539. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/index.d.ts +0 -0
  540. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.d.ts +0 -0
  541. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +0 -0
  542. /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.d.ts +0 -0
  543. /package/{lib/directives → directives}/f-draggable/connections/index.d.ts +0 -0
  544. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/index.d.ts +0 -0
  545. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-connection.event.d.ts +0 -0
  546. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.d.ts +0 -0
  547. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.d.ts +0 -0
  548. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.d.ts +0 -0
  549. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.d.ts +0 -0
  550. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +0 -0
  551. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.d.ts +0 -0
  552. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.d.ts +0 -0
  553. /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.d.ts +0 -0
  554. /package/{lib/directives → directives}/f-draggable/default-drag-handler/default-drag.handler.d.ts +0 -0
  555. /package/{lib/directives → directives}/f-draggable/default-drag-handler/index.d.ts +0 -0
  556. /package/{lib/directives → directives}/f-draggable/e-draggable-type.d.ts +0 -0
  557. /package/{lib/directives → directives}/f-draggable/external-item/create-node.event.d.ts +0 -0
  558. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.d.ts +0 -0
  559. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.d.ts +0 -0
  560. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/index.d.ts +0 -0
  561. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.d.ts +0 -0
  562. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/index.d.ts +0 -0
  563. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.d.ts +0 -0
  564. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.d.ts +0 -0
  565. /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/index.d.ts +0 -0
  566. /package/{lib/directives → directives}/f-draggable/external-item/index.d.ts +0 -0
  567. /package/{lib/directives → directives}/f-draggable/f-draggable-base.d.ts +0 -0
  568. /package/{lib/directives → directives}/f-draggable/f-draggable.directive.d.ts +0 -0
  569. /package/{lib/directives → directives}/f-draggable/f-draggable.module.d.ts +0 -0
  570. /package/{lib/directives → directives}/f-draggable/f-draggable.service.d.ts +0 -0
  571. /package/{lib/directives → directives}/f-draggable/i-drag-handler.d.ts +0 -0
  572. /package/{lib/directives → directives}/f-draggable/i-draggable-item.d.ts +0 -0
  573. /package/{lib/directives → directives}/f-draggable/index.d.ts +0 -0
  574. /package/{lib/directives → directives}/f-draggable/node/index.d.ts +0 -0
  575. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/index.d.ts +0 -0
  576. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.d.ts +0 -0
  577. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node.on-pointer-down.d.ts +0 -0
  578. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +0 -0
  579. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +0 -0
  580. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +0 -0
  581. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/index.d.ts +0 -0
  582. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/node.on-pointer-move.d.ts +0 -0
  583. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/index.d.ts +0 -0
  584. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.d.ts +0 -0
  585. /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +0 -0
  586. /package/{lib/directives → directives}/f-draggable/public-api.d.ts +0 -0
  587. /package/{lib/directives → directives}/f-draggable/selection/index.d.ts +0 -0
  588. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/index.d.ts +0 -0
  589. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.d.ts +0 -0
  590. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +0 -0
  591. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/index.d.ts +0 -0
  592. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +0 -0
  593. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/index.d.ts +0 -0
  594. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.d.ts +0 -0
  595. /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.d.ts +0 -0
  596. /package/{lib/directives → directives}/f-external-item/f-external-item-base.d.ts +0 -0
  597. /package/{lib/directives → directives}/f-external-item/f-external-item.directive.d.ts +0 -0
  598. /package/{lib/directives → directives}/f-external-item/f-external-item.service.d.ts +0 -0
  599. /package/{lib/directives → directives}/f-external-item/index.d.ts +0 -0
  600. /package/{lib/directives → directives}/f-external-item/is-external-item.d.ts +0 -0
  601. /package/{lib/directives → directives}/f-external-item/public-api.d.ts +0 -0
  602. /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-x.d.ts +0 -0
  603. /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-y.d.ts +0 -0
  604. /package/{lib/directives → directives}/f-line-alignment/domain/i-line-alignment-result.d.ts +0 -0
  605. /package/{lib/directives → directives}/f-line-alignment/domain/i-nearest-coordinate-result.d.ts +0 -0
  606. /package/{lib/directives → directives}/f-line-alignment/domain/index.d.ts +0 -0
  607. /package/{lib/directives → directives}/f-line-alignment/f-line-alignment.directive.d.ts +0 -0
  608. /package/{lib/directives → directives}/f-line-alignment/index.d.ts +0 -0
  609. /package/{lib/directives → directives}/f-line-alignment/public-api.d.ts +0 -0
  610. /package/{lib/directives → directives}/f-selection/f-selection.directive.d.ts +0 -0
  611. /package/{lib/directives → directives}/f-selection/index.d.ts +0 -0
  612. /package/{lib/directives → directives}/f-selection/public-api.d.ts +0 -0
  613. /package/{lib/directives → directives}/f-zoom/f-zoom-base.d.ts +0 -0
  614. /package/{lib/directives → directives}/f-zoom/f-zoom.directive.d.ts +0 -0
  615. /package/{lib/directives → directives}/f-zoom/index.d.ts +0 -0
  616. /package/{lib/directives → directives}/f-zoom/public-api.d.ts +0 -0
  617. /package/{lib/directives → directives}/index.d.ts +0 -0
  618. /package/{lib/directives → directives}/public-api.d.ts +0 -0
  619. /package/{lib/f-flow.module.d.ts → f-flow.module.d.ts} +0 -0
  620. /package/{lib/i-has-state-changes.d.ts → i-has-state-changes.d.ts} +0 -0
  621. /package/{lib/i-selectable.d.ts → i-selectable.d.ts} +0 -0
  622. /package/{lib/internal → internal}/f-backgroud/f-background-base.d.ts +0 -0
  623. /package/{lib/internal → internal}/f-backgroud/f-background.directive.d.ts +0 -0
  624. /package/{lib/internal → internal}/f-backgroud/index.d.ts +0 -0
  625. /package/{lib/internal → internal}/f-canvas/f-canvas-base.d.ts +0 -0
  626. /package/{lib/internal → internal}/f-canvas/f-canvas.directive.d.ts +0 -0
  627. /package/{lib/internal → internal}/f-canvas/index.d.ts +0 -0
  628. /package/{lib/internal → internal}/index.d.ts +0 -0
@@ -0,0 +1,79 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { FFlowComponent } from './components';
3
+ import { FConnectionModule } from './components';
4
+ import { FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective } from './components';
5
+ import { FDragHandleDirective, FForeignObjectComponent, FNodeComponent } from './components';
6
+ import { CommonModule } from '@angular/common';
7
+ import { FConnectionsContainerComponent, FItemsContainerDirective, FNodesContainerComponent, FZoomDirective } from './directives';
8
+ import { FBackgroundDirective, FCanvasDirective } from './internal';
9
+ import * as i0 from "@angular/core";
10
+ export class FFlowModule {
11
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
12
+ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, declarations: [FFlowComponent,
13
+ FNodeComponent,
14
+ FZoomDirective,
15
+ FForeignObjectComponent,
16
+ FDragHandleDirective,
17
+ FItemsContainerDirective,
18
+ FNodesContainerComponent,
19
+ FConnectionsContainerComponent,
20
+ FNodeInputDirective,
21
+ FNodeOutletDirective,
22
+ FNodeOutputDirective], imports: [CommonModule,
23
+ FConnectionModule,
24
+ FCanvasDirective,
25
+ FBackgroundDirective], exports: [FFlowComponent,
26
+ FNodeComponent,
27
+ FZoomDirective,
28
+ FForeignObjectComponent,
29
+ FDragHandleDirective,
30
+ FItemsContainerDirective,
31
+ FNodesContainerComponent,
32
+ FConnectionsContainerComponent,
33
+ FConnectionModule,
34
+ FNodeInputDirective,
35
+ FNodeOutletDirective,
36
+ FNodeOutputDirective] }); }
37
+ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, imports: [CommonModule,
38
+ FConnectionModule, FConnectionModule] }); }
39
+ }
40
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, decorators: [{
41
+ type: NgModule,
42
+ args: [{
43
+ declarations: [
44
+ FFlowComponent,
45
+ FNodeComponent,
46
+ FZoomDirective,
47
+ FForeignObjectComponent,
48
+ FDragHandleDirective,
49
+ FItemsContainerDirective,
50
+ FNodesContainerComponent,
51
+ FConnectionsContainerComponent,
52
+ FNodeInputDirective,
53
+ FNodeOutletDirective,
54
+ FNodeOutputDirective,
55
+ ],
56
+ imports: [
57
+ CommonModule,
58
+ FConnectionModule,
59
+ FCanvasDirective,
60
+ FBackgroundDirective,
61
+ ],
62
+ providers: [],
63
+ exports: [
64
+ FFlowComponent,
65
+ FNodeComponent,
66
+ FZoomDirective,
67
+ FForeignObjectComponent,
68
+ FDragHandleDirective,
69
+ FItemsContainerDirective,
70
+ FNodesContainerComponent,
71
+ FConnectionsContainerComponent,
72
+ FConnectionModule,
73
+ FNodeInputDirective,
74
+ FNodeOutletDirective,
75
+ FNodeOutputDirective,
76
+ ]
77
+ }]
78
+ }] });
79
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1mbG93Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvZi1mbG93Lm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxjQUFjLEVBQUUsTUFBTSxjQUFjLENBQUM7QUFDOUMsT0FBTyxFQUFFLGlCQUFpQixFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQ2pELE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxvQkFBb0IsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUMvRixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsdUJBQXVCLEVBQUUsY0FBYyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzdGLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsOEJBQThCLEVBQzlCLHdCQUF3QixFQUN4Qix3QkFBd0IsRUFDeEIsY0FBYyxFQUNmLE1BQU0sY0FBYyxDQUFDO0FBQ3RCLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLFlBQVksQ0FBQzs7QUFzQ3BFLE1BQU0sT0FBTyxXQUFXOzhHQUFYLFdBQVc7K0dBQVgsV0FBVyxpQkFsQ3BCLGNBQWM7WUFDZCxjQUFjO1lBQ2QsY0FBYztZQUNkLHVCQUF1QjtZQUN2QixvQkFBb0I7WUFDcEIsd0JBQXdCO1lBQ3hCLHdCQUF3QjtZQUN4Qiw4QkFBOEI7WUFDOUIsbUJBQW1CO1lBQ25CLG9CQUFvQjtZQUNwQixvQkFBb0IsYUFHcEIsWUFBWTtZQUNaLGlCQUFpQjtZQUNqQixnQkFBZ0I7WUFDaEIsb0JBQW9CLGFBSXBCLGNBQWM7WUFDZCxjQUFjO1lBQ2QsY0FBYztZQUNkLHVCQUF1QjtZQUN2QixvQkFBb0I7WUFDcEIsd0JBQXdCO1lBQ3hCLHdCQUF3QjtZQUN4Qiw4QkFBOEI7WUFDOUIsaUJBQWlCO1lBQ2pCLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsb0JBQW9COytHQUdYLFdBQVcsWUFyQnBCLFlBQVk7WUFDWixpQkFBaUIsRUFjakIsaUJBQWlCOzsyRkFNUixXQUFXO2tCQXBDdkIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osY0FBYzt3QkFDZCxjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsdUJBQXVCO3dCQUN2QixvQkFBb0I7d0JBQ3BCLHdCQUF3Qjt3QkFDeEIsd0JBQXdCO3dCQUN4Qiw4QkFBOEI7d0JBQzlCLG1CQUFtQjt3QkFDbkIsb0JBQW9CO3dCQUNwQixvQkFBb0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLGlCQUFpQjt3QkFDakIsZ0JBQWdCO3dCQUNoQixvQkFBb0I7cUJBQ3JCO29CQUNELFNBQVMsRUFBRSxFQUFFO29CQUNiLE9BQU8sRUFBRTt3QkFDUCxjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCx1QkFBdUI7d0JBQ3ZCLG9CQUFvQjt3QkFDcEIsd0JBQXdCO3dCQUN4Qix3QkFBd0I7d0JBQ3hCLDhCQUE4Qjt3QkFDOUIsaUJBQWlCO3dCQUNqQixtQkFBbUI7d0JBQ25CLG9CQUFvQjt3QkFDcEIsb0JBQW9CO3FCQUNyQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGRmxvd0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBGQ29ubmVjdGlvbk1vZHVsZSB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBGTm9kZUlucHV0RGlyZWN0aXZlLCBGTm9kZU91dGxldERpcmVjdGl2ZSwgRk5vZGVPdXRwdXREaXJlY3RpdmUgfSBmcm9tICcuL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgRkRyYWdIYW5kbGVEaXJlY3RpdmUsIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LCBGTm9kZUNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICBGSXRlbXNDb250YWluZXJEaXJlY3RpdmUsXG4gIEZOb2Rlc0NvbnRhaW5lckNvbXBvbmVudCxcbiAgRlpvb21EaXJlY3RpdmVcbn0gZnJvbSAnLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IEZCYWNrZ3JvdW5kRGlyZWN0aXZlLCBGQ2FudmFzRGlyZWN0aXZlIH0gZnJvbSAnLi9pbnRlcm5hbCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEZGbG93Q29tcG9uZW50LFxuICAgIEZOb2RlQ29tcG9uZW50LFxuICAgIEZab29tRGlyZWN0aXZlLFxuICAgIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LFxuICAgIEZEcmFnSGFuZGxlRGlyZWN0aXZlLFxuICAgIEZJdGVtc0NvbnRhaW5lckRpcmVjdGl2ZSxcbiAgICBGTm9kZXNDb250YWluZXJDb21wb25lbnQsXG4gICAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIEZOb2RlSW5wdXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRsZXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRwdXREaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRkNvbm5lY3Rpb25Nb2R1bGUsXG4gICAgRkNhbnZhc0RpcmVjdGl2ZSxcbiAgICBGQmFja2dyb3VuZERpcmVjdGl2ZSxcbiAgXSxcbiAgcHJvdmlkZXJzOiBbXSxcbiAgZXhwb3J0czogW1xuICAgIEZGbG93Q29tcG9uZW50LFxuICAgIEZOb2RlQ29tcG9uZW50LFxuICAgIEZab29tRGlyZWN0aXZlLFxuICAgIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LFxuICAgIEZEcmFnSGFuZGxlRGlyZWN0aXZlLFxuICAgIEZJdGVtc0NvbnRhaW5lckRpcmVjdGl2ZSxcbiAgICBGTm9kZXNDb250YWluZXJDb21wb25lbnQsXG4gICAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIEZDb25uZWN0aW9uTW9kdWxlLFxuICAgIEZOb2RlSW5wdXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRsZXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRwdXREaXJlY3RpdmUsXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgRkZsb3dNb2R1bGUge1xufVxuIl19
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1oYXMtc3RhdGUtY2hhbmdlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvaS1oYXMtc3RhdGUtY2hhbmdlcy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgT2JzZXJ2YWJsZSB9IGZyb20gJ3J4anMnO1xuXG5leHBvcnQgaW50ZXJmYWNlIElIYXNTdGF0ZUNoYW5nZXMge1xuXG4gIHN0YXRlQ2hhbmdlczogT2JzZXJ2YWJsZTx2b2lkPjtcbn1cbiJdfQ==
@@ -0,0 +1,2 @@
1
+ export const F_SELECTED_CLASS = 'f-selected';
2
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1zZWxlY3RhYmxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9pLXNlbGVjdGFibGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBV0EsTUFBTSxDQUFDLE1BQU0sZ0JBQWdCLEdBQUcsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBJU2VsZWN0YWJsZSB7XG5cbiAgaG9zdEVsZW1lbnQ6IEhUTUxFbGVtZW50IHwgU1ZHRWxlbWVudDtcblxuICBzZWxlY3QoKTogdm9pZDtcblxuICBkZXNlbGVjdCgpOiB2b2lkO1xuXG4gIGlzU2VsZWN0ZWQoKTogYm9vbGVhbjtcbn1cblxuZXhwb3J0IGNvbnN0IEZfU0VMRUNURURfQ0xBU1MgPSAnZi1zZWxlY3RlZCc7XG4iXX0=
@@ -0,0 +1,25 @@
1
+ import { Directive, InjectionToken } from '@angular/core';
2
+ import { TransformModelExtensions } from '@foblex/core';
3
+ import * as i0 from "@angular/core";
4
+ import * as i1 from "../f-canvas";
5
+ export const F_BACKGROUND = new InjectionToken('F_BACKGROUND');
6
+ export class FBackgroundBase {
7
+ get hostElement() {
8
+ return this.elementReference.nativeElement;
9
+ }
10
+ constructor(elementReference, fCanvas) {
11
+ this.elementReference = elementReference;
12
+ this.fCanvas = fCanvas;
13
+ this.transform = TransformModelExtensions.default();
14
+ console.log('FBackgroundBase');
15
+ }
16
+ isBackgroundElement(element) {
17
+ return this.hostElement === element || this.hostElement.contains(element) || this.fCanvas.hostElement.contains(element);
18
+ }
19
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundBase, deps: [{ token: i0.ElementRef }, { token: i1.FCanvasBase }], target: i0.ɵɵFactoryTarget.Directive }); }
20
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FBackgroundBase, ngImport: i0 }); }
21
+ }
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundBase, decorators: [{
23
+ type: Directive
24
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FCanvasBase }]; } });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1iYWNrZ3JvdW5kLWJhc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2ludGVybmFsL2YtYmFja2dyb3VkL2YtYmFja2dyb3VuZC1iYXNlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQWMsY0FBYyxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3RFLE9BQU8sRUFBb0Msd0JBQXdCLEVBQUUsTUFBTSxjQUFjLENBQUM7OztBQUcxRixNQUFNLENBQUMsTUFBTSxZQUFZLEdBQUcsSUFBSSxjQUFjLENBQWtCLGNBQWMsQ0FBQyxDQUFDO0FBR2hGLE1BQU0sT0FBZ0IsZUFBZTtJQUluQyxJQUFXLFdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsYUFBYSxDQUFDO0lBQzdDLENBQUM7SUFFRCxZQUNVLGdCQUF5QyxFQUN6QyxPQUFvQjtRQURwQixxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQXlCO1FBQ3pDLFlBQU8sR0FBUCxPQUFPLENBQWE7UUFSdkIsY0FBUyxHQUFvQix3QkFBd0IsQ0FBQyxPQUFPLEVBQUUsQ0FBQztRQVVyRSxPQUFPLENBQUMsR0FBRyxDQUFDLGlCQUFpQixDQUFDLENBQUM7SUFDakMsQ0FBQztJQUVNLG1CQUFtQixDQUFDLE9BQWlDO1FBQzFELE9BQU8sSUFBSSxDQUFDLFdBQVcsS0FBSyxPQUFPLElBQUksSUFBSSxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsT0FBTyxDQUFDLElBQUksSUFBSSxDQUFDLE9BQU8sQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxDQUFDO0lBQzFILENBQUM7OEdBakJtQixlQUFlO2tHQUFmLGVBQWU7OzJGQUFmLGVBQWU7a0JBRHBDLFNBQVMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEluamVjdGlvblRva2VuIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJSGFzSG9zdEVsZW1lbnQsIElUcmFuc2Zvcm1Nb2RlbCwgVHJhbnNmb3JtTW9kZWxFeHRlbnNpb25zIH0gZnJvbSAnQGZvYmxleC9jb3JlJztcbmltcG9ydCB7IEZDYW52YXNCYXNlIH0gZnJvbSAnLi4vZi1jYW52YXMnO1xuXG5leHBvcnQgY29uc3QgRl9CQUNLR1JPVU5EID0gbmV3IEluamVjdGlvblRva2VuPEZCYWNrZ3JvdW5kQmFzZT4oJ0ZfQkFDS0dST1VORCcpO1xuXG5ARGlyZWN0aXZlKClcbmV4cG9ydCBhYnN0cmFjdCBjbGFzcyBGQmFja2dyb3VuZEJhc2UgaW1wbGVtZW50cyBJSGFzSG9zdEVsZW1lbnQge1xuXG4gIHB1YmxpYyB0cmFuc2Zvcm06IElUcmFuc2Zvcm1Nb2RlbCA9IFRyYW5zZm9ybU1vZGVsRXh0ZW5zaW9ucy5kZWZhdWx0KCk7XG5cbiAgcHVibGljIGdldCBob3N0RWxlbWVudCgpOiBTVkdHRWxlbWVudCB7XG4gICAgcmV0dXJuIHRoaXMuZWxlbWVudFJlZmVyZW5jZS5uYXRpdmVFbGVtZW50O1xuICB9XG5cbiAgcHJvdGVjdGVkIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgZWxlbWVudFJlZmVyZW5jZTogRWxlbWVudFJlZjxTVkdHRWxlbWVudD4sXG4gICAgcHJpdmF0ZSBmQ2FudmFzOiBGQ2FudmFzQmFzZVxuICApIHtcbiAgICBjb25zb2xlLmxvZygnRkJhY2tncm91bmRCYXNlJyk7XG4gIH1cblxuICBwdWJsaWMgaXNCYWNrZ3JvdW5kRWxlbWVudChlbGVtZW50OiBIVE1MRWxlbWVudCB8IFNWR0VsZW1lbnQpOiBib29sZWFuIHtcbiAgICByZXR1cm4gdGhpcy5ob3N0RWxlbWVudCA9PT0gZWxlbWVudCB8fCB0aGlzLmhvc3RFbGVtZW50LmNvbnRhaW5zKGVsZW1lbnQpIHx8IHRoaXMuZkNhbnZhcy5ob3N0RWxlbWVudC5jb250YWlucyhlbGVtZW50KTtcbiAgfVxufVxuIl19
@@ -0,0 +1,24 @@
1
+ import { Directive, Inject } from "@angular/core";
2
+ import { F_BACKGROUND, FBackgroundBase } from './f-background-base';
3
+ import { F_CANVAS } from '../f-canvas';
4
+ import * as i0 from "@angular/core";
5
+ import * as i1 from "../f-canvas";
6
+ export class FBackgroundDirective extends FBackgroundBase {
7
+ constructor(elementReference, fCanvas) {
8
+ super(elementReference, fCanvas);
9
+ }
10
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: F_CANVAS }], target: i0.ɵɵFactoryTarget.Directive }); }
11
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FBackgroundDirective, isStandalone: true, selector: "g[fBackground]", providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundDirective }], usesInheritance: true, ngImport: i0 }); }
12
+ }
13
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundDirective, decorators: [{
14
+ type: Directive,
15
+ args: [{
16
+ selector: "g[fBackground]",
17
+ standalone: true,
18
+ providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundDirective }],
19
+ }]
20
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FCanvasBase, decorators: [{
21
+ type: Inject,
22
+ args: [F_CANVAS]
23
+ }] }]; } });
24
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1iYWNrZ3JvdW5kLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvaW50ZXJuYWwvZi1iYWNrZ3JvdWQvZi1iYWNrZ3JvdW5kLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQ0wsU0FBUyxFQUFjLE1BQU0sRUFDOUIsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFlBQVksRUFBRSxlQUFlLEVBQUUsTUFBTSxxQkFBcUIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsUUFBUSxFQUFlLE1BQU0sYUFBYSxDQUFDOzs7QUFPcEQsTUFBTSxPQUFPLG9CQUFxQixTQUFRLGVBQWU7SUFFdkQsWUFDSSxnQkFBeUMsRUFDdkIsT0FBb0I7UUFFeEMsS0FBSyxDQUFDLGdCQUFnQixFQUFFLE9BQU8sQ0FBQyxDQUFDO0lBQ25DLENBQUM7OEdBUFUsb0JBQW9CLDRDQUluQixRQUFRO2tHQUpULG9CQUFvQiw2REFGcEIsQ0FBRSxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsV0FBVyxFQUFFLG9CQUFvQixFQUFFLENBQUU7OzJGQUVoRSxvQkFBb0I7a0JBTGhDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGdCQUFnQjtvQkFDMUIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFNBQVMsRUFBRSxDQUFFLEVBQUUsT0FBTyxFQUFFLFlBQVksRUFBRSxXQUFXLHNCQUFzQixFQUFFLENBQUU7aUJBQzVFOzswQkFLTSxNQUFNOzJCQUFDLFFBQVEiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBEaXJlY3RpdmUsIEVsZW1lbnRSZWYsIEluamVjdFxufSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHsgRl9CQUNLR1JPVU5ELCBGQmFja2dyb3VuZEJhc2UgfSBmcm9tICcuL2YtYmFja2dyb3VuZC1iYXNlJztcbmltcG9ydCB7IEZfQ0FOVkFTLCBGQ2FudmFzQmFzZSB9IGZyb20gJy4uL2YtY2FudmFzJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiBcImdbZkJhY2tncm91bmRdXCIsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHByb3ZpZGVyczogWyB7IHByb3ZpZGU6IEZfQkFDS0dST1VORCwgdXNlRXhpc3Rpbmc6IEZCYWNrZ3JvdW5kRGlyZWN0aXZlIH0gXSxcbn0pXG5leHBvcnQgY2xhc3MgRkJhY2tncm91bmREaXJlY3RpdmUgZXh0ZW5kcyBGQmFja2dyb3VuZEJhc2Uge1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgICAgZWxlbWVudFJlZmVyZW5jZTogRWxlbWVudFJlZjxTVkdHRWxlbWVudD4sXG4gICAgICBASW5qZWN0KEZfQ0FOVkFTKSBmQ2FudmFzOiBGQ2FudmFzQmFzZVxuICApIHtcbiAgICBzdXBlcihlbGVtZW50UmVmZXJlbmNlLCBmQ2FudmFzKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,3 @@
1
+ export * from './f-background.directive';
2
+ export * from './f-background-base';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2ludGVybmFsL2YtYmFja2dyb3VkL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsMEJBQTBCLENBQUM7QUFFekMsY0FBYyxxQkFBcUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZi1iYWNrZ3JvdW5kLmRpcmVjdGl2ZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1iYWNrZ3JvdW5kLWJhc2UnO1xuXG5cblxuXG5cbiJdfQ==
@@ -0,0 +1,25 @@
1
+ import { Directive, InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export const F_CANVAS = new InjectionToken('F_CANVAS');
4
+ export class FCanvasBase {
5
+ get hostElement() {
6
+ return this.elementReference.nativeElement;
7
+ }
8
+ constructor(elementReference) {
9
+ this.elementReference = elementReference;
10
+ this.initialize();
11
+ }
12
+ initialize() {
13
+ this.hostElement.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns', 'http://www.w3.org/2000/svg');
14
+ this.hostElement.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xlink', 'http://www.w3.org/1999/xlink');
15
+ this.hostElement.setAttribute('version', '1.1');
16
+ this.hostElement.setAttribute('baseProfile', 'full');
17
+ this.hostElement.style.cssText = 'user-select:none; width:100%; height:100%;';
18
+ }
19
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
20
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FCanvasBase, ngImport: i0 }); }
21
+ }
22
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasBase, decorators: [{
23
+ type: Directive
24
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
25
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMtYmFzZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvaW50ZXJuYWwvZi1jYW52YXMvZi1jYW52YXMtYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFHdEUsTUFBTSxDQUFDLE1BQU0sUUFBUSxHQUFHLElBQUksY0FBYyxDQUFjLFVBQVUsQ0FBQyxDQUFDO0FBR3BFLE1BQU0sT0FBZ0IsV0FBVztJQUUvQixJQUFXLFdBQVc7UUFDcEIsT0FBTyxJQUFJLENBQUMsZ0JBQWdCLENBQUMsYUFBYSxDQUFDO0lBQzdDLENBQUM7SUFFRCxZQUNZLGdCQUEyQztRQUEzQyxxQkFBZ0IsR0FBaEIsZ0JBQWdCLENBQTJCO1FBRXJELElBQUksQ0FBQyxVQUFVLEVBQUUsQ0FBQztJQUNwQixDQUFDO0lBRVMsVUFBVTtRQUNsQixJQUFJLENBQUMsV0FBVyxDQUFDLGNBQWMsQ0FBQywrQkFBK0IsRUFBRSxPQUFPLEVBQUUsNEJBQTRCLENBQUMsQ0FBQztRQUN4RyxJQUFJLENBQUMsV0FBVyxDQUFDLGNBQWMsQ0FBQywrQkFBK0IsRUFBRSxhQUFhLEVBQUUsOEJBQThCLENBQUMsQ0FBQztRQUNoSCxJQUFJLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxTQUFTLEVBQUUsS0FBSyxDQUFDLENBQUM7UUFDaEQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsYUFBYSxFQUFFLE1BQU0sQ0FBQyxDQUFDO1FBQ3JELElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLE9BQU8sR0FBRyw0Q0FBNEMsQ0FBQztJQUNoRixDQUFDOzhHQWxCbUIsV0FBVztrR0FBWCxXQUFXOzsyRkFBWCxXQUFXO2tCQURoQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSUhhc0hvc3RFbGVtZW50IH0gZnJvbSAnQGZvYmxleC9jb3JlJztcblxuZXhwb3J0IGNvbnN0IEZfQ0FOVkFTID0gbmV3IEluamVjdGlvblRva2VuPEZDYW52YXNCYXNlPignRl9DQU5WQVMnKTtcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgRkNhbnZhc0Jhc2UgaW1wbGVtZW50cyBJSGFzSG9zdEVsZW1lbnQge1xuXG4gIHB1YmxpYyBnZXQgaG9zdEVsZW1lbnQoKTogU1ZHU1ZHRWxlbWVudCB7XG4gICAgcmV0dXJuIHRoaXMuZWxlbWVudFJlZmVyZW5jZS5uYXRpdmVFbGVtZW50O1xuICB9XG5cbiAgcHJvdGVjdGVkIGNvbnN0cnVjdG9yKFxuICAgICAgcHJpdmF0ZSBlbGVtZW50UmVmZXJlbmNlOiBFbGVtZW50UmVmPFNWR1NWR0VsZW1lbnQ+XG4gICkge1xuICAgIHRoaXMuaW5pdGlhbGl6ZSgpO1xuICB9XG5cbiAgcHJvdGVjdGVkIGluaXRpYWxpemUoKTogdm9pZCB7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zZXRBdHRyaWJ1dGVOUygnaHR0cDovL3d3dy53My5vcmcvMjAwMC94bWxucy8nLCAneG1sbnMnLCAnaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnKTtcbiAgICB0aGlzLmhvc3RFbGVtZW50LnNldEF0dHJpYnV0ZU5TKCdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3htbG5zLycsICd4bWxuczp4bGluaycsICdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zZXRBdHRyaWJ1dGUoJ3ZlcnNpb24nLCAnMS4xJyk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zZXRBdHRyaWJ1dGUoJ2Jhc2VQcm9maWxlJywgJ2Z1bGwnKTtcbiAgICB0aGlzLmhvc3RFbGVtZW50LnN0eWxlLmNzc1RleHQgPSAndXNlci1zZWxlY3Q6bm9uZTsgd2lkdGg6MTAwJTsgaGVpZ2h0OjEwMCU7JztcbiAgfVxufVxuIl19
@@ -0,0 +1,19 @@
1
+ import { Directive } from "@angular/core";
2
+ import { F_CANVAS, FCanvasBase } from './f-canvas-base';
3
+ import * as i0 from "@angular/core";
4
+ export class FCanvasDirective extends FCanvasBase {
5
+ constructor(elementReference) {
6
+ super(elementReference);
7
+ }
8
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
9
+ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FCanvasDirective, isStandalone: true, selector: "svg[fCanvas]", providers: [{ provide: F_CANVAS, useExisting: FCanvasDirective }], usesInheritance: true, ngImport: i0 }); }
10
+ }
11
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasDirective, decorators: [{
12
+ type: Directive,
13
+ args: [{
14
+ selector: "svg[fCanvas]",
15
+ standalone: true,
16
+ providers: [{ provide: F_CANVAS, useExisting: FCanvasDirective }],
17
+ }]
18
+ }], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
19
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9pbnRlcm5hbC9mLWNhbnZhcy9mLWNhbnZhcy5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFDVixNQUFNLGVBQWUsQ0FBQztBQUN2QixPQUFPLEVBQUUsUUFBUSxFQUFFLFdBQVcsRUFBRSxNQUFNLGlCQUFpQixDQUFDOztBQU94RCxNQUFNLE9BQU8sZ0JBQWlCLFNBQVEsV0FBVztJQUUvQyxZQUNFLGdCQUEyQztRQUUzQyxLQUFLLENBQUMsZ0JBQWdCLENBQUMsQ0FBQztJQUMxQixDQUFDOzhHQU5VLGdCQUFnQjtrR0FBaEIsZ0JBQWdCLDJEQUZoQixDQUFFLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsZ0JBQWdCLEVBQUUsQ0FBRTs7MkZBRXhELGdCQUFnQjtrQkFMNUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsY0FBYztvQkFDeEIsVUFBVSxFQUFFLElBQUk7b0JBQ2hCLFNBQVMsRUFBRSxDQUFFLEVBQUUsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLGtCQUFrQixFQUFFLENBQUU7aUJBQ3BFIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgRGlyZWN0aXZlLCBFbGVtZW50UmVmXG59IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5pbXBvcnQgeyBGX0NBTlZBUywgRkNhbnZhc0Jhc2UgfSBmcm9tICcuL2YtY2FudmFzLWJhc2UnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6IFwic3ZnW2ZDYW52YXNdXCIsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIHByb3ZpZGVyczogWyB7IHByb3ZpZGU6IEZfQ0FOVkFTLCB1c2VFeGlzdGluZzogRkNhbnZhc0RpcmVjdGl2ZSB9IF0sXG59KVxuZXhwb3J0IGNsYXNzIEZDYW52YXNEaXJlY3RpdmUgZXh0ZW5kcyBGQ2FudmFzQmFzZSB7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgZWxlbWVudFJlZmVyZW5jZTogRWxlbWVudFJlZjxTVkdTVkdFbGVtZW50PlxuICApIHtcbiAgICBzdXBlcihlbGVtZW50UmVmZXJlbmNlKTtcbiAgfVxufVxuIl19
@@ -0,0 +1,3 @@
1
+ export * from './f-canvas.directive';
2
+ export * from './f-canvas-base';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2ludGVybmFsL2YtY2FudmFzL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsc0JBQXNCLENBQUM7QUFFckMsY0FBYyxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZi1jYW52YXMuZGlyZWN0aXZlJztcblxuZXhwb3J0ICogZnJvbSAnLi9mLWNhbnZhcy1iYXNlJztcblxuXG5cblxuXG4iXX0=
@@ -0,0 +1,3 @@
1
+ export * from './f-backgroud';
2
+ export * from './f-canvas';
3
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2ludGVybmFsL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsZUFBZSxDQUFDO0FBQzlCLGNBQWMsWUFBWSxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9mLWJhY2tncm91ZCc7XG5leHBvcnQgKiBmcm9tICcuL2YtY2FudmFzJztcbiJdfQ==
@@ -1,2 +1,5 @@
1
- export * from './lib/public-api';
2
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWIvcHVibGljLWFwaSc7XG4iXX0=
1
+ export * from './components/public-api';
2
+ export * from './directives/public-api';
3
+ export * from './internal/f-canvas/f-canvas.directive';
4
+ export * from './f-flow.module';
5
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyx3Q0FBd0MsQ0FBQztBQUN2RCxjQUFjLGlCQUFpQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9jb21wb25lbnRzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9kaXJlY3RpdmVzL3B1YmxpYy1hcGknO1xuZXhwb3J0ICogZnJvbSAnLi9pbnRlcm5hbC9mLWNhbnZhcy9mLWNhbnZhcy5kaXJlY3RpdmUnO1xuZXhwb3J0ICogZnJvbSAnLi9mLWZsb3cubW9kdWxlJztcbiJdfQ==
@@ -1198,6 +1198,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImpor
1198
1198
 
1199
1199
  class FItemsContainerDirective extends FItemsContainerBase {
1200
1200
  set position(value) {
1201
+ if (!value) {
1202
+ return;
1203
+ }
1201
1204
  const position = PointExtensions.sum(this.transform.position, this.transform.scaledPosition);
1202
1205
  if (!PointExtensions.isEqual(position, value)) {
1203
1206
  this.transform.position = value;
@@ -1206,6 +1209,9 @@ class FItemsContainerDirective extends FItemsContainerBase {
1206
1209
  }
1207
1210
  }
1208
1211
  set scale(value) {
1212
+ if (!value) {
1213
+ return;
1214
+ }
1209
1215
  this.transform.scale = value;
1210
1216
  this.redraw();
1211
1217
  }