@foblex/flow 0.0.1
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 +24 -0
- package/esm2022/foblex-flow.mjs +5 -0
- package/esm2022/lib/common-behaviours/change-position.mjs +15 -0
- package/esm2022/lib/common-behaviours/change-zoom/change-zoom.mjs +25 -0
- package/esm2022/lib/common-behaviours/change-zoom/i-can-change-zoom.mjs +2 -0
- package/esm2022/lib/common-behaviours/change-zoom/index.mjs +3 -0
- package/esm2022/lib/common-behaviours/constructor.mjs +2 -0
- package/esm2022/lib/common-behaviours/fit-to-parent/fit-to-parent.mjs +27 -0
- package/esm2022/lib/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +2 -0
- package/esm2022/lib/common-behaviours/fit-to-parent/index.mjs +3 -0
- package/esm2022/lib/common-behaviours/index.mjs +6 -0
- package/esm2022/lib/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +2 -0
- package/esm2022/lib/common-behaviours/one-to-one-centering/index.mjs +3 -0
- package/esm2022/lib/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +24 -0
- package/esm2022/lib/components/f-connection/f-connection-base.mjs +28 -0
- package/esm2022/lib/components/f-connection/f-connection-identifiers.mjs +21 -0
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +38 -0
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text.component.mjs +55 -0
- package/esm2022/lib/components/f-connection/f-connection-text/index.mjs +3 -0
- package/esm2022/lib/components/f-connection/f-connection.component.mjs +91 -0
- package/esm2022/lib/components/f-connection/f-connection.module.mjs +47 -0
- package/esm2022/lib/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
- package/esm2022/lib/components/f-connection/f-drag-handle/index.mjs +2 -0
- package/esm2022/lib/components/f-connection/f-gradient/f-connection-gradient.component.mjs +59 -0
- package/esm2022/lib/components/f-connection/f-gradient/index.mjs +2 -0
- package/esm2022/lib/components/f-connection/f-path/f-connection-path.component.mjs +55 -0
- package/esm2022/lib/components/f-connection/f-path/index.mjs +2 -0
- package/esm2022/lib/components/f-connection/f-selection/f-connection-selection.component.mjs +34 -0
- package/esm2022/lib/components/f-connection/f-selection/index.mjs +2 -0
- package/esm2022/lib/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +61 -0
- package/esm2022/lib/components/f-connection/f-temp-connection/index.mjs +3 -0
- package/esm2022/lib/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +7 -0
- package/esm2022/lib/components/f-connection/get-connection-intersect.mjs +10 -0
- package/esm2022/lib/components/f-connection/i-input-output-model.mjs +2 -0
- package/esm2022/lib/components/f-connection/index.mjs +13 -0
- package/esm2022/lib/components/f-connection/public-api.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-connector-base.mjs +14 -0
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input.directive.mjs +58 -0
- package/esm2022/lib/components/f-connectors/f-node-input/index.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-input/is-node-input.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-input/public-api.mjs +2 -0
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +22 -0
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +56 -0
- package/esm2022/lib/components/f-connectors/f-node-outlet/index.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-outlet/public-api.mjs +2 -0
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output.directive.mjs +54 -0
- package/esm2022/lib/components/f-connectors/f-node-output/index.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-output/is-node-output.mjs +4 -0
- package/esm2022/lib/components/f-connectors/f-node-output/public-api.mjs +2 -0
- package/esm2022/lib/components/f-connectors/f-out-connector-base.mjs +4 -0
- package/esm2022/lib/components/f-connectors/get-element-rect-in-canvas.mjs +8 -0
- package/esm2022/lib/components/f-connectors/index.mjs +7 -0
- package/esm2022/lib/components/f-connectors/public-api.mjs +4 -0
- package/esm2022/lib/components/f-flow/f-flow-base.mjs +54 -0
- package/esm2022/lib/components/f-flow/f-flow.component.mjs +67 -0
- package/esm2022/lib/components/f-flow/index.mjs +3 -0
- package/esm2022/lib/components/f-flow/public-api.mjs +2 -0
- package/esm2022/lib/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +54 -0
- package/esm2022/lib/components/f-node/f-drag-handle/index.mjs +3 -0
- package/esm2022/lib/components/f-node/f-drag-handle/is-drag-handle.mjs +20 -0
- package/esm2022/lib/components/f-node/f-drag-handle/public-api.mjs +2 -0
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object-base.mjs +40 -0
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object.component.mjs +49 -0
- package/esm2022/lib/components/f-node/f-foreign-object/index.mjs +3 -0
- package/esm2022/lib/components/f-node/f-foreign-object/public-api.mjs +2 -0
- package/esm2022/lib/components/f-node/f-node-base.mjs +28 -0
- package/esm2022/lib/components/f-node/f-node.component.mjs +63 -0
- package/esm2022/lib/components/f-node/index.mjs +5 -0
- package/esm2022/lib/components/f-node/public-api.mjs +4 -0
- package/esm2022/lib/components/index.mjs +6 -0
- package/esm2022/lib/components/public-api.mjs +5 -0
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +58 -0
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +6 -0
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +3 -0
- package/esm2022/lib/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +41 -0
- package/esm2022/lib/directives/f-connect-if-intersect/index.mjs +3 -0
- package/esm2022/lib/directives/f-connect-if-intersect/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container-base.mjs +32 -0
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container.component.mjs +30 -0
- package/esm2022/lib/directives/f-containers/f-connections-container/index.mjs +3 -0
- package/esm2022/lib/directives/f-containers/f-connections-container/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container-base.mjs +44 -0
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container.directive.mjs +25 -0
- package/esm2022/lib/directives/f-containers/f-items-container/index.mjs +3 -0
- package/esm2022/lib/directives/f-containers/f-items-container/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +39 -0
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +25 -0
- package/esm2022/lib/directives/f-containers/f-nodes-container/index.mjs +3 -0
- package/esm2022/lib/directives/f-containers/f-nodes-container/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-containers/index.mjs +4 -0
- package/esm2022/lib/directives/f-containers/public-api.mjs +4 -0
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +24 -0
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +6 -0
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +20 -0
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/canvas/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +78 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +31 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.event.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +28 -0
- 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 +20 -0
- 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 +6 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/create-connection/index.mjs +6 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +25 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +7 -0
- 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 +20 -0
- 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 +6 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +5 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +14 -0
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +6 -0
- package/esm2022/lib/directives/f-draggable/connections/index.mjs +4 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/index.mjs +5 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +9 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +36 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +31 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +23 -0
- package/esm2022/lib/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +11 -0
- package/esm2022/lib/directives/f-draggable/default-drag-handler/index.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/e-draggable-type.mjs +12 -0
- package/esm2022/lib/directives/f-draggable/external-item/create-node.event.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +28 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +6 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +30 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +26 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/external-item/index.mjs +5 -0
- package/esm2022/lib/directives/f-draggable/f-draggable-base.mjs +103 -0
- package/esm2022/lib/directives/f-draggable/f-draggable.directive.mjs +52 -0
- package/esm2022/lib/directives/f-draggable/f-draggable.module.mjs +49 -0
- package/esm2022/lib/directives/f-draggable/f-draggable.service.mjs +23 -0
- package/esm2022/lib/directives/f-draggable/i-drag-handler.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/i-draggable-item.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/index.mjs +14 -0
- package/esm2022/lib/directives/f-draggable/node/index.mjs +4 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +9 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +88 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +24 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +24 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +22 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/index.mjs +5 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +23 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +7 -0
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +28 -0
- package/esm2022/lib/directives/f-draggable/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/selection/index.mjs +4 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +8 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +60 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +2 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +54 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +3 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +8 -0
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +22 -0
- package/esm2022/lib/directives/f-external-item/f-external-item-base.mjs +11 -0
- package/esm2022/lib/directives/f-external-item/f-external-item.directive.mjs +44 -0
- package/esm2022/lib/directives/f-external-item/f-external-item.service.mjs +25 -0
- package/esm2022/lib/directives/f-external-item/index.mjs +5 -0
- package/esm2022/lib/directives/f-external-item/is-external-item.mjs +7 -0
- package/esm2022/lib/directives/f-external-item/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +40 -0
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +40 -0
- package/esm2022/lib/directives/f-line-alignment/domain/i-line-alignment-result.mjs +2 -0
- package/esm2022/lib/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +2 -0
- package/esm2022/lib/directives/f-line-alignment/domain/index.mjs +5 -0
- package/esm2022/lib/directives/f-line-alignment/f-line-alignment.directive.mjs +105 -0
- package/esm2022/lib/directives/f-line-alignment/index.mjs +3 -0
- package/esm2022/lib/directives/f-line-alignment/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-selection/f-selection.directive.mjs +40 -0
- package/esm2022/lib/directives/f-selection/index.mjs +2 -0
- package/esm2022/lib/directives/f-selection/public-api.mjs +2 -0
- package/esm2022/lib/directives/f-zoom/f-zoom-base.mjs +87 -0
- package/esm2022/lib/directives/f-zoom/f-zoom.directive.mjs +57 -0
- package/esm2022/lib/directives/f-zoom/index.mjs +3 -0
- package/esm2022/lib/directives/f-zoom/public-api.mjs +2 -0
- package/esm2022/lib/directives/index.mjs +8 -0
- package/esm2022/lib/directives/public-api.mjs +8 -0
- package/esm2022/lib/f-flow.module.mjs +79 -0
- package/esm2022/lib/i-has-state-changes.mjs +2 -0
- package/esm2022/lib/i-selectable.mjs +2 -0
- package/esm2022/lib/internal/f-backgroud/f-background-base.mjs +25 -0
- package/esm2022/lib/internal/f-backgroud/f-background.directive.mjs +24 -0
- package/esm2022/lib/internal/f-backgroud/index.mjs +3 -0
- package/esm2022/lib/internal/f-canvas/f-canvas-base.mjs +25 -0
- package/esm2022/lib/internal/f-canvas/f-canvas.directive.mjs +19 -0
- package/esm2022/lib/internal/f-canvas/index.mjs +3 -0
- package/esm2022/lib/internal/index.mjs +3 -0
- package/esm2022/lib/public-api.mjs +5 -0
- package/esm2022/public-api.mjs +2 -0
- package/fesm2022/foblex-flow.mjs +3055 -0
- package/fesm2022/foblex-flow.mjs.map +1 -0
- package/index.d.ts +5 -0
- package/lib/common-behaviours/change-position.d.ts +9 -0
- package/lib/common-behaviours/change-zoom/change-zoom.d.ts +6 -0
- package/lib/common-behaviours/change-zoom/i-can-change-zoom.d.ts +6 -0
- package/lib/common-behaviours/change-zoom/index.d.ts +2 -0
- package/lib/common-behaviours/constructor.d.ts +2 -0
- package/lib/common-behaviours/fit-to-parent/fit-to-parent.d.ts +6 -0
- package/lib/common-behaviours/fit-to-parent/i-can-fit-to-parent.d.ts +4 -0
- package/lib/common-behaviours/fit-to-parent/index.d.ts +2 -0
- package/lib/common-behaviours/index.d.ts +5 -0
- package/lib/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.d.ts +4 -0
- package/lib/common-behaviours/one-to-one-centering/index.d.ts +2 -0
- package/lib/common-behaviours/one-to-one-centering/one-to-one-centering.d.ts +6 -0
- package/lib/components/f-connection/f-connection-base.d.ts +28 -0
- package/lib/components/f-connection/f-connection-identifiers.d.ts +8 -0
- package/lib/components/f-connection/f-connection-text/f-connection-text-path.directive.d.ts +17 -0
- package/lib/components/f-connection/f-connection-text/f-connection-text.component.d.ts +19 -0
- package/lib/components/f-connection/f-connection-text/index.d.ts +2 -0
- package/lib/components/f-connection/f-connection.component.d.ts +33 -0
- package/lib/components/f-connection/f-connection.module.d.ts +15 -0
- package/lib/components/f-connection/f-drag-handle/f-connection-drag-handle.component.d.ts +13 -0
- package/lib/components/f-connection/f-drag-handle/index.d.ts +1 -0
- package/lib/components/f-connection/f-gradient/f-connection-gradient.component.d.ts +21 -0
- package/lib/components/f-connection/f-gradient/index.d.ts +1 -0
- package/lib/components/f-connection/f-path/f-connection-path.component.d.ts +20 -0
- package/lib/components/f-connection/f-path/index.d.ts +1 -0
- package/lib/components/f-connection/f-selection/f-connection-selection.component.d.ts +15 -0
- package/lib/components/f-connection/f-selection/index.d.ts +1 -0
- package/lib/components/f-connection/f-temp-connection/f-temp-connection.component.d.ts +27 -0
- package/lib/components/f-connection/f-temp-connection/index.d.ts +2 -0
- package/lib/components/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +7 -0
- package/lib/components/f-connection/get-connection-intersect.d.ts +2 -0
- package/lib/components/f-connection/i-input-output-model.d.ts +5 -0
- package/lib/components/f-connection/index.d.ts +12 -0
- package/lib/components/f-connection/public-api.d.ts +3 -0
- package/lib/components/f-connectors/f-connector-base.d.ts +13 -0
- package/lib/components/f-connectors/f-node-input/f-node-input-base.d.ts +11 -0
- package/lib/components/f-connectors/f-node-input/f-node-input.directive.d.ts +17 -0
- package/lib/components/f-connectors/f-node-input/index.d.ts +3 -0
- package/lib/components/f-connectors/f-node-input/is-node-input.d.ts +1 -0
- package/lib/components/f-connectors/f-node-input/public-api.d.ts +1 -0
- package/lib/components/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +12 -0
- package/lib/components/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +17 -0
- package/lib/components/f-connectors/f-node-outlet/index.d.ts +3 -0
- package/lib/components/f-connectors/f-node-outlet/is-node-outlet.d.ts +1 -0
- package/lib/components/f-connectors/f-node-outlet/public-api.d.ts +1 -0
- package/lib/components/f-connectors/f-node-output/f-node-output-base.d.ts +10 -0
- package/lib/components/f-connectors/f-node-output/f-node-output.directive.d.ts +16 -0
- package/lib/components/f-connectors/f-node-output/index.d.ts +3 -0
- package/lib/components/f-connectors/f-node-output/is-node-output.d.ts +1 -0
- package/lib/components/f-connectors/f-node-output/public-api.d.ts +1 -0
- package/lib/components/f-connectors/f-out-connector-base.d.ts +4 -0
- package/lib/components/f-connectors/get-element-rect-in-canvas.d.ts +2 -0
- package/lib/components/f-connectors/index.d.ts +6 -0
- package/lib/components/f-connectors/public-api.d.ts +3 -0
- package/lib/components/f-flow/f-flow-base.d.ts +31 -0
- package/lib/components/f-flow/f-flow.component.d.ts +32 -0
- package/lib/components/f-flow/index.d.ts +2 -0
- package/lib/components/f-flow/public-api.d.ts +1 -0
- package/lib/components/f-node/f-drag-handle/f-drag-handle.directive.d.ts +19 -0
- package/lib/components/f-node/f-drag-handle/index.d.ts +2 -0
- package/lib/components/f-node/f-drag-handle/is-drag-handle.d.ts +1 -0
- package/lib/components/f-node/f-drag-handle/public-api.d.ts +1 -0
- package/lib/components/f-node/f-foreign-object/f-foreign-object-base.d.ts +20 -0
- package/lib/components/f-node/f-foreign-object/f-foreign-object.component.d.ts +16 -0
- package/lib/components/f-node/f-foreign-object/index.d.ts +2 -0
- package/lib/components/f-node/f-foreign-object/public-api.d.ts +1 -0
- package/lib/components/f-node/f-node-base.d.ts +24 -0
- package/lib/components/f-node/f-node.component.d.ts +23 -0
- package/lib/components/f-node/index.d.ts +4 -0
- package/lib/components/f-node/public-api.d.ts +3 -0
- package/lib/components/index.d.ts +5 -0
- package/lib/components/public-api.d.ts +4 -0
- package/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +16 -0
- package/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.d.ts +5 -0
- package/lib/directives/f-connect-if-intersect/connect-if-intersect/index.d.ts +2 -0
- package/lib/directives/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +16 -0
- package/lib/directives/f-connect-if-intersect/index.d.ts +2 -0
- package/lib/directives/f-connect-if-intersect/public-api.d.ts +1 -0
- package/lib/directives/f-containers/f-connections-container/f-connections-container-base.d.ts +18 -0
- package/lib/directives/f-containers/f-connections-container/f-connections-container.component.d.ts +14 -0
- package/lib/directives/f-containers/f-connections-container/index.d.ts +2 -0
- package/lib/directives/f-containers/f-connections-container/public-api.d.ts +1 -0
- package/lib/directives/f-containers/f-items-container/f-items-container-base.d.ts +23 -0
- package/lib/directives/f-containers/f-items-container/f-items-container.directive.d.ts +9 -0
- package/lib/directives/f-containers/f-items-container/index.d.ts +2 -0
- package/lib/directives/f-containers/f-items-container/public-api.d.ts +1 -0
- package/lib/directives/f-containers/f-nodes-container/f-nodes-container-base.d.ts +18 -0
- package/lib/directives/f-containers/f-nodes-container/f-nodes-container.component.d.ts +12 -0
- package/lib/directives/f-containers/f-nodes-container/index.d.ts +2 -0
- package/lib/directives/f-containers/f-nodes-container/public-api.d.ts +1 -0
- package/lib/directives/f-containers/index.d.ts +3 -0
- package/lib/directives/f-containers/public-api.d.ts +3 -0
- package/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.d.ts +12 -0
- package/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.d.ts +5 -0
- package/lib/directives/f-draggable/canvas/canvas-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.d.ts +13 -0
- package/lib/directives/f-draggable/canvas/canvas-on-pointer-move/index.d.ts +1 -0
- package/lib/directives/f-draggable/canvas/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.d.ts +6 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.d.ts +14 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.d.ts +7 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.d.ts +11 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection.event.d.ts +5 -0
- package/lib/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +16 -0
- package/lib/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 +8 -0
- package/lib/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 +5 -0
- package/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/create-connection/index.d.ts +5 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +9 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.d.ts +8 -0
- package/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.d.ts +8 -0
- package/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.d.ts +5 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/index.d.ts +4 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +8 -0
- package/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.d.ts +5 -0
- package/lib/directives/f-draggable/connections/index.d.ts +3 -0
- package/lib/directives/f-draggable/connections/reassign-connection/index.d.ts +4 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-connection.event.d.ts +7 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.d.ts +6 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.d.ts +11 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.d.ts +1 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +17 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.d.ts +2 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.d.ts +7 -0
- package/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.d.ts +11 -0
- package/lib/directives/f-draggable/default-drag-handler/default-drag.handler.d.ts +5 -0
- package/lib/directives/f-draggable/default-drag-handler/index.d.ts +1 -0
- package/lib/directives/f-draggable/e-draggable-type.d.ts +10 -0
- package/lib/directives/f-draggable/external-item/create-node.event.d.ts +6 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.d.ts +10 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.d.ts +5 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.d.ts +17 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-move/index.d.ts +1 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.d.ts +11 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.d.ts +7 -0
- package/lib/directives/f-draggable/external-item/external-item-on-pointer-up/index.d.ts +2 -0
- package/lib/directives/f-draggable/external-item/index.d.ts +4 -0
- package/lib/directives/f-draggable/f-draggable-base.d.ts +46 -0
- package/lib/directives/f-draggable/f-draggable.directive.d.ts +22 -0
- package/lib/directives/f-draggable/f-draggable.module.d.ts +11 -0
- package/lib/directives/f-draggable/f-draggable.service.d.ts +13 -0
- package/lib/directives/f-draggable/i-drag-handler.d.ts +9 -0
- package/lib/directives/f-draggable/i-draggable-item.d.ts +8 -0
- package/lib/directives/f-draggable/index.d.ts +13 -0
- package/lib/directives/f-draggable/node/index.d.ts +3 -0
- package/lib/directives/f-draggable/node/node-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.d.ts +9 -0
- package/lib/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.d.ts +17 -0
- package/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +15 -0
- package/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +15 -0
- package/lib/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +14 -0
- package/lib/directives/f-draggable/node/node-on-pointer-move/index.d.ts +4 -0
- package/lib/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.d.ts +15 -0
- package/lib/directives/f-draggable/node/node-on-pointer-up/index.d.ts +2 -0
- package/lib/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.d.ts +7 -0
- package/lib/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +11 -0
- package/lib/directives/f-draggable/public-api.d.ts +1 -0
- package/lib/directives/f-draggable/selection/index.d.ts +3 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-down/index.d.ts +2 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.d.ts +8 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +11 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-move/index.d.ts +1 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +19 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-up/index.d.ts +2 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.d.ts +9 -0
- package/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.d.ts +8 -0
- package/lib/directives/f-external-item/f-external-item-base.d.ts +11 -0
- package/lib/directives/f-external-item/f-external-item.directive.d.ts +16 -0
- package/lib/directives/f-external-item/f-external-item.service.d.ts +10 -0
- package/lib/directives/f-external-item/index.d.ts +4 -0
- package/lib/directives/f-external-item/is-external-item.d.ts +2 -0
- package/lib/directives/f-external-item/public-api.d.ts +1 -0
- package/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.d.ts +3 -0
- package/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.d.ts +3 -0
- package/lib/directives/f-line-alignment/domain/i-line-alignment-result.d.ts +5 -0
- package/lib/directives/f-line-alignment/domain/i-nearest-coordinate-result.d.ts +4 -0
- package/lib/directives/f-line-alignment/domain/index.d.ts +4 -0
- package/lib/directives/f-line-alignment/f-line-alignment.directive.d.ts +25 -0
- package/lib/directives/f-line-alignment/index.d.ts +2 -0
- package/lib/directives/f-line-alignment/public-api.d.ts +1 -0
- package/lib/directives/f-selection/f-selection.directive.d.ts +15 -0
- package/lib/directives/f-selection/index.d.ts +1 -0
- package/lib/directives/f-selection/public-api.d.ts +1 -0
- package/lib/directives/f-zoom/f-zoom-base.d.ts +24 -0
- package/lib/directives/f-zoom/f-zoom.directive.d.ts +15 -0
- package/lib/directives/f-zoom/index.d.ts +2 -0
- package/lib/directives/f-zoom/public-api.d.ts +1 -0
- package/lib/directives/index.d.ts +7 -0
- package/lib/directives/public-api.d.ts +7 -0
- package/lib/f-flow.module.d.ts +21 -0
- package/lib/i-has-state-changes.d.ts +4 -0
- package/lib/i-selectable.d.ts +6 -0
- package/lib/internal/f-backgroud/f-background-base.d.ts +15 -0
- package/lib/internal/f-backgroud/f-background.directive.d.ts +9 -0
- package/lib/internal/f-backgroud/index.d.ts +2 -0
- package/lib/internal/f-canvas/f-canvas-base.d.ts +12 -0
- package/lib/internal/f-canvas/f-canvas.directive.d.ts +8 -0
- package/lib/internal/f-canvas/index.d.ts +2 -0
- package/lib/internal/index.d.ts +2 -0
- package/lib/public-api.d.ts +4 -0
- package/package.json +26 -0
- package/public-api.d.ts +1 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AbstractConstructor, Constructor } from './constructor';
|
|
2
|
+
import { IPoint, ITransformable } from '@foblex/core';
|
|
3
|
+
export interface ICanChangePosition {
|
|
4
|
+
setPosition(position: IPoint): void;
|
|
5
|
+
getPosition(): IPoint;
|
|
6
|
+
}
|
|
7
|
+
type CanChangePositionConstructor = Constructor<ICanChangePosition> & AbstractConstructor<ICanChangePosition>;
|
|
8
|
+
export declare function mixinChangePosition<T extends AbstractConstructor<ITransformable>>(base: T): CanChangePositionConstructor & T;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AbstractConstructor, Constructor } from '../constructor';
|
|
2
|
+
import { ICanChangeZoom } from './i-can-change-zoom';
|
|
3
|
+
import { ITransformable } from '@foblex/core';
|
|
4
|
+
type CanChangeZoomConstructor = Constructor<ICanChangeZoom> & AbstractConstructor<ICanChangeZoom>;
|
|
5
|
+
export declare function mixinChangeZoom<T extends AbstractConstructor<ITransformable>>(base: T): CanChangeZoomConstructor & T;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AbstractConstructor, Constructor } from '../constructor';
|
|
2
|
+
import { ICanFitToParent } from './i-can-fit-to-parent';
|
|
3
|
+
import { ITransformable } from '@foblex/core';
|
|
4
|
+
type CanFitToParentConstructor = Constructor<ICanFitToParent> & AbstractConstructor<ICanFitToParent>;
|
|
5
|
+
export declare function mixinFitToParent<T extends AbstractConstructor<ITransformable>>(base: T): CanFitToParentConstructor & T;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { AbstractConstructor, Constructor } from '../constructor';
|
|
2
|
+
import { ICanOneToOneCentering } from './i-can-one-to-one-centering';
|
|
3
|
+
import { ITransformable } from '@foblex/core';
|
|
4
|
+
type CanOneToOneCenteringConstructor = Constructor<ICanOneToOneCentering> & AbstractConstructor<ICanOneToOneCentering>;
|
|
5
|
+
export declare function mixinOneToOneCentering<T extends AbstractConstructor<ITransformable>>(base: T): CanOneToOneCenteringConstructor & T;
|
|
6
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { IHasHostElement, IVector } from '@foblex/core';
|
|
3
|
+
import { FNodeOutputBase } from '../f-connectors';
|
|
4
|
+
import { IInputOutputModel } from './i-input-output-model';
|
|
5
|
+
import { ISelectable } from '../../i-selectable';
|
|
6
|
+
import { FConnectionPathComponent } from './f-path/f-connection-path.component';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare const F_CONNECTION_COMPONENT: InjectionToken<FConnectionBase<FNodeOutputBase>>;
|
|
9
|
+
export declare abstract class FConnectionBase<TOutput = FNodeOutputBase> implements IHasHostElement, ISelectable {
|
|
10
|
+
abstract id: any;
|
|
11
|
+
abstract hostElement: SVGGElement;
|
|
12
|
+
abstract outputId: any;
|
|
13
|
+
abstract inputId: any;
|
|
14
|
+
fromTo: IInputOutputModel<TOutput> | undefined;
|
|
15
|
+
abstract fPath: FConnectionPathComponent;
|
|
16
|
+
path: string;
|
|
17
|
+
vector: IVector;
|
|
18
|
+
initialize(): void;
|
|
19
|
+
isContains(element: HTMLElement | SVGElement): boolean;
|
|
20
|
+
abstract initializeDrag(): void;
|
|
21
|
+
abstract redraw(): void;
|
|
22
|
+
abstract setVector(vector: IVector): void;
|
|
23
|
+
abstract completeDrag(): void;
|
|
24
|
+
deselect(): void;
|
|
25
|
+
select(): void;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionBase<any>, never>;
|
|
27
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FConnectionBase<any>, never, never, {}, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const F_CONNECTION_IDENTIFIERS: {
|
|
2
|
+
textId(connectionId: string): string;
|
|
3
|
+
connectionForSelectionId(connectionId: string): string;
|
|
4
|
+
connectionId(connectionId: string): string;
|
|
5
|
+
gradientId(connectionId: string): string;
|
|
6
|
+
linkToGradient(connectionId: string): string;
|
|
7
|
+
linkToConnection(connectionId: string): string;
|
|
8
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from '@angular/core';
|
|
2
|
+
import { IHasHostElement } from '@foblex/core';
|
|
3
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
4
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FConnectionTextPathDirective implements IHasHostElement, OnInit {
|
|
7
|
+
private elementReference;
|
|
8
|
+
fromTo: IInputOutputModel<FNodeOutputBase | FNodeOutletBase> | undefined;
|
|
9
|
+
get linkToConnection(): string;
|
|
10
|
+
get hostElement(): SVGPathElement;
|
|
11
|
+
constructor(elementReference: ElementRef<SVGPathElement>);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
getBBox(): DOMRect;
|
|
14
|
+
setOffset(offset: number): void;
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionTextPathDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FConnectionTextPathDirective, "textPath[f-connection-text-path]", never, { "fromTo": { "alias": "fromTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { IHasHostElement, IVector } from '@foblex/core';
|
|
3
|
+
import { FConnectionTextPathDirective } from './f-connection-text-path.directive';
|
|
4
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
5
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FConnectionTextComponent implements IHasHostElement {
|
|
8
|
+
private elementReference;
|
|
9
|
+
fromTo: IInputOutputModel<FNodeOutputBase | FNodeOutletBase> | undefined;
|
|
10
|
+
get textId(): string;
|
|
11
|
+
get hostElement(): SVGTextElement;
|
|
12
|
+
textPathDirective: FConnectionTextPathDirective;
|
|
13
|
+
constructor(elementReference: ElementRef<SVGTextElement>);
|
|
14
|
+
redraw(vector: IVector): void;
|
|
15
|
+
private static isTextReverse;
|
|
16
|
+
private static getTextStartOffset;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionTextComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionTextComponent, "text[f-connection-text]", never, { "fromTo": { "alias": "fromTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
19
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { IVector } from '@foblex/core';
|
|
3
|
+
import { FConnectionBase } from './f-connection-base';
|
|
4
|
+
import { FConnectionTextComponent } from './f-connection-text/f-connection-text.component';
|
|
5
|
+
import { FConnectionDragHandleComponent } from './f-drag-handle';
|
|
6
|
+
import { FConnectionSelectionComponent } from './f-selection/f-connection-selection.component';
|
|
7
|
+
import { FConnectionGradientComponent } from './f-gradient/f-connection-gradient.component';
|
|
8
|
+
import { FConnectionPathComponent } from './f-path/f-connection-path.component';
|
|
9
|
+
import { FFlowBase } from '../f-flow';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class FConnectionComponent extends FConnectionBase {
|
|
12
|
+
private elementReference;
|
|
13
|
+
private flow;
|
|
14
|
+
id: string;
|
|
15
|
+
outputId: any;
|
|
16
|
+
inputId: any;
|
|
17
|
+
fPath: FConnectionPathComponent;
|
|
18
|
+
fGradient: FConnectionGradientComponent;
|
|
19
|
+
fDragHandle: FConnectionDragHandleComponent;
|
|
20
|
+
fSelection: FConnectionSelectionComponent;
|
|
21
|
+
fText: FConnectionTextComponent;
|
|
22
|
+
get hostElement(): SVGGElement;
|
|
23
|
+
constructor(elementReference: ElementRef<SVGGElement>, flow: FFlowBase);
|
|
24
|
+
initialize(): void;
|
|
25
|
+
initializeDrag(): void;
|
|
26
|
+
setVector(vector: IVector): void;
|
|
27
|
+
redraw(): void;
|
|
28
|
+
select(): void;
|
|
29
|
+
deselect(): void;
|
|
30
|
+
completeDrag(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionComponent, "g[fConnection]", never, { "id": { "alias": "id"; "required": false; }; "outputId": { "alias": "outputId"; "required": false; }; "inputId": { "alias": "inputId"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./f-temp-connection/f-temp-connection.component";
|
|
3
|
+
import * as i2 from "./f-connection.component";
|
|
4
|
+
import * as i3 from "./f-drag-handle/f-connection-drag-handle.component";
|
|
5
|
+
import * as i4 from "./f-gradient/f-connection-gradient.component";
|
|
6
|
+
import * as i5 from "./f-path/f-connection-path.component";
|
|
7
|
+
import * as i6 from "./f-connection-text/f-connection-text.component";
|
|
8
|
+
import * as i7 from "./f-connection-text/f-connection-text-path.directive";
|
|
9
|
+
import * as i8 from "./f-selection/f-connection-selection.component";
|
|
10
|
+
import * as i9 from "@angular/common";
|
|
11
|
+
export declare class FConnectionModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FConnectionModule, [typeof i1.FTempConnectionComponent, typeof i2.FConnectionComponent, typeof i3.FConnectionDragHandleComponent, typeof i4.FConnectionGradientComponent, typeof i5.FConnectionPathComponent, typeof i6.FConnectionTextComponent, typeof i7.FConnectionTextPathDirective, typeof i8.FConnectionSelectionComponent], [typeof i9.CommonModule], [typeof i1.FTempConnectionComponent, typeof i2.FConnectionComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FConnectionModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { IHasHostElement, IPoint } from '@foblex/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const F_CONNECTION_DRAG_HANDLE_CLASS = "f-connection-drag-handle";
|
|
5
|
+
export declare class FConnectionDragHandleComponent implements IHasHostElement {
|
|
6
|
+
private elementReference;
|
|
7
|
+
readonly class: string;
|
|
8
|
+
get hostElement(): SVGCircleElement;
|
|
9
|
+
constructor(elementReference: ElementRef<SVGCircleElement>);
|
|
10
|
+
redraw(point: IPoint): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionDragHandleComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionDragHandleComponent, "circle[f-connection-drag-handle]", never, {}, {}, never, never, false, never>;
|
|
13
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-connection-drag-handle.component';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { AfterContentInit, ElementRef } from "@angular/core";
|
|
2
|
+
import { IHasHostElement, IVector } from '@foblex/core';
|
|
3
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
4
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FConnectionGradientComponent implements IHasHostElement, AfterContentInit {
|
|
7
|
+
private elementReference;
|
|
8
|
+
fromTo: IInputOutputModel<FNodeOutputBase | FNodeOutletBase> | undefined;
|
|
9
|
+
get gradientId(): string;
|
|
10
|
+
get hostElement(): SVGLinearGradientElement;
|
|
11
|
+
get stop1Element(): SVGStopElement;
|
|
12
|
+
get stop2Element(): SVGStopElement;
|
|
13
|
+
constructor(elementReference: ElementRef<SVGLinearGradientElement>);
|
|
14
|
+
ngAfterContentInit(): void;
|
|
15
|
+
private updateGradient;
|
|
16
|
+
private setFromColor;
|
|
17
|
+
private setToColor;
|
|
18
|
+
redraw(vector: IVector): void;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionGradientComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionGradientComponent, "linearGradient[fConnectionGradient]", never, { "fromTo": { "alias": "fromTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-connection-gradient.component';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { ElementRef, OnInit } from "@angular/core";
|
|
2
|
+
import { IHasHostElement } from '@foblex/core';
|
|
3
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
4
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
5
|
+
import { ISelectable } from '../../../i-selectable';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FConnectionPathComponent implements IHasHostElement, ISelectable, OnInit {
|
|
8
|
+
private elementReference;
|
|
9
|
+
fromTo: IInputOutputModel<FNodeOutputBase | FNodeOutletBase> | undefined;
|
|
10
|
+
get linkToGradient(): string;
|
|
11
|
+
get attrConnectionId(): string;
|
|
12
|
+
get hostElement(): SVGPathElement;
|
|
13
|
+
constructor(elementReference: ElementRef<SVGPathElement>);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
setPath(path: string): void;
|
|
16
|
+
select(): void;
|
|
17
|
+
deselect(): void;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionPathComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionPathComponent, "path[f-connection-path]", never, { "fromTo": { "alias": "fromTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-connection-path.component';
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ElementRef } from "@angular/core";
|
|
2
|
+
import { IHasHostElement } from '@foblex/core';
|
|
3
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
4
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class FConnectionSelectionComponent implements IHasHostElement {
|
|
7
|
+
private elementReference;
|
|
8
|
+
fromTo: IInputOutputModel<FNodeOutputBase | FNodeOutletBase> | undefined;
|
|
9
|
+
get connectionForSelectionId(): string;
|
|
10
|
+
get hostElement(): SVGPathElement;
|
|
11
|
+
constructor(elementReference: ElementRef<SVGPathElement>);
|
|
12
|
+
setPath(path: string): void;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FConnectionSelectionComponent, never>;
|
|
14
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FConnectionSelectionComponent, "path[fConnectionSelection]", never, { "fromTo": { "alias": "fromTo"; "required": false; }; }, {}, never, never, false, never>;
|
|
15
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-connection-selection.component';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, InjectionToken } from "@angular/core";
|
|
2
|
+
import { FConnectionBase } from '../f-connection-base';
|
|
3
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
4
|
+
import { FConnectionPathComponent } from '../f-path/f-connection-path.component';
|
|
5
|
+
import { FConnectionGradientComponent } from '../f-gradient/f-connection-gradient.component';
|
|
6
|
+
import { FConnectionTextComponent } from '../f-connection-text/f-connection-text.component';
|
|
7
|
+
import { IVector } from '@foblex/core';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare const F_TEMP_CONNECTION_COMPONENT: InjectionToken<FConnectionBase<FNodeOutputBase>>;
|
|
10
|
+
export declare class FTempConnectionComponent extends FConnectionBase<FNodeOutputBase | FNodeOutletBase> implements AfterViewInit {
|
|
11
|
+
private elementReference;
|
|
12
|
+
id: string;
|
|
13
|
+
outputId: any;
|
|
14
|
+
inputId: any;
|
|
15
|
+
fPath: FConnectionPathComponent;
|
|
16
|
+
fGradient: FConnectionGradientComponent;
|
|
17
|
+
fText: FConnectionTextComponent;
|
|
18
|
+
get hostElement(): SVGGElement;
|
|
19
|
+
constructor(elementReference: ElementRef<SVGGElement>);
|
|
20
|
+
ngAfterViewInit(): void;
|
|
21
|
+
initializeDrag(): void;
|
|
22
|
+
setVector(vector: IVector): void;
|
|
23
|
+
redraw(): void;
|
|
24
|
+
completeDrag(): void;
|
|
25
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FTempConnectionComponent, never>;
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FTempConnectionComponent, "g[fTempConnection]", never, {}, {}, never, never, false, never>;
|
|
27
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IInputOutputModel } from '../i-input-output-model';
|
|
2
|
+
import { FNodeOutletBase, FNodeOutputBase } from '../../f-connectors';
|
|
3
|
+
export declare class TempConnectionInputOutputModel implements IInputOutputModel<FNodeOutputBase | FNodeOutletBase, null> {
|
|
4
|
+
output: FNodeOutputBase | FNodeOutletBase;
|
|
5
|
+
input: null;
|
|
6
|
+
constructor(output: FNodeOutputBase | FNodeOutletBase);
|
|
7
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from './f-connection-text';
|
|
2
|
+
export * from './f-drag-handle';
|
|
3
|
+
export * from './f-gradient';
|
|
4
|
+
export * from './f-path';
|
|
5
|
+
export * from './f-selection';
|
|
6
|
+
export * from './f-temp-connection';
|
|
7
|
+
export * from './f-connection.component';
|
|
8
|
+
export * from './f-connection.module';
|
|
9
|
+
export * from './f-connection-base';
|
|
10
|
+
export * from './f-connection-identifiers';
|
|
11
|
+
export * from './get-connection-intersect';
|
|
12
|
+
export * from './i-input-output-model';
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Subject } from 'rxjs';
|
|
2
|
+
import { IHasHostElement, IRect, ITransformModel } from '@foblex/core';
|
|
3
|
+
import { IHasStateChanges } from '../../i-has-state-changes';
|
|
4
|
+
export declare abstract class FConnectorBase implements IHasStateChanges, IHasHostElement {
|
|
5
|
+
abstract id: any;
|
|
6
|
+
abstract color: string;
|
|
7
|
+
abstract disabled: boolean;
|
|
8
|
+
abstract hostElement: HTMLElement | SVGElement;
|
|
9
|
+
readonly stateChanges: Subject<void>;
|
|
10
|
+
abstract canBeConnected: boolean;
|
|
11
|
+
getElementRectInCanvas(transform: ITransformModel, svgHost: SVGSVGElement): IRect;
|
|
12
|
+
isContains(element: HTMLElement | SVGElement): boolean;
|
|
13
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { FConnectorBase } from '../f-connector-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const F_NODE_INPUT_DIRECTIVE: InjectionToken<FNodeInputBase>;
|
|
5
|
+
export declare abstract class FNodeInputBase extends FConnectorBase {
|
|
6
|
+
abstract multiple: boolean;
|
|
7
|
+
isConnected: boolean;
|
|
8
|
+
get canBeConnected(): boolean;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeInputBase, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeInputBase, never, never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { FNodeInputBase } from './f-node-input-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FNodeInputDirective extends FNodeInputBase {
|
|
5
|
+
private elementReference;
|
|
6
|
+
id: any;
|
|
7
|
+
fNodeInputColor: string | undefined;
|
|
8
|
+
get color(): string;
|
|
9
|
+
multiple: boolean;
|
|
10
|
+
get disabled(): boolean;
|
|
11
|
+
set disabled(isDisabled: boolean | undefined | string);
|
|
12
|
+
private isDisabled;
|
|
13
|
+
get hostElement(): HTMLElement | SVGElement;
|
|
14
|
+
constructor(elementReference: ElementRef<HTMLElement>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeInputDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeInputDirective, "[fNodeInput]", never, { "id": { "alias": "id"; "required": false; }; "fNodeInputColor": { "alias": "fNodeInputColor"; "required": false; }; "multiple": { "alias": "fNodeInputMultiple"; "required": false; }; "disabled": { "alias": "fNodeInputDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isNodeInput(element: HTMLElement | SVGElement): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-node-input.directive';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { FOutConnectorBase } from '../f-out-connector-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const F_NODE_OUTLET_DIRECTIVE: InjectionToken<FNodeOutletBase>;
|
|
5
|
+
export declare abstract class FNodeOutletBase extends FOutConnectorBase {
|
|
6
|
+
abstract isConnectionFromOutlet: boolean;
|
|
7
|
+
private outputs;
|
|
8
|
+
get canBeConnected(): boolean;
|
|
9
|
+
setOutputs(outputs: FOutConnectorBase[]): void;
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutletBase, never>;
|
|
11
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutletBase, never, never, {}, {}, never, never, false, never>;
|
|
12
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { FNodeOutletBase } from './f-node-outlet-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FNodeOutletDirective extends FNodeOutletBase {
|
|
5
|
+
private elementReference;
|
|
6
|
+
id: string;
|
|
7
|
+
color: string;
|
|
8
|
+
name: string;
|
|
9
|
+
get disabled(): boolean;
|
|
10
|
+
set disabled(isDisabled: boolean | undefined | string);
|
|
11
|
+
private isDisabled;
|
|
12
|
+
isConnectionFromOutlet: boolean;
|
|
13
|
+
get hostElement(): HTMLElement | SVGElement;
|
|
14
|
+
constructor(elementReference: ElementRef<HTMLElement>);
|
|
15
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutletDirective, never>;
|
|
16
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutletDirective, "[fNodeOutlet]", never, { "id": { "alias": "id"; "required": false; }; "color": { "alias": "fNodeOutletColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "fNodeOutletDisabled"; "required": false; }; "isConnectionFromOutlet": { "alias": "isConnectionFromOutlet"; "required": false; }; }, {}, never, never, false, never>;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isNodeOutlet(element: HTMLElement | SVGElement): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-node-outlet.directive';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { InjectionToken } from '@angular/core';
|
|
2
|
+
import { FOutConnectorBase } from '../f-out-connector-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const F_NODE_OUTPUT_DIRECTIVE: InjectionToken<FNodeOutputBase>;
|
|
5
|
+
export declare abstract class FNodeOutputBase extends FOutConnectorBase {
|
|
6
|
+
isConnected: boolean;
|
|
7
|
+
get canBeConnected(): boolean;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutputBase, never>;
|
|
9
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutputBase, never, never, {}, {}, never, never, false, never>;
|
|
10
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { FNodeOutputBase } from './f-node-output-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FNodeOutputDirective extends FNodeOutputBase {
|
|
5
|
+
private elementReference;
|
|
6
|
+
id: any;
|
|
7
|
+
color: string;
|
|
8
|
+
name: string;
|
|
9
|
+
get disabled(): boolean;
|
|
10
|
+
set disabled(isDisabled: boolean | undefined | string);
|
|
11
|
+
private isDisabled;
|
|
12
|
+
get hostElement(): HTMLElement | SVGElement;
|
|
13
|
+
constructor(elementReference: ElementRef<HTMLElement>);
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeOutputDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeOutputDirective, "[fNodeOutput]", never, { "id": { "alias": "id"; "required": false; }; "color": { "alias": "fNodeOutputColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "fNodeOutputDisabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isNodeOutput(element: HTMLElement | SVGElement): boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-node-output.directive';
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { AfterContentInit, ChangeDetectorRef, ElementRef, InjectionToken, NgZone, OnDestroy, QueryList } from '@angular/core';
|
|
2
|
+
import { IHasHostElement, ITransformModel } from '@foblex/core';
|
|
3
|
+
import { FItemsContainerBase } from '../../directives/f-containers/f-items-container';
|
|
4
|
+
import { FNodeInputBase, FNodeOutletBase, FNodeOutputBase } from '../f-connectors';
|
|
5
|
+
import { FBackgroundBase } from '../../internal/f-backgroud';
|
|
6
|
+
import { FConnectionsContainerBase } from '../../directives/f-containers/f-connections-container/f-connections-container-base';
|
|
7
|
+
import { FNodesContainerBase } from '../../directives/f-containers/f-nodes-container';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
export declare const F_FLOW_COMPONENT: InjectionToken<FFlowBase>;
|
|
10
|
+
export declare abstract class FFlowBase implements IHasHostElement, AfterContentInit, OnDestroy {
|
|
11
|
+
private elementReference;
|
|
12
|
+
private changeDetectorRef;
|
|
13
|
+
private ngZone;
|
|
14
|
+
abstract id: any;
|
|
15
|
+
get hostElement(): SVGSVGElement;
|
|
16
|
+
private readonly onDestroy;
|
|
17
|
+
abstract fNodesContainer: FNodesContainerBase;
|
|
18
|
+
abstract fConnectionsContainer: FConnectionsContainerBase;
|
|
19
|
+
abstract fItemsContainer: FItemsContainerBase;
|
|
20
|
+
abstract fBackground: FBackgroundBase;
|
|
21
|
+
abstract transform: ITransformModel;
|
|
22
|
+
abstract outlets: QueryList<FNodeOutletBase>;
|
|
23
|
+
abstract outputs: QueryList<FNodeOutputBase>;
|
|
24
|
+
abstract inputs: QueryList<FNodeInputBase>;
|
|
25
|
+
protected constructor(elementReference: ElementRef<SVGSVGElement>, changeDetectorRef: ChangeDetectorRef, ngZone: NgZone);
|
|
26
|
+
ngAfterContentInit(): void;
|
|
27
|
+
protected subscribeOnComponentsChanges(): void;
|
|
28
|
+
ngOnDestroy(): void;
|
|
29
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FFlowBase, never>;
|
|
30
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FFlowBase, never, never, {}, {}, never, never, false, never>;
|
|
31
|
+
}
|