@foblex/flow 1.0.5 → 1.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{lib/directives → directives}/f-containers/f-items-container/f-items-container.directive.d.ts +2 -2
- package/esm2022/common-behaviours/change-position.mjs +15 -0
- package/esm2022/common-behaviours/change-zoom/change-zoom.mjs +25 -0
- package/esm2022/common-behaviours/change-zoom/i-can-change-zoom.mjs +2 -0
- package/esm2022/common-behaviours/change-zoom/index.mjs +3 -0
- package/esm2022/common-behaviours/constructor.mjs +2 -0
- package/esm2022/common-behaviours/fit-to-parent/fit-to-parent.mjs +27 -0
- package/esm2022/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +2 -0
- package/esm2022/common-behaviours/fit-to-parent/index.mjs +3 -0
- package/esm2022/common-behaviours/index.mjs +6 -0
- package/esm2022/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +2 -0
- package/esm2022/common-behaviours/one-to-one-centering/index.mjs +3 -0
- package/esm2022/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +24 -0
- package/esm2022/components/f-connection/f-connection-base.mjs +33 -0
- package/esm2022/components/f-connection/f-connection-identifiers.mjs +21 -0
- package/esm2022/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +38 -0
- package/esm2022/components/f-connection/f-connection-text/f-connection-text.component.mjs +55 -0
- package/esm2022/components/f-connection/f-connection-text/index.mjs +3 -0
- package/esm2022/components/f-connection/f-connection.component.mjs +91 -0
- package/esm2022/components/f-connection/f-connection.module.mjs +47 -0
- package/esm2022/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +30 -0
- package/esm2022/components/f-connection/f-drag-handle/index.mjs +2 -0
- package/esm2022/components/f-connection/f-gradient/f-connection-gradient.component.mjs +59 -0
- package/esm2022/components/f-connection/f-gradient/index.mjs +2 -0
- package/esm2022/components/f-connection/f-path/f-connection-path.component.mjs +58 -0
- package/esm2022/components/f-connection/f-path/index.mjs +2 -0
- package/esm2022/components/f-connection/f-selection/f-connection-selection.component.mjs +34 -0
- package/esm2022/components/f-connection/f-selection/index.mjs +2 -0
- package/esm2022/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +61 -0
- package/esm2022/components/f-connection/f-temp-connection/index.mjs +3 -0
- package/esm2022/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +7 -0
- package/esm2022/components/f-connection/get-connection-intersect.mjs +10 -0
- package/esm2022/components/f-connection/i-input-output-model.mjs +2 -0
- package/esm2022/components/f-connection/index.mjs +13 -0
- package/esm2022/components/f-connection/public-api.mjs +4 -0
- package/esm2022/components/f-connectors/f-connector-base.mjs +14 -0
- package/esm2022/components/f-connectors/f-node-input/f-node-input-base.mjs +19 -0
- package/esm2022/components/f-connectors/f-node-input/f-node-input.directive.mjs +58 -0
- package/esm2022/components/f-connectors/f-node-input/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-input/is-node-input.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-input/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +22 -0
- package/esm2022/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +56 -0
- package/esm2022/components/f-connectors/f-node-outlet/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-outlet/is-node-outlet.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-outlet/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-node-output/f-node-output-base.mjs +19 -0
- package/esm2022/components/f-connectors/f-node-output/f-node-output.directive.mjs +54 -0
- package/esm2022/components/f-connectors/f-node-output/index.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-output/is-node-output.mjs +4 -0
- package/esm2022/components/f-connectors/f-node-output/public-api.mjs +2 -0
- package/esm2022/components/f-connectors/f-out-connector-base.mjs +4 -0
- package/esm2022/components/f-connectors/get-element-rect-in-canvas.mjs +8 -0
- package/esm2022/components/f-connectors/index.mjs +7 -0
- package/esm2022/components/f-connectors/public-api.mjs +4 -0
- package/esm2022/components/f-flow/f-flow-base.mjs +49 -0
- package/esm2022/components/f-flow/f-flow.component.mjs +67 -0
- package/esm2022/components/f-flow/index.mjs +3 -0
- package/esm2022/components/f-flow/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +54 -0
- package/esm2022/components/f-node/f-drag-handle/index.mjs +3 -0
- package/esm2022/components/f-node/f-drag-handle/is-drag-handle.mjs +20 -0
- package/esm2022/components/f-node/f-drag-handle/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-foreign-object/f-foreign-object-base.mjs +40 -0
- package/esm2022/components/f-node/f-foreign-object/f-foreign-object.component.mjs +49 -0
- package/esm2022/components/f-node/f-foreign-object/index.mjs +3 -0
- package/esm2022/components/f-node/f-foreign-object/public-api.mjs +2 -0
- package/esm2022/components/f-node/f-node-base.mjs +33 -0
- package/esm2022/components/f-node/f-node.component.mjs +62 -0
- package/esm2022/components/f-node/index.mjs +6 -0
- package/esm2022/components/f-node/is-node.mjs +4 -0
- package/esm2022/components/f-node/public-api.mjs +4 -0
- package/esm2022/components/index.mjs +6 -0
- package/esm2022/components/public-api.mjs +5 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +58 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +6 -0
- package/esm2022/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +3 -0
- package/esm2022/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +41 -0
- package/esm2022/directives/f-connect-if-intersect/index.mjs +3 -0
- package/esm2022/directives/f-connect-if-intersect/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container-base.mjs +32 -0
- package/esm2022/directives/f-containers/f-connections-container/f-connections-container.component.mjs +30 -0
- package/esm2022/directives/f-containers/f-connections-container/index.mjs +3 -0
- package/esm2022/directives/f-containers/f-connections-container/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/f-items-container/canvas-change.event.mjs +7 -0
- package/esm2022/directives/f-containers/f-items-container/f-items-container-base.mjs +45 -0
- package/esm2022/directives/f-containers/f-items-container/f-items-container.directive.mjs +48 -0
- package/esm2022/directives/f-containers/f-items-container/index.mjs +4 -0
- package/esm2022/directives/f-containers/f-items-container/public-api.mjs +3 -0
- package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +39 -0
- package/esm2022/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +25 -0
- package/esm2022/directives/f-containers/f-nodes-container/index.mjs +3 -0
- package/esm2022/directives/f-containers/f-nodes-container/public-api.mjs +2 -0
- package/esm2022/directives/f-containers/index.mjs +4 -0
- package/esm2022/directives/f-containers/public-api.mjs +4 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +24 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +6 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +20 -0
- package/esm2022/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/canvas/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +78 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +31 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection.event.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +28 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +20 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/create-connection/index.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +25 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.mjs +20 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +5 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +14 -0
- package/esm2022/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +6 -0
- package/esm2022/directives/f-draggable/connections/index.mjs +4 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/index.mjs +5 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +9 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +36 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +31 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +26 -0
- package/esm2022/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +11 -0
- package/esm2022/directives/f-draggable/default-drag-handler/index.mjs +2 -0
- package/esm2022/directives/f-draggable/e-draggable-type.mjs +12 -0
- package/esm2022/directives/f-draggable/external-item/create-node.event.mjs +7 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +28 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +6 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +30 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +26 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/external-item/index.mjs +5 -0
- package/esm2022/directives/f-draggable/f-draggable-base.mjs +103 -0
- package/esm2022/directives/f-draggable/f-draggable.directive.mjs +52 -0
- package/esm2022/directives/f-draggable/f-draggable.module.mjs +49 -0
- package/esm2022/directives/f-draggable/f-draggable.service.mjs +23 -0
- package/esm2022/directives/f-draggable/i-drag-handler.mjs +2 -0
- package/esm2022/directives/f-draggable/i-draggable-item.mjs +2 -0
- package/esm2022/directives/f-draggable/index.mjs +14 -0
- package/esm2022/directives/f-draggable/node/index.mjs +4 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +9 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +88 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +24 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +24 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +22 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/index.mjs +5 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +23 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +7 -0
- package/esm2022/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +28 -0
- package/esm2022/directives/f-draggable/public-api.mjs +2 -0
- package/esm2022/directives/f-draggable/selection/index.mjs +4 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +3 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +8 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +61 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +2 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +54 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +3 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +8 -0
- package/esm2022/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +22 -0
- package/esm2022/directives/f-external-item/f-external-item-base.mjs +11 -0
- package/esm2022/directives/f-external-item/f-external-item.directive.mjs +44 -0
- package/esm2022/directives/f-external-item/f-external-item.service.mjs +25 -0
- package/esm2022/directives/f-external-item/index.mjs +5 -0
- package/esm2022/directives/f-external-item/is-external-item.mjs +7 -0
- package/esm2022/directives/f-external-item/public-api.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +40 -0
- package/esm2022/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +40 -0
- package/esm2022/directives/f-line-alignment/domain/i-line-alignment-result.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +2 -0
- package/esm2022/directives/f-line-alignment/domain/index.mjs +5 -0
- package/esm2022/directives/f-line-alignment/f-line-alignment.directive.mjs +105 -0
- package/esm2022/directives/f-line-alignment/index.mjs +3 -0
- package/esm2022/directives/f-line-alignment/public-api.mjs +2 -0
- package/esm2022/directives/f-selection/f-selection.directive.mjs +40 -0
- package/esm2022/directives/f-selection/index.mjs +2 -0
- package/esm2022/directives/f-selection/public-api.mjs +2 -0
- package/esm2022/directives/f-zoom/f-zoom-base.mjs +89 -0
- package/esm2022/directives/f-zoom/f-zoom.directive.mjs +57 -0
- package/esm2022/directives/f-zoom/index.mjs +3 -0
- package/esm2022/directives/f-zoom/public-api.mjs +2 -0
- package/esm2022/directives/index.mjs +8 -0
- package/esm2022/directives/public-api.mjs +8 -0
- package/esm2022/f-flow.module.mjs +79 -0
- package/esm2022/i-has-state-changes.mjs +2 -0
- package/esm2022/i-selectable.mjs +2 -0
- package/esm2022/internal/f-backgroud/f-background-base.mjs +25 -0
- package/esm2022/internal/f-backgroud/f-background.directive.mjs +24 -0
- package/esm2022/internal/f-backgroud/index.mjs +3 -0
- package/esm2022/internal/f-canvas/f-canvas-base.mjs +25 -0
- package/esm2022/internal/f-canvas/f-canvas.directive.mjs +19 -0
- package/esm2022/internal/f-canvas/index.mjs +3 -0
- package/esm2022/internal/index.mjs +3 -0
- package/esm2022/public-api.mjs +5 -2
- package/fesm2022/foblex-flow.mjs +141 -135
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +4 -2
- package/public-api.d.ts +4 -1
- package/esm2022/lib/common-behaviours/change-position.mjs +0 -15
- package/esm2022/lib/common-behaviours/change-zoom/change-zoom.mjs +0 -25
- package/esm2022/lib/common-behaviours/change-zoom/i-can-change-zoom.mjs +0 -2
- package/esm2022/lib/common-behaviours/change-zoom/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/constructor.mjs +0 -2
- package/esm2022/lib/common-behaviours/fit-to-parent/fit-to-parent.mjs +0 -27
- package/esm2022/lib/common-behaviours/fit-to-parent/i-can-fit-to-parent.mjs +0 -2
- package/esm2022/lib/common-behaviours/fit-to-parent/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/index.mjs +0 -6
- package/esm2022/lib/common-behaviours/one-to-one-centering/i-can-one-to-one-centering.mjs +0 -2
- package/esm2022/lib/common-behaviours/one-to-one-centering/index.mjs +0 -3
- package/esm2022/lib/common-behaviours/one-to-one-centering/one-to-one-centering.mjs +0 -24
- package/esm2022/lib/components/f-connection/f-connection-base.mjs +0 -33
- package/esm2022/lib/components/f-connection/f-connection-identifiers.mjs +0 -21
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text-path.directive.mjs +0 -38
- package/esm2022/lib/components/f-connection/f-connection-text/f-connection-text.component.mjs +0 -55
- package/esm2022/lib/components/f-connection/f-connection-text/index.mjs +0 -3
- package/esm2022/lib/components/f-connection/f-connection.component.mjs +0 -91
- package/esm2022/lib/components/f-connection/f-connection.module.mjs +0 -47
- package/esm2022/lib/components/f-connection/f-drag-handle/f-connection-drag-handle.component.mjs +0 -30
- package/esm2022/lib/components/f-connection/f-drag-handle/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-gradient/f-connection-gradient.component.mjs +0 -59
- package/esm2022/lib/components/f-connection/f-gradient/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-path/f-connection-path.component.mjs +0 -58
- package/esm2022/lib/components/f-connection/f-path/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-selection/f-connection-selection.component.mjs +0 -34
- package/esm2022/lib/components/f-connection/f-selection/index.mjs +0 -2
- package/esm2022/lib/components/f-connection/f-temp-connection/f-temp-connection.component.mjs +0 -61
- package/esm2022/lib/components/f-connection/f-temp-connection/index.mjs +0 -3
- package/esm2022/lib/components/f-connection/f-temp-connection/temp-connection-input-output-model.mjs +0 -7
- package/esm2022/lib/components/f-connection/get-connection-intersect.mjs +0 -10
- package/esm2022/lib/components/f-connection/i-input-output-model.mjs +0 -2
- package/esm2022/lib/components/f-connection/index.mjs +0 -13
- package/esm2022/lib/components/f-connection/public-api.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-connector-base.mjs +0 -14
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input-base.mjs +0 -19
- package/esm2022/lib/components/f-connectors/f-node-input/f-node-input.directive.mjs +0 -58
- package/esm2022/lib/components/f-connectors/f-node-input/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-input/is-node-input.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-input/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet-base.mjs +0 -22
- package/esm2022/lib/components/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -56
- package/esm2022/lib/components/f-connectors/f-node-outlet/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-outlet/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output-base.mjs +0 -19
- package/esm2022/lib/components/f-connectors/f-node-output/f-node-output.directive.mjs +0 -54
- package/esm2022/lib/components/f-connectors/f-node-output/index.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-output/is-node-output.mjs +0 -4
- package/esm2022/lib/components/f-connectors/f-node-output/public-api.mjs +0 -2
- package/esm2022/lib/components/f-connectors/f-out-connector-base.mjs +0 -4
- package/esm2022/lib/components/f-connectors/get-element-rect-in-canvas.mjs +0 -8
- package/esm2022/lib/components/f-connectors/index.mjs +0 -7
- package/esm2022/lib/components/f-connectors/public-api.mjs +0 -4
- package/esm2022/lib/components/f-flow/f-flow-base.mjs +0 -49
- package/esm2022/lib/components/f-flow/f-flow.component.mjs +0 -67
- package/esm2022/lib/components/f-flow/index.mjs +0 -3
- package/esm2022/lib/components/f-flow/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-drag-handle/f-drag-handle.directive.mjs +0 -54
- package/esm2022/lib/components/f-node/f-drag-handle/index.mjs +0 -3
- package/esm2022/lib/components/f-node/f-drag-handle/is-drag-handle.mjs +0 -20
- package/esm2022/lib/components/f-node/f-drag-handle/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object-base.mjs +0 -40
- package/esm2022/lib/components/f-node/f-foreign-object/f-foreign-object.component.mjs +0 -49
- package/esm2022/lib/components/f-node/f-foreign-object/index.mjs +0 -3
- package/esm2022/lib/components/f-node/f-foreign-object/public-api.mjs +0 -2
- package/esm2022/lib/components/f-node/f-node-base.mjs +0 -33
- package/esm2022/lib/components/f-node/f-node.component.mjs +0 -62
- package/esm2022/lib/components/f-node/index.mjs +0 -6
- package/esm2022/lib/components/f-node/is-node.mjs +0 -4
- package/esm2022/lib/components/f-node/public-api.mjs +0 -4
- package/esm2022/lib/components/index.mjs +0 -6
- package/esm2022/lib/components/public-api.mjs +0 -5
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.mjs +0 -58
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.mjs +0 -6
- package/esm2022/lib/directives/f-connect-if-intersect/connect-if-intersect/index.mjs +0 -3
- package/esm2022/lib/directives/f-connect-if-intersect/f-connect-if-intersect.directive.mjs +0 -41
- package/esm2022/lib/directives/f-connect-if-intersect/index.mjs +0 -3
- package/esm2022/lib/directives/f-connect-if-intersect/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container-base.mjs +0 -32
- package/esm2022/lib/directives/f-containers/f-connections-container/f-connections-container.component.mjs +0 -30
- package/esm2022/lib/directives/f-containers/f-connections-container/index.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-connections-container/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/f-items-container/canvas-change.event.mjs +0 -7
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container-base.mjs +0 -45
- package/esm2022/lib/directives/f-containers/f-items-container/f-items-container.directive.mjs +0 -42
- package/esm2022/lib/directives/f-containers/f-items-container/index.mjs +0 -4
- package/esm2022/lib/directives/f-containers/f-items-container/public-api.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container-base.mjs +0 -39
- package/esm2022/lib/directives/f-containers/f-nodes-container/f-nodes-container.component.mjs +0 -25
- package/esm2022/lib/directives/f-containers/f-nodes-container/index.mjs +0 -3
- package/esm2022/lib/directives/f-containers/f-nodes-container/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-containers/index.mjs +0 -4
- package/esm2022/lib/directives/f-containers/public-api.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.mjs +0 -20
- package/esm2022/lib/directives/f-draggable/canvas/canvas-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/canvas/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.mjs +0 -78
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.mjs +0 -31
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.event.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/create-connection/create-connection.on-pointer-move.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.mjs +0 -20
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/create-connection/index.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.mjs +0 -25
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.mjs +0 -20
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.mjs +0 -14
- package/esm2022/lib/directives/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/connections/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-connection.event.mjs +0 -9
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.mjs +0 -36
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.mjs +0 -31
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.mjs +0 -26
- package/esm2022/lib/directives/f-draggable/default-drag-handler/default-drag.handler.mjs +0 -11
- package/esm2022/lib/directives/f-draggable/default-drag-handler/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/e-draggable-type.mjs +0 -12
- package/esm2022/lib/directives/f-draggable/external-item/create-node.event.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.mjs +0 -6
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.mjs +0 -30
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.mjs +0 -26
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/external-item/external-item-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/external-item/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/f-draggable-base.mjs +0 -103
- package/esm2022/lib/directives/f-draggable/f-draggable.directive.mjs +0 -52
- package/esm2022/lib/directives/f-draggable/f-draggable.module.mjs +0 -49
- package/esm2022/lib/directives/f-draggable/f-draggable.service.mjs +0 -23
- package/esm2022/lib/directives/f-draggable/i-drag-handler.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/i-draggable-item.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/index.mjs +0 -14
- package/esm2022/lib/directives/f-draggable/node/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.mjs +0 -9
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-down/node.on-pointer-down.mjs +0 -88
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.mjs +0 -24
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.mjs +0 -22
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/index.mjs +0 -5
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-move/node.on-pointer-move.mjs +0 -23
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.mjs +0 -7
- package/esm2022/lib/directives/f-draggable/node/node-on-pointer-up/node.on-pointer-up.mjs +0 -28
- package/esm2022/lib/directives/f-draggable/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/selection/index.mjs +0 -4
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.mjs +0 -8
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.mjs +0 -61
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/index.mjs +0 -2
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.mjs +0 -54
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/index.mjs +0 -3
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.mjs +0 -8
- package/esm2022/lib/directives/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.mjs +0 -22
- package/esm2022/lib/directives/f-external-item/f-external-item-base.mjs +0 -11
- package/esm2022/lib/directives/f-external-item/f-external-item.directive.mjs +0 -44
- package/esm2022/lib/directives/f-external-item/f-external-item.service.mjs +0 -25
- package/esm2022/lib/directives/f-external-item/index.mjs +0 -5
- package/esm2022/lib/directives/f-external-item/is-external-item.mjs +0 -7
- package/esm2022/lib/directives/f-external-item/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-x.mjs +0 -40
- package/esm2022/lib/directives/f-line-alignment/domain/find-nearest-coordinate-by-y.mjs +0 -40
- package/esm2022/lib/directives/f-line-alignment/domain/i-line-alignment-result.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/i-nearest-coordinate-result.mjs +0 -2
- package/esm2022/lib/directives/f-line-alignment/domain/index.mjs +0 -5
- package/esm2022/lib/directives/f-line-alignment/f-line-alignment.directive.mjs +0 -105
- package/esm2022/lib/directives/f-line-alignment/index.mjs +0 -3
- package/esm2022/lib/directives/f-line-alignment/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-selection/f-selection.directive.mjs +0 -40
- package/esm2022/lib/directives/f-selection/index.mjs +0 -2
- package/esm2022/lib/directives/f-selection/public-api.mjs +0 -2
- package/esm2022/lib/directives/f-zoom/f-zoom-base.mjs +0 -89
- package/esm2022/lib/directives/f-zoom/f-zoom.directive.mjs +0 -57
- package/esm2022/lib/directives/f-zoom/index.mjs +0 -3
- package/esm2022/lib/directives/f-zoom/public-api.mjs +0 -2
- package/esm2022/lib/directives/index.mjs +0 -8
- package/esm2022/lib/directives/public-api.mjs +0 -8
- package/esm2022/lib/f-flow.module.mjs +0 -79
- package/esm2022/lib/i-has-state-changes.mjs +0 -2
- package/esm2022/lib/i-selectable.mjs +0 -2
- package/esm2022/lib/internal/f-backgroud/f-background-base.mjs +0 -25
- package/esm2022/lib/internal/f-backgroud/f-background.directive.mjs +0 -24
- package/esm2022/lib/internal/f-backgroud/index.mjs +0 -3
- package/esm2022/lib/internal/f-canvas/f-canvas-base.mjs +0 -25
- package/esm2022/lib/internal/f-canvas/f-canvas.directive.mjs +0 -19
- package/esm2022/lib/internal/f-canvas/index.mjs +0 -3
- package/esm2022/lib/internal/index.mjs +0 -3
- package/esm2022/lib/public-api.mjs +0 -5
- package/lib/public-api.d.ts +0 -4
- /package/{lib/common-behaviours → common-behaviours}/change-position.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/change-zoom.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/i-can-change-zoom.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/change-zoom/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/constructor.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/fit-to-parent.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/i-can-fit-to-parent.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/fit-to-parent/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/i-can-one-to-one-centering.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/index.d.ts +0 -0
- /package/{lib/common-behaviours → common-behaviours}/one-to-one-centering/one-to-one-centering.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-base.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-identifiers.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text-path.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/f-connection-text.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection-text/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-connection.module.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-drag-handle/f-connection-drag-handle.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-drag-handle/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-gradient/f-connection-gradient.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-gradient/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-path/f-connection-path.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-path/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-selection/f-connection-selection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-selection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/f-temp-connection.component.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/f-temp-connection/temp-connection-input-output-model.d.ts +0 -0
- /package/{lib/components → components}/f-connection/get-connection-intersect.d.ts +0 -0
- /package/{lib/components → components}/f-connection/i-input-output-model.d.ts +0 -0
- /package/{lib/components → components}/f-connection/index.d.ts +0 -0
- /package/{lib/components → components}/f-connection/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-connector-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/f-node-input-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/f-node-input.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/is-node-input.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-input/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/is-node-outlet.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-outlet/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/f-node-output-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/f-node-output.directive.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/is-node-output.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-node-output/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/f-out-connector-base.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/get-element-rect-in-canvas.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/index.d.ts +0 -0
- /package/{lib/components → components}/f-connectors/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-flow/f-flow-base.d.ts +0 -0
- /package/{lib/components → components}/f-flow/f-flow.component.d.ts +0 -0
- /package/{lib/components → components}/f-flow/index.d.ts +0 -0
- /package/{lib/components → components}/f-flow/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/f-drag-handle.directive.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/is-drag-handle.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-drag-handle/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object-base.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/f-foreign-object.component.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-foreign-object/public-api.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-node-base.d.ts +0 -0
- /package/{lib/components → components}/f-node/f-node.component.d.ts +0 -0
- /package/{lib/components → components}/f-node/index.d.ts +0 -0
- /package/{lib/components → components}/f-node/is-node.d.ts +0 -0
- /package/{lib/components → components}/f-node/public-api.d.ts +0 -0
- /package/{lib/components → components}/index.d.ts +0 -0
- /package/{lib/components → components}/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/connect-if-intersect.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/connect-if-intersect/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/f-connect-if-intersect.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-connect-if-intersect/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/f-connections-container.component.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-connections-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/canvas-change.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/f-items-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-items-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/f-nodes-container.component.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/f-nodes-container/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-containers/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/canvas-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/canvas.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/canvas-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/canvas/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/create-connection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/create-connection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/create-connection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/find-first-can-be-connected-output-by-outlet.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/find-first-can-be-connected-output-by-outlet/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/create-connection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/find-inputs-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/first-not-connected-input-of-node-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/first-not-connected-input-of-node-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/find-inputs-under-pointer/inputs-under-pointer/inputs-under-pointer.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-connection.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-down/reassign-connection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-move/reassign-connection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/connections/reassign-connection/reassign-on-pointer-up/reassign-connection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/default-drag-handler/default-drag.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/default-drag-handler/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/e-draggable-type.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/create-node.event.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/external-item-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/external-item-on-pointer-move.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/external-item-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/external-item-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/external-item/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.module.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/f-draggable.service.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/i-drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/i-draggable-item.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-down/node.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-source.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection-target.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/f-connection.drag-handler.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-move/node.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/node/node-on-pointer-up/node.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection-on-pointer-down.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-down/selection.on-pointer-down.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-move/selection.on-pointer-move.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection-on-pointer-up.request.d.ts +0 -0
- /package/{lib/directives → directives}/f-draggable/selection/selection-on-pointer-up/selection.on-pointer-up.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/f-external-item.service.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/is-external-item.d.ts +0 -0
- /package/{lib/directives → directives}/f-external-item/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-x.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/find-nearest-coordinate-by-y.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/i-line-alignment-result.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/i-nearest-coordinate-result.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/domain/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/f-line-alignment.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-line-alignment/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/f-selection.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-selection/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/f-zoom-base.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/f-zoom.directive.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/index.d.ts +0 -0
- /package/{lib/directives → directives}/f-zoom/public-api.d.ts +0 -0
- /package/{lib/directives → directives}/index.d.ts +0 -0
- /package/{lib/directives → directives}/public-api.d.ts +0 -0
- /package/{lib/f-flow.module.d.ts → f-flow.module.d.ts} +0 -0
- /package/{lib/i-has-state-changes.d.ts → i-has-state-changes.d.ts} +0 -0
- /package/{lib/i-selectable.d.ts → i-selectable.d.ts} +0 -0
- /package/{lib/internal → internal}/f-backgroud/f-background-base.d.ts +0 -0
- /package/{lib/internal → internal}/f-backgroud/f-background.directive.d.ts +0 -0
- /package/{lib/internal → internal}/f-backgroud/index.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/f-canvas-base.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/f-canvas.directive.d.ts +0 -0
- /package/{lib/internal → internal}/f-canvas/index.d.ts +0 -0
- /package/{lib/internal → internal}/index.d.ts +0 -0
package/fesm2022/foblex-flow.mjs
CHANGED
|
@@ -28,10 +28,10 @@ class FConnectionBase {
|
|
|
28
28
|
isSelected() {
|
|
29
29
|
return this.hostElement.classList.contains(F_SELECTED_CLASS);
|
|
30
30
|
}
|
|
31
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
32
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
31
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
32
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionBase, ngImport: i0 }); }
|
|
33
33
|
}
|
|
34
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
34
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionBase, decorators: [{
|
|
35
35
|
type: Directive
|
|
36
36
|
}] });
|
|
37
37
|
|
|
@@ -92,10 +92,10 @@ class FConnectionPathComponent {
|
|
|
92
92
|
isSelected() {
|
|
93
93
|
return this.hostElement.getAttribute('marker-start') === `url(#connection-marker-start-selected)`;
|
|
94
94
|
}
|
|
95
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
96
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
95
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionPathComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
96
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionPathComponent, selector: "path[f-connection-path]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.id": "attrConnectionId", "attr.stroke": "linkToGradient" }, classAttribute: "f-component f-connection-path" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
97
97
|
}
|
|
98
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
98
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionPathComponent, decorators: [{
|
|
99
99
|
type: Component,
|
|
100
100
|
args: [{
|
|
101
101
|
selector: "path[f-connection-path]",
|
|
@@ -153,10 +153,10 @@ class FConnectionGradientComponent {
|
|
|
153
153
|
this.hostElement.setAttribute('y2', to.y.toString());
|
|
154
154
|
this.updateGradient();
|
|
155
155
|
}
|
|
156
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
157
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
156
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionGradientComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
157
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.id": "gradientId" }, classAttribute: "f-component f-connection-gradient" }, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:stop/>\n <svg:stop/>\n</ng-container>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
158
158
|
}
|
|
159
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
159
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionGradientComponent, decorators: [{
|
|
160
160
|
type: Component,
|
|
161
161
|
args: [{ selector: "linearGradient[fConnectionGradient]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
162
162
|
class: "f-component f-connection-gradient",
|
|
@@ -186,10 +186,10 @@ class FConnectionTextPathDirective {
|
|
|
186
186
|
setOffset(offset) {
|
|
187
187
|
this.hostElement.setAttribute('startOffset', offset.toString());
|
|
188
188
|
}
|
|
189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
190
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
189
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionTextPathDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
190
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.href": "linkToConnection" } }, ngImport: i0 }); }
|
|
191
191
|
}
|
|
192
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
192
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionTextPathDirective, decorators: [{
|
|
193
193
|
type: Directive,
|
|
194
194
|
args: [{
|
|
195
195
|
selector: 'textPath[f-connection-text-path]',
|
|
@@ -234,10 +234,10 @@ class FConnectionTextComponent {
|
|
|
234
234
|
const vectorLength = PointExtensions.hypotenuse(vector.point1, vector.point2);
|
|
235
235
|
return vectorLength / 2 - ((name || '').length * symbolWidth) / 2;
|
|
236
236
|
}
|
|
237
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
238
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
237
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionTextComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
238
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionTextComponent, selector: "text[f-connection-text]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.id": "textId" }, classAttribute: "f-component f-connection-text" }, viewQueries: [{ propertyName: "textPathDirective", first: true, predicate: FConnectionTextPathDirective, descendants: true, static: true }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:textPath f-connection-text-path [fromTo]=\"fromTo\">\n {{ fromTo?.output?.name }}\n </svg:textPath>\n</ng-container>\n", dependencies: [{ kind: "directive", type: FConnectionTextPathDirective, selector: "textPath[f-connection-text-path]", inputs: ["fromTo"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
239
239
|
}
|
|
240
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
240
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionTextComponent, decorators: [{
|
|
241
241
|
type: Component,
|
|
242
242
|
args: [{ selector: "text[f-connection-text]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
243
243
|
class: "f-component f-connection-text",
|
|
@@ -279,12 +279,12 @@ class FTempConnectionComponent extends FConnectionBase {
|
|
|
279
279
|
completeDrag() {
|
|
280
280
|
this.hostElement.style.display = "none";
|
|
281
281
|
}
|
|
282
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
283
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
282
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FTempConnectionComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
283
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FTempConnectionComponent, selector: "g[fTempConnection]", host: { classAttribute: "f-component f-connection f-temp-connection" }, providers: [
|
|
284
284
|
{ provide: F_TEMP_CONNECTION_COMPONENT, useExisting: FTempConnectionComponent }
|
|
285
285
|
], viewQueries: [{ propertyName: "fPath", first: true, predicate: FConnectionPathComponent, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: FConnectionGradientComponent, descendants: true, static: true }, { propertyName: "fText", first: true, predicate: FConnectionTextComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:linearGradient fConnectionGradient [fromTo]=\"fromTo\"></svg:linearGradient>\n <svg:g>\n <svg:path f-connection-path stroke-dasharray=\"10,10\" [attr.d]=\"path\" [fromTo]=\"fromTo\"></svg:path>\n </svg:g>\n <svg:text f-connection-text [fromTo]=\"fromTo\"></svg:text>\n</ng-container>\n", dependencies: [{ kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]", inputs: ["fromTo"] }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]", inputs: ["fromTo"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]", inputs: ["fromTo"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
286
286
|
}
|
|
287
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
287
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FTempConnectionComponent, decorators: [{
|
|
288
288
|
type: Component,
|
|
289
289
|
args: [{ selector: "g[fTempConnection]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
290
290
|
class: "f-component f-connection f-temp-connection"
|
|
@@ -315,10 +315,10 @@ class FConnectionDragHandleComponent {
|
|
|
315
315
|
this.hostElement.setAttribute('cx', point.x.toString());
|
|
316
316
|
this.hostElement.setAttribute('cy', point.y.toString());
|
|
317
317
|
}
|
|
318
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
319
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
318
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionDragHandleComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
319
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]", host: { properties: { "class": "class" } }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
320
320
|
}
|
|
321
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
321
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionDragHandleComponent, decorators: [{
|
|
322
322
|
type: Component,
|
|
323
323
|
args: [{
|
|
324
324
|
selector: "circle[f-connection-drag-handle]",
|
|
@@ -343,10 +343,10 @@ class FConnectionSelectionComponent {
|
|
|
343
343
|
setPath(path) {
|
|
344
344
|
this.hostElement.setAttribute("d", `${path}`);
|
|
345
345
|
}
|
|
346
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
347
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
346
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionSelectionComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
347
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]", inputs: { fromTo: "fromTo" }, host: { properties: { "attr.id": "connectionForSelectionId" }, classAttribute: "f-component f-connection-selection" }, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
348
348
|
}
|
|
349
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
349
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionSelectionComponent, decorators: [{
|
|
350
350
|
type: Component,
|
|
351
351
|
args: [{
|
|
352
352
|
selector: "path[fConnectionSelection]",
|
|
@@ -377,10 +377,10 @@ class FCanvasBase {
|
|
|
377
377
|
this.hostElement.setAttribute('baseProfile', 'full');
|
|
378
378
|
this.hostElement.style.cssText = 'user-select:none; width:100%; height:100%;';
|
|
379
379
|
}
|
|
380
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
381
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
380
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
381
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FCanvasBase, ngImport: i0 }); }
|
|
382
382
|
}
|
|
383
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
383
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasBase, decorators: [{
|
|
384
384
|
type: Directive
|
|
385
385
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
386
386
|
|
|
@@ -388,10 +388,10 @@ class FCanvasDirective extends FCanvasBase {
|
|
|
388
388
|
constructor(elementReference) {
|
|
389
389
|
super(elementReference);
|
|
390
390
|
}
|
|
391
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
392
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
391
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
392
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FCanvasDirective, isStandalone: true, selector: "svg[fCanvas]", providers: [{ provide: F_CANVAS, useExisting: FCanvasDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
393
393
|
}
|
|
394
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
394
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FCanvasDirective, decorators: [{
|
|
395
395
|
type: Directive,
|
|
396
396
|
args: [{
|
|
397
397
|
selector: "svg[fCanvas]",
|
|
@@ -414,10 +414,10 @@ class FBackgroundBase {
|
|
|
414
414
|
isBackgroundElement(element) {
|
|
415
415
|
return this.hostElement === element || this.hostElement.contains(element) || this.fCanvas.hostElement.contains(element);
|
|
416
416
|
}
|
|
417
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
418
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
417
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundBase, deps: [{ token: i0.ElementRef }, { token: FCanvasBase }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
418
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FBackgroundBase, ngImport: i0 }); }
|
|
419
419
|
}
|
|
420
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
420
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundBase, decorators: [{
|
|
421
421
|
type: Directive
|
|
422
422
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: FCanvasBase }]; } });
|
|
423
423
|
|
|
@@ -425,10 +425,10 @@ class FBackgroundDirective extends FBackgroundBase {
|
|
|
425
425
|
constructor(elementReference, fCanvas) {
|
|
426
426
|
super(elementReference, fCanvas);
|
|
427
427
|
}
|
|
428
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
429
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
428
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundDirective, deps: [{ token: i0.ElementRef }, { token: F_CANVAS }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
429
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FBackgroundDirective, isStandalone: true, selector: "g[fBackground]", providers: [{ provide: F_BACKGROUND, useExisting: FBackgroundDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
430
430
|
}
|
|
431
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
431
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FBackgroundDirective, decorators: [{
|
|
432
432
|
type: Directive,
|
|
433
433
|
args: [{
|
|
434
434
|
selector: "g[fBackground]",
|
|
@@ -448,8 +448,8 @@ class TempConnectionInputOutputModel {
|
|
|
448
448
|
}
|
|
449
449
|
|
|
450
450
|
class FConnectionModule {
|
|
451
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
452
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
|
451
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
452
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: FConnectionModule, declarations: [FTempConnectionComponent,
|
|
453
453
|
FConnectionComponent,
|
|
454
454
|
FConnectionDragHandleComponent,
|
|
455
455
|
FConnectionGradientComponent,
|
|
@@ -458,9 +458,9 @@ class FConnectionModule {
|
|
|
458
458
|
FConnectionTextPathDirective,
|
|
459
459
|
FConnectionSelectionComponent], imports: [CommonModule], exports: [FTempConnectionComponent,
|
|
460
460
|
FConnectionComponent] }); }
|
|
461
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
|
461
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionModule, imports: [CommonModule] }); }
|
|
462
462
|
}
|
|
463
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
463
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionModule, decorators: [{
|
|
464
464
|
type: NgModule,
|
|
465
465
|
args: [{
|
|
466
466
|
declarations: [
|
|
@@ -520,10 +520,10 @@ class FNodeInputBase extends FConnectorBase {
|
|
|
520
520
|
get canBeConnected() {
|
|
521
521
|
return !this.disabled && (this.multiple ? true : !this.isConnected);
|
|
522
522
|
}
|
|
523
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
524
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
523
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeInputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
524
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeInputBase, usesInheritance: true, ngImport: i0 }); }
|
|
525
525
|
}
|
|
526
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
526
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeInputBase, decorators: [{
|
|
527
527
|
type: Directive
|
|
528
528
|
}] });
|
|
529
529
|
|
|
@@ -556,10 +556,10 @@ class FNodeInputDirective extends FNodeInputBase {
|
|
|
556
556
|
this.multiple = true;
|
|
557
557
|
this.isDisabled = false;
|
|
558
558
|
}
|
|
559
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
560
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
559
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeInputDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
560
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeInputDirective, selector: "[fNodeInput]", inputs: { id: "id", fNodeInputColor: "fNodeInputColor", multiple: ["fNodeInputMultiple", "multiple"], disabled: ["fNodeInputDisabled", "disabled"] }, host: { properties: { "attr.id": "id", "class.f-node-input-multiple": "multiple", "class.f-node-input-disabled": "disabled", "class.f-node-input-not-connectable": "!canBeConnected" }, classAttribute: "f-component f-node-input" }, providers: [{ provide: F_NODE_INPUT_DIRECTIVE, useExisting: FNodeInputDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
561
561
|
}
|
|
562
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
562
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeInputDirective, decorators: [{
|
|
563
563
|
type: Directive,
|
|
564
564
|
args: [{
|
|
565
565
|
selector: "[fNodeInput]",
|
|
@@ -600,10 +600,10 @@ class FNodeOutletBase extends FOutConnectorBase {
|
|
|
600
600
|
setOutputs(outputs) {
|
|
601
601
|
this.outputs = outputs;
|
|
602
602
|
}
|
|
603
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
604
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
603
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutletBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
604
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeOutletBase, usesInheritance: true, ngImport: i0 }); }
|
|
605
605
|
}
|
|
606
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
606
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutletBase, decorators: [{
|
|
607
607
|
type: Directive
|
|
608
608
|
}] });
|
|
609
609
|
|
|
@@ -635,10 +635,10 @@ class FNodeOutletDirective extends FNodeOutletBase {
|
|
|
635
635
|
this.isDisabled = false;
|
|
636
636
|
this.isConnectionFromOutlet = false;
|
|
637
637
|
}
|
|
638
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
639
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
638
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutletDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
639
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeOutletDirective, selector: "[fNodeOutlet]", inputs: { id: "id", color: ["fNodeOutletColor", "color"], name: "name", disabled: ["fNodeOutletDisabled", "disabled"], isConnectionFromOutlet: "isConnectionFromOutlet" }, host: { properties: { "attr.id": "id", "class.f-node-outlet-disabled": "disabled" }, classAttribute: "f-component f-node-outlet" }, providers: [{ provide: F_NODE_OUTLET_DIRECTIVE, useExisting: FNodeOutletDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
640
640
|
}
|
|
641
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
641
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutletDirective, decorators: [{
|
|
642
642
|
type: Directive,
|
|
643
643
|
args: [{
|
|
644
644
|
selector: "[fNodeOutlet]",
|
|
@@ -672,10 +672,10 @@ class FNodeOutputBase extends FOutConnectorBase {
|
|
|
672
672
|
get canBeConnected() {
|
|
673
673
|
return !this.disabled && !this.isConnected;
|
|
674
674
|
}
|
|
675
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
676
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
675
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutputBase, deps: null, target: i0.ɵɵFactoryTarget.Directive }); }
|
|
676
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeOutputBase, usesInheritance: true, ngImport: i0 }); }
|
|
677
677
|
}
|
|
678
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
678
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutputBase, decorators: [{
|
|
679
679
|
type: Directive
|
|
680
680
|
}] });
|
|
681
681
|
|
|
@@ -706,10 +706,10 @@ class FNodeOutputDirective extends FNodeOutputBase {
|
|
|
706
706
|
this.name = '';
|
|
707
707
|
this.isDisabled = false;
|
|
708
708
|
}
|
|
709
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
710
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
709
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutputDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
710
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodeOutputDirective, selector: "[fNodeOutput]", inputs: { id: "id", color: ["fNodeOutputColor", "color"], name: "name", disabled: ["fNodeOutputDisabled", "disabled"] }, host: { properties: { "attr.id": "id", "class.f-node-output-disabled": "disabled", "class.f-node-output-connected": "isConnected" }, classAttribute: "f-component f-node-output" }, providers: [{ provide: F_NODE_OUTPUT_DIRECTIVE, useExisting: FNodeOutputDirective }], usesInheritance: true, ngImport: i0 }); }
|
|
711
711
|
}
|
|
712
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
712
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeOutputDirective, decorators: [{
|
|
713
713
|
type: Directive,
|
|
714
714
|
args: [{
|
|
715
715
|
selector: "[fNodeOutput]",
|
|
@@ -786,10 +786,10 @@ class FDragHandleDirective {
|
|
|
786
786
|
ngOnDestroy() {
|
|
787
787
|
this.stateChanges.complete();
|
|
788
788
|
}
|
|
789
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
790
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
789
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDragHandleDirective, deps: [{ token: i0.ElementRef }, { token: F_NODE_COMPONENT, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
790
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FDragHandleDirective, selector: "[fDragHandle]", inputs: { disabled: ["fDragHandleDisabled", "disabled"] }, host: { properties: { "class.f-drag-handle-disabled": "disabled" }, classAttribute: "f-drag-handle f-component" }, providers: [{ provide: F_DRAG_HANDLE, useExisting: FDragHandleDirective }], ngImport: i0 }); }
|
|
791
791
|
}
|
|
792
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
792
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDragHandleDirective, decorators: [{
|
|
793
793
|
type: Directive,
|
|
794
794
|
args: [{
|
|
795
795
|
selector: "[fDragHandle]",
|
|
@@ -860,10 +860,10 @@ class FForeignObjectBase {
|
|
|
860
860
|
this.stateChanges.complete();
|
|
861
861
|
this.subscriptions$.unsubscribe();
|
|
862
862
|
}
|
|
863
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
864
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
863
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FForeignObjectBase, deps: "invalid", target: i0.ɵɵFactoryTarget.Directive }); }
|
|
864
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FForeignObjectBase, ngImport: i0 }); }
|
|
865
865
|
}
|
|
866
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
866
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FForeignObjectBase, decorators: [{
|
|
867
867
|
type: Directive
|
|
868
868
|
}], ctorParameters: function () { return [{ type: undefined }]; } });
|
|
869
869
|
|
|
@@ -882,12 +882,12 @@ class FForeignObjectComponent extends FForeignObjectBase {
|
|
|
882
882
|
this.defaultHeight = 100;
|
|
883
883
|
this.hostElement.style.cssText = 'overflow:visible;';
|
|
884
884
|
}
|
|
885
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
886
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
885
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FForeignObjectComponent, deps: [{ token: i0.ElementRef }, { token: FFlowComponent }, { token: F_NODE_COMPONENT, optional: true, skipSelf: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
886
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FForeignObjectComponent, selector: "foreignObject[fForeignObject]", inputs: { defaultWidth: ["fDefaultWidth", "defaultWidth"], defaultHeight: ["fDefaultHeight", "defaultHeight"] }, host: { properties: { "attr.width": "defaultWidth", "attr.height": "defaultHeight" }, classAttribute: "f-foreign-object f-component" }, providers: [
|
|
887
887
|
{ provide: F_FOREIGN_OBJECT_COMPONENT, useExisting: FForeignObjectComponent }
|
|
888
888
|
], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <ng-content></ng-content>\n</ng-container>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
889
889
|
}
|
|
890
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
890
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FForeignObjectComponent, decorators: [{
|
|
891
891
|
type: Component,
|
|
892
892
|
args: [{ selector: "foreignObject[fForeignObject]", exportAs: "fComponent", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
893
893
|
class: "f-foreign-object f-component",
|
|
@@ -938,12 +938,12 @@ class FNodeComponent extends FNodeBase {
|
|
|
938
938
|
ngOnDestroy() {
|
|
939
939
|
this.stateChanges.complete();
|
|
940
940
|
}
|
|
941
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
942
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
941
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
942
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FNodeComponent, selector: "g[fNode]", inputs: { id: "id", position: ["fNodePosition", "position"] }, outputs: { positionChange: "fNodePositionChange" }, host: { properties: { "attr.id": "id" }, classAttribute: "f-node f-component" }, providers: [
|
|
943
943
|
{ provide: F_NODE_COMPONENT, useExisting: FNodeComponent }
|
|
944
944
|
], queries: [{ propertyName: "fForeignObject", first: true, predicate: F_FOREIGN_OBJECT_COMPONENT, descendants: true, static: true }, { propertyName: "handles", predicate: F_DRAG_HANDLE, descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <ng-content></ng-content>\n</ng-container>\n", changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
945
945
|
}
|
|
946
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
946
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodeComponent, decorators: [{
|
|
947
947
|
type: Component,
|
|
948
948
|
args: [{ selector: "g[fNode]", exportAs: "fComponent", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
949
949
|
'[attr.id]': 'id',
|
|
@@ -990,12 +990,12 @@ class FSelectionDirective {
|
|
|
990
990
|
draw(object) {
|
|
991
991
|
this.fElement.draw(object);
|
|
992
992
|
}
|
|
993
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
994
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
993
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FSelectionDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
994
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FSelectionDirective, selector: "g[fSelection]", host: { classAttribute: "f-selection f-component" }, providers: [
|
|
995
995
|
{ provide: F_SELECTION, useExisting: FSelectionDirective }
|
|
996
996
|
], ngImport: i0 }); }
|
|
997
997
|
}
|
|
998
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
998
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FSelectionDirective, decorators: [{
|
|
999
999
|
type: Directive,
|
|
1000
1000
|
args: [{
|
|
1001
1001
|
selector: "g[fSelection]",
|
|
@@ -1021,10 +1021,10 @@ class FConnectionsContainerBase {
|
|
|
1021
1021
|
findIncomingConnections(inputs) {
|
|
1022
1022
|
return findIncomingConnections(this.fConnections.toArray(), inputs);
|
|
1023
1023
|
}
|
|
1024
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1025
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionsContainerBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1025
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionsContainerBase, ngImport: i0 }); }
|
|
1026
1026
|
}
|
|
1027
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1027
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionsContainerBase, decorators: [{
|
|
1028
1028
|
type: Directive
|
|
1029
1029
|
}] });
|
|
1030
1030
|
function findIncomingConnections(allConnections, inputs) {
|
|
@@ -1046,10 +1046,10 @@ class FConnectionsContainerComponent extends FConnectionsContainerBase {
|
|
|
1046
1046
|
super();
|
|
1047
1047
|
this.elementReference = elementReference;
|
|
1048
1048
|
}
|
|
1049
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1050
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
1049
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionsContainerComponent, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1050
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionsContainerComponent, selector: "g[fConnectionsContainer]", host: { classAttribute: "f-connections-container" }, providers: [{ provide: F_CONNECTIONS_CONTAINER, useExisting: FConnectionsContainerComponent }], queries: [{ propertyName: "fConnections", predicate: F_CONNECTION_COMPONENT, descendants: true }], viewQueries: [{ propertyName: "fTempConnection", first: true, predicate: F_TEMP_CONNECTION_COMPONENT, descendants: true, static: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <ng-content select=\"[fConnection]\"></ng-content>\n <svg:g fTempConnection></svg:g>\n</ng-container>\n", dependencies: [{ kind: "component", type: FTempConnectionComponent, selector: "g[fTempConnection]" }] }); }
|
|
1051
1051
|
}
|
|
1052
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1052
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionsContainerComponent, decorators: [{
|
|
1053
1053
|
type: Component,
|
|
1054
1054
|
args: [{ selector: "g[fConnectionsContainer]", exportAs: 'fComponent', host: {
|
|
1055
1055
|
'class': 'f-connections-container'
|
|
@@ -1189,15 +1189,18 @@ class FItemsContainerBase extends MIXIN_BASE {
|
|
|
1189
1189
|
const position = PointExtensions.sum(this.transform.position, this.transform.scaledPosition);
|
|
1190
1190
|
this.canvasChange.emit(new CanvasChangeEvent(position, this.transform.scale));
|
|
1191
1191
|
}
|
|
1192
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1193
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1192
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FItemsContainerBase, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1193
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FItemsContainerBase, usesInheritance: true, ngImport: i0 }); }
|
|
1194
1194
|
}
|
|
1195
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1195
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FItemsContainerBase, decorators: [{
|
|
1196
1196
|
type: Directive
|
|
1197
1197
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }]; } });
|
|
1198
1198
|
|
|
1199
1199
|
class FItemsContainerDirective extends FItemsContainerBase {
|
|
1200
1200
|
set position(value) {
|
|
1201
|
+
if (!value) {
|
|
1202
|
+
return;
|
|
1203
|
+
}
|
|
1201
1204
|
const position = PointExtensions.sum(this.transform.position, this.transform.scaledPosition);
|
|
1202
1205
|
if (!PointExtensions.isEqual(position, value)) {
|
|
1203
1206
|
this.transform.position = value;
|
|
@@ -1206,6 +1209,9 @@ class FItemsContainerDirective extends FItemsContainerBase {
|
|
|
1206
1209
|
}
|
|
1207
1210
|
}
|
|
1208
1211
|
set scale(value) {
|
|
1212
|
+
if (!value) {
|
|
1213
|
+
return;
|
|
1214
|
+
}
|
|
1209
1215
|
this.transform.scale = value;
|
|
1210
1216
|
this.redraw();
|
|
1211
1217
|
}
|
|
@@ -1213,10 +1219,10 @@ class FItemsContainerDirective extends FItemsContainerBase {
|
|
|
1213
1219
|
super(elementReference);
|
|
1214
1220
|
this.canvasChange = new EventEmitter();
|
|
1215
1221
|
}
|
|
1216
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1217
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1222
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FItemsContainerDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1223
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FItemsContainerDirective, selector: "g[fItemsContainer]", inputs: { position: "position", scale: "scale" }, outputs: { canvasChange: "canvasChange" }, host: { classAttribute: "f-items-container" }, providers: [{ provide: F_ITEMS_CONTAINER, useExisting: FItemsContainerDirective }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
|
|
1218
1224
|
}
|
|
1219
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1225
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FItemsContainerDirective, decorators: [{
|
|
1220
1226
|
type: Directive,
|
|
1221
1227
|
args: [{
|
|
1222
1228
|
selector: "g[fItemsContainer]",
|
|
@@ -1263,10 +1269,10 @@ class FNodesContainerBase {
|
|
|
1263
1269
|
});
|
|
1264
1270
|
}
|
|
1265
1271
|
}
|
|
1266
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1267
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1272
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodesContainerBase, deps: [{ token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1273
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FNodesContainerBase, ngImport: i0 }); }
|
|
1268
1274
|
}
|
|
1269
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1275
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodesContainerBase, decorators: [{
|
|
1270
1276
|
type: Directive
|
|
1271
1277
|
}], ctorParameters: function () { return [{ type: i0.NgZone }]; } });
|
|
1272
1278
|
|
|
@@ -1278,10 +1284,10 @@ class FNodesContainerComponent extends FNodesContainerBase {
|
|
|
1278
1284
|
super(ngZone);
|
|
1279
1285
|
this.elementReference = elementReference;
|
|
1280
1286
|
}
|
|
1281
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1282
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
1287
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodesContainerComponent, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1288
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FNodesContainerComponent, selector: "g[fNodesContainer]", host: { classAttribute: "f-nodes-container" }, providers: [{ provide: F_NODES_CONTAINER, useExisting: FNodesContainerComponent }], queries: [{ propertyName: "fNodes", predicate: F_NODE_COMPONENT, descendants: true }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <ng-content select=\"[fNode]\"></ng-content>\n</ng-container>\n" }); }
|
|
1283
1289
|
}
|
|
1284
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1290
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FNodesContainerComponent, decorators: [{
|
|
1285
1291
|
type: Component,
|
|
1286
1292
|
args: [{ selector: "g[fNodesContainer]", exportAs: 'fComponent', host: {
|
|
1287
1293
|
'class': 'f-nodes-container'
|
|
@@ -1721,10 +1727,10 @@ class ExternalItemOnPointerDownRequest {
|
|
|
1721
1727
|
|
|
1722
1728
|
const F_EXTERNAL_ITEM = new InjectionToken('F_EXTERNAL_ITEM');
|
|
1723
1729
|
class FExternalItemBase {
|
|
1724
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1725
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1730
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemBase, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1731
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FExternalItemBase, ngImport: i0 }); }
|
|
1726
1732
|
}
|
|
1727
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1733
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemBase, decorators: [{
|
|
1728
1734
|
type: Directive
|
|
1729
1735
|
}] });
|
|
1730
1736
|
|
|
@@ -1751,10 +1757,10 @@ class FExternalItemService {
|
|
|
1751
1757
|
this.items.splice(index, 1);
|
|
1752
1758
|
}
|
|
1753
1759
|
}
|
|
1754
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1755
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
1760
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
1761
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemService }); }
|
|
1756
1762
|
}
|
|
1757
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1763
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemService, decorators: [{
|
|
1758
1764
|
type: Injectable
|
|
1759
1765
|
}] });
|
|
1760
1766
|
|
|
@@ -1775,12 +1781,12 @@ class FExternalItemDirective extends FExternalItemBase {
|
|
|
1775
1781
|
ngOnDestroy() {
|
|
1776
1782
|
this.fExternalItemService.removeItem(this);
|
|
1777
1783
|
}
|
|
1778
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
1779
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
1784
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemDirective, deps: [{ token: i0.ElementRef }, { token: FExternalItemService }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
1785
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FExternalItemDirective, selector: "[fExternalItem]", inputs: { id: "id", data: "data" }, host: { properties: { "attr.id": "id" }, classAttribute: "f-component f-external-item" }, providers: [
|
|
1780
1786
|
{ provide: F_EXTERNAL_ITEM, useExisting: FExternalItemDirective }
|
|
1781
1787
|
], usesInheritance: true, ngImport: i0 }); }
|
|
1782
1788
|
}
|
|
1783
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
1789
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FExternalItemDirective, decorators: [{
|
|
1784
1790
|
type: Directive,
|
|
1785
1791
|
args: [{
|
|
1786
1792
|
selector: "[fExternalItem]",
|
|
@@ -2254,10 +2260,10 @@ class FDraggableService {
|
|
|
2254
2260
|
}
|
|
2255
2261
|
onPointerDown(event) {
|
|
2256
2262
|
}
|
|
2257
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2258
|
-
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.
|
|
2263
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
2264
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableService }); }
|
|
2259
2265
|
}
|
|
2260
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2266
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableService, decorators: [{
|
|
2261
2267
|
type: Injectable
|
|
2262
2268
|
}], ctorParameters: function () { return []; } });
|
|
2263
2269
|
|
|
@@ -2342,10 +2348,10 @@ class FDraggableBase extends IDragAndDropBase {
|
|
|
2342
2348
|
super.unsubscribe();
|
|
2343
2349
|
this.subscriptions$.unsubscribe();
|
|
2344
2350
|
}
|
|
2345
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2346
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2351
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableBase, deps: [{ token: FFlowBase }, { token: FDraggableService }, { token: FExternalItemService }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2352
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FDraggableBase, usesInheritance: true, ngImport: i0 }); }
|
|
2347
2353
|
}
|
|
2348
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2354
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableBase, decorators: [{
|
|
2349
2355
|
type: Directive
|
|
2350
2356
|
}], ctorParameters: function () { return [{ type: FFlowBase }, { type: FDraggableService }, { type: FExternalItemService }, { type: i0.ElementRef }, { type: i0.NgZone }]; } });
|
|
2351
2357
|
|
|
@@ -2507,12 +2513,12 @@ class FLineAlignmentDirective {
|
|
|
2507
2513
|
this.fVerticalLine.hide();
|
|
2508
2514
|
this.fHorizontalLine.hide();
|
|
2509
2515
|
}
|
|
2510
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2511
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2516
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FLineAlignmentDirective, deps: [{ token: F_FLOW_COMPONENT }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2517
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FLineAlignmentDirective, selector: "g[fLineAlignment]", host: { classAttribute: "f-line-alignment f-component" }, providers: [
|
|
2512
2518
|
{ provide: F_LINE_ALIGNMENT, useExisting: FLineAlignmentDirective }
|
|
2513
2519
|
], ngImport: i0 }); }
|
|
2514
2520
|
}
|
|
2515
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2521
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FLineAlignmentDirective, decorators: [{
|
|
2516
2522
|
type: Directive,
|
|
2517
2523
|
args: [{
|
|
2518
2524
|
selector: "g[fLineAlignment]",
|
|
@@ -2536,12 +2542,12 @@ class FDraggableDirective extends FDraggableBase {
|
|
|
2536
2542
|
this.onReassignConnection = new EventEmitter();
|
|
2537
2543
|
this.onCreateNode = new EventEmitter();
|
|
2538
2544
|
}
|
|
2539
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2540
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2545
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableDirective, deps: [{ token: F_FLOW_COMPONENT }, { token: FDraggableService }, { token: FExternalItemService }, { token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2546
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FDraggableDirective, selector: "svg[fDraggable]", inputs: { disabled: "disabled" }, outputs: { onCreateConnection: "onCreateConnection", onReassignConnection: "onReassignConnection", onCreateNode: "onCreateNode" }, providers: [
|
|
2541
2547
|
{ provide: F_DND_DIRECTIVE, useExisting: FDraggableDirective }
|
|
2542
2548
|
], queries: [{ propertyName: "fLineAlignment", first: true, predicate: F_LINE_ALIGNMENT, descendants: true, static: true }, { propertyName: "fConnectIfIntersect", first: true, predicate: F_CONNECT_IF_INTERSECT, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: F_SELECTION, descendants: true, static: true }], usesInheritance: true, ngImport: i0 }); }
|
|
2543
2549
|
}
|
|
2544
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2550
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableDirective, decorators: [{
|
|
2545
2551
|
type: Directive,
|
|
2546
2552
|
args: [{
|
|
2547
2553
|
selector: "svg[fDraggable]",
|
|
@@ -2572,8 +2578,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImpor
|
|
|
2572
2578
|
}] } });
|
|
2573
2579
|
|
|
2574
2580
|
class FDraggableModule {
|
|
2575
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2576
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
|
2581
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2582
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: FDraggableModule, declarations: [FDraggableDirective,
|
|
2577
2583
|
FExternalItemDirective,
|
|
2578
2584
|
FLineAlignmentDirective,
|
|
2579
2585
|
FSelectionDirective,
|
|
@@ -2582,12 +2588,12 @@ class FDraggableModule {
|
|
|
2582
2588
|
FLineAlignmentDirective,
|
|
2583
2589
|
FSelectionDirective,
|
|
2584
2590
|
FConnectIfIntersectDirective] }); }
|
|
2585
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
|
2591
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableModule, providers: [
|
|
2586
2592
|
FExternalItemService,
|
|
2587
2593
|
FDraggableService
|
|
2588
2594
|
] }); }
|
|
2589
2595
|
}
|
|
2590
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2596
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FDraggableModule, decorators: [{
|
|
2591
2597
|
type: NgModule,
|
|
2592
2598
|
args: [{
|
|
2593
2599
|
declarations: [
|
|
@@ -2681,12 +2687,12 @@ class FConnectIfIntersectDirective {
|
|
|
2681
2687
|
handle(draggableItems) {
|
|
2682
2688
|
new ConnectIfIntersectHandler(this.fConnections.toArray(), this.fFlow, this.fItemsContainer).handle(new ConnectIfIntersectRequest(draggableItems));
|
|
2683
2689
|
}
|
|
2684
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2685
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2690
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectIfIntersectDirective, deps: [{ token: F_FLOW_COMPONENT }, { token: F_ITEMS_CONTAINER }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2691
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FConnectIfIntersectDirective, selector: "g[fConnectIfIntersect]", providers: [
|
|
2686
2692
|
{ provide: F_CONNECT_IF_INTERSECT, useExisting: FConnectIfIntersectDirective }
|
|
2687
2693
|
], queries: [{ propertyName: "fConnections", predicate: F_CONNECTION_COMPONENT, descendants: true }], ngImport: i0 }); }
|
|
2688
2694
|
}
|
|
2689
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2695
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectIfIntersectDirective, decorators: [{
|
|
2690
2696
|
type: Directive,
|
|
2691
2697
|
args: [{
|
|
2692
2698
|
selector: "g[fConnectIfIntersect]",
|
|
@@ -2811,10 +2817,10 @@ class FZoomDirective extends FZoomBase {
|
|
|
2811
2817
|
ngOnDestroy() {
|
|
2812
2818
|
super.unsubscribe();
|
|
2813
2819
|
}
|
|
2814
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2815
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2820
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FZoomDirective, deps: [{ token: F_ITEMS_CONTAINER }, { token: F_DND_DIRECTIVE }, { token: F_CANVAS }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2821
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FZoomDirective, selector: "g[fZoom]", inputs: { fFlowZoom: ["fZoom", "fFlowZoom"] }, host: { classAttribute: "f-flow-zoom f-component" }, providers: [{ provide: F_ZOOM, useExisting: FZoomDirective }], exportAs: ["fComponent"], usesInheritance: true, ngImport: i0 }); }
|
|
2816
2822
|
}
|
|
2817
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2823
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FZoomDirective, decorators: [{
|
|
2818
2824
|
type: Directive,
|
|
2819
2825
|
args: [{
|
|
2820
2826
|
selector: "g[fZoom]",
|
|
@@ -2877,10 +2883,10 @@ class FFlowBase {
|
|
|
2877
2883
|
this.onDestroy.next();
|
|
2878
2884
|
this.onDestroy.complete();
|
|
2879
2885
|
}
|
|
2880
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2881
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.
|
|
2886
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowBase, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
2887
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: FFlowBase, ngImport: i0 }); }
|
|
2882
2888
|
}
|
|
2883
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2889
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowBase, decorators: [{
|
|
2884
2890
|
type: Directive
|
|
2885
2891
|
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }, { type: i0.NgZone }]; } });
|
|
2886
2892
|
|
|
@@ -2901,10 +2907,10 @@ class FFlowComponent extends FFlowBase {
|
|
|
2901
2907
|
this.CONNECTION_MARKER_END_SELECTED = CONNECTION_MARKER_END_SELECTED;
|
|
2902
2908
|
this.id = `f-flow-${uniqueId$1++}`;
|
|
2903
2909
|
}
|
|
2904
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2905
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
2910
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2911
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FFlowComponent, selector: "svg[fFlow]", inputs: { id: "id" }, host: { properties: { "attr.id": "id" }, classAttribute: "f-component f-flow" }, providers: [{ provide: F_FLOW_COMPONENT, useExisting: FFlowComponent }], queries: [{ propertyName: "fNodesContainer", first: true, predicate: F_NODES_CONTAINER, descendants: true, static: true }, { propertyName: "fConnectionsContainer", first: true, predicate: F_CONNECTIONS_CONTAINER, descendants: true }, { propertyName: "fItemsContainer", first: true, predicate: F_ITEMS_CONTAINER, descendants: true, static: true }, { propertyName: "outlets", predicate: F_NODE_OUTLET_DIRECTIVE, descendants: true }, { propertyName: "outputs", predicate: F_NODE_OUTPUT_DIRECTIVE, descendants: true }, { propertyName: "inputs", predicate: F_NODE_INPUT_DIRECTIVE, descendants: true }], viewQueries: [{ propertyName: "fBackground", first: true, predicate: F_BACKGROUND, descendants: true, static: true }], usesInheritance: true, hostDirectives: [{ directive: FCanvasDirective }], ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:g fBackground>\n <rect width=\"100%\" height=\"100%\" fill=\"url(#background)\"></rect>\n </svg:g>\n <ng-content></ng-content>\n <svg:defs>\n <svg:marker [id]=\"CONNECTION_MARKER_START\" class=\"connection-marker-start\" markerHeight=\"10\" markerWidth=\"10\" refY=\"5\" refX=\"5\">\n <svg:circle cx=\"5\" cy=\"5\" r=\"2\"></svg:circle>\n </svg:marker>\n <svg:marker [id]=\"CONNECTION_MARKER_END\" class=\"connection-marker-end\" markerHeight=\"10\" markerWidth=\"10\" orient=\"auto\" refX=\"5\" refY=\"3\">\n <svg:path d=\"M0,0 L6,3 0,6Z\"></svg:path>\n </svg:marker>\n <svg:marker [id]=\"CONNECTION_MARKER_START_SELECTED\" class=\"connection-marker-start f-selected\" markerHeight=\"10\" markerWidth=\"10\" refY=\"5\" refX=\"5\">\n <svg:circle cx=\"5\" cy=\"5\" r=\"2\"></svg:circle>\n </svg:marker>\n <svg:marker [id]=\"CONNECTION_MARKER_END_SELECTED\" class=\"connection-marker-end f-selected\" markerHeight=\"10\" markerWidth=\"10\" orient=\"auto\" refX=\"5\" refY=\"3\">\n <svg:path d=\"M0,0 L6,3 0,6Z\"></svg:path>\n </svg:marker>\n <ng-container *ngIf=\"fConnectionsContainer\">\n <ng-container *ngFor=\"let connection of fConnectionsContainer.fConnections.toArray()\">\n <svg:marker [id]=\"'connection-marker-start-' + connection.fromTo?.output?.color\" markerHeight=\"10\" markerWidth=\"10\" refY=\"5\" refX=\"5\">\n <svg:circle cx=\"5\" cy=\"5\" r=\"2\" [attr.stroke]=\"'none'\" [attr.fill]=\"connection.fromTo?.output?.color\"></svg:circle>\n </svg:marker>\n <svg:marker [id]=\"'connection-marker-end-' + connection.fromTo?.input?.color\" markerHeight=\"10\" markerWidth=\"10\" orient=\"auto\" refX=\"5\" refY=\"3\">\n <svg:path d=\"M0,0 L6,3 0,6Z\" [attr.stroke]=\"'none'\" [attr.fill]=\"connection.fromTo?.input?.color\"></svg:path>\n </svg:marker>\n </ng-container>\n\n </ng-container>\n <svg:pattern id=\"background\" height=\"10\" width=\"10\" class=\"fb-background-pattern\"\n patternUnits=\"userSpaceOnUse\">\n <svg:circle cx=\"5\" cy=\"5\" r=\"0.5\"/>\n </svg:pattern>\n </svg:defs>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: FBackgroundDirective, selector: "g[fBackground]" }] }); }
|
|
2906
2912
|
}
|
|
2907
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2913
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowComponent, decorators: [{
|
|
2908
2914
|
type: Component,
|
|
2909
2915
|
args: [{ selector: 'svg[fFlow]', hostDirectives: [
|
|
2910
2916
|
{
|
|
@@ -2979,10 +2985,10 @@ class FConnectionComponent extends FConnectionBase {
|
|
|
2979
2985
|
completeDrag() {
|
|
2980
2986
|
this.redraw();
|
|
2981
2987
|
}
|
|
2982
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
2983
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.
|
|
2988
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionComponent, deps: [{ token: i0.ElementRef }, { token: F_FLOW_COMPONENT }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2989
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: FConnectionComponent, selector: "g[fConnection]", inputs: { id: "id", outputId: "outputId", inputId: "inputId" }, host: { properties: { "attr.id": "id" }, classAttribute: "f-component f-connection" }, providers: [{ provide: F_CONNECTION_COMPONENT, useExisting: FConnectionComponent }], viewQueries: [{ propertyName: "fPath", first: true, predicate: FConnectionPathComponent, descendants: true, static: true }, { propertyName: "fGradient", first: true, predicate: FConnectionGradientComponent, descendants: true, static: true }, { propertyName: "fDragHandle", first: true, predicate: FConnectionDragHandleComponent, descendants: true, static: true }, { propertyName: "fSelection", first: true, predicate: FConnectionSelectionComponent, descendants: true, static: true }, { propertyName: "fText", first: true, predicate: FConnectionTextComponent, descendants: true, static: true }], usesInheritance: true, ngImport: i0, template: "<ng-container xmlns:svg=\"http://www.w3.org/2000/svg\">\n <svg:linearGradient fConnectionGradient [fromTo]=\"fromTo\"></svg:linearGradient>\n <svg:path fConnectionSelection [attr.d]=\"path\" [fromTo]=\"fromTo\"></svg:path>\n <svg:g>\n <svg:path f-connection-path [attr.d]=\"path\" [fromTo]=\"fromTo\"></svg:path>\n <svg:circle f-connection-drag-handle r=\"8\"></svg:circle>\n </svg:g>\n <svg:text f-connection-text [fromTo]=\"fromTo\"></svg:text>\n</ng-container>\n", dependencies: [{ kind: "component", type: FConnectionDragHandleComponent, selector: "circle[f-connection-drag-handle]" }, { kind: "component", type: FConnectionGradientComponent, selector: "linearGradient[fConnectionGradient]", inputs: ["fromTo"] }, { kind: "component", type: FConnectionPathComponent, selector: "path[f-connection-path]", inputs: ["fromTo"] }, { kind: "component", type: FConnectionTextComponent, selector: "text[f-connection-text]", inputs: ["fromTo"] }, { kind: "component", type: FConnectionSelectionComponent, selector: "path[fConnectionSelection]", inputs: ["fromTo"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
2984
2990
|
}
|
|
2985
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
2991
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FConnectionComponent, decorators: [{
|
|
2986
2992
|
type: Component,
|
|
2987
2993
|
args: [{ selector: "g[fConnection]", changeDetection: ChangeDetectionStrategy.OnPush, host: {
|
|
2988
2994
|
'[attr.id]': 'id',
|
|
@@ -3015,8 +3021,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.4", ngImpor
|
|
|
3015
3021
|
}] } });
|
|
3016
3022
|
|
|
3017
3023
|
class FFlowModule {
|
|
3018
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.
|
|
3019
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.
|
|
3024
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3025
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, declarations: [FFlowComponent,
|
|
3020
3026
|
FNodeComponent,
|
|
3021
3027
|
FZoomDirective,
|
|
3022
3028
|
FForeignObjectComponent,
|
|
@@ -3041,10 +3047,10 @@ class FFlowModule {
|
|
|
3041
3047
|
FNodeInputDirective,
|
|
3042
3048
|
FNodeOutletDirective,
|
|
3043
3049
|
FNodeOutputDirective] }); }
|
|
3044
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.
|
|
3050
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, imports: [CommonModule,
|
|
3045
3051
|
FConnectionModule, FConnectionModule] }); }
|
|
3046
3052
|
}
|
|
3047
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.
|
|
3053
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: FFlowModule, decorators: [{
|
|
3048
3054
|
type: NgModule,
|
|
3049
3055
|
args: [{
|
|
3050
3056
|
declarations: [
|