@foblex/flow 12.2.4 → 12.3.5
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/LICENSE +0 -7
- package/README.md +33 -7
- package/domain/cast-to-enum.d.ts +1 -0
- package/domain/clear-selection/{clear-selection.handler.d.ts → clear-selection.execution.d.ts} +4 -4
- package/domain/clear-selection/index.d.ts +1 -1
- package/domain/create-connection-markers/{create-connection-markers.handler.d.ts → create-connection-markers.execution.d.ts} +4 -4
- package/domain/create-connection-markers/index.d.ts +1 -1
- package/domain/get-can-be-selected-items/get-can-be-selected-items-request.d.ts +2 -0
- package/{f-draggable/selection-area/get-can-be-selected-items/get-can-be-selected-items.handler.d.ts → domain/get-can-be-selected-items/get-can-be-selected-items.execution.d.ts} +6 -7
- package/{f-draggable/selection-area → domain}/get-can-be-selected-items/i-selectable-with-rect.d.ts +1 -1
- package/domain/get-can-be-selected-items/index.d.ts +2 -0
- package/domain/get-connection-line/get-connection-line.execution.d.ts +13 -0
- package/domain/get-connection-line/get-connection-line.request.d.ts +11 -0
- package/domain/get-connection-line/index.d.ts +2 -0
- package/domain/get-element-rect-in-flow/{get-element-rect-in-flow.handler.d.ts → get-element-rect-in-flow.execution.d.ts} +8 -5
- package/domain/get-element-rect-in-flow/index.d.ts +1 -1
- package/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.d.ts +3 -3
- package/domain/get-input-rect-in-flow/{get-input-rect-in-flow.handler.d.ts → get-input-rect-in-flow.execution.d.ts} +4 -5
- package/domain/get-input-rect-in-flow/index.d.ts +1 -1
- package/domain/get-nodes-rect/get-nodes-rect.execution.d.ts +12 -0
- package/domain/get-nodes-rect/index.d.ts +1 -1
- package/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.d.ts +3 -3
- package/domain/get-output-rect-in-flow/{get-output-rect-in-flow.handler.d.ts → get-output-rect-in-flow.execution.d.ts} +4 -5
- package/domain/get-output-rect-in-flow/index.d.ts +1 -1
- package/domain/get-position-in-flow/{get-position-in-flow.handler.d.ts → get-position-in-flow.execution.d.ts} +5 -4
- package/domain/get-position-in-flow/index.d.ts +1 -1
- package/domain/get-selection/{get-selection.handler.d.ts → get-selection.execution.d.ts} +4 -4
- package/domain/get-selection/index.d.ts +1 -1
- package/domain/get-value-from-data-attr.d.ts +1 -0
- package/domain/index.d.ts +8 -1
- package/domain/intersections/e-f-connector-shape.d.ts +3 -0
- package/domain/intersections/f-connector-shape.extensions.d.ts +11 -0
- package/domain/intersections/i-connector-shape.d.ts +6 -0
- package/domain/intersections/index.d.ts +5 -0
- package/domain/intersections/intersection-finder.d.ts +67 -0
- package/domain/intersections/rounded-rect/i-rounded-rect.d.ts +8 -0
- package/domain/intersections/rounded-rect/index.d.ts +2 -0
- package/domain/intersections/rounded-rect/rounded-rect.d.ts +22 -0
- package/domain/is-connection-under-node/index.d.ts +1 -0
- package/{f-draggable/node/domain/is-connection-under-node/is-connection-under-node.handler.d.ts → domain/is-connection-under-node/is-connection-under-node.execution.d.ts} +9 -8
- package/domain/is-connection-under-node/is-connection-under-node.request.d.ts +2 -0
- package/domain/is-element-with-class.d.ts +1 -0
- package/domain/providers.d.ts +17 -14
- package/domain/redraw-connections/index.d.ts +1 -1
- package/domain/redraw-connections/{redraw-connections.handler.d.ts → redraw-connections.execution.d.ts} +5 -6
- package/domain/select/index.d.ts +1 -1
- package/domain/select/{select.handler.d.ts → select.execution.d.ts} +4 -4
- package/domain/select-all/index.d.ts +1 -1
- package/domain/select-all/{select-all.handler.d.ts → select-all.execution.d.ts} +4 -4
- package/domain/select-and-update-node-layer/index.d.ts +2 -0
- package/domain/select-and-update-node-layer/select-and-update-node-layer.execution.d.ts +16 -0
- package/domain/select-and-update-node-layer/select-and-update-node-layer.request.d.ts +5 -0
- package/domain/update-item-layer/index.d.ts +1 -1
- package/domain/update-item-layer/update-item-layer.execution.d.ts +8 -0
- package/esm2022/domain/cast-to-enum.mjs +31 -0
- package/esm2022/domain/clear-selection/clear-selection.execution.mjs +28 -0
- package/esm2022/domain/clear-selection/index.mjs +2 -2
- package/esm2022/domain/create-connection-markers/create-connection-markers.execution.mjs +49 -0
- package/esm2022/domain/create-connection-markers/index.mjs +2 -2
- package/esm2022/domain/get-can-be-selected-items/get-can-be-selected-items-request.mjs +3 -0
- package/esm2022/domain/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +57 -0
- package/esm2022/domain/get-can-be-selected-items/i-selectable-with-rect.mjs +2 -0
- package/esm2022/domain/get-can-be-selected-items/index.mjs +3 -0
- package/esm2022/domain/get-connection-line/get-connection-line.execution.mjs +68 -0
- package/esm2022/domain/get-connection-line/get-connection-line.request.mjs +10 -0
- package/esm2022/domain/get-connection-line/index.mjs +3 -0
- package/esm2022/domain/get-connection.handler.mjs +5 -5
- package/esm2022/domain/get-element-rect-in-flow/get-element-rect-in-flow.execution.mjs +41 -0
- package/esm2022/domain/get-element-rect-in-flow/index.mjs +2 -2
- package/esm2022/domain/get-incoming-connections.handler.mjs +4 -4
- package/esm2022/domain/get-input-rect-in-flow/get-input-rect-in-flow-response.mjs +1 -1
- package/esm2022/domain/get-input-rect-in-flow/get-input-rect-in-flow.execution.mjs +33 -0
- package/esm2022/domain/get-input-rect-in-flow/index.mjs +2 -2
- package/esm2022/domain/get-nodes-rect/get-nodes-rect.execution.mjs +29 -0
- package/esm2022/domain/get-nodes-rect/index.mjs +2 -2
- package/esm2022/domain/get-outgoing-connections.handler.mjs +4 -4
- package/esm2022/domain/get-output-rect-in-flow/get-output-rect-in-flow-response.mjs +1 -1
- package/esm2022/domain/get-output-rect-in-flow/get-output-rect-in-flow.execution.mjs +37 -0
- package/esm2022/domain/get-output-rect-in-flow/index.mjs +2 -2
- package/esm2022/domain/get-position-in-flow/get-position-in-flow.execution.mjs +32 -0
- package/esm2022/domain/get-position-in-flow/index.mjs +2 -2
- package/esm2022/domain/get-selection/get-selection.execution.mjs +35 -0
- package/esm2022/domain/get-selection/index.mjs +2 -2
- package/esm2022/domain/get-value-from-data-attr.mjs +7 -0
- package/esm2022/domain/index.mjs +9 -2
- package/esm2022/domain/intersections/e-f-connector-shape.mjs +5 -0
- package/esm2022/domain/intersections/f-connector-shape.extensions.mjs +46 -0
- package/esm2022/domain/intersections/i-connector-shape.mjs +2 -0
- package/esm2022/domain/intersections/index.mjs +6 -0
- package/esm2022/domain/intersections/intersection-finder.mjs +156 -0
- package/esm2022/domain/intersections/rounded-rect/i-rounded-rect.mjs +2 -0
- package/esm2022/domain/intersections/rounded-rect/index.mjs +3 -0
- package/esm2022/domain/intersections/rounded-rect/rounded-rect.mjs +45 -0
- package/esm2022/domain/is-connection-under-node/index.mjs +2 -0
- package/esm2022/domain/is-connection-under-node/is-connection-under-node.execution.mjs +80 -0
- package/esm2022/domain/is-connection-under-node/is-connection-under-node.request.mjs +3 -0
- package/esm2022/domain/is-element-with-class.mjs +8 -0
- package/esm2022/domain/providers.mjs +33 -27
- package/esm2022/domain/redraw-connections/index.mjs +2 -2
- package/esm2022/domain/redraw-connections/redraw-connections.execution.mjs +60 -0
- package/esm2022/domain/select/index.mjs +2 -2
- package/esm2022/domain/select/select.execution.mjs +44 -0
- package/esm2022/domain/select-all/index.mjs +2 -2
- package/esm2022/domain/select-all/select-all.execution.mjs +38 -0
- package/esm2022/domain/select-and-update-node-layer/index.mjs +3 -0
- package/esm2022/domain/select-and-update-node-layer/select-and-update-node-layer.execution.mjs +37 -0
- package/esm2022/domain/select-and-update-node-layer/select-and-update-node-layer.request.mjs +6 -0
- package/esm2022/domain/update-item-layer/index.mjs +2 -2
- package/esm2022/domain/update-item-layer/update-item-layer.execution.mjs +29 -0
- package/esm2022/errors/create-error-class.mjs +1 -2
- package/esm2022/f-backgroud/f-background-base.mjs +4 -4
- package/esm2022/f-backgroud/f-background.component.mjs +5 -5
- package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +4 -4
- package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +4 -4
- package/esm2022/f-backgroud/index.mjs +2 -1
- package/esm2022/f-backgroud/providers.mjs +9 -0
- package/esm2022/f-canvas/f-canvas-base.mjs +8 -6
- package/esm2022/f-canvas/f-canvas.component.mjs +5 -5
- package/esm2022/f-canvas/f-zoom/f-zoom.directive.mjs +4 -4
- package/esm2022/f-canvas/index.mjs +2 -1
- package/esm2022/f-canvas/providers.mjs +7 -0
- package/esm2022/f-connection/common/f-connection-base.mjs +25 -25
- package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +4 -4
- package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +11 -11
- package/esm2022/f-connection/common/f-connection-text/i-connection-text.mjs +1 -1
- package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +4 -4
- package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +7 -7
- package/esm2022/f-connection/common/f-gradient/i-connection-gradient.mjs +1 -1
- package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +4 -4
- package/esm2022/f-connection/common/f-selection/f-connection-selection.component.mjs +4 -4
- package/esm2022/f-connection/common/index.mjs +1 -3
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +13 -12
- package/esm2022/f-connection/f-connection-builder/f-connection-factory.mjs +4 -4
- package/esm2022/f-connection/f-connection-center/f-connection-center.directive.mjs +4 -4
- package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +12 -11
- package/esm2022/f-connection/f-marker/f-marker-base.mjs +4 -4
- package/esm2022/f-connection/f-marker/f-marker.directive.mjs +4 -4
- package/esm2022/f-connection/index.mjs +2 -1
- package/esm2022/f-connection/providers.mjs +18 -0
- package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +4 -4
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +4 -4
- package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +4 -4
- package/esm2022/f-connectors/index.mjs +2 -1
- package/esm2022/f-connectors/providers.mjs +9 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.mjs +26 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.mjs +36 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.mjs +43 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/canvas/index.mjs +3 -3
- package/esm2022/f-draggable/canvas/providers.mjs +5 -5
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.mjs +55 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.mjs +39 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.request.mjs +8 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/index.mjs +4 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/providers.mjs +5 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.mjs +60 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/index.mjs +4 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/providers.mjs +5 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.mjs +46 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.mjs +34 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +43 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +32 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/index.mjs +8 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/providers.mjs +13 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +11 -9
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.mjs +43 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.request.mjs +6 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.mjs +27 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/index.mjs +5 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/create-connection/index.mjs +4 -4
- package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.mjs +72 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.request.mjs +7 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.mjs +35 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/index.mjs +5 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/index.mjs +2 -2
- package/esm2022/f-draggable/connections/providers.mjs +10 -11
- package/esm2022/f-draggable/connections/reassign-connection/index.mjs +3 -3
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.mjs +50 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +59 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +42 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +10 -11
- package/esm2022/f-draggable/e-f-draggable-type.mjs +3 -1
- package/esm2022/f-draggable/external-item/external-item-finalize/external-item-finalize.execution.mjs +55 -0
- package/esm2022/f-draggable/external-item/external-item-finalize/external-item-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/external-item/external-item-finalize/external-item-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/external-item/external-item-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/external-item/external-item-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/external-item/external-item-preparation/external-item-preparation.execution.mjs +41 -0
- package/esm2022/f-draggable/external-item/external-item-preparation/external-item-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/external-item/external-item-preparation/external-item-preparation.validator.mjs +29 -0
- package/esm2022/f-draggable/external-item/external-item-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/external-item/external-item-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/external-item/index.mjs +3 -3
- package/esm2022/f-draggable/external-item/providers.mjs +5 -5
- package/esm2022/f-draggable/f-draggable-base.mjs +6 -7
- package/esm2022/f-draggable/f-draggable-data-context.mjs +4 -4
- package/esm2022/f-draggable/f-draggable.directive.mjs +31 -29
- package/esm2022/f-draggable/i-can-run-outside-angular.mjs +2 -0
- package/esm2022/f-draggable/index.mjs +4 -1
- package/esm2022/f-draggable/node/connection-source.drag-handler.mjs +8 -10
- package/esm2022/f-draggable/node/connection-target.drag-handler.mjs +8 -10
- package/esm2022/f-draggable/node/connection.drag-handler.mjs +8 -8
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +92 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.request.mjs +3 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/index.mjs +4 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/providers.mjs +5 -0
- package/esm2022/f-draggable/node/index.mjs +4 -4
- package/esm2022/f-draggable/node/node-move-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +51 -0
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/node/node-move-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/node/node-move-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +60 -0
- package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +41 -0
- package/esm2022/f-draggable/node/node-move-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/node/node.drag-handler.mjs +2 -2
- package/esm2022/f-draggable/node/providers.mjs +7 -7
- package/esm2022/f-draggable/node-resize/index.mjs +5 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.mjs +26 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.mjs +52 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.mjs +41 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/node-resize/node-resize.drag-handler.mjs +49 -0
- package/esm2022/f-draggable/node-resize/providers.mjs +7 -0
- package/esm2022/f-draggable/providers.mjs +17 -0
- package/esm2022/f-draggable/selection-area/index.mjs +3 -4
- package/esm2022/f-draggable/selection-area/providers.mjs +5 -7
- package/esm2022/f-draggable/selection-area/selection-area-finalize/index.mjs +5 -0
- package/esm2022/f-draggable/selection-area/selection-area-finalize/providers.mjs +7 -0
- package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.execution.mjs +26 -0
- package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.request.mjs +6 -0
- package/esm2022/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.validator.mjs +25 -0
- package/esm2022/f-draggable/selection-area/selection-area-preparation/index.mjs +5 -0
- package/esm2022/f-draggable/selection-area/selection-area-preparation/providers.mjs +7 -0
- package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.execution.mjs +38 -0
- package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.request.mjs +6 -0
- package/esm2022/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.validator.mjs +30 -0
- package/esm2022/f-draggable/selection-area/selection-area.drag-handle.mjs +5 -5
- package/esm2022/f-draggable/single-select/index.mjs +4 -2
- package/esm2022/f-draggable/single-select/providers.mjs +5 -3
- package/esm2022/f-draggable/single-select/single-select.execution.mjs +80 -0
- package/esm2022/f-draggable/single-select/single-select.request.mjs +6 -0
- package/esm2022/f-draggable/single-select/single-select.validator.mjs +24 -0
- package/esm2022/f-external-item/f-external-item-base.mjs +4 -4
- package/esm2022/f-external-item/f-external-item.directive.mjs +4 -4
- package/esm2022/f-external-item/f-external-item.service.mjs +4 -4
- package/esm2022/f-external-item/index.mjs +2 -1
- package/esm2022/f-external-item/providers.mjs +5 -0
- package/esm2022/f-flow/f-flow.component.mjs +9 -19
- package/esm2022/f-flow/index.mjs +2 -1
- package/esm2022/f-flow/providers.mjs +5 -0
- package/esm2022/f-flow.module.mjs +58 -107
- package/esm2022/f-line-alignment/domain/nearest-coordinate.mjs +14 -13
- package/esm2022/f-line-alignment/f-line-alignment-base.mjs +4 -4
- package/esm2022/f-line-alignment/f-line-alignment.component.mjs +12 -12
- package/esm2022/f-line-alignment/index.mjs +2 -1
- package/esm2022/f-line-alignment/providers.mjs +5 -0
- package/esm2022/f-node/f-drag-handle/f-drag-handle.directive.mjs +8 -26
- package/esm2022/f-node/f-drag-handle/index.mjs +1 -2
- package/esm2022/f-node/f-node-base.mjs +8 -4
- package/esm2022/f-node/f-node.directive.mjs +24 -7
- package/esm2022/f-node/f-resize-handle/e-f-resize-handle-type.mjs +8 -0
- package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +55 -0
- package/esm2022/f-node/f-resize-handle/index.mjs +3 -0
- package/esm2022/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +27 -0
- package/esm2022/f-node/f-rotate-handle/index.mjs +2 -0
- package/esm2022/f-node/index.mjs +4 -1
- package/esm2022/f-node/providers.mjs +10 -0
- package/esm2022/f-selection-area/f-selection-area-base.mjs +4 -4
- package/esm2022/f-selection-area/f-selection-area.component.mjs +4 -4
- package/esm2022/f-selection-area/index.mjs +2 -1
- package/esm2022/f-selection-area/providers.mjs +5 -0
- package/esm2022/f-storage/f-components-store.mjs +4 -5
- package/esm2022/infrastructure/f-mediator/f-execution-register.mjs +7 -0
- package/esm2022/infrastructure/f-mediator/f-flow-mediator.mjs +29 -0
- package/esm2022/infrastructure/f-mediator/f-validator-register.mjs +7 -0
- package/esm2022/infrastructure/f-mediator/index.mjs +4 -0
- package/esm2022/infrastructure/index.mjs +3 -0
- package/esm2022/infrastructure/pipeline/i-execution.mjs +2 -0
- package/esm2022/infrastructure/pipeline/i-validator.mjs +2 -0
- package/esm2022/infrastructure/pipeline/index.mjs +4 -0
- package/esm2022/infrastructure/pipeline/pipeline.mjs +19 -0
- package/esm2022/public-api.mjs +2 -3
- package/f-backgroud/index.d.ts +1 -0
- package/f-backgroud/providers.d.ts +4 -0
- package/f-canvas/f-canvas-base.d.ts +1 -0
- package/f-canvas/f-canvas.component.d.ts +1 -1
- package/f-canvas/index.d.ts +1 -0
- package/f-canvas/providers.d.ts +3 -0
- package/f-connection/common/f-connection-base.d.ts +8 -6
- package/f-connection/common/f-connection-text/f-connection-text.component.d.ts +2 -2
- package/f-connection/common/f-connection-text/i-connection-text.d.ts +2 -2
- package/f-connection/common/f-gradient/f-connection-gradient.component.d.ts +2 -2
- package/f-connection/common/f-gradient/i-connection-gradient.d.ts +2 -2
- package/f-connection/common/index.d.ts +0 -2
- package/f-connection/index.d.ts +1 -0
- package/f-connection/providers.d.ts +6 -0
- package/f-connectors/index.d.ts +1 -0
- package/f-connectors/providers.d.ts +4 -0
- package/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.d.ts +11 -0
- package/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.request.d.ts +5 -0
- package/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.d.ts +11 -0
- package/f-draggable/canvas/canvas-move-finalize/index.d.ts +4 -0
- package/f-draggable/canvas/canvas-move-finalize/providers.d.ts +3 -0
- package/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.d.ts +14 -0
- package/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.request.d.ts +5 -0
- package/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.d.ts +17 -0
- package/f-draggable/canvas/canvas-move-preparation/index.d.ts +4 -0
- package/f-draggable/canvas/canvas-move-preparation/providers.d.ts +3 -0
- package/f-draggable/canvas/index.d.ts +2 -2
- package/f-draggable/canvas/providers.d.ts +1 -3
- package/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.d.ts +21 -0
- package/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.request.d.ts +5 -0
- package/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.d.ts +11 -0
- package/f-draggable/connections/create-connection/create-connection-finalize/index.d.ts +4 -0
- package/f-draggable/connections/create-connection/create-connection-finalize/providers.d.ts +3 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.d.ts +16 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.request.d.ts +8 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/index.d.ts +3 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/providers.d.ts +2 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.d.ts +15 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.request.d.ts +5 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/index.d.ts +3 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/providers.d.ts +2 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.d.ts +15 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.request.d.ts +5 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.d.ts +14 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/index.d.ts +4 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/providers.d.ts +3 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.d.ts +16 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.request.d.ts +5 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.d.ts +15 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/index.d.ts +7 -0
- package/f-draggable/connections/create-connection/create-connection-preparation/providers.d.ts +3 -0
- package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +1 -1
- package/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.d.ts +16 -0
- package/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.request.d.ts +5 -0
- package/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.d.ts +12 -0
- package/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/index.d.ts +4 -0
- package/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/providers.d.ts +3 -0
- package/f-draggable/connections/create-connection/index.d.ts +3 -3
- package/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.d.ts +22 -0
- package/f-draggable/connections/{find-inputs-under-pointer/find-inputs-under-pointer.request.d.ts → get-input-under-pointer/get-input-under-pointer.request.d.ts} +1 -1
- package/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.d.ts +13 -0
- package/f-draggable/connections/get-input-under-pointer/index.d.ts +4 -0
- package/f-draggable/connections/get-input-under-pointer/providers.d.ts +3 -0
- package/f-draggable/connections/index.d.ts +1 -1
- package/f-draggable/connections/providers.d.ts +1 -4
- package/f-draggable/connections/reassign-connection/index.d.ts +2 -2
- package/f-draggable/connections/reassign-connection/reassign-connection-finalize/index.d.ts +4 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-finalize/providers.d.ts +3 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.d.ts +19 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.request.d.ts +5 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.d.ts +11 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.d.ts +4 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/providers.d.ts +3 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.d.ts +21 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.request.d.ts +5 -0
- package/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.d.ts +18 -0
- package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +1 -1
- package/f-draggable/e-f-draggable-type.d.ts +2 -0
- package/f-draggable/external-item/external-item-finalize/external-item-finalize.execution.d.ts +21 -0
- package/f-draggable/external-item/external-item-finalize/external-item-finalize.request.d.ts +5 -0
- package/f-draggable/external-item/external-item-finalize/external-item-finalize.validator.d.ts +11 -0
- package/f-draggable/external-item/external-item-finalize/index.d.ts +4 -0
- package/f-draggable/external-item/external-item-finalize/providers.d.ts +3 -0
- package/f-draggable/external-item/external-item-preparation/external-item-preparation.execution.d.ts +17 -0
- package/f-draggable/external-item/external-item-preparation/external-item-preparation.request.d.ts +5 -0
- package/f-draggable/external-item/external-item-preparation/external-item-preparation.validator.d.ts +12 -0
- package/f-draggable/external-item/external-item-preparation/index.d.ts +4 -0
- package/f-draggable/external-item/external-item-preparation/providers.d.ts +3 -0
- package/f-draggable/external-item/index.d.ts +2 -2
- package/f-draggable/external-item/providers.d.ts +1 -3
- package/f-draggable/f-draggable-base.d.ts +2 -3
- package/f-draggable/f-draggable.directive.d.ts +3 -4
- package/f-draggable/i-can-run-outside-angular.d.ts +3 -0
- package/f-draggable/index.d.ts +3 -0
- package/f-draggable/node/connection-source.drag-handler.d.ts +1 -1
- package/f-draggable/node/connection-target.drag-handler.d.ts +1 -1
- package/f-draggable/node/connection.drag-handler.d.ts +2 -2
- package/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.d.ts +27 -0
- package/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.request.d.ts +2 -0
- package/f-draggable/node/create-move-nodes-drag-model-from-selection/index.d.ts +3 -0
- package/f-draggable/node/create-move-nodes-drag-model-from-selection/providers.d.ts +2 -0
- package/f-draggable/node/index.d.ts +3 -3
- package/f-draggable/node/node-move-finalize/index.d.ts +4 -0
- package/f-draggable/node/node-move-finalize/node-move-finalize.execution.d.ts +17 -0
- package/f-draggable/node/node-move-finalize/node-move-finalize.request.d.ts +5 -0
- package/f-draggable/node/node-move-finalize/node-move-finalize.validator.d.ts +11 -0
- package/f-draggable/node/node-move-finalize/providers.d.ts +3 -0
- package/f-draggable/node/node-move-preparation/index.d.ts +4 -0
- package/f-draggable/node/node-move-preparation/node-move-preparation.execution.d.ts +21 -0
- package/f-draggable/node/node-move-preparation/node-move-preparation.request.d.ts +5 -0
- package/f-draggable/node/node-move-preparation/node-move-preparation.validator.d.ts +17 -0
- package/f-draggable/node/node-move-preparation/providers.d.ts +3 -0
- package/f-draggable/node/providers.d.ts +1 -4
- package/f-draggable/node-resize/index.d.ts +4 -0
- package/f-draggable/node-resize/node-resize-finalize/index.d.ts +4 -0
- package/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.d.ts +11 -0
- package/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.request.d.ts +5 -0
- package/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.d.ts +11 -0
- package/f-draggable/node-resize/node-resize-finalize/providers.d.ts +3 -0
- package/f-draggable/node-resize/node-resize-preparation/index.d.ts +4 -0
- package/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.d.ts +18 -0
- package/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.request.d.ts +5 -0
- package/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.d.ts +17 -0
- package/f-draggable/node-resize/node-resize-preparation/providers.d.ts +3 -0
- package/f-draggable/node-resize/node-resize.drag-handler.d.ts +19 -0
- package/f-draggable/node-resize/providers.d.ts +1 -0
- package/f-draggable/providers.d.ts +1 -0
- package/f-draggable/selection-area/index.d.ts +2 -3
- package/f-draggable/selection-area/providers.d.ts +1 -4
- package/f-draggable/selection-area/selection-area-finalize/index.d.ts +4 -0
- package/f-draggable/selection-area/selection-area-finalize/providers.d.ts +3 -0
- package/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.execution.d.ts +11 -0
- package/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.request.d.ts +5 -0
- package/f-draggable/selection-area/selection-area-finalize/selection-area-finalize.validator.d.ts +11 -0
- package/f-draggable/selection-area/selection-area-preparation/index.d.ts +4 -0
- package/f-draggable/selection-area/selection-area-preparation/providers.d.ts +3 -0
- package/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.execution.d.ts +15 -0
- package/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.request.d.ts +5 -0
- package/f-draggable/selection-area/selection-area-preparation/selection-area-preparation.validator.d.ts +12 -0
- package/f-draggable/selection-area/selection-area.drag-handle.d.ts +3 -3
- package/f-draggable/single-select/index.d.ts +3 -1
- package/f-draggable/single-select/providers.d.ts +3 -2
- package/f-draggable/single-select/{single-select.on-pointer-down.d.ts → single-select.execution.d.ts} +7 -7
- package/f-draggable/single-select/single-select.request.d.ts +5 -0
- package/f-draggable/single-select/single-select.validator.d.ts +11 -0
- package/f-external-item/index.d.ts +1 -0
- package/f-external-item/providers.d.ts +2 -0
- package/f-flow/f-flow.component.d.ts +1 -1
- package/f-flow/index.d.ts +1 -0
- package/f-flow/providers.d.ts +2 -0
- package/f-flow.module.d.ts +26 -26
- package/f-line-alignment/domain/nearest-coordinate.d.ts +3 -1
- package/f-line-alignment/f-line-alignment.component.d.ts +3 -2
- package/f-line-alignment/index.d.ts +1 -0
- package/f-line-alignment/providers.d.ts +2 -0
- package/f-node/f-drag-handle/f-drag-handle.directive.d.ts +4 -9
- package/f-node/f-drag-handle/index.d.ts +0 -1
- package/f-node/f-node-base.d.ts +6 -2
- package/f-node/f-node.directive.d.ts +6 -2
- package/f-node/f-resize-handle/e-f-resize-handle-type.d.ts +6 -0
- package/f-node/f-resize-handle/f-resize-handle.directive.d.ts +19 -0
- package/f-node/f-resize-handle/index.d.ts +2 -0
- package/f-node/f-rotate-handle/f-rotate-handle.directive.d.ts +9 -0
- package/f-node/f-rotate-handle/index.d.ts +1 -0
- package/f-node/index.d.ts +3 -0
- package/f-node/providers.d.ts +4 -0
- package/f-selection-area/index.d.ts +1 -0
- package/f-selection-area/providers.d.ts +2 -0
- package/f-storage/f-components-store.d.ts +0 -2
- package/fesm2022/foblex-flow.mjs +3934 -2802
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/infrastructure/f-mediator/f-execution-register.d.ts +5 -0
- package/{f-mediator → infrastructure/f-mediator}/f-flow-mediator.d.ts +3 -3
- package/infrastructure/f-mediator/f-validator-register.d.ts +5 -0
- package/infrastructure/f-mediator/index.d.ts +3 -0
- package/infrastructure/index.d.ts +2 -0
- package/infrastructure/pipeline/i-execution.d.ts +3 -0
- package/infrastructure/pipeline/i-validator.d.ts +3 -0
- package/infrastructure/pipeline/index.d.ts +3 -0
- package/infrastructure/pipeline/pipeline.d.ts +11 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -2
- package/domain/get-connection-vector/get-connection-vector.handler.d.ts +0 -12
- package/domain/get-connection-vector/get-connection-vector.request.d.ts +0 -11
- package/domain/get-connection-vector/index.d.ts +0 -2
- package/domain/get-nodes-rect/get-nodes-rect.handler.d.ts +0 -11
- package/domain/update-item-layer/update-item-layer.handler.d.ts +0 -8
- package/esm2022/domain/clear-selection/clear-selection.handler.mjs +0 -28
- package/esm2022/domain/create-connection-markers/create-connection-markers.handler.mjs +0 -49
- package/esm2022/domain/get-connection-vector/get-connection-vector.handler.mjs +0 -79
- package/esm2022/domain/get-connection-vector/get-connection-vector.request.mjs +0 -10
- package/esm2022/domain/get-connection-vector/index.mjs +0 -3
- package/esm2022/domain/get-element-rect-in-flow/get-element-rect-in-flow.handler.mjs +0 -34
- package/esm2022/domain/get-input-rect-in-flow/get-input-rect-in-flow.handler.mjs +0 -34
- package/esm2022/domain/get-nodes-rect/get-nodes-rect.handler.mjs +0 -30
- package/esm2022/domain/get-output-rect-in-flow/get-output-rect-in-flow.handler.mjs +0 -37
- package/esm2022/domain/get-position-in-flow/get-position-in-flow.handler.mjs +0 -32
- package/esm2022/domain/get-selection/get-selection.handler.mjs +0 -35
- package/esm2022/domain/redraw-connections/redraw-connections.handler.mjs +0 -60
- package/esm2022/domain/select/select.handler.mjs +0 -44
- package/esm2022/domain/select-all/select-all.handler.mjs +0 -38
- package/esm2022/domain/update-item-layer/update-item-layer.handler.mjs +0 -29
- package/esm2022/f-connection/common/cast-to-connection-behavior.mjs +0 -9
- package/esm2022/f-connection/common/cast-to-connection-type.mjs +0 -9
- package/esm2022/f-draggable/canvas/canvas.on-pointer-up.mjs +0 -23
- package/esm2022/f-draggable/canvas/canvas.prepare-drag-sequence.mjs +0 -37
- package/esm2022/f-draggable/connections/create-connection/create-connection.on-pointer-up.mjs +0 -48
- package/esm2022/f-draggable/connections/create-connection/create-connection.prepare-drag-sequence.mjs +0 -85
- package/esm2022/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +0 -34
- package/esm2022/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +0 -2
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +0 -54
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +0 -7
- package/esm2022/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 -34
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +0 -2
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/index.mjs +0 -4
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.on-pointer-up.mjs +0 -36
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.prepare-drag-sequence.mjs +0 -53
- package/esm2022/f-draggable/external-item/external-item.on-pointer-up.mjs +0 -45
- package/esm2022/f-draggable/external-item/external-item.prepare-drag-sequence.mjs +0 -44
- package/esm2022/f-draggable/node/domain/is-connection-under-node/index.mjs +0 -2
- package/esm2022/f-draggable/node/domain/is-connection-under-node/is-connection-under-node.handler.mjs +0 -73
- package/esm2022/f-draggable/node/node.on-pointer-up.mjs +0 -41
- package/esm2022/f-draggable/node/node.prepare-drag-sequence.mjs +0 -101
- package/esm2022/f-draggable/selection-area/get-can-be-selected-items/get-can-be-selected-items.handler.mjs +0 -55
- package/esm2022/f-draggable/selection-area/get-can-be-selected-items/i-selectable-with-rect.mjs +0 -2
- package/esm2022/f-draggable/selection-area/get-can-be-selected-items/index.mjs +0 -3
- package/esm2022/f-draggable/selection-area/selection-area.on-pointer-up.mjs +0 -23
- package/esm2022/f-draggable/selection-area/selection-area.prepare-drag-sequence.mjs +0 -32
- package/esm2022/f-draggable/single-select/single-select.on-pointer-down.mjs +0 -75
- package/esm2022/f-group/f-group-base.mjs +0 -6
- package/esm2022/f-group/f-group.directive.mjs +0 -110
- package/esm2022/f-group/index.mjs +0 -4
- package/esm2022/f-group/is-group.mjs +0 -4
- package/esm2022/f-mediator/f-flow-mediator.mjs +0 -24
- package/esm2022/f-mediator/f-handler-register.mjs +0 -7
- package/esm2022/f-mediator/index.mjs +0 -3
- package/esm2022/f-node/f-drag-handle/is-drag-handle.mjs +0 -20
- package/f-connection/common/cast-to-connection-behavior.d.ts +0 -2
- package/f-connection/common/cast-to-connection-type.d.ts +0 -2
- package/f-draggable/canvas/canvas.on-pointer-up.d.ts +0 -10
- package/f-draggable/canvas/canvas.prepare-drag-sequence.d.ts +0 -13
- package/f-draggable/connections/create-connection/create-connection.on-pointer-up.d.ts +0 -16
- package/f-draggable/connections/create-connection/create-connection.prepare-drag-sequence.d.ts +0 -20
- package/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 -13
- package/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.d.ts +0 -1
- package/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +0 -18
- package/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 -13
- package/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.d.ts +0 -1
- package/f-draggable/connections/find-inputs-under-pointer/index.d.ts +0 -3
- package/f-draggable/connections/reassign-connection/reassign-connection.on-pointer-up.d.ts +0 -15
- package/f-draggable/connections/reassign-connection/reassign-connection.prepare-drag-sequence.d.ts +0 -18
- package/f-draggable/external-item/external-item.on-pointer-up.d.ts +0 -16
- package/f-draggable/external-item/external-item.prepare-drag-sequence.d.ts +0 -16
- package/f-draggable/node/domain/is-connection-under-node/index.d.ts +0 -1
- package/f-draggable/node/node.on-pointer-up.d.ts +0 -15
- package/f-draggable/node/node.prepare-drag-sequence.d.ts +0 -22
- package/f-draggable/selection-area/get-can-be-selected-items/index.d.ts +0 -2
- package/f-draggable/selection-area/selection-area.on-pointer-up.d.ts +0 -10
- package/f-draggable/selection-area/selection-area.prepare-drag-sequence.d.ts +0 -15
- package/f-group/f-group-base.d.ts +0 -6
- package/f-group/f-group.directive.d.ts +0 -31
- package/f-group/index.d.ts +0 -3
- package/f-group/is-group.d.ts +0 -1
- package/f-mediator/f-handler-register.d.ts +0 -5
- package/f-mediator/index.d.ts +0 -2
- package/f-node/f-drag-handle/is-drag-handle.d.ts +0 -1
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CanvasMovePreparationExecution } from './canvas-move-preparation.execution';
|
|
2
|
+
import { CanvasMovePreparationValidator } from './canvas-move-preparation.validator';
|
|
3
|
+
export declare const CANVAS_MOVE_PREPARATION_PROVIDERS: (typeof CanvasMovePreparationExecution | typeof CanvasMovePreparationValidator)[];
|
|
@@ -1,3 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { CanvasPrepareDragSequence } from './canvas.prepare-drag-sequence';
|
|
3
|
-
export declare const CANVAS_PROVIDERS: (typeof CanvasOnPointerUp | typeof CanvasPrepareDragSequence)[];
|
|
1
|
+
export declare const CANVAS_PROVIDERS: (typeof import("./canvas-move-finalize").CanvasMoveFinalizeExecution | typeof import("./canvas-move-finalize").CanvasMoveFinalizeValidator | typeof import("./canvas-move-preparation").CanvasMovePreparationExecution | typeof import("./canvas-move-preparation").CanvasMovePreparationValidator)[];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
3
|
+
import { CreateConnectionFinalizeRequest } from './create-connection-finalize.request';
|
|
4
|
+
import { FFlowMediator } from '../../../../infrastructure';
|
|
5
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CreateConnectionFinalizeExecution implements IHandler<CreateConnectionFinalizeRequest, void> {
|
|
8
|
+
private fComponentsStore;
|
|
9
|
+
private fDraggableDataContext;
|
|
10
|
+
private fMediator;
|
|
11
|
+
private get dragHandler();
|
|
12
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext, fMediator: FFlowMediator);
|
|
13
|
+
handle(request: CreateConnectionFinalizeRequest): void;
|
|
14
|
+
private getTargetOutput;
|
|
15
|
+
private getOutput;
|
|
16
|
+
private getOutlet;
|
|
17
|
+
private emitEvent;
|
|
18
|
+
private getInputUnderPointer;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionFinalizeExecution, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionFinalizeExecution>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { CreateConnectionFinalizeRequest } from './create-connection-finalize.request';
|
|
2
|
+
import { IValidator } from '../../../../infrastructure';
|
|
3
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CreateConnectionFinalizeValidator implements IValidator<CreateConnectionFinalizeRequest> {
|
|
6
|
+
private fDraggableDataContext;
|
|
7
|
+
constructor(fDraggableDataContext: FDraggableDataContext);
|
|
8
|
+
handle(request: CreateConnectionFinalizeRequest): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionFinalizeValidator, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionFinalizeValidator>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateConnectionFinalizeExecution } from './create-connection-finalize.execution';
|
|
2
|
+
import { CreateConnectionFinalizeValidator } from './create-connection-finalize.validator';
|
|
3
|
+
export declare const CREATE_CONNECTION_FINALIZE_PROVIDERS: (typeof CreateConnectionFinalizeExecution | typeof CreateConnectionFinalizeValidator)[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { CreateConnectionDragHandlerRequest } from './create-connection-drag-handler.request';
|
|
3
|
+
import { FComponentsStore } from '../../../../../f-storage';
|
|
4
|
+
import { FFlowMediator } from '../../../../../infrastructure';
|
|
5
|
+
import { FDraggableDataContext } from '../../../../f-draggable-data-context';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class CreateConnectionDragHandlerExecution implements IHandler<CreateConnectionDragHandlerRequest, void> {
|
|
8
|
+
private fComponentsStore;
|
|
9
|
+
private fDraggableDataContext;
|
|
10
|
+
private fMediator;
|
|
11
|
+
private get transform();
|
|
12
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext, fMediator: FFlowMediator);
|
|
13
|
+
handle(request: CreateConnectionDragHandlerRequest): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionDragHandlerExecution, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionDragHandlerExecution>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IPoint } from '@foblex/core';
|
|
2
|
+
import { FConnectorBase } from '../../../../../f-connectors';
|
|
3
|
+
export declare class CreateConnectionDragHandlerRequest {
|
|
4
|
+
position: IPoint;
|
|
5
|
+
connector: FConnectorBase;
|
|
6
|
+
connectorCenter: IPoint;
|
|
7
|
+
constructor(position: IPoint, connector: FConnectorBase, connectorCenter: IPoint);
|
|
8
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { CreateConnectionFromOutletPreparationRequest } from './create-connection-from-outlet-preparation.request';
|
|
3
|
+
import { FComponentsStore } from '../../../../../f-storage';
|
|
4
|
+
import { FFlowMediator } from '../../../../../infrastructure';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CreateConnectionFromOutletPreparationExecution implements IHandler<CreateConnectionFromOutletPreparationRequest, void> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fMediator;
|
|
9
|
+
private get flowHost();
|
|
10
|
+
constructor(fComponentsStore: FComponentsStore, fMediator: FFlowMediator);
|
|
11
|
+
handle(request: CreateConnectionFromOutletPreparationRequest): void;
|
|
12
|
+
private createDragHandler;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionFromOutletPreparationExecution, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionFromOutletPreparationExecution>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { CreateConnectionFromOutputPreparationRequest } from './create-connection-from-output-preparation.request';
|
|
3
|
+
import { FComponentsStore } from '../../../../../f-storage';
|
|
4
|
+
import { FFlowMediator } from '../../../../../infrastructure';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CreateConnectionFromOutputPreparationExecution implements IHandler<CreateConnectionFromOutputPreparationRequest, void> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fMediator;
|
|
9
|
+
private get flowHost();
|
|
10
|
+
constructor(fComponentsStore: FComponentsStore, fMediator: FFlowMediator);
|
|
11
|
+
handle(request: CreateConnectionFromOutputPreparationRequest): void;
|
|
12
|
+
private createDragHandler;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionFromOutputPreparationExecution, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionFromOutputPreparationExecution>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { CreateConnectionFromOutputPreparationRequest } from './create-connection-from-output-preparation.request';
|
|
2
|
+
import { IValidator } from '../../../../../infrastructure';
|
|
3
|
+
import { FComponentsStore } from '../../../../../f-storage';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class CreateConnectionFromOutputPreparationValidator implements IValidator<CreateConnectionFromOutputPreparationRequest> {
|
|
6
|
+
private fComponentsStore;
|
|
7
|
+
constructor(fComponentsStore: FComponentsStore);
|
|
8
|
+
handle(request: CreateConnectionFromOutputPreparationRequest): boolean;
|
|
9
|
+
private getNode;
|
|
10
|
+
private isNodeOutput;
|
|
11
|
+
private getOutlets;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionFromOutputPreparationValidator, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionFromOutputPreparationValidator>;
|
|
14
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateConnectionFromOutputPreparationExecution } from './create-connection-from-output-preparation.execution';
|
|
2
|
+
import { CreateConnectionFromOutputPreparationValidator } from './create-connection-from-output-preparation.validator';
|
|
3
|
+
export declare const CREATE_CONNECTION_FROM_OUTPUT_PREPARATION_PROVIDERS: (typeof CreateConnectionFromOutputPreparationExecution | typeof CreateConnectionFromOutputPreparationValidator)[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
3
|
+
import { CreateConnectionPreparationRequest } from './create-connection-preparation.request';
|
|
4
|
+
import { FFlowMediator } from '../../../../infrastructure';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CreateConnectionPreparationExecution implements IHandler<CreateConnectionPreparationRequest, void> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fMediator;
|
|
9
|
+
constructor(fComponentsStore: FComponentsStore, fMediator: FFlowMediator);
|
|
10
|
+
handle(request: CreateConnectionPreparationRequest): void;
|
|
11
|
+
private getNode;
|
|
12
|
+
private isNodeOutput;
|
|
13
|
+
private getOutlets;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionPreparationExecution, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionPreparationExecution>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { CreateConnectionPreparationRequest } from './create-connection-preparation.request';
|
|
2
|
+
import { IValidator } from '../../../../infrastructure';
|
|
3
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
4
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class CreateConnectionPreparationValidator implements IValidator<CreateConnectionPreparationRequest> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fDraggableDataContext;
|
|
9
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext);
|
|
10
|
+
handle(request: CreateConnectionPreparationRequest): boolean;
|
|
11
|
+
private getNode;
|
|
12
|
+
private isValidConditions;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CreateConnectionPreparationValidator, never>;
|
|
14
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CreateConnectionPreparationValidator>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export * from './create-connection-drag-handler';
|
|
2
|
+
export * from './create-connection-from-outlet-preparation';
|
|
3
|
+
export * from './create-connection-from-output-preparation';
|
|
4
|
+
export * from './create-connection-preparation.execution';
|
|
5
|
+
export * from './create-connection-preparation.request';
|
|
6
|
+
export * from './create-connection-preparation.validator';
|
|
7
|
+
export * from './providers';
|
package/f-draggable/connections/create-connection/create-connection-preparation/providers.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { CreateConnectionPreparationExecution } from './create-connection-preparation.execution';
|
|
2
|
+
import { CreateConnectionPreparationValidator } from './create-connection-preparation.validator';
|
|
3
|
+
export declare const CREATE_CONNECTION_PREPARATION_PROVIDERS: (typeof import("./create-connection-drag-handler").CreateConnectionDragHandlerExecution | typeof import("./create-connection-from-outlet-preparation").CreateConnectionFromOutletPreparationExecution | typeof import("./create-connection-from-output-preparation").CreateConnectionFromOutputPreparationExecution | typeof import("./create-connection-from-output-preparation").CreateConnectionFromOutputPreparationValidator | typeof CreateConnectionPreparationExecution | typeof CreateConnectionPreparationValidator)[];
|
|
@@ -2,7 +2,7 @@ import { IPoint } from '@foblex/core';
|
|
|
2
2
|
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
3
|
import { EFDraggableType } from '../../e-f-draggable-type';
|
|
4
4
|
import { FConnectionBase } from '../../../f-connection';
|
|
5
|
-
import { FFlowMediator } from '../../../
|
|
5
|
+
import { FFlowMediator } from '../../../infrastructure';
|
|
6
6
|
export declare class CreateConnectionDragHandler implements IDraggableItem {
|
|
7
7
|
private fMediator;
|
|
8
8
|
connection: FConnectionBase;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
3
|
+
import { FConnectorBase } from '../../../../f-connectors';
|
|
4
|
+
import { GetCanBeConnectedOutputByOutletRequest } from './get-can-be-connected-output-by-outlet.request';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GetCanBeConnectedOutputByOutletExecution implements IHandler<GetCanBeConnectedOutputByOutletRequest, FConnectorBase | undefined> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private get fNodes();
|
|
9
|
+
private get fOutputs();
|
|
10
|
+
constructor(fComponentsStore: FComponentsStore);
|
|
11
|
+
handle(request: GetCanBeConnectedOutputByOutletRequest): FConnectorBase | undefined;
|
|
12
|
+
private getConnectableOutputs;
|
|
13
|
+
private getNode;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetCanBeConnectedOutputByOutletExecution, never>;
|
|
15
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GetCanBeConnectedOutputByOutletExecution>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { GetCanBeConnectedOutputByOutletRequest } from './get-can-be-connected-output-by-outlet.request';
|
|
2
|
+
import { IValidator } from '../../../../infrastructure';
|
|
3
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GetCanBeConnectedOutputByOutletValidator implements IValidator<GetCanBeConnectedOutputByOutletRequest> {
|
|
6
|
+
private fComponentsStore;
|
|
7
|
+
private get fNodes();
|
|
8
|
+
constructor(fComponentsStore: FComponentsStore);
|
|
9
|
+
handle(request: GetCanBeConnectedOutputByOutletRequest): boolean;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetCanBeConnectedOutputByOutletValidator, never>;
|
|
11
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GetCanBeConnectedOutputByOutletValidator>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { GetCanBeConnectedOutputByOutletExecution } from './get-can-be-connected-output-by-outlet.execution';
|
|
2
|
+
import { GetCanBeConnectedOutputByOutletValidator } from './get-can-be-connected-output-by-outlet.validator';
|
|
3
|
+
export declare const GET_CAN_BE_CONNECTED_OUTPUT_BY_OUTLET_PROVIDERS: (typeof GetCanBeConnectedOutputByOutletExecution | typeof GetCanBeConnectedOutputByOutletValidator)[];
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export * from './
|
|
1
|
+
export * from './create-connection-finalize';
|
|
2
|
+
export * from './create-connection-preparation';
|
|
3
|
+
export * from './get-can-be-connected-output-by-outlet';
|
|
2
4
|
export * from './create-connection.drag-handler';
|
|
3
5
|
export * from './f-create-connection.event';
|
|
4
|
-
export * from './create-connection.on-pointer-up';
|
|
5
|
-
export * from './create-connection.prepare-drag-sequence';
|
package/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { GetInputUnderPointerRequest } from './get-input-under-pointer.request';
|
|
2
|
+
import { FComponentsStore } from '../../../f-storage';
|
|
3
|
+
import { FConnectorBase } from '../../../f-connectors';
|
|
4
|
+
import { IExecution } from '../../../infrastructure';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class GetInputUnderPointerExecution implements IExecution<GetInputUnderPointerRequest, FConnectorBase | undefined> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private get fNodes();
|
|
9
|
+
private get fInputs();
|
|
10
|
+
constructor(fComponentsStore: FComponentsStore);
|
|
11
|
+
handle(payload: GetInputUnderPointerRequest): FConnectorBase | undefined;
|
|
12
|
+
private getOutput;
|
|
13
|
+
private getOutlet;
|
|
14
|
+
private getInputsUnderPointer;
|
|
15
|
+
private getInputsInPosition;
|
|
16
|
+
private getElementsFromPoint;
|
|
17
|
+
private getFirstConnectableInputOfNodeInPosition;
|
|
18
|
+
private getNodesInPosition;
|
|
19
|
+
private filterSelfConnectable;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetInputUnderPointerExecution, never>;
|
|
21
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GetInputUnderPointerExecution>;
|
|
22
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { IPointerEvent } from '@foblex/core';
|
|
2
2
|
import { CreateConnectionDragHandler } from '../create-connection';
|
|
3
3
|
import { ReassignConnectionDragHandler } from '../reassign-connection';
|
|
4
|
-
export declare class
|
|
4
|
+
export declare class GetInputUnderPointerRequest {
|
|
5
5
|
event: IPointerEvent;
|
|
6
6
|
dragHandler: CreateConnectionDragHandler | ReassignConnectionDragHandler;
|
|
7
7
|
constructor(event: IPointerEvent, dragHandler: CreateConnectionDragHandler | ReassignConnectionDragHandler);
|
package/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { GetInputUnderPointerRequest } from './get-input-under-pointer.request';
|
|
2
|
+
import { IValidator } from '../../../infrastructure';
|
|
3
|
+
import { FComponentsStore } from '../../../f-storage';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class GetInputUnderPointerValidator implements IValidator<GetInputUnderPointerRequest> {
|
|
6
|
+
private fComponentsStore;
|
|
7
|
+
constructor(fComponentsStore: FComponentsStore);
|
|
8
|
+
handle(request: GetInputUnderPointerRequest): boolean;
|
|
9
|
+
private getOutput;
|
|
10
|
+
private getOutlet;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<GetInputUnderPointerValidator, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<GetInputUnderPointerValidator>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { GetInputUnderPointerExecution } from './get-input-under-pointer.execution';
|
|
2
|
+
import { GetInputUnderPointerValidator } from './get-input-under-pointer.validator';
|
|
3
|
+
export declare const GET_INPUT_UNDER_POINTER_PROVIDERS: (typeof GetInputUnderPointerExecution | typeof GetInputUnderPointerValidator)[];
|
|
@@ -1,4 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { FindInputsUnderPointerHandler, FirstNotConnectedInputOfNodeUnderPointerHandler } from './find-inputs-under-pointer';
|
|
3
|
-
import { ReassignConnectionOnPointerUp, ReassignConnectionPrepareDragSequence } from './reassign-connection';
|
|
4
|
-
export declare const CONNECTIONS_PROVIDERS: (typeof FindFirstCanBeConnectedOutputByOutletHandler | typeof FirstNotConnectedInputOfNodeUnderPointerHandler | typeof ReassignConnectionOnPointerUp | typeof ReassignConnectionPrepareDragSequence | typeof FindInputsUnderPointerHandler | typeof CreateConnectionOnPointerUp | typeof CreateConnectionPrepareDragSequence)[];
|
|
1
|
+
export declare const CONNECTIONS_PROVIDERS: (typeof import("./reassign-connection").ReassignConnectionFinalizeExecution | typeof import("./reassign-connection").ReassignConnectionFinalizeValidator | typeof import("./reassign-connection").ReassignConnectionPreparationExecution | typeof import("./reassign-connection").ReassignConnectionPreparationValidator | typeof import("./get-input-under-pointer").GetInputUnderPointerExecution | typeof import("./get-input-under-pointer").GetInputUnderPointerValidator | typeof import("./create-connection").GetCanBeConnectedOutputByOutletExecution | typeof import("./create-connection").GetCanBeConnectedOutputByOutletValidator | typeof import("./create-connection").CreateConnectionFinalizeExecution | typeof import("./create-connection").CreateConnectionFinalizeValidator | typeof import("./create-connection").CreateConnectionDragHandlerExecution | typeof import("./create-connection").CreateConnectionFromOutletPreparationExecution | typeof import("./create-connection").CreateConnectionFromOutputPreparationExecution | typeof import("./create-connection").CreateConnectionFromOutputPreparationValidator | typeof import("./create-connection").CreateConnectionPreparationExecution | typeof import("./create-connection").CreateConnectionPreparationValidator)[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
+
export * from './reassign-connection-finalize';
|
|
2
|
+
export * from './reassign-connection-preparation';
|
|
1
3
|
export * from './reassign-connection.drag-handler';
|
|
2
4
|
export * from './f-reassign-connection.event';
|
|
3
|
-
export * from './reassign-connection.on-pointer-up';
|
|
4
|
-
export * from './reassign-connection.prepare-drag-sequence';
|
package/f-draggable/connections/reassign-connection/reassign-connection-finalize/providers.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ReassignConnectionFinalizeExecution } from './reassign-connection-finalize.execution';
|
|
2
|
+
import { ReassignConnectionFinalizeValidator } from './reassign-connection-finalize.validator';
|
|
3
|
+
export declare const REASSIGN_CONNECTION_FINALIZE_PROVIDERS: (typeof ReassignConnectionFinalizeExecution | typeof ReassignConnectionFinalizeValidator)[];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ReassignConnectionFinalizeRequest } from './reassign-connection-finalize.request';
|
|
2
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
3
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
4
|
+
import { FFlowMediator, IExecution } from '../../../../infrastructure';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ReassignConnectionFinalizeExecution implements IExecution<ReassignConnectionFinalizeRequest, void> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fDraggableDataContext;
|
|
9
|
+
private fMediator;
|
|
10
|
+
private get fDraggable();
|
|
11
|
+
private get dragHandler();
|
|
12
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext, fMediator: FFlowMediator);
|
|
13
|
+
handle(request: ReassignConnectionFinalizeRequest): void;
|
|
14
|
+
private emitEvent;
|
|
15
|
+
private getInputUnderPointer;
|
|
16
|
+
private isReassignToDifferentInput;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReassignConnectionFinalizeExecution, never>;
|
|
18
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReassignConnectionFinalizeExecution>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReassignConnectionFinalizeRequest } from './reassign-connection-finalize.request';
|
|
2
|
+
import { IValidator } from '../../../../infrastructure';
|
|
3
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ReassignConnectionFinalizeValidator implements IValidator<ReassignConnectionFinalizeRequest> {
|
|
6
|
+
private fDraggableDataContext;
|
|
7
|
+
constructor(fDraggableDataContext: FDraggableDataContext);
|
|
8
|
+
handle(request: ReassignConnectionFinalizeRequest): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReassignConnectionFinalizeValidator, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReassignConnectionFinalizeValidator>;
|
|
11
|
+
}
|
package/f-draggable/connections/reassign-connection/reassign-connection-preparation/providers.d.ts
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ReassignConnectionPreparationExecution } from './reassign-connection-preparation.execution';
|
|
2
|
+
import { ReassignConnectionPreparationValidator } from './reassign-connection-preparation.validator';
|
|
3
|
+
export declare const REASSIGN_CONNECTION_PREPARATION_PROVIDERS: (typeof ReassignConnectionPreparationExecution | typeof ReassignConnectionPreparationValidator)[];
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ReassignConnectionPreparationRequest } from './reassign-connection-preparation.request';
|
|
2
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
3
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
4
|
+
import { FFlowMediator, IExecution } from '../../../../infrastructure';
|
|
5
|
+
import { FConnectionBase } from '../../../../f-connection';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ReassignConnectionPreparationExecution implements IExecution<ReassignConnectionPreparationRequest, void> {
|
|
8
|
+
private fComponentsStore;
|
|
9
|
+
private fDraggableDataContext;
|
|
10
|
+
private fMediator;
|
|
11
|
+
private get transform();
|
|
12
|
+
private get flowHost();
|
|
13
|
+
private get fConnections();
|
|
14
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext, fMediator: FFlowMediator);
|
|
15
|
+
handle(request: ReassignConnectionPreparationRequest): void;
|
|
16
|
+
private getDragHandleElement;
|
|
17
|
+
private getElementsFromPoint;
|
|
18
|
+
getConnectionHandler(element: HTMLElement | SVGElement): FConnectionBase | undefined;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReassignConnectionPreparationExecution, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReassignConnectionPreparationExecution>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ReassignConnectionPreparationRequest } from './reassign-connection-preparation.request';
|
|
2
|
+
import { IValidator } from '../../../../infrastructure';
|
|
3
|
+
import { FDraggableDataContext } from '../../../f-draggable-data-context';
|
|
4
|
+
import { FConnectionBase } from '../../../../f-connection';
|
|
5
|
+
import { FComponentsStore } from '../../../../f-storage';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class ReassignConnectionPreparationValidator implements IValidator<ReassignConnectionPreparationRequest> {
|
|
8
|
+
private fComponentsStore;
|
|
9
|
+
private fDraggableDataContext;
|
|
10
|
+
private get fConnections();
|
|
11
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext);
|
|
12
|
+
handle(request: ReassignConnectionPreparationRequest): boolean;
|
|
13
|
+
private getDragHandleElements;
|
|
14
|
+
private getElementsFromPoint;
|
|
15
|
+
getConnectionHandler(element: HTMLElement | SVGElement): FConnectionBase | undefined;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ReassignConnectionPreparationValidator, never>;
|
|
17
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ReassignConnectionPreparationValidator>;
|
|
18
|
+
}
|
|
@@ -2,7 +2,7 @@ import { IPoint } from '@foblex/core';
|
|
|
2
2
|
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
3
|
import { EFDraggableType } from '../../e-f-draggable-type';
|
|
4
4
|
import { FConnectionBase } from '../../../f-connection';
|
|
5
|
-
import { FFlowMediator } from '../../../
|
|
5
|
+
import { FFlowMediator } from '../../../infrastructure';
|
|
6
6
|
export declare class ReassignConnectionDragHandler implements IDraggableItem {
|
|
7
7
|
private fMediator;
|
|
8
8
|
connection: FConnectionBase;
|
package/f-draggable/external-item/external-item-finalize/external-item-finalize.execution.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ExternalItemFinalizeRequest } from './external-item-finalize.request';
|
|
2
|
+
import { FFlowMediator, IExecution } from '../../../infrastructure';
|
|
3
|
+
import { FComponentsStore } from '../../../f-storage';
|
|
4
|
+
import { FDraggableDataContext } from '../../f-draggable-data-context';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ExternalItemFinalizeExecution implements IExecution<ExternalItemFinalizeRequest, void> {
|
|
7
|
+
private fComponentsStore;
|
|
8
|
+
private fDraggableDataContext;
|
|
9
|
+
private fMediator;
|
|
10
|
+
private get flowHost();
|
|
11
|
+
private get fCreateNode();
|
|
12
|
+
private get dragHandler();
|
|
13
|
+
constructor(fComponentsStore: FComponentsStore, fDraggableDataContext: FDraggableDataContext, fMediator: FFlowMediator);
|
|
14
|
+
handle(request: ExternalItemFinalizeRequest): void;
|
|
15
|
+
private getExternalItemElementsFromPoint;
|
|
16
|
+
private emitEvent;
|
|
17
|
+
private isPointerInCanvasRect;
|
|
18
|
+
private getRectInCanvas;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalItemFinalizeExecution, never>;
|
|
20
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExternalItemFinalizeExecution>;
|
|
21
|
+
}
|
package/f-draggable/external-item/external-item-finalize/external-item-finalize.validator.d.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ExternalItemFinalizeRequest } from './external-item-finalize.request';
|
|
2
|
+
import { IValidator } from '../../../infrastructure';
|
|
3
|
+
import { FDraggableDataContext } from '../../f-draggable-data-context';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ExternalItemFinalizeValidator implements IValidator<ExternalItemFinalizeRequest> {
|
|
6
|
+
private fDraggableDataContext;
|
|
7
|
+
constructor(fDraggableDataContext: FDraggableDataContext);
|
|
8
|
+
handle(request: ExternalItemFinalizeRequest): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ExternalItemFinalizeValidator, never>;
|
|
10
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ExternalItemFinalizeValidator>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ExternalItemFinalizeExecution } from './external-item-finalize.execution';
|
|
2
|
+
import { ExternalItemFinalizeValidator } from './external-item-finalize.validator';
|
|
3
|
+
export declare const EXTERNAL_ITEM_FINALIZE_PROVIDERS: (typeof ExternalItemFinalizeExecution | typeof ExternalItemFinalizeValidator)[];
|