@foblex/flow 12.6.5 → 12.6.7

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