@foblex/flow 17.4.1 → 17.4.3
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/domain/css-cls.d.ts +3 -0
- package/domain/f-background/add-background-to-store/add-background-to-store.execution.d.ts +1 -1
- package/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.d.ts +3 -6
- package/domain/f-background/remove-background-from-store/remove-background-from-store.execution.d.ts +1 -1
- package/domain/f-background/set-background-transform/set-background-transform.execution.d.ts +1 -1
- package/domain/f-canvas/input-canvas-position/input-canvas-position.execution.d.ts +1 -1
- package/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.d.ts +1 -1
- package/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.d.ts +5 -5
- package/domain/f-connection/redraw-connections/redraw-connections.execution.d.ts +2 -2
- package/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.execution.d.ts +1 -1
- package/domain/f-draggable/providers.d.ts +1 -1
- package/domain/f-node/calculate-input-connections/calculate-input-connections-request.d.ts +5 -0
- package/domain/f-node/calculate-input-connections/calculate-input-connections.execution.d.ts +12 -0
- package/domain/f-node/calculate-input-connections/index.d.ts +2 -0
- package/domain/f-node/calculate-output-connections/calculate-output-connections-request.d.ts +5 -0
- package/domain/f-node/calculate-output-connections/calculate-output-connections.execution.d.ts +12 -0
- package/domain/f-node/calculate-output-connections/index.d.ts +2 -0
- package/domain/f-node/index.d.ts +2 -0
- package/domain/f-node/providers.d.ts +3 -1
- package/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.execution.d.ts +1 -1
- package/domain/f-selection/providers.d.ts +1 -1
- package/domain/get-normalized-element-rect/get-normalized-element-rect.execution.d.ts +5 -3
- package/domain/providers.d.ts +1 -2
- package/domain/sort-item-layers/sort-item-layers.execution.d.ts +4 -5
- package/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.d.ts +6 -9
- package/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.d.ts +12 -14
- package/domain/update-item-and-children-layers/update-item-and-children-layers.execution.d.ts +15 -16
- package/esm2022/domain/css-cls.mjs +4 -1
- package/esm2022/domain/f-background/add-background-to-store/add-background-to-store.execution.mjs +1 -1
- package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +15 -19
- package/esm2022/domain/f-background/remove-background-from-store/remove-background-from-store.execution.mjs +1 -1
- package/esm2022/domain/f-background/set-background-transform/set-background-transform.execution.mjs +1 -1
- package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +2 -1
- package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +2 -2
- package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +12 -12
- package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.mjs +1 -1
- package/esm2022/domain/f-connection/redraw-connections/redraw-connections.execution.mjs +2 -2
- package/esm2022/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.execution.mjs +1 -1
- package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections-request.mjs +7 -0
- package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections.execution.mjs +31 -0
- package/esm2022/domain/f-node/calculate-input-connections/index.mjs +3 -0
- package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections-request.mjs +7 -0
- package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections.execution.mjs +31 -0
- package/esm2022/domain/f-node/calculate-output-connections/index.mjs +3 -0
- package/esm2022/domain/f-node/index.mjs +3 -1
- package/esm2022/domain/f-node/providers.mjs +5 -1
- package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.execution.mjs +1 -1
- package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect.execution.mjs +12 -4
- package/esm2022/domain/sort-item-layers/sort-item-layers.execution.mjs +14 -16
- package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +21 -27
- package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +32 -34
- package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +46 -48
- package/esm2022/f-backgroud/f-background.component.mjs +9 -12
- package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +15 -21
- package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +18 -28
- package/esm2022/f-canvas/f-canvas-base.mjs +1 -1
- package/esm2022/f-canvas/f-canvas.component.mjs +29 -35
- package/esm2022/f-canvas/providers.mjs +1 -1
- package/esm2022/f-connection/common/f-connection-base.mjs +5 -5
- package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle-end.component.mjs +37 -0
- package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle-start.component.mjs +37 -0
- package/esm2022/f-connection/common/f-drag-handle/index.mjs +3 -2
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +6 -6
- package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +6 -6
- package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +6 -6
- package/esm2022/f-connection/providers.mjs +4 -3
- package/esm2022/f-draggable/f-canvas/f-canvas.drag-handler.mjs +5 -3
- package/esm2022/f-draggable/f-canvas/move-preparation/f-canvas-move-preparation.execution.mjs +4 -3
- package/esm2022/f-draggable/f-connection/f-create-connection/create-finalize/f-create-connection-finalize.execution.mjs +2 -3
- package/esm2022/f-draggable/f-connection/f-create-connection/create-preparation/drag-handler-preparation/f-create-connection-drag-handler-preparation.execution.mjs +4 -3
- package/esm2022/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.mjs +10 -8
- package/esm2022/f-draggable/f-connection/f-create-connection/get-first-connectable-output/get-first-connectable-output.execution.mjs +1 -1
- package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-connection.drag-handler.mjs +10 -8
- package/esm2022/f-draggable/f-connection/f-reassign-connection/reassign-preparation/f-reassign-connection-preparation.execution.mjs +6 -5
- package/esm2022/f-draggable/f-draggable.directive.mjs +9 -9
- package/esm2022/f-draggable/f-drop-to-group/drop-to-group-preparation/f-node-drop-to-group-preparation.execution.mjs +4 -3
- package/esm2022/f-draggable/f-drop-to-group/f-node-drop-to-group.drag-handler.mjs +7 -6
- package/esm2022/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.mjs +9 -8
- package/esm2022/f-draggable/f-node-move/connection-drag-handlers/source-connection.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/f-node-move/connection-drag-handlers/source-target-connection.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/f-node-move/connection-drag-handlers/target-connection.drag-handler.mjs +3 -3
- package/esm2022/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +4 -3
- package/esm2022/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.mjs +5 -4
- package/esm2022/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.mjs +5 -4
- package/esm2022/f-draggable/f-node-move/f-line-alignment.drag-handler.mjs +5 -5
- package/esm2022/f-draggable/f-node-move/f-node-move.drag-handler.mjs +1 -1
- package/esm2022/f-draggable/f-node-move/f-summary-node-move.drag-handler.mjs +5 -5
- package/esm2022/f-draggable/f-node-move/line-alignment-preparation/line-alignment-preparation.execution.mjs +4 -3
- package/esm2022/f-draggable/f-node-move/point-bounds-limiter.mjs +8 -6
- package/esm2022/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +2 -2
- package/esm2022/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.mjs +4 -4
- package/esm2022/f-draggable/f-node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +1 -1
- package/esm2022/f-draggable/f-node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +1 -1
- package/esm2022/f-draggable/f-node-resize/calculate-changed-size/calculate-changed-size.request.mjs +1 -1
- package/esm2022/f-draggable/f-node-resize/f-node-resize.drag-handler.mjs +10 -9
- package/esm2022/f-draggable/f-node-resize/resize-preparation/f-node-resize-preparation.execution.mjs +4 -3
- package/esm2022/f-draggable/f-node-rotate/calculate-difference-after-rotation.mjs +19 -0
- package/esm2022/f-draggable/f-node-rotate/f-node-rotate.drag-handler.mjs +71 -0
- package/esm2022/f-draggable/f-node-rotate/index.mjs +5 -0
- package/esm2022/f-draggable/f-node-rotate/providers.mjs +7 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.execution.mjs +31 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.request.mjs +7 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-finalize/index.mjs +3 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.mjs +87 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.request.mjs +9 -0
- package/esm2022/f-draggable/f-node-rotate/rotate-preparation/index.mjs +3 -0
- package/esm2022/f-draggable/index.mjs +2 -2
- package/esm2022/f-draggable/providers.mjs +3 -1
- package/esm2022/f-external-item/domain/create-placeholder/f-external-item-create-placeholder.execution.mjs +1 -1
- package/esm2022/f-external-item/domain/create-preview/f-external-item-create-preview.execution.mjs +1 -1
- package/esm2022/f-external-item/domain/f-external-item.drag-handler.mjs +9 -6
- package/esm2022/f-external-item/domain/finalize/f-external-item-finalize.execution.mjs +1 -1
- package/esm2022/f-external-item/domain/preparation/f-external-item-preparation.execution.mjs +4 -3
- package/esm2022/f-external-item/f-external-item-placeholder.directive.mjs +1 -1
- package/esm2022/f-external-item/f-external-item-preview.directive.mjs +1 -1
- package/esm2022/f-external-item/f-external-item.directive.mjs +1 -1
- package/esm2022/f-external-item/index.mjs +2 -1
- package/esm2022/f-external-item/providers.mjs +5 -0
- package/esm2022/f-flow/f-flow-base.mjs +1 -1
- package/esm2022/f-flow/f-flow.component.mjs +12 -21
- package/esm2022/f-flow.module.mjs +48 -38
- package/esm2022/f-line-alignment/f-line-alignment-base.mjs +1 -1
- package/esm2022/f-line-alignment/f-line-alignment.component.mjs +5 -7
- package/esm2022/f-node/f-drag-handle.directive.mjs +3 -9
- package/esm2022/f-node/f-group.directive.mjs +19 -2
- package/esm2022/f-node/f-node-base.mjs +6 -2
- package/esm2022/f-node/f-node.directive.mjs +19 -2
- package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +13 -24
- package/esm2022/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +14 -26
- package/esm2022/f-node/f-rotate-handle/index.mjs +2 -1
- package/esm2022/f-node/f-rotate-handle/is-rotate-handle.mjs +5 -0
- package/esm2022/f-node/providers.mjs +3 -1
- package/esm2022/f-zoom/index.mjs +2 -1
- package/esm2022/f-zoom/providers.mjs +5 -0
- package/esm2022/reactivity/index.mjs +2 -1
- package/esm2022/reactivity/mediator-effect.mjs +14 -0
- package/f-backgroud/f-background.component.d.ts +4 -5
- package/f-backgroud/f-circle-pattern/f-circle-pattern.component.d.ts +9 -10
- package/f-backgroud/f-rect-pattern/f-rect-pattern.component.d.ts +11 -12
- package/f-backgroud/providers.d.ts +1 -1
- package/f-canvas/f-canvas-base.d.ts +5 -5
- package/f-canvas/f-canvas.component.d.ts +13 -10
- package/f-connection/common/f-connection-base.d.ts +4 -4
- package/f-connection/common/f-drag-handle/f-connection-drag-handle-end.component.d.ts +13 -0
- package/f-connection/common/f-drag-handle/f-connection-drag-handle-start.component.d.ts +13 -0
- package/f-connection/common/f-drag-handle/index.d.ts +2 -1
- package/f-connection/f-connection/f-connection.component.d.ts +2 -2
- package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +2 -2
- package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +2 -2
- package/f-connection/providers.d.ts +2 -2
- package/f-draggable/f-canvas/f-canvas.drag-handler.d.ts +3 -1
- package/f-draggable/f-canvas/move-preparation/f-canvas-move-preparation.execution.d.ts +3 -2
- package/f-draggable/f-canvas/providers.d.ts +1 -1
- package/f-draggable/f-connection/f-create-connection/create-preparation/drag-handler-preparation/f-create-connection-drag-handler-preparation.execution.d.ts +3 -2
- package/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.d.ts +5 -4
- package/f-draggable/f-connection/f-create-connection/get-first-connectable-output/get-first-connectable-output.execution.d.ts +1 -1
- package/f-draggable/f-connection/f-reassign-connection/f-reassign-connection.drag-handler.d.ts +5 -4
- package/f-draggable/f-connection/f-reassign-connection/reassign-preparation/f-reassign-connection-preparation.execution.d.ts +4 -3
- package/f-draggable/f-connection/providers.d.ts +1 -1
- package/f-draggable/f-draggable.directive.d.ts +2 -2
- package/f-draggable/f-drop-to-group/drop-to-group-preparation/f-node-drop-to-group-preparation.execution.d.ts +4 -3
- package/f-draggable/f-drop-to-group/f-node-drop-to-group.drag-handler.d.ts +4 -3
- package/f-draggable/f-drop-to-group/providers.d.ts +1 -1
- package/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.d.ts +4 -3
- package/f-draggable/f-node-move/connection-drag-handlers/source-connection.drag-handler.d.ts +2 -1
- package/f-draggable/f-node-move/connection-drag-handlers/source-target-connection.drag-handler.d.ts +3 -2
- package/f-draggable/f-node-move/connection-drag-handlers/target-connection.drag-handler.d.ts +2 -1
- package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.d.ts +4 -3
- package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.d.ts +2 -1
- package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.d.ts +2 -1
- package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/providers.d.ts +1 -1
- package/f-draggable/f-node-move/f-line-alignment.drag-handler.d.ts +4 -3
- package/f-draggable/f-node-move/f-node-move.drag-handler.d.ts +1 -1
- package/f-draggable/f-node-move/f-summary-node-move.drag-handler.d.ts +5 -4
- package/f-draggable/f-node-move/line-alignment-preparation/line-alignment-preparation.execution.d.ts +5 -4
- package/f-draggable/f-node-move/point-bounds-limiter.d.ts +5 -4
- package/f-draggable/f-node-move/providers.d.ts +1 -1
- package/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.d.ts +3 -2
- package/f-draggable/f-node-resize/f-node-resize.drag-handler.d.ts +5 -4
- package/f-draggable/f-node-resize/providers.d.ts +1 -1
- package/f-draggable/f-node-resize/resize-preparation/f-node-resize-preparation.execution.d.ts +4 -3
- package/f-draggable/f-node-rotate/calculate-difference-after-rotation.d.ts +20 -0
- package/f-draggable/f-node-rotate/f-node-rotate.drag-handler.d.ts +35 -0
- package/f-draggable/f-node-rotate/index.d.ts +4 -0
- package/f-draggable/f-node-rotate/providers.d.ts +3 -0
- package/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.execution.d.ts +10 -0
- package/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.request.d.ts +5 -0
- package/f-draggable/f-node-rotate/rotate-finalize/index.d.ts +2 -0
- package/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.d.ts +23 -0
- package/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.request.d.ts +7 -0
- package/f-draggable/f-node-rotate/rotate-preparation/index.d.ts +2 -0
- package/f-draggable/index.d.ts +1 -1
- package/f-draggable/providers.d.ts +1 -1
- package/f-external-item/domain/create-placeholder/f-external-item-create-placeholder.execution.d.ts +2 -2
- package/f-external-item/domain/create-preview/f-external-item-create-preview.execution.d.ts +2 -2
- package/f-external-item/domain/f-external-item.drag-handler.d.ts +5 -4
- package/f-external-item/domain/finalize/f-external-item-finalize.execution.d.ts +5 -5
- package/f-external-item/domain/preparation/f-external-item-preparation.execution.d.ts +4 -3
- package/f-external-item/domain/providers.d.ts +1 -1
- package/f-external-item/f-external-item-placeholder.directive.d.ts +2 -2
- package/f-external-item/f-external-item-preview.directive.d.ts +2 -2
- package/f-external-item/f-external-item.directive.d.ts +2 -2
- package/f-external-item/index.d.ts +1 -0
- package/f-external-item/providers.d.ts +2 -0
- package/f-flow/f-flow-base.d.ts +3 -3
- package/f-flow/f-flow.component.d.ts +8 -10
- package/f-flow.module.d.ts +36 -32
- package/f-line-alignment/f-line-alignment-base.d.ts +2 -2
- package/f-line-alignment/f-line-alignment.component.d.ts +4 -4
- package/f-minimap/domain/providers.d.ts +1 -1
- package/f-minimap/providers.d.ts +1 -1
- package/f-node/f-drag-handle.directive.d.ts +1 -6
- package/f-node/f-group.directive.d.ts +6 -3
- package/f-node/f-node-base.d.ts +4 -0
- package/f-node/f-node.directive.d.ts +6 -3
- package/f-node/f-resize-handle/f-resize-handle.directive.d.ts +4 -10
- package/f-node/f-rotate-handle/f-rotate-handle.directive.d.ts +4 -8
- package/f-node/f-rotate-handle/index.d.ts +1 -0
- package/f-node/f-rotate-handle/is-rotate-handle.d.ts +1 -0
- package/f-node/providers.d.ts +1 -2
- package/f-selection-area/domain/providers.d.ts +1 -1
- package/f-storage/providers.d.ts +1 -1
- package/f-zoom/index.d.ts +1 -0
- package/f-zoom/providers.d.ts +2 -0
- package/fesm2022/foblex-flow.mjs +755 -476
- package/fesm2022/foblex-flow.mjs.map +1 -1
- package/package.json +2 -2
- package/reactivity/index.d.ts +1 -0
- package/reactivity/mediator-effect.d.ts +2 -0
- package/errors/conflict-error.d.ts +0 -6
- package/errors/create-error-class.d.ts +0 -1
- package/errors/errors.d.ts +0 -3
- package/errors/index.d.ts +0 -4
- package/errors/not-found-error.d.ts +0 -6
- package/esm2022/errors/conflict-error.mjs +0 -7
- package/esm2022/errors/create-error-class.mjs +0 -10
- package/esm2022/errors/errors.mjs +0 -12
- package/esm2022/errors/index.mjs +0 -5
- package/esm2022/errors/not-found-error.mjs +0 -7
- package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +0 -41
- package/esm2022/f-draggable/f-injector.mjs +0 -19
- package/f-connection/common/f-drag-handle/f-connection-drag-handle.component.d.ts +0 -17
- package/f-draggable/f-injector.d.ts +0 -8
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./
|
|
1
|
+
export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./f-canvas").FCanvasMovePreparationExecution | typeof import("./f-canvas").FCanvasMoveFinalizeExecution | typeof import("./f-connection").FCreateConnectionDragHandlerPreparationExecution | typeof import("./f-connection").FCreateConnectionFinalizeExecution | typeof import("./f-connection").FReassignConnectionPreparationExecution | typeof import("./f-connection").FReassignConnectionFinalizeExecution | typeof import("../f-external-item").FExternalItemPreparationExecution | typeof import("../f-external-item").FExternalItemFinalizeExecution | typeof import("./f-drop-to-group").FNodeDropToGroupPreparationExecution | typeof import("./f-drop-to-group").FNodeDropToGroupFinalizeExecution | typeof import("./f-node-move").PutOutputConnectionHandlersToArrayExecution | typeof import("./f-node-move").PutInputConnectionHandlersToArrayExecution | typeof import("./f-node-move").FNodeMoveFinalizeExecution | typeof import("./f-node-move").FNodeMovePreparationExecution | typeof import("./f-node-move").CreateMoveNodesDragModelFromSelectionExecution | typeof import("./f-node-move").CalculateCommonNodeMoveLimitsExecution | typeof import("./f-node-move").CalculateNodeMoveLimitsExecution | typeof import("./f-node-move").LineAlignmentPreparationExecution | typeof import("./f-node-resize").FNodeResizePreparationExecution | typeof import("./f-node-resize").FNodeResizeFinalizeExecution | typeof import("./f-node-rotate").FNodeRotatePreparationExecution | typeof import("./f-node-rotate").FNodeRotateFinalizeExecution | typeof import("./f-connection").FCreateConnectionFromOutletPreparationExecution | typeof import("./f-connection").GetFirstConnectableOutputExecution | typeof import("./f-connection").FCreateConnectionFromOutputPreparationExecution | typeof import("./f-connection").FCreateConnectionPreparationExecution | typeof import("./domain").GetNormalizedParentNodeRectExecution | typeof import("./domain").IsArrayHasParentNodeExecution | typeof import("./domain").IsConnectionUnderNodeExecution | typeof import("./f-single-select").FSingleSelectExecution | typeof import("../f-external-item").FExternalItemCreatePlaceholderExecution | typeof import("../f-external-item").FExternalItemCreatePreviewExecution | typeof import("../f-external-item").PreventDefaultIsExternalItemExecution | typeof import("./f-node-resize").ApplyChildResizeRestrictionsExecution | typeof import("./f-node-resize").ApplyParentResizeRestrictionsExecution | typeof import("./f-node-resize").CalculateChangedPositionExecution | typeof import("./f-node-resize").CalculateChangedSizeExecution | typeof import("./f-node-resize").GetNormalizedChildrenNodesRectExecution | typeof import("./f-node-resize").GetNodeResizeRestrictionsExecution | typeof import("../f-selection-area").SelectionAreaPreparationExecution | typeof import("../f-selection-area").SelectionAreaFinalizeExecution | typeof import("@foblex/flow").CalculateFlowPointFromMinimapPointExecution | typeof import("@foblex/flow").MinimapDragFinalizeExecution | typeof import("@foblex/flow").MinimapDragPreparationExecution | typeof import("@foblex/flow").MinimapDrawNodesExecution | typeof import("@foblex/flow").MinimapCalculateSvgScaleAndViewBoxExecution | typeof import("@foblex/flow").MinimapCalculateViewBoxExecution)[];
|
package/f-external-item/domain/create-placeholder/f-external-item-create-placeholder.execution.d.ts
CHANGED
|
@@ -2,8 +2,8 @@ import { FExternalItemCreatePlaceholderRequest } from './f-external-item-create-
|
|
|
2
2
|
import { IExecution } from '@foblex/mediator';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FExternalItemCreatePlaceholderExecution implements IExecution<FExternalItemCreatePlaceholderRequest, HTMLElement | SVGElement> {
|
|
5
|
-
private _fBrowser;
|
|
6
|
-
private _containerRef;
|
|
5
|
+
private readonly _fBrowser;
|
|
6
|
+
private readonly _containerRef;
|
|
7
7
|
handle(request: FExternalItemCreatePlaceholderRequest): HTMLElement | SVGElement;
|
|
8
8
|
private _fromTemplate;
|
|
9
9
|
private _fromHost;
|
|
@@ -2,8 +2,8 @@ import { FExternalItemCreatePreviewRequest } from './f-external-item-create-prev
|
|
|
2
2
|
import { IExecution } from '@foblex/mediator';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FExternalItemCreatePreviewExecution implements IExecution<FExternalItemCreatePreviewRequest, HTMLElement | SVGElement> {
|
|
5
|
-
private _fBrowser;
|
|
6
|
-
private _containerRef;
|
|
5
|
+
private readonly _fBrowser;
|
|
6
|
+
private readonly _containerRef;
|
|
7
7
|
handle(request: FExternalItemCreatePreviewRequest): HTMLElement | SVGElement;
|
|
8
8
|
private _fromTemplate;
|
|
9
9
|
private _fromHost;
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
import { IPoint } from '@foblex/2d';
|
|
2
2
|
import { FExternalItemBase } from '../../f-external-item';
|
|
3
3
|
import { IFDragHandler } from '../../f-draggable';
|
|
4
|
+
import { Injector } from '@angular/core';
|
|
4
5
|
export declare class FExternalItemDragHandler implements IFDragHandler {
|
|
5
6
|
private _fExternalItem;
|
|
6
7
|
fEventType: string;
|
|
7
8
|
fData: any;
|
|
8
|
-
private _fResult;
|
|
9
|
-
private _fMediator;
|
|
10
|
-
private _fBrowser;
|
|
9
|
+
private readonly _fResult;
|
|
10
|
+
private readonly _fMediator;
|
|
11
|
+
private readonly _fBrowser;
|
|
11
12
|
private _preview;
|
|
12
13
|
private _placeholder;
|
|
13
14
|
private _onPointerDownRect;
|
|
14
15
|
private get _fItemHost();
|
|
15
|
-
constructor(_fExternalItem: FExternalItemBase);
|
|
16
|
+
constructor(_injector: Injector, _fExternalItem: FExternalItemBase);
|
|
16
17
|
prepareDragSequence(): void;
|
|
17
18
|
private _createAndAppendPreview;
|
|
18
19
|
private _createAndAppendPlaceholder;
|
|
@@ -2,11 +2,11 @@ import { FExternalItemFinalizeRequest } from './f-external-item-finalize.request
|
|
|
2
2
|
import { IExecution } from '@foblex/mediator';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FExternalItemFinalizeExecution implements IExecution<FExternalItemFinalizeRequest, void> {
|
|
5
|
-
private _fResult;
|
|
6
|
-
private _fMediator;
|
|
7
|
-
private _fComponentsStore;
|
|
8
|
-
private _fDraggableDataContext;
|
|
9
|
-
private _fBrowser;
|
|
5
|
+
private readonly _fResult;
|
|
6
|
+
private readonly _fMediator;
|
|
7
|
+
private readonly _fComponentsStore;
|
|
8
|
+
private readonly _fDraggableDataContext;
|
|
9
|
+
private readonly _fBrowser;
|
|
10
10
|
private get _fHost();
|
|
11
11
|
private get _fCreateNode();
|
|
12
12
|
private get _fDragHandler();
|
|
@@ -2,9 +2,10 @@ import { FExternalItemPreparationRequest } from './f-external-item-preparation.r
|
|
|
2
2
|
import { IExecution } from '@foblex/mediator';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FExternalItemPreparationExecution implements IExecution<FExternalItemPreparationRequest, void> {
|
|
5
|
-
private _fExternalItemService;
|
|
6
|
-
private _fDraggableDataContext;
|
|
7
|
-
private _fComponentsStore;
|
|
5
|
+
private readonly _fExternalItemService;
|
|
6
|
+
private readonly _fDraggableDataContext;
|
|
7
|
+
private readonly _fComponentsStore;
|
|
8
|
+
private readonly _injector;
|
|
8
9
|
private get _fHost();
|
|
9
10
|
handle(request: FExternalItemPreparationRequest): void;
|
|
10
11
|
private _isValid;
|
|
@@ -3,4 +3,4 @@ import { FExternalItemFinalizeExecution } from './finalize';
|
|
|
3
3
|
import { PreventDefaultIsExternalItemExecution } from './prevent-default-is-external-item';
|
|
4
4
|
import { FExternalItemCreatePreviewExecution } from './create-preview';
|
|
5
5
|
import { FExternalItemCreatePlaceholderExecution } from './create-placeholder';
|
|
6
|
-
export declare const F_EXTERNAL_ITEM_DRAG_AND_DROP_PROVIDERS: (typeof
|
|
6
|
+
export declare const F_EXTERNAL_ITEM_DRAG_AND_DROP_PROVIDERS: (typeof FExternalItemPreparationExecution | typeof FExternalItemFinalizeExecution | typeof FExternalItemCreatePlaceholderExecution | typeof FExternalItemCreatePreviewExecution | typeof PreventDefaultIsExternalItemExecution)[];
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class FExternalItemPlaceholderDirective<T = any> implements OnInit, OnDestroy {
|
|
4
|
-
private _fExternalItem;
|
|
5
|
-
private _templateRef;
|
|
4
|
+
private readonly _fExternalItem;
|
|
5
|
+
private readonly _templateRef;
|
|
6
6
|
ngOnInit(): void;
|
|
7
7
|
ngOnDestroy(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemPlaceholderDirective<any>, never>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class FExternalItemPreviewDirective<T = any> implements OnInit, OnDestroy {
|
|
4
|
-
private _fExternalItem;
|
|
5
|
-
private _templateRef;
|
|
4
|
+
private readonly _fExternalItem;
|
|
5
|
+
private readonly _templateRef;
|
|
6
6
|
ngOnInit(): void;
|
|
7
7
|
ngOnDestroy(): void;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemPreviewDirective<any>, never>;
|
|
@@ -2,8 +2,8 @@ import { OnDestroy, OnInit, TemplateRef } from '@angular/core';
|
|
|
2
2
|
import { FExternalItemBase } from './f-external-item-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FExternalItemDirective<TData> extends FExternalItemBase<TData> implements OnInit, OnDestroy {
|
|
5
|
-
private _elementReference;
|
|
6
|
-
private _fExternalItemService;
|
|
5
|
+
private readonly _elementReference;
|
|
6
|
+
private readonly _fExternalItemService;
|
|
7
7
|
fExternalItemId: string;
|
|
8
8
|
get hostElement(): HTMLElement | SVGElement;
|
|
9
9
|
fData: TData | undefined;
|
package/f-flow/f-flow-base.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { InjectionToken, InputSignal, OutputEmitterRef } from '@angular/core';
|
|
2
2
|
import { IHasHostElement } from '../i-has-host-element';
|
|
3
3
|
export declare const F_FLOW: InjectionToken<FFlowBase>;
|
|
4
4
|
export declare abstract class FFlowBase implements IHasHostElement {
|
|
5
|
-
abstract fId: string
|
|
5
|
+
abstract fId: InputSignal<string>;
|
|
6
6
|
abstract hostElement: HTMLElement;
|
|
7
|
-
abstract fLoaded:
|
|
7
|
+
abstract fLoaded: OutputEmitterRef<void>;
|
|
8
8
|
}
|
|
@@ -1,19 +1,17 @@
|
|
|
1
|
-
import { AfterContentInit,
|
|
1
|
+
import { AfterContentInit, OnDestroy, OnInit } from '@angular/core';
|
|
2
2
|
import { FFlowBase } from './f-flow-base';
|
|
3
3
|
import { IFFlowState, ICurrentSelection } from '../domain';
|
|
4
4
|
import { IPoint, IRect } from '@foblex/2d';
|
|
5
|
-
import { BrowserService } from '@foblex/platform';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
export declare class FFlowComponent extends FFlowBase implements OnInit, AfterContentInit, OnDestroy {
|
|
8
|
-
private
|
|
9
|
-
private
|
|
10
|
-
private
|
|
11
|
-
private _elementReference;
|
|
12
|
-
fId: string
|
|
7
|
+
private readonly _destroyRef;
|
|
8
|
+
private readonly _fMediator;
|
|
9
|
+
private readonly _browserService;
|
|
10
|
+
private readonly _elementReference;
|
|
11
|
+
fId: import("@angular/core").InputSignal<string>;
|
|
13
12
|
get hostElement(): HTMLElement;
|
|
14
|
-
fLoaded:
|
|
13
|
+
fLoaded: import("@angular/core").OutputEmitterRef<void>;
|
|
15
14
|
private _isLoaded;
|
|
16
|
-
constructor(fBrowser: BrowserService);
|
|
17
15
|
ngOnInit(): void;
|
|
18
16
|
ngAfterContentInit(): void;
|
|
19
17
|
private _listenCountChanges;
|
|
@@ -30,5 +28,5 @@ export declare class FFlowComponent extends FFlowBase implements OnInit, AfterCo
|
|
|
30
28
|
clearSelection(): void;
|
|
31
29
|
ngOnDestroy(): void;
|
|
32
30
|
static ɵfac: i0.ɵɵFactoryDeclaration<FFlowComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FFlowComponent, "f-flow", never, { "fId": { "alias": "fFlowId"; "required": false; }; }, { "fLoaded": "fLoaded"; }, never, ["[fDefinitions]", "f-background", "f-line-alignment", "f-canvas", "f-selection-area", "f-minimap"],
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FFlowComponent, "f-flow", never, { "fId": { "alias": "fFlowId"; "required": false; "isSignal": true; }; }, { "fLoaded": "fLoaded"; }, never, ["[fDefinitions]", "f-background", "f-line-alignment", "f-canvas", "f-selection-area", "f-minimap"], true, never>;
|
|
34
32
|
}
|
package/f-flow.module.d.ts
CHANGED
|
@@ -1,37 +1,41 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./f-
|
|
3
|
-
import * as i2 from "./f-
|
|
4
|
-
import * as i3 from "./f-
|
|
5
|
-
import * as i4 from "./f-
|
|
6
|
-
import * as i5 from "./f-connection/common/f-
|
|
7
|
-
import * as i6 from "./f-connection/common/f-
|
|
8
|
-
import * as i7 from "./f-connection/common/f-
|
|
9
|
-
import * as i8 from "./f-connection/
|
|
10
|
-
import * as i9 from "./f-connection/
|
|
11
|
-
import * as i10 from "./f-connection/
|
|
12
|
-
import * as i11 from "./f-connection/f-
|
|
13
|
-
import * as i12 from "./f-connection/f-connection
|
|
14
|
-
import * as i13 from "./f-
|
|
15
|
-
import * as i14 from "./f-
|
|
16
|
-
import * as i15 from "./f-
|
|
17
|
-
import * as i16 from "./f-
|
|
18
|
-
import * as i17 from "./f-
|
|
19
|
-
import * as i18 from "./f-
|
|
20
|
-
import * as i19 from "./f-
|
|
21
|
-
import * as i20 from "./f-
|
|
22
|
-
import * as i21 from "./f-
|
|
23
|
-
import * as i22 from "./f-
|
|
24
|
-
import * as i23 from "./f-
|
|
25
|
-
import * as i24 from "./f-
|
|
26
|
-
import * as i25 from "./f-node/f-
|
|
27
|
-
import * as i26 from "./f-
|
|
28
|
-
import * as i27 from "./f-
|
|
29
|
-
import * as i28 from "./f-
|
|
30
|
-
import * as i29 from "./f-
|
|
31
|
-
import * as i30 from "./f-
|
|
32
|
-
import * as i31 from "
|
|
2
|
+
import * as i1 from "./f-connection/common/f-connection-text/f-connection-text.component";
|
|
3
|
+
import * as i2 from "./f-connection/common/f-connection-text/f-connection-text-path.directive";
|
|
4
|
+
import * as i3 from "./f-connection/common/f-drag-handle/f-connection-drag-handle-start.component";
|
|
5
|
+
import * as i4 from "./f-connection/common/f-drag-handle/f-connection-drag-handle-end.component";
|
|
6
|
+
import * as i5 from "./f-connection/common/f-gradient/f-connection-gradient.component";
|
|
7
|
+
import * as i6 from "./f-connection/common/f-path/f-connection-path.component";
|
|
8
|
+
import * as i7 from "./f-connection/common/f-selection/f-connection-selection.component";
|
|
9
|
+
import * as i8 from "./f-connection/f-connection/f-connection.component";
|
|
10
|
+
import * as i9 from "./f-connection/f-connection-center/f-connection-center.directive";
|
|
11
|
+
import * as i10 from "./f-connection/f-connection-for-create/f-connection-for-create.component";
|
|
12
|
+
import * as i11 from "./f-connection/f-marker/f-marker.directive";
|
|
13
|
+
import * as i12 from "./f-connection/f-snap-connection/f-snap-connection.component";
|
|
14
|
+
import * as i13 from "./f-connectors/f-node-input/f-node-input.directive";
|
|
15
|
+
import * as i14 from "./f-connectors/f-node-outlet/f-node-outlet.directive";
|
|
16
|
+
import * as i15 from "./f-connectors/f-node-output/f-node-output.directive";
|
|
17
|
+
import * as i16 from "./f-line-alignment/f-line-alignment.component";
|
|
18
|
+
import * as i17 from "./f-minimap/f-minimap.component";
|
|
19
|
+
import * as i18 from "./f-minimap/f-minimap-canvas.directive";
|
|
20
|
+
import * as i19 from "./f-minimap/f-minimap-view.directive";
|
|
21
|
+
import * as i20 from "./f-minimap/f-minimap-flow.directive";
|
|
22
|
+
import * as i21 from "./f-node/f-group.directive";
|
|
23
|
+
import * as i22 from "./f-node/f-node.directive";
|
|
24
|
+
import * as i23 from "./f-node/f-drag-handle.directive";
|
|
25
|
+
import * as i24 from "./f-node/f-resize-handle/f-resize-handle.directive";
|
|
26
|
+
import * as i25 from "./f-node/f-rotate-handle/f-rotate-handle.directive";
|
|
27
|
+
import * as i26 from "./f-selection-area/f-selection-area.component";
|
|
28
|
+
import * as i27 from "./f-draggable/f-draggable.directive";
|
|
29
|
+
import * as i28 from "./f-flow/f-flow.component";
|
|
30
|
+
import * as i29 from "./f-canvas/f-canvas.component";
|
|
31
|
+
import * as i30 from "./f-backgroud/f-background.component";
|
|
32
|
+
import * as i31 from "./f-backgroud/f-rect-pattern/f-rect-pattern.component";
|
|
33
|
+
import * as i32 from "./f-backgroud/f-circle-pattern/f-circle-pattern.component";
|
|
34
|
+
import * as i33 from "./f-zoom/f-zoom.directive";
|
|
35
|
+
import * as i34 from "./f-external-item/f-external-item.directive";
|
|
36
|
+
import * as i35 from "@angular/common";
|
|
33
37
|
export declare class FFlowModule {
|
|
34
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<FFlowModule, never>;
|
|
35
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<FFlowModule, [typeof i1.
|
|
39
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FFlowModule, [typeof i1.FConnectionTextComponent, typeof i2.FConnectionTextPathDirective, typeof i3.FConnectionDragHandleStartComponent, typeof i4.FConnectionDragHandleEndComponent, typeof i5.FConnectionGradientComponent, typeof i6.FConnectionPathComponent, typeof i7.FConnectionSelectionComponent, typeof i8.FConnectionComponent, typeof i9.FConnectionCenterDirective, typeof i10.FConnectionForCreateComponent, typeof i11.FMarkerDirective, typeof i12.FSnapConnectionComponent, typeof i13.FNodeInputDirective, typeof i14.FNodeOutletDirective, typeof i15.FNodeOutputDirective, typeof i16.FLineAlignmentComponent, typeof i17.FMinimapComponent, typeof i18.FMinimapCanvasDirective, typeof i19.FMinimapViewDirective, typeof i20.FMinimapFlowDirective, typeof i21.FGroupDirective, typeof i22.FNodeDirective, typeof i23.FDragHandleDirective, typeof i24.FResizeHandleDirective, typeof i25.FRotateHandleDirective, typeof i26.FSelectionAreaComponent, typeof i27.FDraggableDirective], [typeof i28.FFlowComponent, typeof i29.FCanvasComponent, typeof i30.FBackgroundComponent, typeof i31.FRectPatternComponent, typeof i32.FCirclePatternComponent, typeof i33.FZoomDirective, typeof i34.FExternalItemDirective, typeof i35.CommonModule], [typeof i28.FFlowComponent, typeof i29.FCanvasComponent, typeof i30.FBackgroundComponent, typeof i31.FRectPatternComponent, typeof i32.FCirclePatternComponent, typeof i33.FZoomDirective, typeof i34.FExternalItemDirective, typeof i1.FConnectionTextComponent, typeof i2.FConnectionTextPathDirective, typeof i3.FConnectionDragHandleStartComponent, typeof i4.FConnectionDragHandleEndComponent, typeof i5.FConnectionGradientComponent, typeof i6.FConnectionPathComponent, typeof i7.FConnectionSelectionComponent, typeof i8.FConnectionComponent, typeof i9.FConnectionCenterDirective, typeof i10.FConnectionForCreateComponent, typeof i11.FMarkerDirective, typeof i12.FSnapConnectionComponent, typeof i13.FNodeInputDirective, typeof i14.FNodeOutletDirective, typeof i15.FNodeOutputDirective, typeof i16.FLineAlignmentComponent, typeof i17.FMinimapComponent, typeof i18.FMinimapCanvasDirective, typeof i19.FMinimapViewDirective, typeof i20.FMinimapFlowDirective, typeof i21.FGroupDirective, typeof i22.FNodeDirective, typeof i23.FDragHandleDirective, typeof i24.FResizeHandleDirective, typeof i25.FRotateHandleDirective, typeof i26.FSelectionAreaComponent, typeof i27.FDraggableDirective]>;
|
|
36
40
|
static ɵinj: i0.ɵɵInjectorDeclaration<FFlowModule>;
|
|
37
41
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
|
1
|
+
import { InjectionToken, InputSignalWithTransform } from '@angular/core';
|
|
2
2
|
import { IHasHostElement } from '../i-has-host-element';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare const F_LINE_ALIGNMENT: InjectionToken<FLineAlignmentBase>;
|
|
5
5
|
export declare abstract class FLineAlignmentBase implements IHasHostElement {
|
|
6
6
|
abstract hostElement: HTMLElement;
|
|
7
|
-
abstract fAlignThreshold: number
|
|
7
|
+
abstract fAlignThreshold: InputSignalWithTransform<number, unknown>;
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<FLineAlignmentBase, never>;
|
|
9
9
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FLineAlignmentBase, never, never, {}, {}, never, never, false, never>;
|
|
10
10
|
}
|
|
@@ -2,12 +2,12 @@ import { OnDestroy, OnInit } from '@angular/core';
|
|
|
2
2
|
import { FLineAlignmentBase } from './f-line-alignment-base';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class FLineAlignmentComponent extends FLineAlignmentBase implements OnInit, OnDestroy {
|
|
5
|
-
fAlignThreshold: number
|
|
6
|
-
private _fMediator;
|
|
7
|
-
private _elementReference;
|
|
5
|
+
fAlignThreshold: import("@angular/core").InputSignalWithTransform<number, unknown>;
|
|
6
|
+
private readonly _fMediator;
|
|
7
|
+
private readonly _elementReference;
|
|
8
8
|
get hostElement(): HTMLElement;
|
|
9
9
|
ngOnInit(): void;
|
|
10
10
|
ngOnDestroy(): void;
|
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<FLineAlignmentComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FLineAlignmentComponent, "f-line-alignment", ["fComponent"], { "fAlignThreshold": { "alias": "fAlignThreshold"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FLineAlignmentComponent, "f-line-alignment", ["fComponent"], { "fAlignThreshold": { "alias": "fAlignThreshold"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
13
13
|
}
|
|
@@ -2,4 +2,4 @@ import { CalculateFlowPointFromMinimapPointExecution } from './calculate-flow-po
|
|
|
2
2
|
import { MinimapDrawNodesExecution } from './minimap-draw-nodes';
|
|
3
3
|
import { MinimapCalculateViewBoxExecution } from './minimap-calculate-view-box';
|
|
4
4
|
import { MinimapCalculateSvgScaleAndViewBoxExecution } from './minimap-calculate-svg-scale-and-view-box';
|
|
5
|
-
export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-
|
|
5
|
+
export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof MinimapDrawNodesExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution | typeof MinimapCalculateViewBoxExecution)[];
|
package/f-minimap/providers.d.ts
CHANGED
|
@@ -2,4 +2,4 @@ import { FMinimapComponent } from './f-minimap.component';
|
|
|
2
2
|
import { FMinimapViewDirective } from './f-minimap-view.directive';
|
|
3
3
|
import { FMinimapFlowDirective } from './f-minimap-flow.directive';
|
|
4
4
|
import { FMinimapCanvasDirective } from './f-minimap-canvas.directive';
|
|
5
|
-
export declare const F_MINIMAP_PROVIDERS: (typeof
|
|
5
|
+
export declare const F_MINIMAP_PROVIDERS: (typeof FMinimapComponent | typeof FMinimapCanvasDirective | typeof FMinimapViewDirective | typeof FMinimapFlowDirective)[];
|
|
@@ -1,10 +1,5 @@
|
|
|
1
|
-
import { InjectionToken } from "@angular/core";
|
|
2
|
-
import { IHasHostElement } from '../i-has-host-element';
|
|
3
1
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare
|
|
5
|
-
export declare class FDragHandleDirective implements IHasHostElement {
|
|
6
|
-
private _elementReference;
|
|
7
|
-
get hostElement(): HTMLElement;
|
|
2
|
+
export declare class FDragHandleDirective {
|
|
8
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<FDragHandleDirective, never>;
|
|
9
4
|
static ɵdir: i0.ɵɵDirectiveDeclaration<FDragHandleDirective, "[fDragHandle]", never, {}, {}, never, never, false, never>;
|
|
10
5
|
}
|
|
@@ -12,6 +12,9 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
|
|
|
12
12
|
set position(value: IPoint);
|
|
13
13
|
get position(): IPoint;
|
|
14
14
|
positionChange: EventEmitter<IPoint>;
|
|
15
|
+
set rotate(value: number);
|
|
16
|
+
get rotate(): number;
|
|
17
|
+
rotateChange: EventEmitter<number>;
|
|
15
18
|
set size(value: ISize);
|
|
16
19
|
get size(): ISize;
|
|
17
20
|
sizeChange: EventEmitter<IRect>;
|
|
@@ -19,8 +22,8 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
|
|
|
19
22
|
fSelectionDisabled: boolean;
|
|
20
23
|
fIncludePadding: boolean;
|
|
21
24
|
fConnectOnNode: boolean;
|
|
22
|
-
private _destroyRef;
|
|
23
|
-
private _fMediator;
|
|
25
|
+
private readonly _destroyRef;
|
|
26
|
+
private readonly _fMediator;
|
|
24
27
|
constructor(elementReference: ElementRef<HTMLElement>, renderer: Renderer2, fBrowser: BrowserService);
|
|
25
28
|
ngOnInit(): void;
|
|
26
29
|
protected setStyle(styleName: string, value: string): void;
|
|
@@ -30,7 +33,7 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
|
|
|
30
33
|
refresh(): void;
|
|
31
34
|
ngOnDestroy(): void;
|
|
32
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<FGroupDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FGroupDirective, "[fGroup]", ["fComponent"], { "fId": { "alias": "fGroupId"; "required": false; }; "fParentId": { "alias": "fGroupParentId"; "required": false; }; "position": { "alias": "fGroupPosition"; "required": false; }; "size": { "alias": "fGroupSize"; "required": false; }; "fDraggingDisabled": { "alias": "fGroupDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fGroupSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fGroupPositionChange"; "sizeChange": "fGroupSizeChange"; }, never, never, false, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FGroupDirective, "[fGroup]", ["fComponent"], { "fId": { "alias": "fGroupId"; "required": false; }; "fParentId": { "alias": "fGroupParentId"; "required": false; }; "position": { "alias": "fGroupPosition"; "required": false; }; "rotate": { "alias": "fGroupRotate"; "required": false; }; "size": { "alias": "fGroupSize"; "required": false; }; "fDraggingDisabled": { "alias": "fGroupDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fGroupSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fGroupPositionChange"; "rotateChange": "fGroupRotateChange"; "sizeChange": "fGroupSizeChange"; }, never, never, false, never>;
|
|
34
37
|
static ngAcceptInputType_fDraggingDisabled: unknown;
|
|
35
38
|
static ngAcceptInputType_fSelectionDisabled: unknown;
|
|
36
39
|
static ngAcceptInputType_fIncludePadding: unknown;
|
package/f-node/f-node-base.d.ts
CHANGED
|
@@ -17,6 +17,9 @@ export declare abstract class FNodeBase extends MIXIN_BASE implements ISelectabl
|
|
|
17
17
|
abstract positionChange: EventEmitter<IPoint>;
|
|
18
18
|
abstract position: IPoint;
|
|
19
19
|
protected _position: IPoint;
|
|
20
|
+
abstract rotateChange: EventEmitter<number>;
|
|
21
|
+
abstract rotate: number;
|
|
22
|
+
protected _rotate: number;
|
|
20
23
|
abstract sizeChange: EventEmitter<IRect>;
|
|
21
24
|
abstract size: ISize;
|
|
22
25
|
protected _size: ISize | undefined;
|
|
@@ -31,6 +34,7 @@ export declare abstract class FNodeBase extends MIXIN_BASE implements ISelectabl
|
|
|
31
34
|
isContains(element: HTMLElement | SVGElement): boolean;
|
|
32
35
|
redraw(): void;
|
|
33
36
|
updatePosition(position: IPoint): void;
|
|
37
|
+
updateRotate(rotate: number): void;
|
|
34
38
|
updateSize(value: ISize): void;
|
|
35
39
|
setClass(className: string): void;
|
|
36
40
|
removeClass(className: string): void;
|
|
@@ -13,14 +13,17 @@ export declare class FNodeDirective extends FNodeBase implements OnInit, AfterVi
|
|
|
13
13
|
get position(): IPoint;
|
|
14
14
|
positionChange: EventEmitter<IPoint>;
|
|
15
15
|
set size(value: ISize);
|
|
16
|
+
set rotate(value: number);
|
|
17
|
+
get rotate(): number;
|
|
18
|
+
rotateChange: EventEmitter<number>;
|
|
16
19
|
get size(): ISize;
|
|
17
20
|
sizeChange: EventEmitter<IRect>;
|
|
18
21
|
fDraggingDisabled: boolean;
|
|
19
22
|
fSelectionDisabled: boolean;
|
|
20
23
|
fIncludePadding: boolean;
|
|
21
24
|
fConnectOnNode: boolean;
|
|
22
|
-
private _destroyRef;
|
|
23
|
-
private _fMediator;
|
|
25
|
+
private readonly _destroyRef;
|
|
26
|
+
private readonly _fMediator;
|
|
24
27
|
constructor(elementReference: ElementRef<HTMLElement>, renderer: Renderer2, fBrowser: BrowserService);
|
|
25
28
|
ngOnInit(): void;
|
|
26
29
|
protected setStyle(styleName: string, value: string): void;
|
|
@@ -30,7 +33,7 @@ export declare class FNodeDirective extends FNodeBase implements OnInit, AfterVi
|
|
|
30
33
|
refresh(): void;
|
|
31
34
|
ngOnDestroy(): void;
|
|
32
35
|
static ɵfac: i0.ɵɵFactoryDeclaration<FNodeDirective, never>;
|
|
33
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeDirective, "[fNode]", ["fComponent"], { "fId": { "alias": "fNodeId"; "required": false; }; "fParentId": { "alias": "fNodeParentId"; "required": false; }; "position": { "alias": "fNodePosition"; "required": false; }; "size": { "alias": "fNodeSize"; "required": false; }; "fDraggingDisabled": { "alias": "fNodeDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fNodeSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fNodePositionChange"; "sizeChange": "fNodeSizeChange"; }, never, never, false, never>;
|
|
36
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeDirective, "[fNode]", ["fComponent"], { "fId": { "alias": "fNodeId"; "required": false; }; "fParentId": { "alias": "fNodeParentId"; "required": false; }; "position": { "alias": "fNodePosition"; "required": false; }; "size": { "alias": "fNodeSize"; "required": false; }; "rotate": { "alias": "fNodeRotate"; "required": false; }; "fDraggingDisabled": { "alias": "fNodeDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fNodeSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fNodePositionChange"; "rotateChange": "fNodeRotateChange"; "sizeChange": "fNodeSizeChange"; }, never, never, false, never>;
|
|
34
37
|
static ngAcceptInputType_fDraggingDisabled: unknown;
|
|
35
38
|
static ngAcceptInputType_fSelectionDisabled: unknown;
|
|
36
39
|
static ngAcceptInputType_fIncludePadding: unknown;
|
|
@@ -1,14 +1,8 @@
|
|
|
1
|
-
import { InjectionToken } from "@angular/core";
|
|
2
1
|
import { EFResizeHandleType } from './e-f-resize-handle-type';
|
|
3
|
-
import { IHasHostElement } from '../../i-has-host-element';
|
|
4
2
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
type: EFResizeHandleType;
|
|
9
|
-
get typeClass(): string;
|
|
10
|
-
get hostElement(): HTMLElement;
|
|
3
|
+
export declare class FResizeHandleDirective {
|
|
4
|
+
type: import("@angular/core").InputSignalWithTransform<EFResizeHandleType, unknown>;
|
|
5
|
+
protected class: import("@angular/core").Signal<string>;
|
|
11
6
|
static ɵfac: i0.ɵɵFactoryDeclaration<FResizeHandleDirective, never>;
|
|
12
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<FResizeHandleDirective, "[fResizeHandle]", never, { "type": { "alias": "fResizeHandleType"; "required":
|
|
13
|
-
static ngAcceptInputType_type: unknown;
|
|
7
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FResizeHandleDirective, "[fResizeHandle]", never, { "type": { "alias": "fResizeHandleType"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
14
8
|
}
|
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
private isDisabled;
|
|
6
|
-
get disabled(): boolean;
|
|
7
|
-
get hostElement(): HTMLElement;
|
|
8
|
-
constructor(elementReference: ElementRef<HTMLElement>);
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FRotateHandleDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FRotateHandleDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<FRotateHandleDirective, "[fRotateHandle]", never, {}, {}, never, never, false, never>;
|
|
9
5
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function isRotateHandle(element: HTMLElement): boolean;
|
package/f-node/providers.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { FNodeDirective } from './f-node.directive';
|
|
2
|
-
import { FResizeHandleDirective } from './f-resize-handle';
|
|
3
2
|
import { FGroupDirective } from './f-group.directive';
|
|
4
3
|
import { FDragHandleDirective } from './f-drag-handle.directive';
|
|
5
|
-
export declare const F_NODE_PROVIDERS: (typeof
|
|
4
|
+
export declare const F_NODE_PROVIDERS: (typeof FGroupDirective | typeof FNodeDirective | typeof FDragHandleDirective)[];
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { SelectionAreaPreparationExecution } from './selection-area-preparation';
|
|
2
2
|
import { SelectionAreaFinalizeExecution } from './selection-area-finalize';
|
|
3
|
-
export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof
|
|
3
|
+
export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof SelectionAreaPreparationExecution | typeof SelectionAreaFinalizeExecution)[];
|
package/f-storage/providers.d.ts
CHANGED
|
@@ -4,4 +4,4 @@ import { FComponentsStore } from './f-components-store';
|
|
|
4
4
|
import { ListenCountChangesExecution } from './features/listen-count-changes';
|
|
5
5
|
import { ListenTransformChangesExecution } from './features/listen-transform-changes';
|
|
6
6
|
import { NotifyTransformChangedExecution } from './features/notify-transform-changed';
|
|
7
|
-
export declare const F_STORAGE_PROVIDERS: (typeof
|
|
7
|
+
export declare const F_STORAGE_PROVIDERS: (typeof FComponentsStore | typeof NotifyDataChangedExecution | typeof ListenCountChangesExecution | typeof ListenDataChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];
|
package/f-zoom/index.d.ts
CHANGED