@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,79 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { FFlowComponent } from './components';
|
|
3
|
+
import { FConnectionModule } from './components/f-connection/f-connection.module';
|
|
4
|
+
import { FNodeInputDirective, FNodeOutletDirective, FNodeOutputDirective } from './components';
|
|
5
|
+
import { FDragHandleDirective, FForeignObjectComponent, FNodeComponent } from './components';
|
|
6
|
+
import { CommonModule } from '@angular/common';
|
|
7
|
+
import { FConnectionsContainerComponent, FItemsContainerDirective, FNodesContainerComponent, FZoomDirective } from './directives';
|
|
8
|
+
import { FBackgroundDirective, FCanvasDirective } from './internal';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
export class FFlowModule {
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FFlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
12
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.4", ngImport: i0, type: FFlowModule, declarations: [FFlowComponent,
|
|
13
|
+
FNodeComponent,
|
|
14
|
+
FZoomDirective,
|
|
15
|
+
FForeignObjectComponent,
|
|
16
|
+
FDragHandleDirective,
|
|
17
|
+
FItemsContainerDirective,
|
|
18
|
+
FNodesContainerComponent,
|
|
19
|
+
FConnectionsContainerComponent,
|
|
20
|
+
FNodeInputDirective,
|
|
21
|
+
FNodeOutletDirective,
|
|
22
|
+
FNodeOutputDirective], imports: [CommonModule,
|
|
23
|
+
FConnectionModule,
|
|
24
|
+
FCanvasDirective,
|
|
25
|
+
FBackgroundDirective], exports: [FFlowComponent,
|
|
26
|
+
FNodeComponent,
|
|
27
|
+
FZoomDirective,
|
|
28
|
+
FForeignObjectComponent,
|
|
29
|
+
FDragHandleDirective,
|
|
30
|
+
FItemsContainerDirective,
|
|
31
|
+
FNodesContainerComponent,
|
|
32
|
+
FConnectionsContainerComponent,
|
|
33
|
+
FConnectionModule,
|
|
34
|
+
FNodeInputDirective,
|
|
35
|
+
FNodeOutletDirective,
|
|
36
|
+
FNodeOutputDirective] }); }
|
|
37
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FFlowModule, imports: [CommonModule,
|
|
38
|
+
FConnectionModule, FConnectionModule] }); }
|
|
39
|
+
}
|
|
40
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FFlowModule, decorators: [{
|
|
41
|
+
type: NgModule,
|
|
42
|
+
args: [{
|
|
43
|
+
declarations: [
|
|
44
|
+
FFlowComponent,
|
|
45
|
+
FNodeComponent,
|
|
46
|
+
FZoomDirective,
|
|
47
|
+
FForeignObjectComponent,
|
|
48
|
+
FDragHandleDirective,
|
|
49
|
+
FItemsContainerDirective,
|
|
50
|
+
FNodesContainerComponent,
|
|
51
|
+
FConnectionsContainerComponent,
|
|
52
|
+
FNodeInputDirective,
|
|
53
|
+
FNodeOutletDirective,
|
|
54
|
+
FNodeOutputDirective,
|
|
55
|
+
],
|
|
56
|
+
imports: [
|
|
57
|
+
CommonModule,
|
|
58
|
+
FConnectionModule,
|
|
59
|
+
FCanvasDirective,
|
|
60
|
+
FBackgroundDirective,
|
|
61
|
+
],
|
|
62
|
+
providers: [],
|
|
63
|
+
exports: [
|
|
64
|
+
FFlowComponent,
|
|
65
|
+
FNodeComponent,
|
|
66
|
+
FZoomDirective,
|
|
67
|
+
FForeignObjectComponent,
|
|
68
|
+
FDragHandleDirective,
|
|
69
|
+
FItemsContainerDirective,
|
|
70
|
+
FNodesContainerComponent,
|
|
71
|
+
FConnectionsContainerComponent,
|
|
72
|
+
FConnectionModule,
|
|
73
|
+
FNodeInputDirective,
|
|
74
|
+
FNodeOutletDirective,
|
|
75
|
+
FNodeOutputDirective,
|
|
76
|
+
]
|
|
77
|
+
}]
|
|
78
|
+
}] });
|
|
79
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1mbG93Lm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvbGliL2YtZmxvdy5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzlDLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLCtDQUErQyxDQUFDO0FBQ2xGLE9BQU8sRUFBRSxtQkFBbUIsRUFBRSxvQkFBb0IsRUFBRSxvQkFBb0IsRUFBRSxNQUFNLGNBQWMsQ0FBQztBQUMvRixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsdUJBQXVCLEVBQUUsY0FBYyxFQUFFLE1BQU0sY0FBYyxDQUFDO0FBQzdGLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQ0wsOEJBQThCLEVBQzlCLHdCQUF3QixFQUN4Qix3QkFBd0IsRUFDeEIsY0FBYyxFQUNmLE1BQU0sY0FBYyxDQUFDO0FBQ3RCLE9BQU8sRUFBRSxvQkFBb0IsRUFBRSxnQkFBZ0IsRUFBRSxNQUFNLFlBQVksQ0FBQzs7QUFzQ3BFLE1BQU0sT0FBTyxXQUFXOzhHQUFYLFdBQVc7K0dBQVgsV0FBVyxpQkFsQ3BCLGNBQWM7WUFDZCxjQUFjO1lBQ2QsY0FBYztZQUNkLHVCQUF1QjtZQUN2QixvQkFBb0I7WUFDcEIsd0JBQXdCO1lBQ3hCLHdCQUF3QjtZQUN4Qiw4QkFBOEI7WUFDOUIsbUJBQW1CO1lBQ25CLG9CQUFvQjtZQUNwQixvQkFBb0IsYUFHcEIsWUFBWTtZQUNaLGlCQUFpQjtZQUNqQixnQkFBZ0I7WUFDaEIsb0JBQW9CLGFBSXBCLGNBQWM7WUFDZCxjQUFjO1lBQ2QsY0FBYztZQUNkLHVCQUF1QjtZQUN2QixvQkFBb0I7WUFDcEIsd0JBQXdCO1lBQ3hCLHdCQUF3QjtZQUN4Qiw4QkFBOEI7WUFDOUIsaUJBQWlCO1lBQ2pCLG1CQUFtQjtZQUNuQixvQkFBb0I7WUFDcEIsb0JBQW9COytHQUdYLFdBQVcsWUFyQnBCLFlBQVk7WUFDWixpQkFBaUIsRUFjakIsaUJBQWlCOzsyRkFNUixXQUFXO2tCQXBDdkIsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osY0FBYzt3QkFDZCxjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsdUJBQXVCO3dCQUN2QixvQkFBb0I7d0JBQ3BCLHdCQUF3Qjt3QkFDeEIsd0JBQXdCO3dCQUN4Qiw4QkFBOEI7d0JBQzlCLG1CQUFtQjt3QkFDbkIsb0JBQW9CO3dCQUNwQixvQkFBb0I7cUJBQ3JCO29CQUNELE9BQU8sRUFBRTt3QkFDUCxZQUFZO3dCQUNaLGlCQUFpQjt3QkFDakIsZ0JBQWdCO3dCQUNoQixvQkFBb0I7cUJBQ3JCO29CQUNELFNBQVMsRUFBRSxFQUFFO29CQUNiLE9BQU8sRUFBRTt3QkFDUCxjQUFjO3dCQUNkLGNBQWM7d0JBQ2QsY0FBYzt3QkFDZCx1QkFBdUI7d0JBQ3ZCLG9CQUFvQjt3QkFDcEIsd0JBQXdCO3dCQUN4Qix3QkFBd0I7d0JBQ3hCLDhCQUE4Qjt3QkFDOUIsaUJBQWlCO3dCQUNqQixtQkFBbUI7d0JBQ25CLG9CQUFvQjt3QkFDcEIsb0JBQW9CO3FCQUNyQjtpQkFDRiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGRmxvd0NvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBGQ29ubmVjdGlvbk1vZHVsZSB9IGZyb20gJy4vY29tcG9uZW50cy9mLWNvbm5lY3Rpb24vZi1jb25uZWN0aW9uLm1vZHVsZSc7XG5pbXBvcnQgeyBGTm9kZUlucHV0RGlyZWN0aXZlLCBGTm9kZU91dGxldERpcmVjdGl2ZSwgRk5vZGVPdXRwdXREaXJlY3RpdmUgfSBmcm9tICcuL2NvbXBvbmVudHMnO1xuaW1wb3J0IHsgRkRyYWdIYW5kbGVEaXJlY3RpdmUsIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LCBGTm9kZUNvbXBvbmVudCB9IGZyb20gJy4vY29tcG9uZW50cyc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICBGSXRlbXNDb250YWluZXJEaXJlY3RpdmUsXG4gIEZOb2Rlc0NvbnRhaW5lckNvbXBvbmVudCxcbiAgRlpvb21EaXJlY3RpdmVcbn0gZnJvbSAnLi9kaXJlY3RpdmVzJztcbmltcG9ydCB7IEZCYWNrZ3JvdW5kRGlyZWN0aXZlLCBGQ2FudmFzRGlyZWN0aXZlIH0gZnJvbSAnLi9pbnRlcm5hbCc7XG5cbkBOZ01vZHVsZSh7XG4gIGRlY2xhcmF0aW9uczogW1xuICAgIEZGbG93Q29tcG9uZW50LFxuICAgIEZOb2RlQ29tcG9uZW50LFxuICAgIEZab29tRGlyZWN0aXZlLFxuICAgIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LFxuICAgIEZEcmFnSGFuZGxlRGlyZWN0aXZlLFxuICAgIEZJdGVtc0NvbnRhaW5lckRpcmVjdGl2ZSxcbiAgICBGTm9kZXNDb250YWluZXJDb21wb25lbnQsXG4gICAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIEZOb2RlSW5wdXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRsZXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRwdXREaXJlY3RpdmUsXG4gIF0sXG4gIGltcG9ydHM6IFtcbiAgICBDb21tb25Nb2R1bGUsXG4gICAgRkNvbm5lY3Rpb25Nb2R1bGUsXG4gICAgRkNhbnZhc0RpcmVjdGl2ZSxcbiAgICBGQmFja2dyb3VuZERpcmVjdGl2ZSxcbiAgXSxcbiAgcHJvdmlkZXJzOiBbXSxcbiAgZXhwb3J0czogW1xuICAgIEZGbG93Q29tcG9uZW50LFxuICAgIEZOb2RlQ29tcG9uZW50LFxuICAgIEZab29tRGlyZWN0aXZlLFxuICAgIEZGb3JlaWduT2JqZWN0Q29tcG9uZW50LFxuICAgIEZEcmFnSGFuZGxlRGlyZWN0aXZlLFxuICAgIEZJdGVtc0NvbnRhaW5lckRpcmVjdGl2ZSxcbiAgICBGTm9kZXNDb250YWluZXJDb21wb25lbnQsXG4gICAgRkNvbm5lY3Rpb25zQ29udGFpbmVyQ29tcG9uZW50LFxuICAgIEZDb25uZWN0aW9uTW9kdWxlLFxuICAgIEZOb2RlSW5wdXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRsZXREaXJlY3RpdmUsXG4gICAgRk5vZGVPdXRwdXREaXJlY3RpdmUsXG4gIF1cbn0pXG5leHBvcnQgY2xhc3MgRkZsb3dNb2R1bGUge1xufVxuIl19
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1oYXMtc3RhdGUtY2hhbmdlcy5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvbGliL2ktaGFzLXN0YXRlLWNoYW5nZXMudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE9ic2VydmFibGUgfSBmcm9tICdyeGpzJztcblxuZXhwb3J0IGludGVyZmFjZSBJSGFzU3RhdGVDaGFuZ2VzIHtcblxuICBzdGF0ZUNoYW5nZXM6IE9ic2VydmFibGU8dm9pZD47XG59XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export const F_SELECTED_CLASS = 'f-selected';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaS1zZWxlY3RhYmxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9saWIvaS1zZWxlY3RhYmxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVNBLE1BQU0sQ0FBQyxNQUFNLGdCQUFnQixHQUFHLFlBQVksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBpbnRlcmZhY2UgSVNlbGVjdGFibGUge1xuXG4gIGhvc3RFbGVtZW50OiBIVE1MRWxlbWVudCB8IFNWR0VsZW1lbnQ7XG5cbiAgc2VsZWN0KCk6IHZvaWQ7XG5cbiAgZGVzZWxlY3QoKTogdm9pZDtcbn1cblxuZXhwb3J0IGNvbnN0IEZfU0VMRUNURURfQ0xBU1MgPSAnZi1zZWxlY3RlZCc7XG4iXX0=
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive, InjectionToken } from '@angular/core';
|
|
2
|
+
import { TransformModelExtensions } from '@foblex/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../f-canvas";
|
|
5
|
+
export const F_BACKGROUND = new InjectionToken('F_BACKGROUND');
|
|
6
|
+
export class FBackgroundBase {
|
|
7
|
+
get hostElement() {
|
|
8
|
+
return this.elementReference.nativeElement;
|
|
9
|
+
}
|
|
10
|
+
constructor(elementReference, fCanvas) {
|
|
11
|
+
this.elementReference = elementReference;
|
|
12
|
+
this.fCanvas = fCanvas;
|
|
13
|
+
this.transform = TransformModelExtensions.default();
|
|
14
|
+
console.log('FBackgroundBase');
|
|
15
|
+
}
|
|
16
|
+
isBackgroundElement(element) {
|
|
17
|
+
return this.hostElement === element || this.hostElement.contains(element) || this.fCanvas.hostElement.contains(element);
|
|
18
|
+
}
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FBackgroundBase, deps: [{ token: i0.ElementRef }, { token: i1.FCanvasBase }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
20
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.4", type: FBackgroundBase, ngImport: i0 }); }
|
|
21
|
+
}
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FBackgroundBase, decorators: [{
|
|
23
|
+
type: Directive
|
|
24
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FCanvasBase }]; } });
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1iYWNrZ3JvdW5kLWJhc2UuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2xpYi9pbnRlcm5hbC9mLWJhY2tncm91ZC9mLWJhY2tncm91bmQtYmFzZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFjLGNBQWMsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN0RSxPQUFPLEVBQW9DLHdCQUF3QixFQUFFLE1BQU0sY0FBYyxDQUFDOzs7QUFHMUYsTUFBTSxDQUFDLE1BQU0sWUFBWSxHQUFHLElBQUksY0FBYyxDQUFrQixjQUFjLENBQUMsQ0FBQztBQUdoRixNQUFNLE9BQWdCLGVBQWU7SUFJbkMsSUFBVyxXQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLGFBQWEsQ0FBQztJQUM3QyxDQUFDO0lBRUQsWUFDVSxnQkFBeUMsRUFDekMsT0FBb0I7UUFEcEIscUJBQWdCLEdBQWhCLGdCQUFnQixDQUF5QjtRQUN6QyxZQUFPLEdBQVAsT0FBTyxDQUFhO1FBUnZCLGNBQVMsR0FBb0Isd0JBQXdCLENBQUMsT0FBTyxFQUFFLENBQUM7UUFVckUsT0FBTyxDQUFDLEdBQUcsQ0FBQyxpQkFBaUIsQ0FBQyxDQUFDO0lBQ2pDLENBQUM7SUFFTSxtQkFBbUIsQ0FBQyxPQUFpQztRQUMxRCxPQUFPLElBQUksQ0FBQyxXQUFXLEtBQUssT0FBTyxJQUFJLElBQUksQ0FBQyxXQUFXLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxJQUFJLElBQUksQ0FBQyxPQUFPLENBQUMsV0FBVyxDQUFDLFFBQVEsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMxSCxDQUFDOzhHQWpCbUIsZUFBZTtrR0FBZixlQUFlOzsyRkFBZixlQUFlO2tCQURwQyxTQUFTIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBJbmplY3Rpb25Ub2tlbiB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgSUhhc0hvc3RFbGVtZW50LCBJVHJhbnNmb3JtTW9kZWwsIFRyYW5zZm9ybU1vZGVsRXh0ZW5zaW9ucyB9IGZyb20gJ0Bmb2JsZXgvY29yZSc7XG5pbXBvcnQgeyBGQ2FudmFzQmFzZSB9IGZyb20gJy4uL2YtY2FudmFzJztcblxuZXhwb3J0IGNvbnN0IEZfQkFDS0dST1VORCA9IG5ldyBJbmplY3Rpb25Ub2tlbjxGQmFja2dyb3VuZEJhc2U+KCdGX0JBQ0tHUk9VTkQnKTtcblxuQERpcmVjdGl2ZSgpXG5leHBvcnQgYWJzdHJhY3QgY2xhc3MgRkJhY2tncm91bmRCYXNlIGltcGxlbWVudHMgSUhhc0hvc3RFbGVtZW50IHtcblxuICBwdWJsaWMgdHJhbnNmb3JtOiBJVHJhbnNmb3JtTW9kZWwgPSBUcmFuc2Zvcm1Nb2RlbEV4dGVuc2lvbnMuZGVmYXVsdCgpO1xuXG4gIHB1YmxpYyBnZXQgaG9zdEVsZW1lbnQoKTogU1ZHR0VsZW1lbnQge1xuICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWZlcmVuY2UubmF0aXZlRWxlbWVudDtcbiAgfVxuXG4gIHByb3RlY3RlZCBjb25zdHJ1Y3RvcihcbiAgICBwcml2YXRlIGVsZW1lbnRSZWZlcmVuY2U6IEVsZW1lbnRSZWY8U1ZHR0VsZW1lbnQ+LFxuICAgIHByaXZhdGUgZkNhbnZhczogRkNhbnZhc0Jhc2VcbiAgKSB7XG4gICAgY29uc29sZS5sb2coJ0ZCYWNrZ3JvdW5kQmFzZScpO1xuICB9XG5cbiAgcHVibGljIGlzQmFja2dyb3VuZEVsZW1lbnQoZWxlbWVudDogSFRNTEVsZW1lbnQgfCBTVkdFbGVtZW50KTogYm9vbGVhbiB7XG4gICAgcmV0dXJuIHRoaXMuaG9zdEVsZW1lbnQgPT09IGVsZW1lbnQgfHwgdGhpcy5ob3N0RWxlbWVudC5jb250YWlucyhlbGVtZW50KSB8fCB0aGlzLmZDYW52YXMuaG9zdEVsZW1lbnQuY29udGFpbnMoZWxlbWVudCk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { Directive, Inject } from "@angular/core";
|
|
2
|
+
import { F_BACKGROUND, FBackgroundBase } from './f-background-base';
|
|
3
|
+
import { F_CANVAS } from '../f-canvas';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
import * as i1 from "../f-canvas";
|
|
6
|
+
export class FBackgroundDirective extends FBackgroundBase {
|
|
7
|
+
constructor(elementReference, fCanvas) {
|
|
8
|
+
super(elementReference, fCanvas);
|
|
9
|
+
}
|
|
10
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: F_CANVAS }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
11
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.4", type: FBackgroundDirective, isStandalone: true, selector: "g[fBackground]", providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
12
|
+
}
|
|
13
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FBackgroundDirective, decorators: [{
|
|
14
|
+
type: Directive,
|
|
15
|
+
args: [{
|
|
16
|
+
selector: "g[fBackground]",
|
|
17
|
+
standalone: true,
|
|
18
|
+
providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundDirective }],
|
|
19
|
+
}]
|
|
20
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.FCanvasBase, decorators: [{
|
|
21
|
+
type: Inject,
|
|
22
|
+
args: [F_CANVAS]
|
|
23
|
+
}] }]; } });
|
|
24
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1iYWNrZ3JvdW5kLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvbGliL2ludGVybmFsL2YtYmFja2dyb3VkL2YtYmFja2dyb3VuZC5kaXJlY3RpdmUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNMLFNBQVMsRUFBYyxNQUFNLEVBQzlCLE1BQU0sZUFBZSxDQUFDO0FBQ3ZCLE9BQU8sRUFBRSxZQUFZLEVBQUUsZUFBZSxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDcEUsT0FBTyxFQUFFLFFBQVEsRUFBZSxNQUFNLGFBQWEsQ0FBQzs7O0FBT3BELE1BQU0sT0FBTyxvQkFBcUIsU0FBUSxlQUFlO0lBRXZELFlBQ0ksZ0JBQXlDLEVBQ3ZCLE9BQW9CO1FBRXhDLEtBQUssQ0FBQyxnQkFBZ0IsRUFBRSxPQUFPLENBQUMsQ0FBQztJQUNuQyxDQUFDOzhHQVBVLG9CQUFvQiw0Q0FJbkIsUUFBUTtrR0FKVCxvQkFBb0IsNkRBRnBCLENBQUUsRUFBRSxPQUFPLEVBQUUsWUFBWSxFQUFFLFdBQVcsRUFBRSxvQkFBb0IsRUFBRSxDQUFFOzsyRkFFaEUsb0JBQW9CO2tCQUxoQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxnQkFBZ0I7b0JBQzFCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBRSxFQUFFLE9BQU8sRUFBRSxZQUFZLEVBQUUsV0FBVyxzQkFBc0IsRUFBRSxDQUFFO2lCQUM1RTs7MEJBS00sTUFBTTsyQkFBQyxRQUFRIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcbiAgRGlyZWN0aXZlLCBFbGVtZW50UmVmLCBJbmplY3Rcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcbmltcG9ydCB7IEZfQkFDS0dST1VORCwgRkJhY2tncm91bmRCYXNlIH0gZnJvbSAnLi9mLWJhY2tncm91bmQtYmFzZSc7XG5pbXBvcnQgeyBGX0NBTlZBUywgRkNhbnZhc0Jhc2UgfSBmcm9tICcuLi9mLWNhbnZhcyc7XG5cbkBEaXJlY3RpdmUoe1xuICBzZWxlY3RvcjogXCJnW2ZCYWNrZ3JvdW5kXVwiLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFsgeyBwcm92aWRlOiBGX0JBQ0tHUk9VTkQsIHVzZUV4aXN0aW5nOiBGQmFja2dyb3VuZERpcmVjdGl2ZSB9IF0sXG59KVxuZXhwb3J0IGNsYXNzIEZCYWNrZ3JvdW5kRGlyZWN0aXZlIGV4dGVuZHMgRkJhY2tncm91bmRCYXNlIHtcblxuICBjb25zdHJ1Y3RvcihcbiAgICAgIGVsZW1lbnRSZWZlcmVuY2U6IEVsZW1lbnRSZWY8U1ZHR0VsZW1lbnQ+LFxuICAgICAgQEluamVjdChGX0NBTlZBUykgZkNhbnZhczogRkNhbnZhc0Jhc2VcbiAgKSB7XG4gICAgc3VwZXIoZWxlbWVudFJlZmVyZW5jZSwgZkNhbnZhcyk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './f-background.directive';
|
|
2
|
+
export * from './f-background-base';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2xpYi9pbnRlcm5hbC9mLWJhY2tncm91ZC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLDBCQUEwQixDQUFDO0FBRXpDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtYmFja2dyb3VuZC5kaXJlY3RpdmUnO1xuXG5leHBvcnQgKiBmcm9tICcuL2YtYmFja2dyb3VuZC1iYXNlJztcblxuXG5cblxuXG4iXX0=
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { Directive, InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export const F_CANVAS = new InjectionToken('F_CANVAS');
|
|
4
|
+
export class FCanvasBase {
|
|
5
|
+
get hostElement() {
|
|
6
|
+
return this.elementReference.nativeElement;
|
|
7
|
+
}
|
|
8
|
+
constructor(elementReference) {
|
|
9
|
+
this.elementReference = elementReference;
|
|
10
|
+
this.initialize();
|
|
11
|
+
}
|
|
12
|
+
initialize() {
|
|
13
|
+
this.hostElement.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns', 'http://www.w3.org/2000/svg');
|
|
14
|
+
this.hostElement.setAttributeNS('http://www.w3.org/2000/xmlns/', 'xmlns:xlink', 'http://www.w3.org/1999/xlink');
|
|
15
|
+
this.hostElement.setAttribute('version', '1.1');
|
|
16
|
+
this.hostElement.setAttribute('baseProfile', 'full');
|
|
17
|
+
this.hostElement.style.cssText = 'user-select:none; width:100%; height:100%;';
|
|
18
|
+
}
|
|
19
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FCanvasBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
20
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.4", type: FCanvasBase, ngImport: i0 }); }
|
|
21
|
+
}
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FCanvasBase, decorators: [{
|
|
23
|
+
type: Directive
|
|
24
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
25
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMtYmFzZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvbGliL2ludGVybmFsL2YtY2FudmFzL2YtY2FudmFzLWJhc2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBYyxjQUFjLEVBQUUsTUFBTSxlQUFlLENBQUM7O0FBR3RFLE1BQU0sQ0FBQyxNQUFNLFFBQVEsR0FBRyxJQUFJLGNBQWMsQ0FBYyxVQUFVLENBQUMsQ0FBQztBQUdwRSxNQUFNLE9BQWdCLFdBQVc7SUFFL0IsSUFBVyxXQUFXO1FBQ3BCLE9BQU8sSUFBSSxDQUFDLGdCQUFnQixDQUFDLGFBQWEsQ0FBQztJQUM3QyxDQUFDO0lBRUQsWUFDWSxnQkFBMkM7UUFBM0MscUJBQWdCLEdBQWhCLGdCQUFnQixDQUEyQjtRQUVyRCxJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDcEIsQ0FBQztJQUVTLFVBQVU7UUFDbEIsSUFBSSxDQUFDLFdBQVcsQ0FBQyxjQUFjLENBQUMsK0JBQStCLEVBQUUsT0FBTyxFQUFFLDRCQUE0QixDQUFDLENBQUM7UUFDeEcsSUFBSSxDQUFDLFdBQVcsQ0FBQyxjQUFjLENBQUMsK0JBQStCLEVBQUUsYUFBYSxFQUFFLDhCQUE4QixDQUFDLENBQUM7UUFDaEgsSUFBSSxDQUFDLFdBQVcsQ0FBQyxZQUFZLENBQUMsU0FBUyxFQUFFLEtBQUssQ0FBQyxDQUFDO1FBQ2hELElBQUksQ0FBQyxXQUFXLENBQUMsWUFBWSxDQUFDLGFBQWEsRUFBRSxNQUFNLENBQUMsQ0FBQztRQUNyRCxJQUFJLENBQUMsV0FBVyxDQUFDLEtBQUssQ0FBQyxPQUFPLEdBQUcsNENBQTRDLENBQUM7SUFDaEYsQ0FBQzs4R0FsQm1CLFdBQVc7a0dBQVgsV0FBVzs7MkZBQVgsV0FBVztrQkFEaEMsU0FBUyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSwgRWxlbWVudFJlZiwgSW5qZWN0aW9uVG9rZW4gfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IElIYXNIb3N0RWxlbWVudCB9IGZyb20gJ0Bmb2JsZXgvY29yZSc7XG5cbmV4cG9ydCBjb25zdCBGX0NBTlZBUyA9IG5ldyBJbmplY3Rpb25Ub2tlbjxGQ2FudmFzQmFzZT4oJ0ZfQ0FOVkFTJyk7XG5cbkBEaXJlY3RpdmUoKVxuZXhwb3J0IGFic3RyYWN0IGNsYXNzIEZDYW52YXNCYXNlIGltcGxlbWVudHMgSUhhc0hvc3RFbGVtZW50IHtcblxuICBwdWJsaWMgZ2V0IGhvc3RFbGVtZW50KCk6IFNWR1NWR0VsZW1lbnQge1xuICAgIHJldHVybiB0aGlzLmVsZW1lbnRSZWZlcmVuY2UubmF0aXZlRWxlbWVudDtcbiAgfVxuXG4gIHByb3RlY3RlZCBjb25zdHJ1Y3RvcihcbiAgICAgIHByaXZhdGUgZWxlbWVudFJlZmVyZW5jZTogRWxlbWVudFJlZjxTVkdTVkdFbGVtZW50PlxuICApIHtcbiAgICB0aGlzLmluaXRpYWxpemUoKTtcbiAgfVxuXG4gIHByb3RlY3RlZCBpbml0aWFsaXplKCk6IHZvaWQge1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc2V0QXR0cmlidXRlTlMoJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAveG1sbnMvJywgJ3htbG5zJywgJ2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zZXRBdHRyaWJ1dGVOUygnaHR0cDovL3d3dy53My5vcmcvMjAwMC94bWxucy8nLCAneG1sbnM6eGxpbmsnLCAnaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluaycpO1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc2V0QXR0cmlidXRlKCd2ZXJzaW9uJywgJzEuMScpO1xuICAgIHRoaXMuaG9zdEVsZW1lbnQuc2V0QXR0cmlidXRlKCdiYXNlUHJvZmlsZScsICdmdWxsJyk7XG4gICAgdGhpcy5ob3N0RWxlbWVudC5zdHlsZS5jc3NUZXh0ID0gJ3VzZXItc2VsZWN0Om5vbmU7IHdpZHRoOjEwMCU7IGhlaWdodDoxMDAlOyc7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Directive } from "@angular/core";
|
|
2
|
+
import { F_CANVAS, FCanvasBase } from './f-canvas-base';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class FCanvasDirective extends FCanvasBase {
|
|
5
|
+
constructor(elementReference) {
|
|
6
|
+
super(elementReference);
|
|
7
|
+
}
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FCanvasDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
9
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.4", type: FCanvasDirective, isStandalone: true, selector: "svg[fCanvas]", providers: [{ provide: F_CANVAS, useExisting: FCanvasDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
10
|
+
}
|
|
11
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImport: i0, type: FCanvasDirective, decorators: [{
|
|
12
|
+
type: Directive,
|
|
13
|
+
args: [{
|
|
14
|
+
selector: "svg[fCanvas]",
|
|
15
|
+
standalone: true,
|
|
16
|
+
providers: [{ provide: F_CANVAS, useExisting: FCanvasDirective }],
|
|
17
|
+
}]
|
|
18
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZi1jYW52YXMuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vcHJvamVjdHMvZi1mbG93L3NyYy9saWIvaW50ZXJuYWwvZi1jYW52YXMvZi1jYW52YXMuZGlyZWN0aXZlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFDTCxTQUFTLEVBQ1YsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLFFBQVEsRUFBRSxXQUFXLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQzs7QUFPeEQsTUFBTSxPQUFPLGdCQUFpQixTQUFRLFdBQVc7SUFFL0MsWUFDRSxnQkFBMkM7UUFFM0MsS0FBSyxDQUFDLGdCQUFnQixDQUFDLENBQUM7SUFDMUIsQ0FBQzs4R0FOVSxnQkFBZ0I7a0dBQWhCLGdCQUFnQiwyREFGaEIsQ0FBRSxFQUFFLE9BQU8sRUFBRSxRQUFRLEVBQUUsV0FBVyxFQUFFLGdCQUFnQixFQUFFLENBQUU7OzJGQUV4RCxnQkFBZ0I7a0JBTDVCLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLGNBQWM7b0JBQ3hCLFVBQVUsRUFBRSxJQUFJO29CQUNoQixTQUFTLEVBQUUsQ0FBRSxFQUFFLE9BQU8sRUFBRSxRQUFRLEVBQUUsV0FBVyxrQkFBa0IsRUFBRSxDQUFFO2lCQUNwRSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7XG4gIERpcmVjdGl2ZSwgRWxlbWVudFJlZlxufSBmcm9tIFwiQGFuZ3VsYXIvY29yZVwiO1xuaW1wb3J0IHsgRl9DQU5WQVMsIEZDYW52YXNCYXNlIH0gZnJvbSAnLi9mLWNhbnZhcy1iYXNlJztcblxuQERpcmVjdGl2ZSh7XG4gIHNlbGVjdG9yOiBcInN2Z1tmQ2FudmFzXVwiLFxuICBzdGFuZGFsb25lOiB0cnVlLFxuICBwcm92aWRlcnM6IFsgeyBwcm92aWRlOiBGX0NBTlZBUywgdXNlRXhpc3Rpbmc6IEZDYW52YXNEaXJlY3RpdmUgfSBdLFxufSlcbmV4cG9ydCBjbGFzcyBGQ2FudmFzRGlyZWN0aXZlIGV4dGVuZHMgRkNhbnZhc0Jhc2Uge1xuXG4gIGNvbnN0cnVjdG9yKFxuICAgIGVsZW1lbnRSZWZlcmVuY2U6IEVsZW1lbnRSZWY8U1ZHU1ZHRWxlbWVudD5cbiAgKSB7XG4gICAgc3VwZXIoZWxlbWVudFJlZmVyZW5jZSk7XG4gIH1cbn1cbiJdfQ==
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './f-canvas.directive';
|
|
2
|
+
export * from './f-canvas-base';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2xpYi9pbnRlcm5hbC9mLWNhbnZhcy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHNCQUFzQixDQUFDO0FBRXJDLGNBQWMsaUJBQWlCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2YtY2FudmFzLmRpcmVjdGl2ZSc7XG5cbmV4cG9ydCAqIGZyb20gJy4vZi1jYW52YXMtYmFzZSc7XG5cblxuXG5cblxuIl19
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
export * from './f-backgroud';
|
|
2
|
+
export * from './f-canvas';
|
|
3
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9mLWZsb3cvc3JjL2xpYi9pbnRlcm5hbC9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGVBQWUsQ0FBQztBQUM5QixjQUFjLFlBQVksQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vZi1iYWNrZ3JvdWQnO1xuZXhwb3J0ICogZnJvbSAnLi9mLWNhbnZhcyc7XG4iXX0=
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export * from './components/public-api';
|
|
2
|
+
export * from './directives/public-api';
|
|
3
|
+
export * from './internal/f-canvas/f-canvas.directive';
|
|
4
|
+
export * from './f-flow.module';
|
|
5
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvbGliL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsd0NBQXdDLENBQUM7QUFDdkQsY0FBYyxpQkFBaUIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vY29tcG9uZW50cy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vZGlyZWN0aXZlcy9wdWJsaWMtYXBpJztcbmV4cG9ydCAqIGZyb20gJy4vaW50ZXJuYWwvZi1jYW52YXMvZi1jYW52YXMuZGlyZWN0aXZlJztcbmV4cG9ydCAqIGZyb20gJy4vZi1mbG93Lm1vZHVsZSc7XG4iXX0=
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export * from './lib/public-api';
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3Byb2plY3RzL2YtZmxvdy9zcmMvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGtCQUFrQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9saWIvcHVibGljLWFwaSc7XG4iXX0=
|