@foblex/flow 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{lib/directives → directives}/f-containers/f-items-container/f-items-container.directive.d.ts +2 -2
- package/esm2022/common-behaviours/change-position.mjs +15 -0
- package/esm2022/common-behaviours/change-zoom/change-zoom.mjs +25 -0
- package/esm2022/common-behaviours/change-zoom/i-can-change-zoom.mjs +2 -0
- package/esm2022/common-behaviours/change-zoom/index.mjs +3 -0
- package/esm2022/common-behaviours/constructor.mjs +2 -0
- package/esm2022/common-behaviours/fit-to-parent/fit-to-parent.mjs +27 -0
- package/esm2022/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +2 -0
- package/esm2022/common-behaviours/fit-to-parent/index.mjs +3 -0
- package/esm2022/common-behaviours/index.mjs +6 -0
- package/esm2022/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +2 -0
- package/esm2022/common-behaviours/one-to-one-centering/index.mjs +3 -0
- package/esm2022/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +24 -0
- package/esm2022/components/f-connection/f-connection-base.mjs +33 -0
- package/esm2022/components/f-connection/f-connection-identifiers.mjs +21 -0
- package/esm2022/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +38 -0
- package/esm2022/components/f-connection/f-connection-text/f-connection-text.component.mjs +55 -0
- package/esm2022/components/f-connection/f-connection-text/index.mjs +3 -0
- package/esm2022/components/f-connection/f-connection.component.mjs +91 -0
- package/esm2022/components/f-connection/f-connection.module.mjs +47 -0
- package/esm2022/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
- package/esm2022/components/f-connection/f-drag-handle/index.mjs +2 -0
- package/esm2022/components/f-connection/f-gradient/f-connection-gradient.component.mjs +59 -0
- package/esm2022/components/f-connection/f-gradient/index.mjs +2 -0
- package/esm2022/components/f-connection/f-path/f-connection-path.component.mjs +58 -0
- package/esm2022/components/f-connection/f-path/index.mjs +2 -0
- package/esm2022/components/f-connection/f-selection/f-connection-selection.component.mjs +34 -0
- package/esm2022/components/f-connection/f-selection/index.mjs +2 -0
- package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +61 -0
- package/esm2022/components/f-connection/f-temp-connection/index.mjs +3 -0
- package/esm2022/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +7 -0
- package/esm2022/components/f-connection/get-connection-intersect.mjs +10 -0
- package/esm2022/components/f-connection/i-input-output-model.mjs +2 -0
- package/esm2022/components/f-connection/index.mjs +13 -0
- package/esm2022/components/f-connection/public-api.mjs +4 -0
- package/esm2022/components/f-connectors/f-connector-base.mjs +14 -0
- package/esm2022/components/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
- package/esm2022/components/f-connectors/f-node-input/f-node-input.directive.mjs +58 -0
- package/esm2022/components/f-connectors/f-node-input/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-input/is-node-input.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-input/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +22 -0
- package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +56 -0
- package/esm2022/components/f-connectors/f-node-outlet/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-outlet/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
- package/esm2022/components/f-connectors/f-node-output/f-node-output.directive.mjs +54 -0
- package/esm2022/components/f-connectors/f-node-output/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-output/is-node-output.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-output/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-out-connector-base.mjs +4 -0
- package/esm2022/components/f-connectors/get-element-rect-in-canvas.mjs +8 -0
- package/esm2022/components/f-connectors/index.mjs +7 -0
- package/esm2022/components/f-connectors/public-api.mjs +4 -0
- package/esm2022/components/f-flow/f-flow-base.mjs +49 -0
- package/esm2022/components/f-flow/f-flow.component.mjs +67 -0
- package/esm2022/components/f-flow/index.mjs +3 -0
- package/esm2022/components/f-flow/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +54 -0
- package/esm2022/components/f-node/f-drag-handle/index.mjs +3 -0
- package/esm2022/components/f-node/f-drag-handle/is-drag-handle.mjs +20 -0
- package/esm2022/components/f-node/f-drag-handle/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-foreign-object/f-foreign-object-base.mjs +40 -0
- package/esm2022/components/f-node/f-foreign-object/f-foreign-object.component.mjs +49 -0
- package/esm2022/components/f-node/f-foreign-object/index.mjs +3 -0
- package/esm2022/components/f-node/f-foreign-object/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-node-base.mjs +33 -0
- package/esm2022/components/f-node/f-node.component.mjs +62 -0
- package/esm2022/components/f-node/index.mjs +6 -0
- package/esm2022/components/f-node/is-node.mjs +4 -0
- package/esm2022/components/f-node/public-api.mjs +4 -0
- package/esm2022/components/index.mjs +6 -0
- package/esm2022/components/public-api.mjs +5 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +58 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +6 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +3 -0
- package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +41 -0
- package/esm2022/directives/f-connect-if-intersect/index.mjs +3 -0
- package/esm2022/directives/f-connect-if-intersect/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container-base.mjs +32 -0
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container.component.mjs +30 -0
- package/esm2022/directives/f-containers/f-connections-container/index.mjs +3 -0
- package/esm2022/directives/f-containers/f-connections-container/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/f-items-container/canvas-change.event.mjs +7 -0
- package/esm2022/directives/f-containers/f-items-container/f-items-container-base.mjs +45 -0
- package/esm2022/directives/f-containers/f-items-container/f-items-container.directive.mjs +48 -0
- package/esm2022/directives/f-containers/f-items-container/index.mjs +4 -0
- package/esm2022/directives/f-containers/f-items-container/public-api.mjs +3 -0
- package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +39 -0
- package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +25 -0
- package/esm2022/directives/f-containers/f-nodes-container/index.mjs +3 -0
- package/esm2022/directives/f-containers/f-nodes-container/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/index.mjs +4 -0
- package/esm2022/directives/f-containers/public-api.mjs +4 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +24 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +6 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +20 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/canvas/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +78 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +31 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection.event.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +28 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +20 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/index.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +25 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +7 -0
- package/esm2022/directives/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 +20 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +5 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +14 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/index.mjs +4 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/index.mjs +5 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +9 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +36 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +31 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +26 -0
- package/esm2022/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +11 -0
- package/esm2022/directives/f-draggable/default-drag-handler/index.mjs +2 -0
- package/esm2022/directives/f-draggable/e-draggable-type.mjs +12 -0
- package/esm2022/directives/f-draggable/external-item/create-node.event.mjs +7 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +28 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +6 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +30 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +26 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/external-item/index.mjs +5 -0
- package/esm2022/directives/f-draggable/f-draggable-base.mjs +103 -0
- package/esm2022/directives/f-draggable/f-draggable.directive.mjs +52 -0
- package/esm2022/directives/f-draggable/f-draggable.module.mjs +49 -0
- package/esm2022/directives/f-draggable/f-draggable.service.mjs +23 -0
- package/esm2022/directives/f-draggable/i-drag-handler.mjs +2 -0
- package/esm2022/directives/f-draggable/i-draggable-item.mjs +2 -0
- package/esm2022/directives/f-draggable/index.mjs +14 -0
- package/esm2022/directives/f-draggable/node/index.mjs +4 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +9 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +88 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +24 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +24 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +22 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/index.mjs +5 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +23 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +28 -0
- package/esm2022/directives/f-draggable/public-api.mjs +2 -0
- package/esm2022/directives/f-draggable/selection/index.mjs +4 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +8 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +61 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +54 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +8 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +22 -0
- package/esm2022/directives/f-external-item/f-external-item-base.mjs +11 -0
- package/esm2022/directives/f-external-item/f-external-item.directive.mjs +44 -0
- package/esm2022/directives/f-external-item/f-external-item.service.mjs +25 -0
- package/esm2022/directives/f-external-item/index.mjs +5 -0
- package/esm2022/directives/f-external-item/is-external-item.mjs +7 -0
- package/esm2022/directives/f-external-item/public-api.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +40 -0
- package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +40 -0
- package/esm2022/directives/f-line-alignment/domain/i-line-alignment-result.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/index.mjs +5 -0
- package/esm2022/directives/f-line-alignment/f-line-alignment.directive.mjs +105 -0
- package/esm2022/directives/f-line-alignment/index.mjs +3 -0
- package/esm2022/directives/f-line-alignment/public-api.mjs +2 -0
- package/esm2022/directives/f-selection/f-selection.directive.mjs +40 -0
- package/esm2022/directives/f-selection/index.mjs +2 -0
- package/esm2022/directives/f-selection/public-api.mjs +2 -0
- package/esm2022/directives/f-zoom/f-zoom-base.mjs +89 -0
- package/esm2022/directives/f-zoom/f-zoom.directive.mjs +57 -0
- package/esm2022/directives/f-zoom/index.mjs +3 -0
- package/esm2022/directives/f-zoom/public-api.mjs +2 -0
- package/esm2022/directives/index.mjs +8 -0
- package/esm2022/directives/public-api.mjs +8 -0
- package/esm2022/f-flow.module.mjs +79 -0
- package/esm2022/i-has-state-changes.mjs +2 -0
- package/esm2022/i-selectable.mjs +2 -0
- package/esm2022/internal/f-backgroud/f-background-base.mjs +25 -0
- package/esm2022/internal/f-backgroud/f-background.directive.mjs +24 -0
- package/esm2022/internal/f-backgroud/index.mjs +3 -0
- package/esm2022/internal/f-canvas/f-canvas-base.mjs +25 -0
- package/esm2022/internal/f-canvas/f-canvas.directive.mjs +19 -0
- package/esm2022/internal/f-canvas/index.mjs +3 -0
- package/esm2022/internal/index.mjs +3 -0
- package/esm2022/public-api.mjs +5 -2
- package/fesm2022/foblex-flow.mjs +141 -135
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +4 -2
- package/public-api.d.ts +4 -1
- package/esm2022/lib/common-behaviours/change-position.mjs +0 -15
- package/esm2022/lib/common-behaviours/change-zoom/change-zoom.mjs +0 -25
- package/esm2022/lib/common-behaviours/change-zoom/i-can-change-zoom.mjs +0 -2
- package/esm2022/lib/common-behaviours/change-zoom/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/constructor.mjs +0 -2
- package/esm2022/lib/common-behaviours/fit-to-parent/fit-to-parent.mjs +0 -27
- package/esm2022/lib/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +0 -2
- package/esm2022/lib/common-behaviours/fit-to-parent/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/index.mjs +0 -6
- package/esm2022/lib/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +0 -2
- package/esm2022/lib/common-behaviours/one-to-one-centering/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +0 -24
- package/esm2022/lib/components/f-connection/f-connection-base.mjs +0 -33
- package/esm2022/lib/components/f-connection/f-connection-identifiers.mjs +0 -21
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +0 -38
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text.component.mjs +0 -55
- package/esm2022/lib/components/f-connection/f-connection-text/index.mjs +0 -3
- package/esm2022/lib/components/f-connection/f-connection.component.mjs +0 -91
- package/esm2022/lib/components/f-connection/f-connection.module.mjs +0 -47
- package/esm2022/lib/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +0 -30
- package/esm2022/lib/components/f-connection/f-drag-handle/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-gradient/f-connection-gradient.component.mjs +0 -59
- package/esm2022/lib/components/f-connection/f-gradient/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-path/f-connection-path.component.mjs +0 -58
- package/esm2022/lib/components/f-connection/f-path/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-selection/f-connection-selection.component.mjs +0 -34
- package/esm2022/lib/components/f-connection/f-selection/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +0 -61
- package/esm2022/lib/components/f-connection/f-temp-connection/index.mjs +0 -3
- package/esm2022/lib/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +0 -7
- package/esm2022/lib/components/f-connection/get-connection-intersect.mjs +0 -10
- package/esm2022/lib/components/f-connection/i-input-output-model.mjs +0 -2
- package/esm2022/lib/components/f-connection/index.mjs +0 -13
- package/esm2022/lib/components/f-connection/public-api.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-connector-base.mjs +0 -14
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input-base.mjs +0 -19
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input.directive.mjs +0 -58
- package/esm2022/lib/components/f-connectors/f-node-input/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-input/is-node-input.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-input/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +0 -22
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -56
- package/esm2022/lib/components/f-connectors/f-node-outlet/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-outlet/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output-base.mjs +0 -19
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output.directive.mjs +0 -54
- package/esm2022/lib/components/f-connectors/f-node-output/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-output/is-node-output.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-output/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-out-connector-base.mjs +0 -4
- package/esm2022/lib/components/f-connectors/get-element-rect-in-canvas.mjs +0 -8
- package/esm2022/lib/components/f-connectors/index.mjs +0 -7
- package/esm2022/lib/components/f-connectors/public-api.mjs +0 -4
- package/esm2022/lib/components/f-flow/f-flow-base.mjs +0 -49
- package/esm2022/lib/components/f-flow/f-flow.component.mjs +0 -67
- package/esm2022/lib/components/f-flow/index.mjs +0 -3
- package/esm2022/lib/components/f-flow/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +0 -54
- package/esm2022/lib/components/f-node/f-drag-handle/index.mjs +0 -3
- package/esm2022/lib/components/f-node/f-drag-handle/is-drag-handle.mjs +0 -20
- package/esm2022/lib/components/f-node/f-drag-handle/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object-base.mjs +0 -40
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object.component.mjs +0 -49
- package/esm2022/lib/components/f-node/f-foreign-object/index.mjs +0 -3
- package/esm2022/lib/components/f-node/f-foreign-object/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-node-base.mjs +0 -33
- package/esm2022/lib/components/f-node/f-node.component.mjs +0 -62
- package/esm2022/lib/components/f-node/index.mjs +0 -6
- package/esm2022/lib/components/f-node/is-node.mjs +0 -4
- package/esm2022/lib/components/f-node/public-api.mjs +0 -4
- package/esm2022/lib/components/index.mjs +0 -6
- package/esm2022/lib/components/public-api.mjs +0 -5
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +0 -58
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +0 -6
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +0 -3
- package/esm2022/lib/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +0 -41
- package/esm2022/lib/directives/f-connect-if-intersect/index.mjs +0 -3
- package/esm2022/lib/directives/f-connect-if-intersect/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container-base.mjs +0 -32
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container.component.mjs +0 -30
- package/esm2022/lib/directives/f-containers/f-connections-container/index.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-connections-container/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/f-items-container/canvas-change.event.mjs +0 -7
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container-base.mjs +0 -45
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container.directive.mjs +0 -42
- package/esm2022/lib/directives/f-containers/f-items-container/index.mjs +0 -4
- package/esm2022/lib/directives/f-containers/f-items-container/public-api.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +0 -39
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +0 -25
- package/esm2022/lib/directives/f-containers/f-nodes-container/index.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-nodes-container/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/index.mjs +0 -4
- package/esm2022/lib/directives/f-containers/public-api.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +0 -20
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/canvas/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +0 -78
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +0 -31
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.event.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +0 -20
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/index.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +0 -25
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +0 -7
- package/esm2022/lib/directives/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 -20
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +0 -14
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +0 -9
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +0 -36
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +0 -31
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +0 -26
- package/esm2022/lib/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +0 -11
- package/esm2022/lib/directives/f-draggable/default-drag-handler/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/e-draggable-type.mjs +0 -12
- package/esm2022/lib/directives/f-draggable/external-item/create-node.event.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +0 -30
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +0 -26
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/external-item/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/f-draggable-base.mjs +0 -103
- package/esm2022/lib/directives/f-draggable/f-draggable.directive.mjs +0 -52
- package/esm2022/lib/directives/f-draggable/f-draggable.module.mjs +0 -49
- package/esm2022/lib/directives/f-draggable/f-draggable.service.mjs +0 -23
- package/esm2022/lib/directives/f-draggable/i-drag-handler.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/i-draggable-item.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/index.mjs +0 -14
- package/esm2022/lib/directives/f-draggable/node/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +0 -9
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +0 -88
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +0 -22
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +0 -23
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/selection/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +0 -8
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +0 -61
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +0 -54
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +0 -8
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +0 -22
- package/esm2022/lib/directives/f-external-item/f-external-item-base.mjs +0 -11
- package/esm2022/lib/directives/f-external-item/f-external-item.directive.mjs +0 -44
- package/esm2022/lib/directives/f-external-item/f-external-item.service.mjs +0 -25
- package/esm2022/lib/directives/f-external-item/index.mjs +0 -5
- package/esm2022/lib/directives/f-external-item/is-external-item.mjs +0 -7
- package/esm2022/lib/directives/f-external-item/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +0 -40
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +0 -40
- package/esm2022/lib/directives/f-line-alignment/domain/i-line-alignment-result.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/index.mjs +0 -5
- package/esm2022/lib/directives/f-line-alignment/f-line-alignment.directive.mjs +0 -105
- package/esm2022/lib/directives/f-line-alignment/index.mjs +0 -3
- package/esm2022/lib/directives/f-line-alignment/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-selection/f-selection.directive.mjs +0 -40
- package/esm2022/lib/directives/f-selection/index.mjs +0 -2
- package/esm2022/lib/directives/f-selection/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-zoom/f-zoom-base.mjs +0 -89
- package/esm2022/lib/directives/f-zoom/f-zoom.directive.mjs +0 -57
- package/esm2022/lib/directives/f-zoom/index.mjs +0 -3
- package/esm2022/lib/directives/f-zoom/public-api.mjs +0 -2
- package/esm2022/lib/directives/index.mjs +0 -8
- package/esm2022/lib/directives/public-api.mjs +0 -8
- package/esm2022/lib/f-flow.module.mjs +0 -79
- package/esm2022/lib/i-has-state-changes.mjs +0 -2
- package/esm2022/lib/i-selectable.mjs +0 -2
- package/esm2022/lib/internal/f-backgroud/f-background-base.mjs +0 -25
- package/esm2022/lib/internal/f-backgroud/f-background.directive.mjs +0 -24
- package/esm2022/lib/internal/f-backgroud/index.mjs +0 -3
- package/esm2022/lib/internal/f-canvas/f-canvas-base.mjs +0 -25
- package/esm2022/lib/internal/f-canvas/f-canvas.directive.mjs +0 -19
- package/esm2022/lib/internal/f-canvas/index.mjs +0 -3
- package/esm2022/lib/internal/index.mjs +0 -3
- package/esm2022/lib/public-api.mjs +0 -5
- package/lib/public-api.d.ts +0 -4
- /package/{lib/common-behaviours → common-behaviours}/change-position.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/change-zoom.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/i-can-change-zoom.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/constructor.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/fit-to-parent.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/i-can-fit-to-parent.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/i-can-one-to-one-centering.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/one-to-one-centering.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-base.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-identifiers.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text-path.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection.module.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-drag-handle/f-connection-drag-handle.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-drag-handle/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-gradient/f-connection-gradient.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-gradient/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-path/f-connection-path.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-path/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-selection/f-connection-selection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-selection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/f-temp-connection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +0 -0
- /package/{lib/components → components}/f-connection/get-connection-intersect.d.ts +0 -0
- /package/{lib/components → components}/f-connection/i-input-output-model.d.ts +0 -0
- /package/{lib/components → components}/f-connection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-connector-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/f-node-input-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/f-node-input.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/is-node-input.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/is-node-outlet.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/f-node-output-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/f-node-output.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/is-node-output.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-out-connector-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/get-element-rect-in-canvas.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-flow/f-flow-base.d.ts +0 -0
- /package/{lib/components → components}/f-flow/f-flow.component.d.ts +0 -0
- /package/{lib/components → components}/f-flow/index.d.ts +0 -0
- /package/{lib/components → components}/f-flow/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/f-drag-handle.directive.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/is-drag-handle.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object-base.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object.component.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-node-base.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-node.component.d.ts +0 -0
- /package/{lib/components → components}/f-node/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/is-node.d.ts +0 -0
- /package/{lib/components → components}/f-node/public-api.d.ts +0 -0
- /package/{lib/components → components}/index.d.ts +0 -0
- /package/{lib/components → components}/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container.component.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/canvas-change.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/f-items-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container.component.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/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 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/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 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-connection.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/default-drag-handler/default-drag.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/default-drag-handler/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/e-draggable-type.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/create-node.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.module.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.service.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/i-drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/i-draggable-item.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/node.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item.service.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/is-external-item.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-x.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-y.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/i-line-alignment-result.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/i-nearest-coordinate-result.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/f-line-alignment.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/f-selection.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/f-zoom-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/f-zoom.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/index.d.ts +0 -0
- /package/{lib/directives → directives}/public-api.d.ts +0 -0
- /package/{lib/f-flow.module.d.ts → f-flow.module.d.ts} +0 -0
- /package/{lib/i-has-state-changes.d.ts → i-has-state-changes.d.ts} +0 -0
- /package/{lib/i-selectable.d.ts → i-selectable.d.ts} +0 -0
- /package/{lib/internal → internal}/f-backgroud/f-background-base.d.ts +0 -0
- /package/{lib/internal → internal}/f-backgroud/f-background.directive.d.ts +0 -0
- /package/{lib/internal → internal}/f-backgroud/index.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/f-canvas-base.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/f-canvas.directive.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/index.d.ts +0 -0
- /package/{lib/internal → internal}/index.d.ts +0 -0
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/index.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-x.d.ts
RENAMED
|
File without changes
|
/package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-y.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/{lib/directives → directives}/f-line-alignment/domain/i-nearest-coordinate-result.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|