@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
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { IDragHandler } from '../../../i-drag-handler';
|
|
3
|
+
import { FFlowBase } from '../../../../../components';
|
|
4
|
+
import { ReassignConnectionOnPointerDownRequest } from './reassign-connection-on-pointer-down.request';
|
|
5
|
+
export declare class ReassignConnectionOnPointerDown implements IHandler<ReassignConnectionOnPointerDownRequest, IDragHandler | undefined> {
|
|
6
|
+
private fFlow;
|
|
7
|
+
private hostElement;
|
|
8
|
+
private get fConnectionsContainer();
|
|
9
|
+
constructor(fFlow: FFlowBase, hostElement: SVGSVGElement);
|
|
10
|
+
handle(payload: ReassignConnectionOnPointerDownRequest): IDragHandler | undefined;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './reassign-connection.on-pointer-move';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IPoint, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { FConnectionBase } from '../../../../../components/f-connection/f-connection-base';
|
|
3
|
+
import { FNodeOutputBase } from '../../../../../components';
|
|
4
|
+
import { IDraggableItem } from '../../../i-draggable-item';
|
|
5
|
+
import { EDraggableType } from '../../../e-draggable-type';
|
|
6
|
+
export declare class ReassignConnectionOnPointerMove implements IDraggableItem {
|
|
7
|
+
connection: FConnectionBase<FNodeOutputBase>;
|
|
8
|
+
private canvasTransform;
|
|
9
|
+
private canvasHost;
|
|
10
|
+
readonly type: EDraggableType;
|
|
11
|
+
private readonly onPointerDownFromConnectorRect;
|
|
12
|
+
private readonly onPointerDownToConnectorRect;
|
|
13
|
+
constructor(connection: FConnectionBase<FNodeOutputBase>, canvasTransform: ITransformModel, canvasHost: SVGSVGElement);
|
|
14
|
+
initialize(): void;
|
|
15
|
+
move(difference: IPoint): void;
|
|
16
|
+
complete(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IPointerEvent } from '@foblex/core';
|
|
2
|
+
import { IDragHandler } from '../../../i-drag-handler';
|
|
3
|
+
export declare class ReassignConnectionOnPointerUpRequest {
|
|
4
|
+
event: IPointerEvent;
|
|
5
|
+
dragHandler: IDragHandler;
|
|
6
|
+
constructor(event: IPointerEvent, dragHandler: IDragHandler);
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { FFlowBase } from '../../../../../components';
|
|
3
|
+
import { ReassignConnectionOnPointerUpRequest } from './reassign-connection-on-pointer-up.request';
|
|
4
|
+
import { EventEmitter } from '@angular/core';
|
|
5
|
+
import { ReassignConnectionEvent } from '../reassign-connection.event';
|
|
6
|
+
export declare class ReassignConnectionOnPointerUp implements IHandler<ReassignConnectionOnPointerUpRequest, void> {
|
|
7
|
+
private fFlow;
|
|
8
|
+
private onReassignConnection;
|
|
9
|
+
constructor(fFlow: FFlowBase, onReassignConnection: EventEmitter<ReassignConnectionEvent>);
|
|
10
|
+
handle(payload: ReassignConnectionOnPointerUpRequest): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './default-drag.handler';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export declare enum EDraggableType {
|
|
2
|
+
NODE = "node",
|
|
3
|
+
REASSIGN_CONNECTION = "reassign-connection",
|
|
4
|
+
TEMP_CONNECTION = "temp-connection",
|
|
5
|
+
CONNECTION = "connection",
|
|
6
|
+
CANVAS = "canvas",
|
|
7
|
+
PALETTE_ITEM = "palette-item",
|
|
8
|
+
DEFAULT = "default",
|
|
9
|
+
SELECTION = "selection"
|
|
10
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { ExternalItemOnPointerDownRequest } from './external-item-on-pointer-down.request';
|
|
3
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
4
|
+
import { FExternalItemService } from '../../../f-external-item';
|
|
5
|
+
export declare class ExternalItemOnPointerDownHandler implements IHandler<ExternalItemOnPointerDownRequest, IDragHandler | undefined> {
|
|
6
|
+
private fExternalItemService;
|
|
7
|
+
private hostElement;
|
|
8
|
+
constructor(fExternalItemService: FExternalItemService, hostElement: SVGSVGElement);
|
|
9
|
+
handle(payload: ExternalItemOnPointerDownRequest): IDragHandler | undefined;
|
|
10
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IPoint, IRect } from '@foblex/core';
|
|
2
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
3
|
+
import { FExternalItemBase } from '../../../f-external-item';
|
|
4
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
5
|
+
export declare class ExternalItemOnPointerMoveHandler implements IDraggableItem {
|
|
6
|
+
externalItem: FExternalItemBase;
|
|
7
|
+
readonly type = EDraggableType.PALETTE_ITEM;
|
|
8
|
+
placeholder: HTMLElement | SVGElement | undefined;
|
|
9
|
+
private onPointerDownRect;
|
|
10
|
+
private difference;
|
|
11
|
+
constructor(externalItem: FExternalItemBase);
|
|
12
|
+
private getStyle;
|
|
13
|
+
initialize(): void;
|
|
14
|
+
move(difference: IPoint): void;
|
|
15
|
+
getPlaceholderRect(): IRect;
|
|
16
|
+
complete(): void;
|
|
17
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './external-item-on-pointer-move.handler';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { ExternalItemOnPointerUpRequest } from './external-item-on-pointer-up.request';
|
|
3
|
+
import { FFlowBase } from '../../../../components';
|
|
4
|
+
import { EventEmitter } from '@angular/core';
|
|
5
|
+
import { CreateNodeEvent } from '../create-node.event';
|
|
6
|
+
export declare class ExternalItemOnPointerUpHandler implements IHandler<ExternalItemOnPointerUpRequest, void> {
|
|
7
|
+
private fFlow;
|
|
8
|
+
private onCreateNode;
|
|
9
|
+
constructor(fFlow: FFlowBase, onCreateNode: EventEmitter<CreateNodeEvent>);
|
|
10
|
+
handle(payload: ExternalItemOnPointerUpRequest): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IPointerEvent } from '@foblex/core';
|
|
2
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
3
|
+
export declare class ExternalItemOnPointerUpRequest {
|
|
4
|
+
event: IPointerEvent;
|
|
5
|
+
dragHandler: IDragHandler;
|
|
6
|
+
constructor(event: IPointerEvent, dragHandler: IDragHandler);
|
|
7
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
import { IDragAndDropBase, IHasHostElement, IPointerEvent } from '@foblex/core';
|
|
2
|
+
import { AfterViewInit, ElementRef, EventEmitter, InjectionToken, NgZone, OnDestroy } from '@angular/core';
|
|
3
|
+
import { FFlowBase, FSelectionDirective } from '../../components';
|
|
4
|
+
import { ReassignConnectionEvent } from './connections';
|
|
5
|
+
import { CreateConnectionEvent } from './connections';
|
|
6
|
+
import { FConnectIfIntersectDirective } from '../f-connect-if-intersect';
|
|
7
|
+
import { FLineAlignmentDirective } from '../f-line-alignment';
|
|
8
|
+
import { FExternalItemService } from '../f-external-item';
|
|
9
|
+
import { FDraggableService } from './f-draggable.service';
|
|
10
|
+
import { CreateNodeEvent } from './external-item';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare const F_DND_DIRECTIVE: InjectionToken<FDraggableBase>;
|
|
13
|
+
export declare abstract class FDraggableBase extends IDragAndDropBase implements IHasHostElement, AfterViewInit, OnDestroy {
|
|
14
|
+
protected fFlow: FFlowBase;
|
|
15
|
+
protected fDNDService: FDraggableService;
|
|
16
|
+
protected fExternalItemService: FExternalItemService;
|
|
17
|
+
private elementReference;
|
|
18
|
+
private subscriptions$;
|
|
19
|
+
get hostElement(): SVGSVGElement;
|
|
20
|
+
private get transform();
|
|
21
|
+
private get fItemsContainer();
|
|
22
|
+
private get fBackground();
|
|
23
|
+
private dragHandler;
|
|
24
|
+
private dragSelection;
|
|
25
|
+
private reassignConnection;
|
|
26
|
+
private dragCanvas;
|
|
27
|
+
private dragNode;
|
|
28
|
+
private createConnection;
|
|
29
|
+
private dragExternalItem;
|
|
30
|
+
abstract onCreateConnection: EventEmitter<CreateConnectionEvent>;
|
|
31
|
+
abstract onReassignConnection: EventEmitter<ReassignConnectionEvent>;
|
|
32
|
+
abstract onCreateNode: EventEmitter<CreateNodeEvent>;
|
|
33
|
+
abstract fLineAlignment: FLineAlignmentDirective | undefined;
|
|
34
|
+
abstract fConnectIfIntersect: FConnectIfIntersectDirective | undefined;
|
|
35
|
+
abstract fSelection: FSelectionDirective | undefined;
|
|
36
|
+
private selectedItems;
|
|
37
|
+
protected constructor(fFlow: FFlowBase, fDNDService: FDraggableService, fExternalItemService: FExternalItemService, elementReference: ElementRef<SVGSVGElement>, ngZone: NgZone);
|
|
38
|
+
ngAfterViewInit(): void;
|
|
39
|
+
onPointerDown(event: IPointerEvent): boolean;
|
|
40
|
+
protected prepareDragSequence(event: IPointerEvent): void;
|
|
41
|
+
onPointerMove(event: IPointerEvent): void;
|
|
42
|
+
onPointerUp(event: IPointerEvent): void;
|
|
43
|
+
ngOnDestroy(): void;
|
|
44
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableBase, never>;
|
|
45
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FDraggableBase, never, never, {}, {}, never, never, false, never>;
|
|
46
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ElementRef, EventEmitter, NgZone } from "@angular/core";
|
|
2
|
+
import { FDraggableBase } from './f-draggable-base';
|
|
3
|
+
import { FFlowBase, FSelectionDirective } from '../../components';
|
|
4
|
+
import { FConnectIfIntersectDirective } from '../f-connect-if-intersect';
|
|
5
|
+
import { FLineAlignmentDirective } from '../f-line-alignment';
|
|
6
|
+
import { FExternalItemService } from '../f-external-item';
|
|
7
|
+
import { FDraggableService } from './f-draggable.service';
|
|
8
|
+
import { CreateConnectionEvent, ReassignConnectionEvent } from './connections';
|
|
9
|
+
import { CreateNodeEvent } from './external-item';
|
|
10
|
+
import * as i0 from "@angular/core";
|
|
11
|
+
export declare class FDraggableDirective extends FDraggableBase {
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
fLineAlignment: FLineAlignmentDirective | undefined;
|
|
14
|
+
fConnectIfIntersect: FConnectIfIntersectDirective | undefined;
|
|
15
|
+
fSelection: FSelectionDirective | undefined;
|
|
16
|
+
onCreateConnection: EventEmitter<CreateConnectionEvent>;
|
|
17
|
+
onReassignConnection: EventEmitter<ReassignConnectionEvent>;
|
|
18
|
+
onCreateNode: EventEmitter<CreateNodeEvent>;
|
|
19
|
+
constructor(fFlow: FFlowBase, fDNDService: FDraggableService, fExternalItemService: FExternalItemService, elementReference: ElementRef<SVGSVGElement>, ngZone: NgZone);
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableDirective, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FDraggableDirective, "svg[fDraggable]", never, { "disabled": { "alias": "disabled"; "required": false; }; }, { "onCreateConnection": "onCreateConnection"; "onReassignConnection": "onReassignConnection"; "onCreateNode": "onCreateNode"; }, ["fLineAlignment", "fConnectIfIntersect", "fSelection"], never, false, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./f-draggable.directive";
|
|
3
|
+
import * as i2 from "../f-external-item/f-external-item.directive";
|
|
4
|
+
import * as i3 from "../f-line-alignment/f-line-alignment.directive";
|
|
5
|
+
import * as i4 from "../f-selection/f-selection.directive";
|
|
6
|
+
import * as i5 from "../f-connect-if-intersect/f-connect-if-intersect.directive";
|
|
7
|
+
export declare class FDraggableModule {
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableModule, never>;
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FDraggableModule, [typeof i1.FDraggableDirective, typeof i2.FExternalItemDirective, typeof i3.FLineAlignmentDirective, typeof i4.FSelectionDirective, typeof i5.FConnectIfIntersectDirective], never, [typeof i1.FDraggableDirective, typeof i2.FExternalItemDirective, typeof i3.FLineAlignmentDirective, typeof i4.FSelectionDirective, typeof i5.FConnectIfIntersectDirective]>;
|
|
10
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FDraggableModule>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { FFlowBase } from '../../components';
|
|
2
|
+
import { ITransformModel } from '@foblex/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class FDraggableService {
|
|
5
|
+
private fFlow;
|
|
6
|
+
get hostElement(): SVGSVGElement;
|
|
7
|
+
get transform(): ITransformModel;
|
|
8
|
+
constructor();
|
|
9
|
+
setFlow(fFlow: FFlowBase): void;
|
|
10
|
+
onPointerDown(event: PointerEvent): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FDraggableService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FDraggableService>;
|
|
13
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Point } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from './i-draggable-item';
|
|
3
|
+
import { ISelectable } from '../../i-selectable';
|
|
4
|
+
export interface IDragHandler {
|
|
5
|
+
onPointerDownScale: number;
|
|
6
|
+
onPointerDownPosition: Point;
|
|
7
|
+
draggableItems: IDraggableItem[];
|
|
8
|
+
selectedItems?: ISelectable[];
|
|
9
|
+
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * from './canvas';
|
|
2
|
+
export * from './connections';
|
|
3
|
+
export * from './default-drag-handler';
|
|
4
|
+
export * from './external-item';
|
|
5
|
+
export * from './node';
|
|
6
|
+
export * from './selection';
|
|
7
|
+
export * from './e-draggable-type';
|
|
8
|
+
export * from './f-draggable.directive';
|
|
9
|
+
export * from './f-draggable.module';
|
|
10
|
+
export * from './f-draggable.service';
|
|
11
|
+
export * from './f-draggable-base';
|
|
12
|
+
export * from './i-draggable-item';
|
|
13
|
+
export * from './i-drag-handler';
|
package/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.d.ts
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IPointerEvent, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { ISelectable } from '../../../../i-selectable';
|
|
3
|
+
export declare class NodeOnPointerDownRequest {
|
|
4
|
+
event: IPointerEvent;
|
|
5
|
+
transform: ITransformModel;
|
|
6
|
+
selectedItems: ISelectable[];
|
|
7
|
+
isMoveCurrentNode: boolean;
|
|
8
|
+
constructor(event: IPointerEvent, transform: ITransformModel, selectedItems: ISelectable[], isMoveCurrentNode?: boolean);
|
|
9
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { NodeOnPointerDownRequest } from './node-on-pointer-down.request';
|
|
3
|
+
import { FFlowBase } from '../../../../components';
|
|
4
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
5
|
+
import { FLineAlignmentDirective } from '../../../f-line-alignment';
|
|
6
|
+
export declare class NodeOnPointerDown implements IHandler<NodeOnPointerDownRequest, IDragHandler | undefined> {
|
|
7
|
+
private fLineAlignment;
|
|
8
|
+
private fFlow;
|
|
9
|
+
private hostElement;
|
|
10
|
+
private get fConnectionsContainer();
|
|
11
|
+
private get fNodesContainer();
|
|
12
|
+
constructor(fLineAlignment: FLineAlignmentDirective | undefined, fFlow: FFlowBase, hostElement: SVGSVGElement);
|
|
13
|
+
handle(payload: NodeOnPointerDownRequest): IDragHandler | undefined;
|
|
14
|
+
private calculateDraggableConnectionsAndNodes;
|
|
15
|
+
private getInputsForNode;
|
|
16
|
+
private getOutputsForNode;
|
|
17
|
+
}
|
package/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IPoint, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
4
|
+
import { FConnectionBase } from '../../../../components/f-connection/f-connection-base';
|
|
5
|
+
import { FNodeOutputBase } from '../../../../components';
|
|
6
|
+
export declare class FConnectionSourceDragHandler implements IDraggableItem {
|
|
7
|
+
private connection;
|
|
8
|
+
readonly type: EDraggableType;
|
|
9
|
+
private readonly onPointerDownFromConnectorRect;
|
|
10
|
+
private readonly onPointerDownToConnectorRect;
|
|
11
|
+
constructor(connection: FConnectionBase<FNodeOutputBase>, canvasTransform: ITransformModel, canvasHost: SVGSVGElement);
|
|
12
|
+
initialize(): void;
|
|
13
|
+
move(difference: IPoint): void;
|
|
14
|
+
complete(): void;
|
|
15
|
+
}
|
package/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IPoint, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
4
|
+
import { FConnectionBase } from '../../../../components/f-connection/f-connection-base';
|
|
5
|
+
import { FNodeOutputBase } from '../../../../components';
|
|
6
|
+
export declare class FConnectionTargetDragHandler implements IDraggableItem {
|
|
7
|
+
private connection;
|
|
8
|
+
readonly type: EDraggableType;
|
|
9
|
+
private readonly onPointerDownFromConnectorRect;
|
|
10
|
+
private readonly onPointerDownToConnectorRect;
|
|
11
|
+
constructor(connection: FConnectionBase<FNodeOutputBase>, canvasTransform: ITransformModel, canvasHost: SVGSVGElement);
|
|
12
|
+
initialize(): void;
|
|
13
|
+
move(difference: IPoint): void;
|
|
14
|
+
complete(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { IPoint, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
4
|
+
import { FConnectionBase } from '../../../../components/f-connection/f-connection-base';
|
|
5
|
+
import { FNodeOutputBase } from '../../../../components';
|
|
6
|
+
export declare class FConnectionDragHandler implements IDraggableItem {
|
|
7
|
+
connection: FConnectionBase<FNodeOutputBase>;
|
|
8
|
+
readonly type = EDraggableType.CONNECTION;
|
|
9
|
+
private onPointerDownVector;
|
|
10
|
+
constructor(connection: FConnectionBase<FNodeOutputBase>, canvasTransform: ITransformModel, canvasHost: SVGSVGElement);
|
|
11
|
+
initialize(): void;
|
|
12
|
+
move(difference: IPoint): void;
|
|
13
|
+
complete(): void;
|
|
14
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IPoint } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
4
|
+
import { FNodeBase } from '../../../../components';
|
|
5
|
+
import { FLineAlignmentDirective } from '../../../f-line-alignment';
|
|
6
|
+
export declare class NodeOnPointerMove implements IDraggableItem {
|
|
7
|
+
private fLineAlignment;
|
|
8
|
+
fNode: FNodeBase;
|
|
9
|
+
readonly type: EDraggableType;
|
|
10
|
+
private onPointerDownPosition;
|
|
11
|
+
constructor(fLineAlignment: FLineAlignmentDirective | undefined, fNode: FNodeBase);
|
|
12
|
+
initialize(): void;
|
|
13
|
+
move(difference: IPoint): void;
|
|
14
|
+
complete(): void;
|
|
15
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { IPointerEvent } from '@foblex/core';
|
|
2
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
3
|
+
export declare class NodeOnPointerUpRequest {
|
|
4
|
+
event: IPointerEvent;
|
|
5
|
+
dragHandler: IDragHandler;
|
|
6
|
+
constructor(event: IPointerEvent, dragHandler: IDragHandler);
|
|
7
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { NodeOnPointerUpRequest } from './node-on-pointer-up.request';
|
|
3
|
+
import { FConnectIfIntersectDirective } from '../../../f-connect-if-intersect';
|
|
4
|
+
import { FLineAlignmentDirective } from '../../../f-line-alignment';
|
|
5
|
+
export declare class NodeOnPointerUp implements IHandler<NodeOnPointerUpRequest, void> {
|
|
6
|
+
private fLineAlignment;
|
|
7
|
+
private fConnectIfIntersect;
|
|
8
|
+
hostElement: SVGSVGElement;
|
|
9
|
+
constructor(fLineAlignment: FLineAlignmentDirective | undefined, fConnectIfIntersect: FConnectIfIntersectDirective | undefined, hostElement: SVGSVGElement);
|
|
10
|
+
handle(payload: NodeOnPointerUpRequest): void;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './f-draggable.directive';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IPointerEvent, ITransformModel } from '@foblex/core';
|
|
2
|
+
import { ISelectable } from '../../../../i-selectable';
|
|
3
|
+
export declare class SelectionOnPointerDownRequest {
|
|
4
|
+
event: IPointerEvent;
|
|
5
|
+
transform: ITransformModel;
|
|
6
|
+
selectedItems: ISelectable[];
|
|
7
|
+
constructor(event: IPointerEvent, transform: ITransformModel, selectedItems: ISelectable[]);
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { FFlowBase, FSelectionDirective } from '../../../../components';
|
|
3
|
+
import { SelectionOnPointerDownRequest } from './selection-on-pointer-down.request';
|
|
4
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
5
|
+
export declare class SelectionOnPointerDown implements IHandler<SelectionOnPointerDownRequest, IDragHandler> {
|
|
6
|
+
private fFlow;
|
|
7
|
+
private fSelection;
|
|
8
|
+
private hostElement;
|
|
9
|
+
constructor(fFlow: FFlowBase, fSelection: FSelectionDirective | undefined, hostElement: SVGSVGElement);
|
|
10
|
+
handle(payload: SelectionOnPointerDownRequest): IDragHandler;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './selection.on-pointer-move';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { IPoint } from '@foblex/core';
|
|
2
|
+
import { IDraggableItem } from '../../i-draggable-item';
|
|
3
|
+
import { EDraggableType } from '../../e-draggable-type';
|
|
4
|
+
import { FSelectionDirective } from '../../../f-selection';
|
|
5
|
+
import { ISelectable } from '../../../../i-selectable';
|
|
6
|
+
import { FFlowBase } from '../../../../components';
|
|
7
|
+
export declare class SelectionOnPointerMove implements IDraggableItem {
|
|
8
|
+
private fFlow;
|
|
9
|
+
private fSelection;
|
|
10
|
+
private selectedOnStart;
|
|
11
|
+
private onPointerDownPosition;
|
|
12
|
+
readonly type: EDraggableType;
|
|
13
|
+
selectedItems: ISelectable[];
|
|
14
|
+
private items;
|
|
15
|
+
constructor(fFlow: FFlowBase, fSelection: FSelectionDirective | undefined, selectedOnStart: ISelectable[], onPointerDownPosition?: IPoint);
|
|
16
|
+
initialize(): void;
|
|
17
|
+
move(difference: IPoint): void;
|
|
18
|
+
complete(): void;
|
|
19
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { IPointerEvent } from '@foblex/core';
|
|
2
|
+
import { IDragHandler } from '../../i-drag-handler';
|
|
3
|
+
import { ISelectable } from '../../../../i-selectable';
|
|
4
|
+
export declare class SelectionOnPointerUpRequest {
|
|
5
|
+
event: IPointerEvent;
|
|
6
|
+
dragHandler: IDragHandler;
|
|
7
|
+
selectedItems: ISelectable[];
|
|
8
|
+
constructor(event: IPointerEvent, dragHandler: IDragHandler, selectedItems: ISelectable[]);
|
|
9
|
+
}
|
package/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { IHandler } from '@foblex/core';
|
|
2
|
+
import { SelectionOnPointerUpRequest } from './selection-on-pointer-up.request';
|
|
3
|
+
import { ISelectable } from '../../../../i-selectable';
|
|
4
|
+
export declare class SelectionOnPointerUp implements IHandler<SelectionOnPointerUpRequest, ISelectable[]> {
|
|
5
|
+
hostElement: SVGSVGElement;
|
|
6
|
+
constructor(hostElement: SVGSVGElement);
|
|
7
|
+
handle(payload: SelectionOnPointerUpRequest): ISelectable[];
|
|
8
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { IHasHostElement } from '@foblex/core';
|
|
2
|
+
import { InjectionToken } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare const F_EXTERNAL_ITEM: InjectionToken<FExternalItemBase>;
|
|
5
|
+
export declare abstract class FExternalItemBase implements IHasHostElement {
|
|
6
|
+
abstract id: any;
|
|
7
|
+
abstract hostElement: HTMLElement | SVGElement;
|
|
8
|
+
abstract data: any;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemBase, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FExternalItemBase, never, never, {}, {}, never, never, false, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { FExternalItemBase } from './f-external-item-base';
|
|
3
|
+
import { FExternalItemService } from './f-external-item.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class FExternalItemDirective extends FExternalItemBase implements OnInit, OnDestroy {
|
|
6
|
+
private elementReference;
|
|
7
|
+
private fExternalItemService;
|
|
8
|
+
id: string;
|
|
9
|
+
get hostElement(): HTMLElement | SVGElement;
|
|
10
|
+
data: any;
|
|
11
|
+
constructor(elementReference: ElementRef<HTMLElement>, fExternalItemService: FExternalItemService);
|
|
12
|
+
ngOnInit(): void;
|
|
13
|
+
ngOnDestroy(): void;
|
|
14
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemDirective, never>;
|
|
15
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FExternalItemDirective, "[fExternalItem]", never, { "id": { "alias": "id"; "required": false; }; "data": { "alias": "data"; "required": false; }; }, {}, never, never, false, never>;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { FExternalItemBase } from './f-external-item-base';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class FExternalItemService {
|
|
4
|
+
private items;
|
|
5
|
+
registerItem(item: FExternalItemBase): void;
|
|
6
|
+
getItem(element: HTMLElement | SVGElement): FExternalItemBase | undefined;
|
|
7
|
+
removeItem(item: FExternalItemBase): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemService, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<FExternalItemService>;
|
|
10
|
+
}
|