@foblex/flow 1.4.0 → 1.4.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/README.md +7 -3
- package/domain/get-connection-vector/get-connection-vector.request.d.ts +4 -4
- package/domain/get-incoming-connections.handler.d.ts +1 -1
- package/domain/get-input-rect-in-flow.handler.d.ts +5 -5
- package/domain/get-outgoing-connections.handler.d.ts +1 -1
- package/domain/get-output-rect-in-flow.handler.d.ts +5 -5
- package/domain/index.d.ts +0 -1
- package/domain/select-all.handler.d.ts +1 -1
- package/esm2022/domain/get-connection-vector/get-connection-vector.handler.mjs +8 -8
- package/esm2022/domain/get-connection-vector/get-connection-vector.request.mjs +1 -1
- package/esm2022/domain/get-incoming-connections.handler.mjs +2 -2
- package/esm2022/domain/get-input-rect-in-flow.handler.mjs +2 -2
- package/esm2022/domain/get-outgoing-connections.handler.mjs +2 -2
- package/esm2022/domain/get-output-rect-in-flow.handler.mjs +2 -2
- package/esm2022/domain/index.mjs +1 -2
- package/esm2022/domain/select-all.handler.mjs +2 -2
- package/esm2022/f-components-store.mjs +1 -1
- package/esm2022/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.mjs +7 -0
- package/esm2022/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.mjs +12 -0
- package/esm2022/f-connection/common/domain/calculate-center-between-points/index.mjs +3 -0
- package/esm2022/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.mjs +6 -0
- package/esm2022/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.mjs +36 -0
- package/esm2022/f-connection/common/domain/calculate-connection-center/index.mjs +3 -0
- package/esm2022/f-connection/common/domain/f-bezier.path-builder.mjs +22 -0
- package/esm2022/f-connection/common/domain/f-path-builder-base.mjs +3 -0
- package/esm2022/f-connection/common/domain/f-path-builder-selector.mjs +19 -0
- package/esm2022/f-connection/common/domain/f-segment.path-builder.mjs +142 -0
- package/esm2022/f-connection/common/domain/f-straight.path-builder.mjs +11 -0
- package/esm2022/f-connection/common/domain/i-f-path-builder-request.mjs +2 -0
- package/esm2022/f-connection/common/domain/i-f-path-builder-response.mjs +2 -0
- package/esm2022/f-connection/common/domain/index.mjs +10 -0
- package/esm2022/f-connection/common/f-connection-base.mjs +15 -6
- package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +3 -3
- package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +4 -4
- package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +4 -4
- 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 +2 -2
- package/esm2022/f-connection/common/i-has-connection-color.mjs +1 -1
- package/esm2022/f-connection/common/i-has-connection-from-to.mjs +1 -1
- package/esm2022/f-connection/common/i-has-connection-text.mjs +1 -1
- package/esm2022/f-connection/common/index.mjs +2 -2
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +30 -26
- package/esm2022/f-connection/f-connection-center/f-connection-center.directive.mjs +14 -0
- package/esm2022/f-connection/f-connection-center/index.mjs +2 -0
- package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +23 -21
- package/esm2022/f-connection/index.mjs +2 -1
- package/esm2022/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.mjs +7 -0
- package/esm2022/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.mjs +38 -0
- package/esm2022/f-connectors/domain/calculate-connector-connectable-side/index.mjs +3 -0
- package/esm2022/f-connectors/domain/index.mjs +2 -0
- package/esm2022/f-connectors/e-f-connectable-side.mjs +9 -0
- package/esm2022/f-connectors/f-connector-base.mjs +16 -0
- package/esm2022/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
- package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +83 -0
- package/esm2022/f-connectors/f-node-input/index.mjs +4 -0
- package/esm2022/f-connectors/f-node-input/is-node-input.mjs +4 -0
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet-base.mjs +23 -0
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +71 -0
- package/esm2022/f-connectors/f-node-outlet/index.mjs +4 -0
- package/esm2022/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
- package/esm2022/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
- package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +77 -0
- package/esm2022/f-connectors/f-node-output/index.mjs +4 -0
- package/esm2022/f-connectors/f-node-output/is-node-output.mjs +4 -0
- package/esm2022/f-connectors/index.mjs +7 -0
- package/esm2022/f-draggable/canvas/canvas.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/canvas/canvas.on-pointer-up.mjs +3 -3
- package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +10 -9
- package/esm2022/f-draggable/connections/create-connection/create-connection.on-pointer-up.mjs +7 -7
- package/esm2022/f-draggable/connections/create-connection/create-connection.prepare-drag-sequence.mjs +3 -3
- 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 +1 -1
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +3 -3
- 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 +1 -1
- package/esm2022/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +2 -2
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +15 -14
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.on-pointer-up.mjs +5 -5
- package/esm2022/f-draggable/e-f-draggable-type.mjs +11 -0
- package/esm2022/f-draggable/external-item/external-item.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/external-item/external-item.on-pointer-up.mjs +3 -3
- package/esm2022/f-draggable/i-draggable-item.mjs +1 -1
- package/esm2022/f-draggable/node/connection-source.drag-handler.mjs +12 -11
- package/esm2022/f-draggable/node/connection-target.drag-handler.mjs +12 -11
- package/esm2022/f-draggable/node/connection.drag-handler.mjs +12 -11
- package/esm2022/f-draggable/node/domain/is-connection-under-node/is-connection-under-node.handler.mjs +4 -4
- package/esm2022/f-draggable/node/index.mjs +2 -1
- package/esm2022/f-draggable/node/node.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/node/node.on-pointer-up.mjs +3 -3
- package/esm2022/f-draggable/node/node.prepare-drag-sequence.mjs +6 -6
- package/esm2022/f-draggable/public-api.mjs +13 -4
- package/esm2022/f-draggable/selection-area/selection-area.drag-handle.mjs +3 -3
- package/esm2022/f-draggable/selection-area/selection-area.on-pointer-up.mjs +3 -3
- package/esm2022/f-draggable/selection-area/selection-area.prepare-drag-sequence.mjs +1 -1
- package/esm2022/f-draggable/single-select/single-select.on-pointer-down.mjs +2 -2
- package/esm2022/f-flow/domain/redraw-connections/redraw-connections.handler.mjs +5 -5
- package/esm2022/f-flow/f-flow-base.mjs +5 -0
- package/esm2022/f-flow/f-flow.component.mjs +18 -18
- package/esm2022/f-flow/index.mjs +2 -3
- package/esm2022/f-flow.module.mjs +6 -4
- package/esm2022/f-node/f-drag-handle/index.mjs +1 -1
- package/esm2022/f-node/f-node-base.mjs +1 -3
- package/esm2022/f-node/f-node.directive.mjs +9 -9
- package/esm2022/f-node/index.mjs +1 -2
- package/esm2022/f-node/is-node.mjs +2 -2
- package/esm2022/public-api.mjs +12 -6
- package/f-components-store.d.ts +5 -4
- package/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.d.ts +6 -0
- package/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.d.ts +5 -0
- package/f-connection/common/domain/calculate-center-between-points/index.d.ts +2 -0
- package/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.d.ts +5 -0
- package/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.d.ts +7 -0
- package/f-connection/common/domain/calculate-connection-center/index.d.ts +2 -0
- package/f-connection/common/domain/f-bezier.path-builder.d.ts +7 -0
- package/f-connection/common/domain/f-path-builder-base.d.ts +6 -0
- package/f-connection/common/domain/f-path-builder-selector.d.ts +7 -0
- package/f-connection/common/domain/f-segment.path-builder.d.ts +13 -0
- package/f-connection/common/domain/f-straight.path-builder.d.ts +6 -0
- package/f-connection/common/domain/i-f-path-builder-request.d.ts +12 -0
- package/f-connection/common/domain/i-f-path-builder-response.d.ts +5 -0
- package/f-connection/common/domain/index.d.ts +9 -0
- package/f-connection/common/f-connection-base.d.ts +15 -13
- package/f-connection/common/i-has-connection-color.d.ts +2 -2
- package/f-connection/common/i-has-connection-from-to.d.ts +4 -4
- package/f-connection/common/i-has-connection-text.d.ts +1 -1
- package/f-connection/common/index.d.ts +1 -1
- package/f-connection/f-connection/f-connection.component.d.ts +14 -12
- package/f-connection/f-connection-center/f-connection-center.directive.d.ts +5 -0
- package/f-connection/f-connection-center/index.d.ts +1 -0
- package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +14 -12
- package/f-connection/index.d.ts +1 -0
- package/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.d.ts +6 -0
- package/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.d.ts +7 -0
- package/f-connectors/domain/calculate-connector-connectable-side/index.d.ts +2 -0
- package/f-connectors/domain/index.d.ts +1 -0
- package/f-connectors/e-f-connectable-side.d.ts +7 -0
- package/{f-node/f-connectors → f-connectors}/f-connector-base.d.ts +4 -3
- package/{f-node/f-connectors → f-connectors}/f-node-input/f-node-input.directive.d.ts +5 -3
- package/{f-node/f-connectors → f-connectors}/f-node-outlet/f-node-outlet.directive.d.ts +6 -3
- package/{f-node/f-connectors → f-connectors}/f-node-output/f-node-output.directive.d.ts +5 -3
- package/{f-node/f-connectors → f-connectors}/index.d.ts +2 -0
- package/f-draggable/canvas/canvas.drag-handler.d.ts +2 -2
- package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +2 -2
- 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 +1 -1
- package/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +1 -1
- 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 +1 -1
- package/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +1 -1
- package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +2 -2
- package/f-draggable/{e-draggable-type.d.ts → e-f-draggable-type.d.ts} +1 -1
- package/f-draggable/external-item/external-item.drag-handler.d.ts +2 -2
- package/f-draggable/i-draggable-item.d.ts +2 -2
- package/f-draggable/node/connection-source.drag-handler.d.ts +2 -2
- package/f-draggable/node/connection-target.drag-handler.d.ts +2 -2
- package/f-draggable/node/connection.drag-handler.d.ts +2 -2
- package/f-draggable/node/index.d.ts +1 -0
- package/f-draggable/node/node.drag-handler.d.ts +2 -2
- package/f-draggable/public-api.d.ts +12 -3
- package/f-draggable/selection-area/selection-area.drag-handle.d.ts +2 -2
- package/f-flow/f-flow-base.d.ts +8 -0
- package/f-flow/f-flow.component.d.ts +4 -4
- package/f-flow/index.d.ts +1 -2
- package/f-flow.module.d.ts +3 -3
- package/f-node/f-node-base.d.ts +2 -2
- package/f-node/f-node.directive.d.ts +3 -3
- package/f-node/index.d.ts +0 -1
- package/fesm2022/foblex-flow.mjs +2505 -2425
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +1 -1
- package/public-api.d.ts +11 -5
- package/domain/get-connector-side-in-node/e-connector-side.d.ts +0 -6
- package/domain/get-connector-side-in-node/get-connector-side-in-node.handler.d.ts +0 -5
- package/domain/get-connector-side-in-node/index.d.ts +0 -2
- package/esm2022/domain/get-connector-side-in-node/e-connector-side.mjs +0 -8
- package/esm2022/domain/get-connector-side-in-node/get-connector-side-in-node.handler.mjs +0 -26
- package/esm2022/domain/get-connector-side-in-node/index.mjs +0 -3
- package/esm2022/f-backgroud/domain/public-api.mjs +0 -2
- package/esm2022/f-backgroud/f-cell-pattern/public-api.mjs +0 -2
- package/esm2022/f-backgroud/public-api.mjs +0 -4
- package/esm2022/f-canvas/domain/public-api.mjs +0 -2
- package/esm2022/f-canvas/f-zoom/public-api.mjs +0 -2
- package/esm2022/f-canvas/public-api.mjs +0 -4
- package/esm2022/f-connection/common/path-constructor/bezier-path/bezier-path.mjs +0 -29
- package/esm2022/f-connection/common/path-constructor/bezier-path/index.mjs +0 -2
- package/esm2022/f-connection/common/path-constructor/i-path-constructor.mjs +0 -2
- package/esm2022/f-connection/common/path-constructor/index.mjs +0 -6
- package/esm2022/f-connection/common/path-constructor/path-constructor.mjs +0 -15
- package/esm2022/f-connection/common/path-constructor/segment-path/connector-side-point.mjs +0 -9
- package/esm2022/f-connection/common/path-constructor/segment-path/edge-center-calculator.mjs +0 -10
- package/esm2022/f-connection/common/path-constructor/segment-path/index.mjs +0 -6
- package/esm2022/f-connection/common/path-constructor/segment-path/path-bend.mjs +0 -19
- package/esm2022/f-connection/common/path-constructor/segment-path/point-utils.mjs +0 -14
- package/esm2022/f-connection/common/path-constructor/segment-path/segment-path.mjs +0 -123
- package/esm2022/f-connection/common/path-constructor/straight-path/index.mjs +0 -2
- package/esm2022/f-connection/common/path-constructor/straight-path/straight-path.mjs +0 -9
- package/esm2022/f-connection/common/public-api.mjs +0 -3
- package/esm2022/f-connection/public-api.mjs +0 -5
- package/esm2022/f-draggable/components/f-external-item/public-api.mjs +0 -2
- package/esm2022/f-draggable/components/f-line-alignment/public-api.mjs +0 -2
- package/esm2022/f-draggable/components/f-selection-area/public-api.mjs +0 -2
- package/esm2022/f-draggable/components/public-api.mjs +0 -4
- package/esm2022/f-draggable/connections/create-connection/public-api.mjs +0 -2
- package/esm2022/f-draggable/connections/public-api.mjs +0 -3
- package/esm2022/f-draggable/connections/reassign-connection/public-api.mjs +0 -2
- package/esm2022/f-draggable/e-draggable-type.mjs +0 -11
- package/esm2022/f-draggable/external-item/public-api.mjs +0 -2
- package/esm2022/f-draggable/index.mjs +0 -14
- package/esm2022/f-flow/f-parent.injection-token.mjs +0 -3
- package/esm2022/f-flow/i-flow-base.mjs +0 -3
- package/esm2022/f-flow/public-api.mjs +0 -2
- package/esm2022/f-node/f-connectors/f-connector-base.mjs +0 -15
- package/esm2022/f-node/f-connectors/f-node-input/f-node-input-base.mjs +0 -19
- package/esm2022/f-node/f-connectors/f-node-input/f-node-input.directive.mjs +0 -78
- package/esm2022/f-node/f-connectors/f-node-input/index.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-input/is-node-input.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-input/public-api.mjs +0 -2
- package/esm2022/f-node/f-connectors/f-node-outlet/f-node-outlet-base.mjs +0 -23
- package/esm2022/f-node/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -68
- package/esm2022/f-node/f-connectors/f-node-outlet/index.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-outlet/public-api.mjs +0 -2
- package/esm2022/f-node/f-connectors/f-node-output/f-node-output-base.mjs +0 -19
- package/esm2022/f-node/f-connectors/f-node-output/f-node-output.directive.mjs +0 -72
- package/esm2022/f-node/f-connectors/f-node-output/index.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-output/is-node-output.mjs +0 -4
- package/esm2022/f-node/f-connectors/f-node-output/public-api.mjs +0 -2
- package/esm2022/f-node/f-connectors/index.mjs +0 -5
- package/esm2022/f-node/f-connectors/public-api.mjs +0 -4
- package/esm2022/f-node/f-drag-handle/public-api.mjs +0 -2
- package/esm2022/f-node/public-api.mjs +0 -4
- package/f-backgroud/domain/public-api.d.ts +0 -1
- package/f-backgroud/f-cell-pattern/public-api.d.ts +0 -1
- package/f-backgroud/public-api.d.ts +0 -3
- package/f-canvas/domain/public-api.d.ts +0 -1
- package/f-canvas/f-zoom/public-api.d.ts +0 -1
- package/f-canvas/public-api.d.ts +0 -3
- package/f-connection/common/path-constructor/bezier-path/bezier-path.d.ts +0 -7
- package/f-connection/common/path-constructor/bezier-path/index.d.ts +0 -1
- package/f-connection/common/path-constructor/i-path-constructor.d.ts +0 -12
- package/f-connection/common/path-constructor/index.d.ts +0 -5
- package/f-connection/common/path-constructor/path-constructor.d.ts +0 -8
- package/f-connection/common/path-constructor/segment-path/connector-side-point.d.ts +0 -6
- package/f-connection/common/path-constructor/segment-path/edge-center-calculator.d.ts +0 -3
- package/f-connection/common/path-constructor/segment-path/index.d.ts +0 -5
- package/f-connection/common/path-constructor/segment-path/path-bend.d.ts +0 -4
- package/f-connection/common/path-constructor/segment-path/point-utils.d.ts +0 -6
- package/f-connection/common/path-constructor/segment-path/segment-path.d.ts +0 -10
- package/f-connection/common/path-constructor/straight-path/index.d.ts +0 -1
- package/f-connection/common/path-constructor/straight-path/straight-path.d.ts +0 -6
- package/f-connection/common/public-api.d.ts +0 -2
- package/f-connection/public-api.d.ts +0 -4
- package/f-draggable/components/f-external-item/public-api.d.ts +0 -1
- package/f-draggable/components/f-line-alignment/public-api.d.ts +0 -1
- package/f-draggable/components/f-selection-area/public-api.d.ts +0 -1
- package/f-draggable/components/public-api.d.ts +0 -3
- package/f-draggable/connections/create-connection/public-api.d.ts +0 -1
- package/f-draggable/connections/public-api.d.ts +0 -2
- package/f-draggable/connections/reassign-connection/public-api.d.ts +0 -1
- package/f-draggable/external-item/public-api.d.ts +0 -1
- package/f-draggable/index.d.ts +0 -13
- package/f-flow/f-parent.injection-token.d.ts +0 -2
- package/f-flow/i-flow-base.d.ts +0 -8
- package/f-flow/public-api.d.ts +0 -1
- package/f-node/f-connectors/f-node-input/public-api.d.ts +0 -1
- package/f-node/f-connectors/f-node-outlet/public-api.d.ts +0 -1
- package/f-node/f-connectors/f-node-output/public-api.d.ts +0 -1
- package/f-node/f-connectors/public-api.d.ts +0 -3
- package/f-node/f-drag-handle/public-api.d.ts +0 -1
- package/f-node/public-api.d.ts +0 -3
- /package/{f-node/f-connectors → f-connectors}/f-node-input/f-node-input-base.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-input/index.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-input/is-node-input.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-outlet/f-node-outlet-base.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-outlet/index.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-outlet/is-node-outlet.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-output/f-node-output-base.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-output/index.d.ts +0 -0
- /package/{f-node/f-connectors → f-connectors}/f-node-output/is-node-output.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.