@foblex/flow 12.6.5 → 12.6.6

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 (259) hide show
  1. package/bundles/foblex-flow.umd.js +2587 -2295
  2. package/bundles/foblex-flow.umd.js.map +1 -1
  3. package/domain/create-connection-markers/create-connection-markers.execution.d.ts +5 -1
  4. package/domain/{clear-selection → f-selection/clear-selection}/clear-selection.execution.d.ts +1 -1
  5. package/domain/{get-selection → f-selection/get-selection}/get-selection.execution.d.ts +1 -1
  6. package/domain/f-selection/index.d.ts +6 -0
  7. package/domain/f-selection/providers.d.ts +6 -0
  8. package/domain/{select → f-selection/select}/select.execution.d.ts +2 -2
  9. package/domain/{select-all → f-selection/select-all}/select-all.execution.d.ts +2 -2
  10. package/domain/{select-and-update-node-layer → f-selection/select-and-update-node-layer}/select-and-update-node-layer.execution.d.ts +2 -2
  11. package/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.d.ts +5 -0
  12. package/domain/get-flow-state/providers.d.ts +1 -1
  13. package/domain/index.d.ts +1 -8
  14. package/domain/providers.d.ts +1 -9
  15. package/esm2015/domain/create-connection-markers/create-connection-markers.execution.js +10 -5
  16. package/esm2015/domain/f-selection/clear-selection/clear-selection.execution.js +26 -0
  17. package/esm2015/domain/f-selection/clear-selection/clear-selection.request.js +3 -0
  18. package/esm2015/domain/f-selection/clear-selection/index.js +3 -0
  19. package/esm2015/domain/f-selection/get-selection/get-selection.execution.js +35 -0
  20. package/esm2015/domain/f-selection/get-selection/get-selection.request.js +3 -0
  21. package/esm2015/domain/f-selection/get-selection/index.js +3 -0
  22. package/esm2015/domain/f-selection/index.js +7 -0
  23. package/esm2015/domain/f-selection/providers.js +13 -0
  24. package/esm2015/domain/f-selection/select/index.js +3 -0
  25. package/esm2015/domain/f-selection/select/select.execution.js +44 -0
  26. package/esm2015/domain/f-selection/select/select.request.js +7 -0
  27. package/esm2015/domain/f-selection/select-all/index.js +3 -0
  28. package/esm2015/domain/f-selection/select-all/select-all.execution.js +38 -0
  29. package/esm2015/domain/f-selection/select-all/select-all.request.js +3 -0
  30. package/esm2015/domain/f-selection/select-and-update-node-layer/index.js +3 -0
  31. package/esm2015/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.js +35 -0
  32. package/esm2015/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.js +6 -0
  33. package/esm2015/domain/index.js +2 -9
  34. package/esm2015/domain/providers.js +7 -17
  35. package/esm2015/domain/redraw-connections/redraw-connections.execution.js +4 -1
  36. package/esm2015/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.execution.js +48 -0
  37. package/esm2015/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.request.js +6 -0
  38. package/esm2015/f-backgroud/domain/add-pattern-to-background/index.js +3 -0
  39. package/esm2015/f-backgroud/domain/i-f-background-pattern.js +1 -1
  40. package/esm2015/f-backgroud/domain/index.js +3 -1
  41. package/esm2015/f-backgroud/domain/providers.js +5 -0
  42. package/esm2015/f-backgroud/f-background.component.js +10 -28
  43. package/esm2015/f-canvas/domain/center-group-or-node/center-group-or-node-request.js +7 -0
  44. package/esm2015/f-canvas/domain/center-group-or-node/center-group-or-node.execution.js +49 -0
  45. package/esm2015/f-canvas/domain/center-group-or-node/index.js +3 -0
  46. package/esm2015/f-canvas/domain/fit-to-flow/fit-to-flow-request.js +7 -0
  47. package/esm2015/f-canvas/domain/fit-to-flow/fit-to-flow.execution.js +56 -0
  48. package/esm2015/f-canvas/domain/fit-to-flow/index.js +3 -0
  49. package/esm2015/f-canvas/domain/index.js +9 -1
  50. package/esm2015/f-canvas/domain/input-canvas-position/index.js +3 -0
  51. package/esm2015/f-canvas/domain/input-canvas-position/input-canvas-position-request.js +7 -0
  52. package/esm2015/f-canvas/domain/input-canvas-position/input-canvas-position.execution.js +34 -0
  53. package/esm2015/f-canvas/domain/input-canvas-scale/index.js +3 -0
  54. package/esm2015/f-canvas/domain/input-canvas-scale/input-canvas-scale-request.js +7 -0
  55. package/esm2015/f-canvas/domain/input-canvas-scale/input-canvas-scale.execution.js +29 -0
  56. package/esm2015/f-canvas/domain/providers.js +17 -0
  57. package/esm2015/f-canvas/domain/reset-scale/index.js +3 -0
  58. package/esm2015/f-canvas/domain/reset-scale/reset-scale-request.js +3 -0
  59. package/esm2015/f-canvas/domain/reset-scale/reset-scale.execution.js +29 -0
  60. package/esm2015/f-canvas/domain/reset-scale-and-center/index.js +3 -0
  61. package/esm2015/f-canvas/domain/reset-scale-and-center/reset-scale-and-center-request.js +6 -0
  62. package/esm2015/f-canvas/domain/reset-scale-and-center/reset-scale-and-center.execution.js +51 -0
  63. package/esm2015/f-canvas/domain/update-scale/index.js +3 -0
  64. package/esm2015/f-canvas/domain/update-scale/update-scale-request.js +7 -0
  65. package/esm2015/f-canvas/domain/update-scale/update-scale.execution.js +34 -0
  66. package/esm2015/f-canvas/f-canvas-base.js +12 -15
  67. package/esm2015/f-canvas/f-canvas.component.js +21 -44
  68. package/esm2015/f-connection/common/f-connection-base.js +1 -1
  69. package/esm2015/f-connection/f-connection/f-connection.component.js +1 -6
  70. package/esm2015/f-connection/f-connection-for-create/f-connection-for-create.component.js +1 -6
  71. package/esm2015/f-connection/f-snap-connection/f-snap-connection.component.js +13 -9
  72. package/esm2015/f-connection/providers.js +4 -2
  73. package/esm2015/f-connectors/f-node-input/index.js +1 -2
  74. package/esm2015/f-draggable/canvas/canvas.drag-handler.js +2 -2
  75. package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.js +39 -0
  76. package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.js +8 -0
  77. package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/index.js +3 -0
  78. package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.js +55 -0
  79. package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.js +6 -0
  80. package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/index.js +3 -0
  81. package/esm2015/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect-request.js +6 -0
  82. package/esm2015/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect.execution.js +28 -0
  83. package/esm2015/f-draggable/connections/common/get-connector-with-rect/i-connector-with-rect.js +2 -0
  84. package/esm2015/f-draggable/connections/common/get-connector-with-rect/index.js +4 -0
  85. package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.execution.js +85 -0
  86. package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.request.js +7 -0
  87. package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.validator.js +35 -0
  88. package/esm2015/f-draggable/connections/common/get-input-under-pointer/index.js +4 -0
  89. package/esm2015/f-draggable/connections/common/index.js +6 -0
  90. package/esm2015/f-draggable/connections/common/providers.js +12 -0
  91. package/esm2015/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.js +5 -5
  92. package/esm2015/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.js +4 -5
  93. package/esm2015/f-draggable/connections/create-connection/create-connection.drag-handler.js +51 -20
  94. package/esm2015/f-draggable/connections/index.js +2 -2
  95. package/esm2015/f-draggable/connections/providers.js +6 -4
  96. package/esm2015/f-draggable/connections/reassign-connection/f-reassign-connection.event.js +3 -3
  97. package/esm2015/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.js +4 -4
  98. package/esm2015/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.js +2 -2
  99. package/esm2015/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.js +51 -23
  100. package/esm2015/f-draggable/node/connection-base-drag-handler.js +17 -19
  101. package/esm2015/f-draggable/node/connection-source.drag-handler.js +5 -4
  102. package/esm2015/f-draggable/node/connection-target.drag-handler.js +5 -4
  103. package/esm2015/f-draggable/node/connection.drag-handler.js +5 -4
  104. package/esm2015/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.js +3 -3
  105. package/esm2015/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.js +3 -3
  106. package/esm2015/f-draggable/node/node-move-preparation/node-move-preparation.execution.js +2 -2
  107. package/esm2015/f-draggable/providers.js +2 -2
  108. package/esm2015/f-flow/f-flow.component.js +7 -5
  109. package/esm2015/f-flow.module.js +18 -17
  110. package/esm2015/f-minimap/domain/f-minimap.drag-handler.js +2 -2
  111. package/esm2015/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.js +2 -2
  112. package/esm2015/f-storage/f-components-store.js +1 -1
  113. package/esm2015/f-zoom/f-zoom-base.js +4 -4
  114. package/esm2015/mixins/index.js +1 -6
  115. package/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.execution.d.ts +14 -0
  116. package/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.request.d.ts +5 -0
  117. package/f-backgroud/domain/add-pattern-to-background/index.d.ts +2 -0
  118. package/f-backgroud/domain/i-f-background-pattern.d.ts +1 -0
  119. package/f-backgroud/domain/index.d.ts +2 -0
  120. package/f-backgroud/domain/providers.d.ts +2 -0
  121. package/f-backgroud/f-background.component.d.ts +5 -4
  122. package/{domain → f-canvas/domain}/center-group-or-node/center-group-or-node.execution.d.ts +1 -1
  123. package/f-canvas/domain/fit-to-flow/fit-to-flow-request.d.ts +6 -0
  124. package/f-canvas/domain/fit-to-flow/fit-to-flow.execution.d.ts +16 -0
  125. package/f-canvas/domain/fit-to-flow/index.d.ts +2 -0
  126. package/f-canvas/domain/index.d.ts +8 -0
  127. package/f-canvas/domain/input-canvas-position/index.d.ts +2 -0
  128. package/f-canvas/domain/input-canvas-position/input-canvas-position-request.d.ts +6 -0
  129. package/f-canvas/domain/input-canvas-position/input-canvas-position.execution.d.ts +11 -0
  130. package/f-canvas/domain/input-canvas-scale/index.d.ts +2 -0
  131. package/f-canvas/domain/input-canvas-scale/input-canvas-scale-request.d.ts +6 -0
  132. package/f-canvas/domain/input-canvas-scale/input-canvas-scale.execution.d.ts +11 -0
  133. package/f-canvas/domain/providers.d.ts +8 -0
  134. package/f-canvas/domain/reset-scale/index.d.ts +2 -0
  135. package/f-canvas/domain/reset-scale/reset-scale-request.d.ts +2 -0
  136. package/f-canvas/domain/reset-scale/reset-scale.execution.d.ts +12 -0
  137. package/f-canvas/domain/reset-scale-and-center/index.d.ts +2 -0
  138. package/f-canvas/domain/reset-scale-and-center/reset-scale-and-center-request.d.ts +4 -0
  139. package/f-canvas/domain/reset-scale-and-center/reset-scale-and-center.execution.d.ts +16 -0
  140. package/f-canvas/domain/update-scale/index.d.ts +2 -0
  141. package/f-canvas/domain/update-scale/update-scale-request.d.ts +6 -0
  142. package/f-canvas/domain/update-scale/update-scale.execution.d.ts +12 -0
  143. package/f-canvas/f-canvas-base.d.ts +8 -12
  144. package/f-canvas/f-canvas.component.d.ts +3 -1
  145. package/f-connection/common/f-connection-base.d.ts +0 -2
  146. package/f-connection/f-connection/f-connection.component.d.ts +0 -2
  147. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +0 -2
  148. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +2 -3
  149. package/f-connection/providers.d.ts +2 -1
  150. package/f-connectors/f-node-input/index.d.ts +0 -1
  151. package/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.d.ts +11 -0
  152. package/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.d.ts +8 -0
  153. package/f-draggable/connections/common/find-closest-input-using-snap-threshold/index.d.ts +2 -0
  154. package/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.d.ts +21 -0
  155. package/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.d.ts +4 -0
  156. package/f-draggable/connections/common/get-all-can-be-connected-input-positions/index.d.ts +2 -0
  157. package/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect-request.d.ts +5 -0
  158. package/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect.execution.d.ts +11 -0
  159. package/f-draggable/connections/common/get-connector-with-rect/i-connector-with-rect.d.ts +6 -0
  160. package/f-draggable/connections/common/get-connector-with-rect/index.d.ts +3 -0
  161. package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.execution.d.ts +7 -4
  162. package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.request.d.ts +2 -2
  163. package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.validator.d.ts +1 -1
  164. package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/index.d.ts +0 -1
  165. package/f-draggable/connections/common/index.d.ts +5 -0
  166. package/f-draggable/connections/common/providers.d.ts +5 -0
  167. package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +14 -5
  168. package/f-draggable/connections/index.d.ts +1 -1
  169. package/f-draggable/connections/providers.d.ts +1 -1
  170. package/f-draggable/connections/reassign-connection/f-reassign-connection.event.d.ts +6 -6
  171. package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +16 -7
  172. package/f-draggable/node/connection-base-drag-handler.d.ts +9 -7
  173. package/f-draggable/node/connection-source.drag-handler.d.ts +2 -1
  174. package/f-draggable/node/connection-target.drag-handler.d.ts +2 -1
  175. package/f-draggable/node/connection.drag-handler.d.ts +2 -1
  176. package/f-draggable/providers.d.ts +1 -1
  177. package/f-flow.module.d.ts +19 -18
  178. package/f-node/providers.d.ts +1 -1
  179. package/f-storage/f-components-store.d.ts +1 -0
  180. package/fesm2015/foblex-flow.js +1512 -1258
  181. package/fesm2015/foblex-flow.js.map +1 -1
  182. package/mixins/index.d.ts +0 -5
  183. package/package.json +1 -1
  184. package/domain/get-input-rect-in-flow/get-input-rect-in-flow-request.d.ts +0 -4
  185. package/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.d.ts +0 -7
  186. package/domain/get-input-rect-in-flow/get-input-rect-in-flow.execution.d.ts +0 -13
  187. package/domain/get-input-rect-in-flow/index.d.ts +0 -3
  188. package/domain/get-output-rect-in-flow/get-output-rect-in-flow-request.d.ts +0 -4
  189. package/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.d.ts +0 -7
  190. package/domain/get-output-rect-in-flow/get-output-rect-in-flow.execution.d.ts +0 -13
  191. package/domain/get-output-rect-in-flow/index.d.ts +0 -3
  192. package/domain/select-and-update-node-layer/select-and-update-node-layer.request.d.ts +0 -5
  193. package/esm2015/domain/center-group-or-node/center-group-or-node-request.js +0 -7
  194. package/esm2015/domain/center-group-or-node/center-group-or-node.execution.js +0 -51
  195. package/esm2015/domain/center-group-or-node/index.js +0 -3
  196. package/esm2015/domain/clear-selection/clear-selection.execution.js +0 -26
  197. package/esm2015/domain/clear-selection/clear-selection.request.js +0 -3
  198. package/esm2015/domain/clear-selection/index.js +0 -3
  199. package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow-request.js +0 -6
  200. package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.js +0 -7
  201. package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow.execution.js +0 -33
  202. package/esm2015/domain/get-input-rect-in-flow/index.js +0 -4
  203. package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow-request.js +0 -6
  204. package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.js +0 -7
  205. package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow.execution.js +0 -37
  206. package/esm2015/domain/get-output-rect-in-flow/index.js +0 -4
  207. package/esm2015/domain/get-selection/get-selection.execution.js +0 -35
  208. package/esm2015/domain/get-selection/get-selection.request.js +0 -3
  209. package/esm2015/domain/get-selection/index.js +0 -3
  210. package/esm2015/domain/select/index.js +0 -3
  211. package/esm2015/domain/select/select.execution.js +0 -44
  212. package/esm2015/domain/select/select.request.js +0 -7
  213. package/esm2015/domain/select-all/index.js +0 -3
  214. package/esm2015/domain/select-all/select-all.execution.js +0 -38
  215. package/esm2015/domain/select-all/select-all.request.js +0 -3
  216. package/esm2015/domain/select-and-update-node-layer/index.js +0 -3
  217. package/esm2015/domain/select-and-update-node-layer/select-and-update-node-layer.execution.js +0 -35
  218. package/esm2015/domain/select-and-update-node-layer/select-and-update-node-layer.request.js +0 -6
  219. package/esm2015/f-connectors/f-node-input/is-node-input.js +0 -4
  220. package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.js +0 -74
  221. package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.request.js +0 -7
  222. package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.js +0 -35
  223. package/esm2015/f-draggable/connections/get-input-under-pointer/index.js +0 -5
  224. package/esm2015/f-draggable/connections/get-input-under-pointer/providers.js +0 -7
  225. package/esm2015/mixins/change-position.js +0 -15
  226. package/esm2015/mixins/change-zoom/change-zoom.js +0 -25
  227. package/esm2015/mixins/change-zoom/i-can-change-zoom.js +0 -2
  228. package/esm2015/mixins/change-zoom/index.js +0 -3
  229. package/esm2015/mixins/fit-to-parent/fit-to-parent.js +0 -27
  230. package/esm2015/mixins/fit-to-parent/i-can-fit-to-parent.js +0 -2
  231. package/esm2015/mixins/fit-to-parent/index.js +0 -3
  232. package/esm2015/mixins/i-transformable.js +0 -2
  233. package/esm2015/mixins/one-to-one-centering/i-can-one-to-one-centering.js +0 -2
  234. package/esm2015/mixins/one-to-one-centering/index.js +0 -3
  235. package/esm2015/mixins/one-to-one-centering/one-to-one-centering.js +0 -24
  236. package/f-connectors/f-node-input/is-node-input.d.ts +0 -1
  237. package/f-draggable/connections/get-input-under-pointer/providers.d.ts +0 -3
  238. package/mixins/change-position.d.ts +0 -10
  239. package/mixins/change-zoom/change-zoom.d.ts +0 -6
  240. package/mixins/change-zoom/i-can-change-zoom.d.ts +0 -6
  241. package/mixins/change-zoom/index.d.ts +0 -2
  242. package/mixins/fit-to-parent/fit-to-parent.d.ts +0 -6
  243. package/mixins/fit-to-parent/i-can-fit-to-parent.d.ts +0 -4
  244. package/mixins/fit-to-parent/index.d.ts +0 -2
  245. package/mixins/i-transformable.d.ts +0 -4
  246. package/mixins/one-to-one-centering/i-can-one-to-one-centering.d.ts +0 -4
  247. package/mixins/one-to-one-centering/index.d.ts +0 -2
  248. package/mixins/one-to-one-centering/one-to-one-centering.d.ts +0 -6
  249. /package/domain/{clear-selection → f-selection/clear-selection}/clear-selection.request.d.ts +0 -0
  250. /package/domain/{clear-selection → f-selection/clear-selection}/index.d.ts +0 -0
  251. /package/domain/{get-selection → f-selection/get-selection}/get-selection.request.d.ts +0 -0
  252. /package/domain/{get-selection → f-selection/get-selection}/index.d.ts +0 -0
  253. /package/domain/{select → f-selection/select}/index.d.ts +0 -0
  254. /package/domain/{select → f-selection/select}/select.request.d.ts +0 -0
  255. /package/domain/{select-all → f-selection/select-all}/index.d.ts +0 -0
  256. /package/domain/{select-all → f-selection/select-all}/select-all.request.d.ts +0 -0
  257. /package/domain/{select-and-update-node-layer → f-selection/select-and-update-node-layer}/index.d.ts +0 -0
  258. /package/{domain → f-canvas/domain}/center-group-or-node/center-group-or-node-request.d.ts +0 -0
  259. /package/{domain → f-canvas/domain}/center-group-or-node/index.d.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.