@foblex/flow 14.0.0 → 16.0.0
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/esm2022/domain/create-connection-markers/create-connection-markers.execution.mjs +60 -0
- package/esm2022/domain/create-rounded-rect-from-element/create-rounded-rect-from-element.execution.mjs +38 -0
- package/esm2022/domain/emit-transform-changes/emit-transform-changes.execution.mjs +23 -0
- package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +46 -0
- package/esm2022/domain/f-canvas/center-group-or-node/center-group-or-node.execution.mjs +48 -0
- package/esm2022/domain/f-canvas/fit-to-flow/fit-to-flow.execution.mjs +55 -0
- package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +32 -0
- package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +27 -0
- package/esm2022/domain/f-canvas/reset-scale/reset-scale.execution.mjs +28 -0
- package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +50 -0
- package/esm2022/domain/f-canvas/update-scale/update-scale.execution.mjs +33 -0
- package/esm2022/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.mjs +38 -0
- package/esm2022/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.mjs +54 -0
- package/esm2022/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.mjs +27 -0
- package/esm2022/domain/f-selection/clear-selection/clear-selection.execution.mjs +25 -0
- package/esm2022/domain/f-selection/get-selection/get-selection.execution.mjs +34 -0
- package/esm2022/domain/f-selection/select/select.execution.mjs +43 -0
- package/esm2022/domain/f-selection/select-all/select-all.execution.mjs +37 -0
- package/esm2022/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.mjs +34 -0
- package/esm2022/domain/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +56 -0
- package/esm2022/domain/get-connection-line/get-connection-line.execution.mjs +66 -0
- package/esm2022/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.execution.mjs +34 -0
- package/esm2022/domain/get-element-rect-in-flow/get-element-rect-in-flow.execution.mjs +42 -0
- package/esm2022/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.mjs +32 -0
- package/esm2022/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes.execution.mjs +49 -0
- package/esm2022/domain/get-flow-state/get-flow-state.execution.mjs +38 -0
- package/esm2022/domain/get-nodes-rect/get-nodes-rect.execution.mjs +30 -0
- package/esm2022/domain/get-position-in-flow/get-position-in-flow.execution.mjs +31 -0
- package/esm2022/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.execution.mjs +33 -0
- package/esm2022/domain/is-connection-under-node/is-connection-under-node.execution.mjs +75 -0
- package/esm2022/domain/redraw-connections/redraw-connections.execution.mjs +62 -0
- package/esm2022/domain/show-connections-after-calculations/show-connections-after-calculations.execution.mjs +25 -0
- package/esm2022/domain/sort-item-layers/sort-item-layers.execution.mjs +29 -0
- package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +56 -0
- package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +58 -0
- package/esm2022/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.execution.mjs +25 -0
- package/esm2022/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.execution.mjs +29 -0
- package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +93 -0
- package/{esm2020 → esm2022}/f-backgroud/f-background-base.mjs +4 -4
- package/{esm2020 → esm2022}/f-backgroud/f-background.component.mjs +7 -7
- package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +104 -0
- package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +122 -0
- package/{esm2020 → esm2022}/f-canvas/f-canvas-base.mjs +4 -4
- package/esm2022/f-canvas/f-canvas.component.mjs +86 -0
- package/esm2022/f-connection/common/f-connection-base.mjs +66 -0
- package/esm2022/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +70 -0
- package/esm2022/f-connection/common/f-connection-text/f-connection-text.component.mjs +66 -0
- package/{esm2020 → esm2022}/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +7 -7
- package/esm2022/f-connection/common/f-gradient/f-connection-gradient.component.mjs +63 -0
- package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +59 -0
- package/{esm2020 → esm2022}/f-connection/common/f-selection/f-connection-selection.component.mjs +8 -8
- package/esm2022/f-connection/f-connection/f-connection.component.mjs +171 -0
- package/{esm2020 → esm2022}/f-connection/f-connection-builder/f-connection-factory.mjs +4 -4
- package/{esm2020 → esm2022}/f-connection/f-connection-center/f-connection-center.directive.mjs +4 -4
- package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +136 -0
- package/{esm2020 → esm2022}/f-connection/f-marker/f-marker-base.mjs +4 -4
- package/esm2022/f-connection/f-marker/f-marker.directive.mjs +58 -0
- package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +136 -0
- package/{esm2020 → esm2022}/f-connectors/f-node-input/f-node-input-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-input/f-node-input.directive.mjs +87 -0
- package/{esm2020 → esm2022}/f-connectors/f-node-outlet/f-node-outlet-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +71 -0
- package/{esm2020 → esm2022}/f-connectors/f-node-output/f-node-output-base.mjs +4 -4
- package/esm2022/f-connectors/f-node-output/f-node-output.directive.mjs +94 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.mjs +23 -0
- package/esm2022/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.mjs +24 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.mjs +35 -0
- package/esm2022/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.mjs +42 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.mjs +54 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.mjs +24 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.mjs +43 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.mjs +52 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.mjs +38 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.mjs +33 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +42 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +31 -0
- package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +61 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.mjs +42 -0
- package/esm2022/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.mjs +26 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.mjs +84 -0
- package/esm2022/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.mjs +34 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.mjs +49 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.mjs +24 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +63 -0
- package/esm2022/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +43 -0
- package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +4 -4
- package/esm2022/f-draggable/domain/get-node-padding/get-node-padding.execution.mjs +32 -0
- package/esm2022/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.mjs +28 -0
- package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.mjs +47 -0
- package/esm2022/f-draggable/domain/get-parent-nodes/get-parent-nodes.execution.mjs +35 -0
- package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.execution.mjs +33 -0
- package/{esm2020 → esm2022}/f-draggable/f-draggable-base.mjs +4 -4
- package/{esm2020 → esm2022}/f-draggable/f-draggable-data-context.mjs +4 -4
- package/esm2022/f-draggable/f-draggable.directive.mjs +160 -0
- package/{esm2020 → esm2022}/f-draggable/node/connection-base-drag-handler.mjs +4 -4
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +84 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.mjs +43 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.mjs +69 -0
- package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.mjs +69 -0
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +50 -0
- package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.validator.mjs +24 -0
- package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +58 -0
- package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +40 -0
- package/esm2022/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +48 -0
- package/esm2022/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.execution.mjs +48 -0
- package/esm2022/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +24 -0
- package/esm2022/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +33 -0
- package/esm2022/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.execution.mjs +30 -0
- package/esm2022/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.execution.mjs +40 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.mjs +25 -0
- package/esm2022/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.mjs +24 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.mjs +52 -0
- package/esm2022/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.mjs +40 -0
- package/esm2022/f-draggable/single-select/single-select.execution.mjs +88 -0
- package/esm2022/f-draggable/single-select/single-select.validator.mjs +26 -0
- package/esm2022/f-external-item/domain/external-item-finalize/external-item-finalize.execution.mjs +56 -0
- package/esm2022/f-external-item/domain/external-item-finalize/external-item-finalize.validator.mjs +24 -0
- package/esm2022/f-external-item/domain/external-item-preparation/external-item-preparation.execution.mjs +42 -0
- package/esm2022/f-external-item/domain/external-item-preparation/external-item-preparation.validator.mjs +28 -0
- package/{esm2020 → esm2022}/f-external-item/f-external-item-base.mjs +4 -4
- package/{esm2020 → esm2022}/f-external-item/f-external-item.directive.mjs +9 -9
- package/{esm2020 → esm2022}/f-external-item/f-external-item.service.mjs +4 -4
- package/esm2022/f-flow/f-flow.component.mjs +118 -0
- package/{esm2020 → esm2022}/f-flow.module.mjs +5 -5
- package/{esm2020 → esm2022}/f-line-alignment/f-line-alignment-base.mjs +4 -4
- package/esm2022/f-line-alignment/f-line-alignment.component.mjs +92 -0
- package/esm2022/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.execution.mjs +41 -0
- package/esm2022/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.execution.mjs +25 -0
- package/esm2022/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.validator.mjs +24 -0
- package/esm2022/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.mjs +48 -0
- package/esm2022/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.validator.mjs +27 -0
- package/esm2022/f-minimap/f-minimap-canvas.directive.mjs +66 -0
- package/{esm2020 → esm2022}/f-minimap/f-minimap-flow.directive.mjs +10 -10
- package/{esm2020 → esm2022}/f-minimap/f-minimap-view.directive.mjs +8 -8
- package/{esm2020 → esm2022}/f-minimap/f-minimap.component.mjs +6 -6
- package/{esm2020 → esm2022}/f-node/f-drag-handle/f-drag-handle.directive.mjs +7 -7
- package/esm2022/f-node/f-group.directive.mjs +145 -0
- package/esm2022/f-node/f-node.directive.mjs +146 -0
- package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +43 -0
- package/{esm2020 → esm2022}/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +5 -5
- package/esm2022/f-selection-area/domain/selection-area-finalize/selection-area-finalize.execution.mjs +25 -0
- package/esm2022/f-selection-area/domain/selection-area-finalize/selection-area-finalize.validator.mjs +24 -0
- package/esm2022/f-selection-area/domain/selection-area-preparation/selection-area-preparation.execution.mjs +37 -0
- package/esm2022/f-selection-area/domain/selection-area-preparation/selection-area-preparation.validator.mjs +30 -0
- package/{esm2020 → esm2022}/f-selection-area/domain/selection-area.drag-handle.mjs +4 -4
- package/{esm2020 → esm2022}/f-selection-area/f-selection-area-base.mjs +4 -4
- package/{esm2020 → esm2022}/f-selection-area/f-selection-area.component.mjs +9 -9
- package/{esm2020 → esm2022}/f-storage/f-components-store.mjs +4 -4
- package/{esm2020 → esm2022}/f-storage/f-transform-store.mjs +4 -4
- package/esm2022/f-zoom/f-zoom-base.mjs +97 -0
- package/esm2022/f-zoom/f-zoom.directive.mjs +59 -0
- package/esm2022/mixins/change-selection/change-selection.mjs +28 -0
- package/f-backgroud/f-background-base.d.ts +1 -1
- package/f-backgroud/f-background.component.d.ts +1 -1
- package/f-backgroud/f-circle-pattern/f-circle-pattern.component.d.ts +1 -1
- package/f-backgroud/f-rect-pattern/f-rect-pattern.component.d.ts +1 -1
- package/f-canvas/f-canvas-base.d.ts +1 -1
- package/f-canvas/f-canvas.component.d.ts +1 -1
- package/f-connection/common/f-connection-base.d.ts +1 -1
- package/f-connection/common/f-connection-text/f-connection-text-path.directive.d.ts +1 -1
- package/f-connection/common/f-connection-text/f-connection-text.component.d.ts +1 -1
- package/f-connection/common/f-drag-handle/f-connection-drag-handle.component.d.ts +1 -1
- package/f-connection/common/f-gradient/f-connection-gradient.component.d.ts +1 -1
- package/f-connection/common/f-path/f-connection-path.component.d.ts +1 -1
- package/f-connection/common/f-selection/f-connection-selection.component.d.ts +1 -1
- package/f-connection/f-connection/f-connection.component.d.ts +1 -1
- package/f-connection/f-connection-center/f-connection-center.directive.d.ts +1 -1
- package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +1 -1
- package/f-connection/f-marker/f-marker-base.d.ts +1 -1
- package/f-connection/f-marker/f-marker.directive.d.ts +1 -1
- package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +1 -1
- package/f-connectors/f-node-input/f-node-input-base.d.ts +1 -1
- package/f-connectors/f-node-input/f-node-input.directive.d.ts +1 -1
- package/f-connectors/f-node-outlet/f-node-outlet-base.d.ts +1 -1
- package/f-connectors/f-node-outlet/f-node-outlet.directive.d.ts +1 -1
- package/f-connectors/f-node-output/f-node-output-base.d.ts +1 -1
- package/f-connectors/f-node-output/f-node-output.directive.d.ts +1 -1
- package/f-draggable/f-draggable-base.d.ts +1 -1
- package/f-draggable/f-draggable.directive.d.ts +1 -1
- package/f-draggable/node/connection-base-drag-handler.d.ts +1 -1
- package/f-external-item/f-external-item-base.d.ts +1 -1
- package/f-external-item/f-external-item.directive.d.ts +1 -1
- package/f-flow/f-flow.component.d.ts +1 -1
- package/f-line-alignment/f-line-alignment-base.d.ts +1 -1
- package/f-line-alignment/f-line-alignment.component.d.ts +1 -1
- package/f-minimap/f-minimap-canvas.directive.d.ts +1 -1
- package/f-minimap/f-minimap-flow.directive.d.ts +1 -1
- package/f-minimap/f-minimap-view.directive.d.ts +1 -1
- package/f-minimap/f-minimap.component.d.ts +1 -1
- package/f-node/f-drag-handle/f-drag-handle.directive.d.ts +1 -1
- package/f-node/f-group.directive.d.ts +1 -1
- package/f-node/f-node.directive.d.ts +1 -1
- package/f-node/f-resize-handle/f-resize-handle.directive.d.ts +1 -1
- package/f-selection-area/f-selection-area-base.d.ts +1 -1
- package/f-selection-area/f-selection-area.component.d.ts +1 -1
- package/f-zoom/f-zoom.directive.d.ts +1 -1
- package/{fesm2020 → fesm2022}/foblex-flow.mjs +841 -841
- package/{fesm2015 → fesm2022}/foblex-flow.mjs.map +1 -1
- package/mixins/change-selection/change-selection.d.ts +1 -1
- package/mixins/change-visibility/change-visibility.d.ts +1 -1
- package/mixins/constructor.d.ts +2 -2
- package/package.json +5 -11
- package/esm2020/domain/create-connection-markers/create-connection-markers.execution.mjs +0 -61
- package/esm2020/domain/create-rounded-rect-from-element/create-rounded-rect-from-element.execution.mjs +0 -39
- package/esm2020/domain/emit-transform-changes/emit-transform-changes.execution.mjs +0 -24
- package/esm2020/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +0 -47
- package/esm2020/domain/f-canvas/center-group-or-node/center-group-or-node.execution.mjs +0 -49
- package/esm2020/domain/f-canvas/fit-to-flow/fit-to-flow.execution.mjs +0 -56
- package/esm2020/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +0 -33
- package/esm2020/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +0 -28
- package/esm2020/domain/f-canvas/reset-scale/reset-scale.execution.mjs +0 -29
- package/esm2020/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +0 -51
- package/esm2020/domain/f-canvas/update-scale/update-scale.execution.mjs +0 -34
- package/esm2020/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.mjs +0 -39
- package/esm2020/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.execution.mjs +0 -55
- package/esm2020/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.mjs +0 -28
- package/esm2020/domain/f-selection/clear-selection/clear-selection.execution.mjs +0 -26
- package/esm2020/domain/f-selection/get-selection/get-selection.execution.mjs +0 -35
- package/esm2020/domain/f-selection/select/select.execution.mjs +0 -44
- package/esm2020/domain/f-selection/select-all/select-all.execution.mjs +0 -38
- package/esm2020/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.execution.mjs +0 -35
- package/esm2020/domain/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +0 -57
- package/esm2020/domain/get-connection-line/get-connection-line.execution.mjs +0 -67
- package/esm2020/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.execution.mjs +0 -35
- package/esm2020/domain/get-element-rect-in-flow/get-element-rect-in-flow.execution.mjs +0 -43
- package/esm2020/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections.execution.mjs +0 -33
- package/esm2020/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes.execution.mjs +0 -50
- package/esm2020/domain/get-flow-state/get-flow-state.execution.mjs +0 -39
- package/esm2020/domain/get-nodes-rect/get-nodes-rect.execution.mjs +0 -31
- package/esm2020/domain/get-position-in-flow/get-position-in-flow.execution.mjs +0 -32
- package/esm2020/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.execution.mjs +0 -34
- package/esm2020/domain/is-connection-under-node/is-connection-under-node.execution.mjs +0 -76
- package/esm2020/domain/redraw-connections/redraw-connections.execution.mjs +0 -63
- package/esm2020/domain/show-connections-after-calculations/show-connections-after-calculations.execution.mjs +0 -26
- package/esm2020/domain/sort-item-layers/sort-item-layers.execution.mjs +0 -30
- package/esm2020/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +0 -57
- package/esm2020/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +0 -59
- package/esm2020/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.execution.mjs +0 -26
- package/esm2020/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.execution.mjs +0 -30
- package/esm2020/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +0 -94
- package/esm2020/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +0 -104
- package/esm2020/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +0 -122
- package/esm2020/f-canvas/f-canvas.component.mjs +0 -86
- package/esm2020/f-connection/common/f-connection-base.mjs +0 -66
- package/esm2020/f-connection/common/f-connection-text/f-connection-text-path.directive.mjs +0 -70
- package/esm2020/f-connection/common/f-connection-text/f-connection-text.component.mjs +0 -66
- package/esm2020/f-connection/common/f-gradient/f-connection-gradient.component.mjs +0 -63
- package/esm2020/f-connection/common/f-path/f-connection-path.component.mjs +0 -59
- package/esm2020/f-connection/f-connection/f-connection.component.mjs +0 -171
- package/esm2020/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +0 -136
- package/esm2020/f-connection/f-marker/f-marker.directive.mjs +0 -58
- package/esm2020/f-connection/f-snap-connection/f-snap-connection.component.mjs +0 -136
- package/esm2020/f-connectors/f-node-input/f-node-input.directive.mjs +0 -87
- package/esm2020/f-connectors/f-node-outlet/f-node-outlet.directive.mjs +0 -71
- package/esm2020/f-connectors/f-node-output/f-node-output.directive.mjs +0 -94
- package/esm2020/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.execution.mjs +0 -24
- package/esm2020/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.validator.mjs +0 -25
- package/esm2020/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.execution.mjs +0 -36
- package/esm2020/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.validator.mjs +0 -43
- package/esm2020/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.execution.mjs +0 -55
- package/esm2020/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.validator.mjs +0 -25
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.execution.mjs +0 -44
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.execution.mjs +0 -53
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.execution.mjs +0 -39
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.validator.mjs +0 -34
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.execution.mjs +0 -43
- package/esm2020/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.validator.mjs +0 -32
- package/esm2020/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +0 -61
- package/esm2020/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.execution.mjs +0 -43
- package/esm2020/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.validator.mjs +0 -27
- package/esm2020/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.execution.mjs +0 -85
- package/esm2020/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.validator.mjs +0 -35
- package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.execution.mjs +0 -50
- package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.validator.mjs +0 -25
- package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.execution.mjs +0 -64
- package/esm2020/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.validator.mjs +0 -44
- package/esm2020/f-draggable/domain/get-node-padding/get-node-padding.execution.mjs +0 -33
- package/esm2020/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.mjs +0 -29
- package/esm2020/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.mjs +0 -48
- package/esm2020/f-draggable/domain/get-parent-nodes/get-parent-nodes.execution.mjs +0 -36
- package/esm2020/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.execution.mjs +0 -34
- package/esm2020/f-draggable/f-draggable.directive.mjs +0 -160
- package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +0 -85
- package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.mjs +0 -44
- package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.execution.mjs +0 -70
- package/esm2020/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.execution.mjs +0 -70
- package/esm2020/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +0 -51
- package/esm2020/f-draggable/node/node-move-finalize/node-move-finalize.validator.mjs +0 -25
- package/esm2020/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +0 -59
- package/esm2020/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +0 -41
- package/esm2020/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +0 -49
- package/esm2020/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.execution.mjs +0 -49
- package/esm2020/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +0 -25
- package/esm2020/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +0 -34
- package/esm2020/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.execution.mjs +0 -31
- package/esm2020/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.execution.mjs +0 -41
- package/esm2020/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.execution.mjs +0 -26
- package/esm2020/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.validator.mjs +0 -25
- package/esm2020/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.execution.mjs +0 -53
- package/esm2020/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.validator.mjs +0 -41
- package/esm2020/f-draggable/single-select/single-select.execution.mjs +0 -89
- package/esm2020/f-draggable/single-select/single-select.validator.mjs +0 -27
- package/esm2020/f-external-item/domain/external-item-finalize/external-item-finalize.execution.mjs +0 -57
- package/esm2020/f-external-item/domain/external-item-finalize/external-item-finalize.validator.mjs +0 -25
- package/esm2020/f-external-item/domain/external-item-preparation/external-item-preparation.execution.mjs +0 -43
- package/esm2020/f-external-item/domain/external-item-preparation/external-item-preparation.validator.mjs +0 -29
- package/esm2020/f-flow/f-flow.component.mjs +0 -118
- package/esm2020/f-line-alignment/f-line-alignment.component.mjs +0 -92
- package/esm2020/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.execution.mjs +0 -42
- package/esm2020/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.execution.mjs +0 -26
- package/esm2020/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.validator.mjs +0 -25
- package/esm2020/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.execution.mjs +0 -49
- package/esm2020/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.validator.mjs +0 -28
- package/esm2020/f-minimap/f-minimap-canvas.directive.mjs +0 -66
- package/esm2020/f-node/f-group.directive.mjs +0 -145
- package/esm2020/f-node/f-node.directive.mjs +0 -146
- package/esm2020/f-node/f-resize-handle/f-resize-handle.directive.mjs +0 -43
- package/esm2020/f-selection-area/domain/selection-area-finalize/selection-area-finalize.execution.mjs +0 -26
- package/esm2020/f-selection-area/domain/selection-area-finalize/selection-area-finalize.validator.mjs +0 -25
- package/esm2020/f-selection-area/domain/selection-area-preparation/selection-area-preparation.execution.mjs +0 -38
- package/esm2020/f-selection-area/domain/selection-area-preparation/selection-area-preparation.validator.mjs +0 -31
- package/esm2020/f-zoom/f-zoom-base.mjs +0 -97
- package/esm2020/f-zoom/f-zoom.directive.mjs +0 -59
- package/esm2020/mixins/change-selection/change-selection.mjs +0 -28
- package/fesm2015/foblex-flow.mjs +0 -7927
- package/fesm2020/foblex-flow.mjs.map +0 -1
- /package/{esm2020 → esm2022}/domain/constants.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/create-connection-markers/create-connection-markers-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/create-connection-markers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/create-dom-element.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/create-rounded-rect-from-element/create-rounded-rect-from-element-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/create-rounded-rect-from-element/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/emit-transform-changes/emit-transform-changes.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/emit-transform-changes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-background/add-pattern-to-background/add-pattern-to-background.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-background/add-pattern-to-background/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-background/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-background/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/center-group-or-node/center-group-or-node-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/center-group-or-node/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/fit-to-flow/fit-to-flow-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/fit-to-flow/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-position/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-position/input-canvas-position-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-scale/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-scale/input-canvas-scale-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale/reset-scale-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale-and-center/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/reset-scale-and-center/reset-scale-and-center-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/update-scale/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-canvas/update-scale/update-scale-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/find-closest-input-using-snap-threshold/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/get-all-can-be-connected-input-positions/get-all-can-be-connected-input-positions.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/get-all-can-be-connected-input-positions/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/get-connector-with-rect-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/i-connector-with-rect.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-connection/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/clear-selection/clear-selection.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/clear-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/get-selection/get-selection.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/get-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select/select.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select-all/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select-all/select-all.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select-and-update-node-layer/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/f-selection/select-and-update-node-layer/select-and-update-node-layer.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/get-can-be-selected-items-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/i-selectable-with-rect.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-can-be-selected-items/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-connection-line/get-connection-line.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-connection-line/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-deep-children-nodes-and-groups/get-deep-children-nodes-and-groups.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-deep-children-nodes-and-groups/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-element-rect-in-flow/get-element-rect-in-flow-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-element-rect-in-flow/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-connections/get-flow-state-connections-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-connections/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-nodes/get-flow-state-nodes-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state-nodes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/get-flow-state.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-connection.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-connector.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state-node.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/i-f-flow-state.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-flow-state/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-nodes-rect/get-nodes-rect.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-nodes-rect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-position-in-flow/get-position-in-flow-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-position-in-flow/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-scaled-node-rects-with-flow-position/get-scaled-node-rects-with-flow-position.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/get-scaled-node-rects-with-flow-position/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/i-map.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/is-connection-under-node/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/is-connection-under-node/is-connection-under-node.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/redraw-connections/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/redraw-connections/redraw-connections-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/show-connections-after-calculations/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/show-connections-after-calculations/show-connections-after-calculations-request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-item-layers.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-items-by-parent/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-node-layers-by-groups/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/subscribe-on-transform-changes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/subscribe-on-transform-changes/subscribe-on-transform-changes.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/move-front-elements-before-target-element/index.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/move-front-elements-before-target-element/move-front-elements-before-target-element.request.mjs +0 -0
- /package/{esm2020 → esm2022}/domain/update-item-and-children-layers/update-item-and-children-layers.request.mjs +0 -0
- /package/{esm2020 → esm2022}/errors/conflict-error.mjs +0 -0
- /package/{esm2020 → esm2022}/errors/create-error-class.mjs +0 -0
- /package/{esm2020 → esm2022}/errors/errors.mjs +0 -0
- /package/{esm2020 → esm2022}/errors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/errors/not-found-error.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/domain/i-f-background-pattern.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/f-circle-pattern/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/f-rect-pattern/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-backgroud/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-canvas/domain/f-canvas-change.event.mjs +0 -0
- /package/{esm2020 → esm2022}/f-canvas/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-canvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-canvas/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points-request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/calculate-center-between-points.handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/calculate-connection-center-request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/calculate-connection-center.handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/f-bezier.path-builder.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/f-segment.path-builder.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/f-straight.path-builder.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/e-f-connection-behavior.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/e-f-connection-type.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-connection-identifiers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-connection-text/i-connection-text.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-connection-text/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-connection.injection-token.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-drag-handle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-gradient/i-connection-gradient.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-gradient/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-path/get-path-marker-id.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-path/i-connection-path.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-path/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/f-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-color.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-from-to.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/i-has-connection-text.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/common/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/f-connection-builders.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-response.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-factory-request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-builder/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-center/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-connection-for-create/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-marker/e-f-marker-type.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-marker/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/f-snap-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connection/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side-request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/calculate-connector-connectable-side.handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/e-f-connectable-side.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-connector-base.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-node-input/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-node-outlet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-node-outlet/is-node-outlet.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-node-output/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/f-node-output/is-node-output.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-connectors/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/canvas-move-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/canvas-move-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas-move-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/canvas.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/canvas/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-finalize/create-connection-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/create-connection-drag-handler.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-drag-handler/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/create-connection-from-outlet-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-outlet-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/create-connection-from-output-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-from-output-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/create-connection-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/create-connection-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/f-create-connection.event.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/get-can-be-connected-output-by-outlet.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/get-can-be-connected-output-by-outlet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/create-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/get-input-under-pointer/get-input-under-pointer.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/get-input-under-pointer/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/f-reassign-connection.event.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-finalize/reassign-connection-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/connections/reassign-connection/reassign-connection-preparation/reassign-connection-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-node-padding/get-node-padding.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-node-padding/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-node-rect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-normalized-parent-node-rect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-parent-nodes/get-parent-nodes.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/get-parent-nodes/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/is-array-has-parent-node/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/domain/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/f-selection-change-event.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/i-draggable-item.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/i-f-drag-and-drop-plugin.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/connection-source.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/connection-target.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/connection.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/i-node-move-restrictions.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-input-connection-handlers-to-array/put-input-connection-handlers-to-array.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/put-output-connection-handlers-to-array/put-output-connection-handlers-to-array.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/i-node-with-distance-restrictions.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/create-move-nodes-drag-model-from-selection/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/node-move-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/node-move-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-move-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node-resize-by-child.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/node.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-child-resize-restrictions/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-parent-resize-restrictions/apply-parent-resize-restrictions.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/apply-parent-resize-restrictions/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-position/calculate-changed-position.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-position/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-size/calculate-changed-size.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/calculate-changed-size/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/i-node-resize-restrictions.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/get-node-resize-restrictions/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/get-normalized-children-nodes-rect/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/node-resize-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/node-resize-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/node-resize.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/node-resize/resize-direction.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/single-select/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/single-select/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-draggable/single-select/single-select.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/external-item-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/external-item-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/external-item.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/f-create-node.event.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/domain/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/is-external-item.mjs +0 -0
- /package/{esm2020 → esm2022}/f-external-item/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-flow/f-flow-base.mjs +0 -0
- /package/{esm2020 → esm2022}/f-flow/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-flow/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/i-line-alignment-rect.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/i-line-alignment-result.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/i-nearest-coordinate-result.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/line-element.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/line-service.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/domain/nearest-coordinate.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-line-alignment/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/calculate-flow-point-from-minimap-point/calculate-flow-point-from-minimap-point.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/calculate-flow-point-from-minimap-point/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/check-rect-is-finite.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/f-minimap-data.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/f-minimap.drag-handler.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/minimap-drag-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/minimap-drag-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/minimap-drag-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/domain/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-minimap/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/domain/is-group.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/domain/is-node.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-drag-handle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-node-base.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-resize-handle/e-f-resize-handle-type.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-resize-handle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-resize-observer.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/f-rotate-handle/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-node/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-finalize/selection-area-finalize.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/domain/selection-area-preparation/selection-area-preparation.request.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-selection-area/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/f-storage/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-zoom/index.mjs +0 -0
- /package/{esm2020 → esm2022}/f-zoom/providers.mjs +0 -0
- /package/{esm2020 → esm2022}/foblex-flow.mjs +0 -0
- /package/{esm2020 → esm2022}/i-has-host-element.mjs +0 -0
- /package/{esm2020 → esm2022}/i-has-state-changes.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/change-selection/i-can-change-selection.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/change-selection/index.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/change-visibility/change-visibility.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/change-visibility/i-can-change-visibility.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/change-visibility/index.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/constructor.mjs +0 -0
- /package/{esm2020 → esm2022}/mixins/index.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
|
File without changes
|
/package/{esm2020 → esm2022}/domain/create-connection-markers/create-connection-markers-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/emit-transform-changes/emit-transform-changes.request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-canvas/center-group-or-node/center-group-or-node-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-position/input-canvas-position-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-canvas/input-canvas-scale/input-canvas-scale-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-connection/find-closest-input-using-snap-threshold/index.mjs
RENAMED
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-connection/get-all-can-be-connected-input-positions/index.mjs
RENAMED
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/f-connection/get-connector-with-rect/i-connector-with-rect.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/get-can-be-selected-items/get-can-be-selected-items-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/get-element-rect-in-flow/get-element-rect-in-flow-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/domain/is-connection-under-node/is-connection-under-node.request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-connection/common/domain/calculate-center-between-points/index.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-connection/common/domain/calculate-connection-center/index.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-request.mjs
RENAMED
|
File without changes
|
/package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-builder-response.mjs
RENAMED
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-connection/f-connection-builder/i-f-connection-factory-request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-connectors/domain/calculate-connector-connectable-side/index.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-draggable/connections/create-connection/f-create-connection.event.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-draggable/domain/get-node-padding/get-node-padding.request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/{esm2020 → esm2022}/f-draggable/domain/get-parent-nodes/get-parent-nodes.request.mjs
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|