@foblex/flow 12.6.4 → 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.
- package/bundles/foblex-flow.umd.js +2589 -2297
- package/bundles/foblex-flow.umd.js.map +1 -1
- package/domain/create-connection-markers/create-connection-markers.execution.d.ts +5 -1
- package/domain/{clear-selection → f-selection/clear-selection}/clear-selection.execution.d.ts +1 -1
- package/domain/{get-selection → f-selection/get-selection}/get-selection.execution.d.ts +1 -1
- package/domain/f-selection/index.d.ts +6 -0
- package/domain/f-selection/providers.d.ts +6 -0
- package/domain/{select → f-selection/select}/select.execution.d.ts +2 -2
- package/domain/{select-all → f-selection/select-all}/select-all.execution.d.ts +2 -2
- package/domain/{select-and-update-node-layer → f-selection/select-and-update-node-layer}/select-and-update-node-layer.execution.d.ts +2 -2
- package/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.d.ts +5 -0
- package/domain/get-flow-state/providers.d.ts +1 -1
- package/domain/index.d.ts +1 -8
- package/domain/providers.d.ts +1 -9
- package/esm2015/domain/create-connection-markers/create-connection-markers.execution.js +10 -5
- package/esm2015/domain/f-selection/clear-selection/clear-selection.execution.js +26 -0
- package/esm2015/domain/f-selection/clear-selection/clear-selection.request.js +3 -0
- package/esm2015/domain/f-selection/clear-selection/index.js +3 -0
- package/esm2015/domain/f-selection/get-selection/get-selection.execution.js +35 -0
- package/esm2015/domain/f-selection/get-selection/get-selection.request.js +3 -0
- package/esm2015/domain/f-selection/get-selection/index.js +3 -0
- package/esm2015/domain/f-selection/index.js +7 -0
- package/esm2015/domain/f-selection/providers.js +13 -0
- package/esm2015/domain/f-selection/select/index.js +3 -0
- package/esm2015/domain/f-selection/select/select.execution.js +44 -0
- package/esm2015/domain/f-selection/select/select.request.js +7 -0
- package/esm2015/domain/f-selection/select-all/index.js +3 -0
- package/esm2015/domain/f-selection/select-all/select-all.execution.js +38 -0
- package/esm2015/domain/f-selection/select-all/select-all.request.js +3 -0
- package/esm2015/domain/f-selection/select-and-update-node-layer/index.js +3 -0
- package/esm2015/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.js +35 -0
- package/esm2015/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.js +6 -0
- package/esm2015/domain/index.js +2 -9
- package/esm2015/domain/providers.js +7 -17
- package/esm2015/domain/redraw-connections/redraw-connections.execution.js +4 -1
- package/esm2015/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.execution.js +48 -0
- package/esm2015/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.request.js +6 -0
- package/esm2015/f-backgroud/domain/add-pattern-to-background/index.js +3 -0
- package/esm2015/f-backgroud/domain/i-f-background-pattern.js +1 -1
- package/esm2015/f-backgroud/domain/index.js +3 -1
- package/esm2015/f-backgroud/domain/providers.js +5 -0
- package/esm2015/f-backgroud/f-background.component.js +10 -28
- package/esm2015/f-canvas/domain/center-group-or-node/center-group-or-node-request.js +7 -0
- package/esm2015/f-canvas/domain/center-group-or-node/center-group-or-node.execution.js +49 -0
- package/esm2015/f-canvas/domain/center-group-or-node/index.js +3 -0
- package/esm2015/f-canvas/domain/fit-to-flow/fit-to-flow-request.js +7 -0
- package/esm2015/f-canvas/domain/fit-to-flow/fit-to-flow.execution.js +56 -0
- package/esm2015/f-canvas/domain/fit-to-flow/index.js +3 -0
- package/esm2015/f-canvas/domain/index.js +9 -1
- package/esm2015/f-canvas/domain/input-canvas-position/index.js +3 -0
- package/esm2015/f-canvas/domain/input-canvas-position/input-canvas-position-request.js +7 -0
- package/esm2015/f-canvas/domain/input-canvas-position/input-canvas-position.execution.js +34 -0
- package/esm2015/f-canvas/domain/input-canvas-scale/index.js +3 -0
- package/esm2015/f-canvas/domain/input-canvas-scale/input-canvas-scale-request.js +7 -0
- package/esm2015/f-canvas/domain/input-canvas-scale/input-canvas-scale.execution.js +29 -0
- package/esm2015/f-canvas/domain/providers.js +17 -0
- package/esm2015/f-canvas/domain/reset-scale/index.js +3 -0
- package/esm2015/f-canvas/domain/reset-scale/reset-scale-request.js +3 -0
- package/esm2015/f-canvas/domain/reset-scale/reset-scale.execution.js +29 -0
- package/esm2015/f-canvas/domain/reset-scale-and-center/index.js +3 -0
- package/esm2015/f-canvas/domain/reset-scale-and-center/reset-scale-and-center-request.js +6 -0
- package/esm2015/f-canvas/domain/reset-scale-and-center/reset-scale-and-center.execution.js +51 -0
- package/esm2015/f-canvas/domain/update-scale/index.js +3 -0
- package/esm2015/f-canvas/domain/update-scale/update-scale-request.js +7 -0
- package/esm2015/f-canvas/domain/update-scale/update-scale.execution.js +34 -0
- package/esm2015/f-canvas/f-canvas-base.js +12 -15
- package/esm2015/f-canvas/f-canvas.component.js +21 -44
- package/esm2015/f-connection/common/f-connection-base.js +1 -1
- package/esm2015/f-connection/f-connection/f-connection.component.js +2 -7
- package/esm2015/f-connection/f-connection-for-create/f-connection-for-create.component.js +1 -6
- package/esm2015/f-connection/f-snap-connection/f-snap-connection.component.js +13 -9
- package/esm2015/f-connection/providers.js +4 -2
- package/esm2015/f-connectors/f-node-input/index.js +1 -2
- package/esm2015/f-draggable/canvas/canvas.drag-handler.js +2 -2
- package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.js +39 -0
- package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.js +8 -0
- package/esm2015/f-draggable/connections/common/find-closest-input-using-snap-threshold/index.js +3 -0
- package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.js +55 -0
- package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.js +6 -0
- package/esm2015/f-draggable/connections/common/get-all-can-be-connected-input-positions/index.js +3 -0
- package/esm2015/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect-request.js +6 -0
- package/esm2015/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect.execution.js +28 -0
- package/esm2015/f-draggable/connections/common/get-connector-with-rect/i-connector-with-rect.js +2 -0
- package/esm2015/f-draggable/connections/common/get-connector-with-rect/index.js +4 -0
- package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.execution.js +85 -0
- package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.request.js +7 -0
- package/esm2015/f-draggable/connections/common/get-input-under-pointer/get-input-under-pointer.validator.js +35 -0
- package/esm2015/f-draggable/connections/common/get-input-under-pointer/index.js +4 -0
- package/esm2015/f-draggable/connections/common/index.js +6 -0
- package/esm2015/f-draggable/connections/common/providers.js +12 -0
- package/esm2015/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.js +5 -5
- package/esm2015/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.js +4 -5
- package/esm2015/f-draggable/connections/create-connection/create-connection.drag-handler.js +51 -20
- package/esm2015/f-draggable/connections/index.js +2 -2
- package/esm2015/f-draggable/connections/providers.js +6 -4
- package/esm2015/f-draggable/connections/reassign-connection/f-reassign-connection.event.js +3 -3
- package/esm2015/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.js +4 -4
- package/esm2015/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.js +2 -2
- package/esm2015/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.js +51 -23
- package/esm2015/f-draggable/node/connection-base-drag-handler.js +17 -19
- package/esm2015/f-draggable/node/connection-source.drag-handler.js +5 -4
- package/esm2015/f-draggable/node/connection-target.drag-handler.js +5 -4
- package/esm2015/f-draggable/node/connection.drag-handler.js +5 -4
- 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
- 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
- package/esm2015/f-draggable/node/node-move-preparation/node-move-preparation.execution.js +2 -2
- package/esm2015/f-draggable/providers.js +2 -2
- package/esm2015/f-flow/f-flow.component.js +8 -6
- package/esm2015/f-flow.module.js +18 -17
- package/esm2015/f-minimap/domain/f-minimap.drag-handler.js +2 -2
- package/esm2015/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.js +2 -2
- package/esm2015/f-storage/f-components-store.js +1 -1
- package/esm2015/f-zoom/f-zoom-base.js +4 -4
- package/esm2015/mixins/index.js +1 -6
- package/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.execution.d.ts +14 -0
- package/f-backgroud/domain/add-pattern-to-background/add-pattern-to-background.request.d.ts +5 -0
- package/f-backgroud/domain/add-pattern-to-background/index.d.ts +2 -0
- package/f-backgroud/domain/i-f-background-pattern.d.ts +1 -0
- package/f-backgroud/domain/index.d.ts +2 -0
- package/f-backgroud/domain/providers.d.ts +2 -0
- package/f-backgroud/f-background.component.d.ts +5 -4
- package/{domain → f-canvas/domain}/center-group-or-node/center-group-or-node.execution.d.ts +1 -1
- package/f-canvas/domain/fit-to-flow/fit-to-flow-request.d.ts +6 -0
- package/f-canvas/domain/fit-to-flow/fit-to-flow.execution.d.ts +16 -0
- package/f-canvas/domain/fit-to-flow/index.d.ts +2 -0
- package/f-canvas/domain/index.d.ts +8 -0
- package/f-canvas/domain/input-canvas-position/index.d.ts +2 -0
- package/f-canvas/domain/input-canvas-position/input-canvas-position-request.d.ts +6 -0
- package/f-canvas/domain/input-canvas-position/input-canvas-position.execution.d.ts +11 -0
- package/f-canvas/domain/input-canvas-scale/index.d.ts +2 -0
- package/f-canvas/domain/input-canvas-scale/input-canvas-scale-request.d.ts +6 -0
- package/f-canvas/domain/input-canvas-scale/input-canvas-scale.execution.d.ts +11 -0
- package/f-canvas/domain/providers.d.ts +8 -0
- package/f-canvas/domain/reset-scale/index.d.ts +2 -0
- package/f-canvas/domain/reset-scale/reset-scale-request.d.ts +2 -0
- package/f-canvas/domain/reset-scale/reset-scale.execution.d.ts +12 -0
- package/f-canvas/domain/reset-scale-and-center/index.d.ts +2 -0
- package/f-canvas/domain/reset-scale-and-center/reset-scale-and-center-request.d.ts +4 -0
- package/f-canvas/domain/reset-scale-and-center/reset-scale-and-center.execution.d.ts +16 -0
- package/f-canvas/domain/update-scale/index.d.ts +2 -0
- package/f-canvas/domain/update-scale/update-scale-request.d.ts +6 -0
- package/f-canvas/domain/update-scale/update-scale.execution.d.ts +12 -0
- package/f-canvas/f-canvas-base.d.ts +8 -12
- package/f-canvas/f-canvas.component.d.ts +3 -1
- package/f-connection/common/f-connection-base.d.ts +0 -2
- package/f-connection/f-connection/f-connection.component.d.ts +0 -2
- package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +0 -2
- package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +2 -3
- package/f-connection/providers.d.ts +2 -1
- package/f-connectors/f-node-input/index.d.ts +0 -1
- package/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.d.ts +11 -0
- package/f-draggable/connections/common/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.d.ts +8 -0
- package/f-draggable/connections/common/find-closest-input-using-snap-threshold/index.d.ts +2 -0
- package/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.d.ts +21 -0
- package/f-draggable/connections/common/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.d.ts +4 -0
- package/f-draggable/connections/common/get-all-can-be-connected-input-positions/index.d.ts +2 -0
- package/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect-request.d.ts +5 -0
- package/f-draggable/connections/common/get-connector-with-rect/get-connector-with-rect.execution.d.ts +11 -0
- package/f-draggable/connections/common/get-connector-with-rect/i-connector-with-rect.d.ts +6 -0
- package/f-draggable/connections/common/get-connector-with-rect/index.d.ts +3 -0
- package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.execution.d.ts +7 -4
- package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.request.d.ts +2 -2
- package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/get-input-under-pointer.validator.d.ts +1 -1
- package/f-draggable/connections/{get-input-under-pointer → common/get-input-under-pointer}/index.d.ts +0 -1
- package/f-draggable/connections/common/index.d.ts +5 -0
- package/f-draggable/connections/common/providers.d.ts +5 -0
- package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +14 -5
- package/f-draggable/connections/index.d.ts +1 -1
- package/f-draggable/connections/providers.d.ts +1 -1
- package/f-draggable/connections/reassign-connection/f-reassign-connection.event.d.ts +6 -6
- package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +16 -7
- package/f-draggable/node/connection-base-drag-handler.d.ts +9 -7
- package/f-draggable/node/connection-source.drag-handler.d.ts +2 -1
- package/f-draggable/node/connection-target.drag-handler.d.ts +2 -1
- package/f-draggable/node/connection.drag-handler.d.ts +2 -1
- package/f-draggable/providers.d.ts +1 -1
- package/f-flow.module.d.ts +19 -18
- package/f-node/providers.d.ts +1 -1
- package/f-storage/f-components-store.d.ts +1 -0
- package/fesm2015/foblex-flow.js +1514 -1260
- package/fesm2015/foblex-flow.js.map +1 -1
- package/mixins/index.d.ts +0 -5
- package/package.json +1 -1
- package/domain/get-input-rect-in-flow/get-input-rect-in-flow-request.d.ts +0 -4
- package/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.d.ts +0 -7
- package/domain/get-input-rect-in-flow/get-input-rect-in-flow.execution.d.ts +0 -13
- package/domain/get-input-rect-in-flow/index.d.ts +0 -3
- package/domain/get-output-rect-in-flow/get-output-rect-in-flow-request.d.ts +0 -4
- package/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.d.ts +0 -7
- package/domain/get-output-rect-in-flow/get-output-rect-in-flow.execution.d.ts +0 -13
- package/domain/get-output-rect-in-flow/index.d.ts +0 -3
- package/domain/select-and-update-node-layer/select-and-update-node-layer.request.d.ts +0 -5
- package/esm2015/domain/center-group-or-node/center-group-or-node-request.js +0 -7
- package/esm2015/domain/center-group-or-node/center-group-or-node.execution.js +0 -51
- package/esm2015/domain/center-group-or-node/index.js +0 -3
- package/esm2015/domain/clear-selection/clear-selection.execution.js +0 -26
- package/esm2015/domain/clear-selection/clear-selection.request.js +0 -3
- package/esm2015/domain/clear-selection/index.js +0 -3
- package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow-request.js +0 -6
- package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.js +0 -7
- package/esm2015/domain/get-input-rect-in-flow/get-input-rect-in-flow.execution.js +0 -33
- package/esm2015/domain/get-input-rect-in-flow/index.js +0 -4
- package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow-request.js +0 -6
- package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.js +0 -7
- package/esm2015/domain/get-output-rect-in-flow/get-output-rect-in-flow.execution.js +0 -37
- package/esm2015/domain/get-output-rect-in-flow/index.js +0 -4
- package/esm2015/domain/get-selection/get-selection.execution.js +0 -35
- package/esm2015/domain/get-selection/get-selection.request.js +0 -3
- package/esm2015/domain/get-selection/index.js +0 -3
- package/esm2015/domain/select/index.js +0 -3
- package/esm2015/domain/select/select.execution.js +0 -44
- package/esm2015/domain/select/select.request.js +0 -7
- package/esm2015/domain/select-all/index.js +0 -3
- package/esm2015/domain/select-all/select-all.execution.js +0 -38
- package/esm2015/domain/select-all/select-all.request.js +0 -3
- package/esm2015/domain/select-and-update-node-layer/index.js +0 -3
- package/esm2015/domain/select-and-update-node-layer/select-and-update-node-layer.execution.js +0 -35
- package/esm2015/domain/select-and-update-node-layer/select-and-update-node-layer.request.js +0 -6
- package/esm2015/f-connectors/f-node-input/is-node-input.js +0 -4
- package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.js +0 -74
- package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.request.js +0 -7
- package/esm2015/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.js +0 -35
- package/esm2015/f-draggable/connections/get-input-under-pointer/index.js +0 -5
- package/esm2015/f-draggable/connections/get-input-under-pointer/providers.js +0 -7
- package/esm2015/mixins/change-position.js +0 -15
- package/esm2015/mixins/change-zoom/change-zoom.js +0 -25
- package/esm2015/mixins/change-zoom/i-can-change-zoom.js +0 -2
- package/esm2015/mixins/change-zoom/index.js +0 -3
- package/esm2015/mixins/fit-to-parent/fit-to-parent.js +0 -27
- package/esm2015/mixins/fit-to-parent/i-can-fit-to-parent.js +0 -2
- package/esm2015/mixins/fit-to-parent/index.js +0 -3
- package/esm2015/mixins/i-transformable.js +0 -2
- package/esm2015/mixins/one-to-one-centering/i-can-one-to-one-centering.js +0 -2
- package/esm2015/mixins/one-to-one-centering/index.js +0 -3
- package/esm2015/mixins/one-to-one-centering/one-to-one-centering.js +0 -24
- package/f-connectors/f-node-input/is-node-input.d.ts +0 -1
- package/f-draggable/connections/get-input-under-pointer/providers.d.ts +0 -3
- package/mixins/change-position.d.ts +0 -10
- package/mixins/change-zoom/change-zoom.d.ts +0 -6
- package/mixins/change-zoom/i-can-change-zoom.d.ts +0 -6
- package/mixins/change-zoom/index.d.ts +0 -2
- package/mixins/fit-to-parent/fit-to-parent.d.ts +0 -6
- package/mixins/fit-to-parent/i-can-fit-to-parent.d.ts +0 -4
- package/mixins/fit-to-parent/index.d.ts +0 -2
- package/mixins/i-transformable.d.ts +0 -4
- package/mixins/one-to-one-centering/i-can-one-to-one-centering.d.ts +0 -4
- package/mixins/one-to-one-centering/index.d.ts +0 -2
- package/mixins/one-to-one-centering/one-to-one-centering.d.ts +0 -6
- /package/domain/{clear-selection → f-selection/clear-selection}/clear-selection.request.d.ts +0 -0
- /package/domain/{clear-selection → f-selection/clear-selection}/index.d.ts +0 -0
- /package/domain/{get-selection → f-selection/get-selection}/get-selection.request.d.ts +0 -0
- /package/domain/{get-selection → f-selection/get-selection}/index.d.ts +0 -0
- /package/domain/{select → f-selection/select}/index.d.ts +0 -0
- /package/domain/{select → f-selection/select}/select.request.d.ts +0 -0
- /package/domain/{select-all → f-selection/select-all}/index.d.ts +0 -0
- /package/domain/{select-all → f-selection/select-all}/select-all.request.d.ts +0 -0
- /package/domain/{select-and-update-node-layer → f-selection/select-and-update-node-layer}/index.d.ts +0 -0
- /package/{domain → f-canvas/domain}/center-group-or-node/center-group-or-node-request.d.ts +0 -0
- /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.