@foblex/flow 17.0.5 → 17.0.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/domain/f-connection/find-closest-input/find-closest-input.execution.d.ts +11 -0
  2. package/domain/f-connection/{find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.d.ts → find-closest-input/find-closest-input.request.d.ts} +2 -3
  3. package/domain/f-connection/find-closest-input/i-closest-input.d.ts +7 -0
  4. package/domain/f-connection/find-closest-input/index.d.ts +3 -0
  5. package/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.d.ts +2 -3
  6. package/domain/f-connection/index.d.ts +1 -1
  7. package/domain/f-connection/providers.d.ts +2 -2
  8. package/domain/f-draggable/providers.d.ts +1 -1
  9. package/{f-draggable/domain → domain/f-node}/get-parent-nodes/get-parent-nodes.execution.d.ts +2 -4
  10. package/domain/f-node/index.d.ts +2 -0
  11. package/domain/f-node/providers.d.ts +3 -1
  12. package/domain/get-normalized-element-rect/get-normalized-element-rect-request.d.ts +2 -1
  13. package/domain/providers.d.ts +1 -1
  14. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/calculate-connection-line-by-behavior.request.mjs +1 -1
  15. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-center-behavior.mjs +5 -3
  16. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/fixed-outbound-behavior.mjs +19 -29
  17. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.mjs +6 -3
  18. package/esm2022/domain/f-connection/find-closest-input/find-closest-input.execution.mjs +42 -0
  19. package/esm2022/domain/f-connection/find-closest-input/find-closest-input.request.mjs +9 -0
  20. package/esm2022/domain/f-connection/find-closest-input/i-closest-input.mjs +2 -0
  21. package/esm2022/domain/f-connection/find-closest-input/index.mjs +4 -0
  22. package/esm2022/domain/f-connection/get-connector-with-rect/get-connector-with-rect-request.mjs +1 -1
  23. package/esm2022/domain/f-connection/get-connector-with-rect/get-connector-with-rect.execution.mjs +7 -11
  24. package/esm2022/domain/f-connection/index.mjs +2 -2
  25. package/esm2022/domain/f-connection/providers.mjs +3 -3
  26. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.execution.mjs +2 -2
  27. package/esm2022/domain/f-node/get-node-padding/get-node-padding.execution.mjs +34 -0
  28. package/esm2022/domain/f-node/get-node-padding/get-node-padding.request.mjs +9 -0
  29. package/esm2022/domain/f-node/get-node-padding/index.mjs +3 -0
  30. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.execution.mjs +34 -0
  31. package/esm2022/domain/f-node/get-parent-nodes/get-parent-nodes.request.mjs +7 -0
  32. package/esm2022/domain/f-node/get-parent-nodes/index.mjs +3 -0
  33. package/esm2022/domain/f-node/index.mjs +3 -1
  34. package/esm2022/domain/f-node/providers.mjs +5 -1
  35. package/esm2022/domain/f-selection/get-can-be-selected-items/get-can-be-selected-items.execution.mjs +3 -3
  36. package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect-request.mjs +4 -2
  37. package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect.execution.mjs +5 -5
  38. package/esm2022/f-connection/f-connection/f-connection.component.mjs +6 -5
  39. package/esm2022/f-draggable/connections/create-connection/create-connection.drag-handler.mjs +33 -19
  40. package/esm2022/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.mjs +29 -21
  41. package/esm2022/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.mjs +6 -6
  42. package/esm2022/f-draggable/domain/index.mjs +1 -4
  43. package/esm2022/f-draggable/domain/is-array-has-parent-node/is-array-has-parent-node.execution.mjs +2 -2
  44. package/esm2022/f-draggable/domain/is-connection-under-node/is-connection-under-node.execution.mjs +2 -2
  45. package/esm2022/f-draggable/domain/is-connection-under-node/is-connection-under-node.request.mjs +1 -1
  46. package/esm2022/f-draggable/domain/providers.mjs +1 -7
  47. package/esm2022/f-draggable/f-draggable-base.mjs +1 -1
  48. package/esm2022/f-draggable/f-draggable.directive.mjs +8 -2
  49. package/esm2022/f-draggable/node/connection-base-drag-handler.mjs +2 -2
  50. package/esm2022/f-draggable/node/connection-source.drag-handler.mjs +2 -2
  51. package/esm2022/f-draggable/node/connection-target.drag-handler.mjs +2 -2
  52. package/esm2022/f-draggable/node/connection.drag-handler.mjs +2 -2
  53. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +32 -35
  54. package/esm2022/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.mjs +12 -15
  55. package/esm2022/f-draggable/node/node-drag-to-parent-preparation/node-drag-to-parent-preparation.execution.mjs +15 -8
  56. package/esm2022/f-draggable/node/node-drag-to-parent.drag-handler.mjs +32 -17
  57. package/esm2022/f-draggable/node/node-move-finalize/node-move-finalize.execution.mjs +37 -31
  58. package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.execution.mjs +41 -43
  59. package/esm2022/f-draggable/node/node-move-preparation/node-move-preparation.validator.mjs +19 -23
  60. package/esm2022/f-draggable/node/node.drag-handler.mjs +25 -10
  61. package/esm2022/f-draggable/node-resize/get-node-resize-restrictions/get-node-resize-restrictions.execution.mjs +3 -2
  62. package/esm2022/f-draggable/node-resize/get-normalized-children-nodes-rect/get-normalized-children-nodes-rect.execution.mjs +4 -5
  63. package/esm2022/f-draggable/node-resize/node-resize.drag-handler.mjs +3 -3
  64. package/esm2022/f-external-item/domain/external-item-finalize/external-item-finalize.execution.mjs +2 -2
  65. package/esm2022/f-flow.module.mjs +1 -1
  66. package/esm2022/f-line-alignment/domain/index.mjs +1 -2
  67. package/esm2022/f-line-alignment/f-line-alignment.component.mjs +17 -12
  68. package/esm2022/f-node/f-drag-handle.directive.mjs +22 -0
  69. package/esm2022/f-node/index.mjs +3 -3
  70. package/esm2022/f-node/is-node.mjs +4 -0
  71. package/esm2022/f-node/providers.mjs +2 -2
  72. package/f-backgroud/providers.d.ts +1 -1
  73. package/f-connection/f-connection/f-connection.component.d.ts +4 -2
  74. package/f-connection/providers.d.ts +1 -1
  75. package/f-connectors/providers.d.ts +1 -1
  76. package/f-draggable/connections/create-connection/create-connection.drag-handler.d.ts +8 -4
  77. package/f-draggable/connections/providers.d.ts +1 -1
  78. package/f-draggable/connections/reassign-connection/reassign-connection.drag-handler.d.ts +7 -4
  79. package/f-draggable/domain/get-normalized-parent-node-rect/get-normalized-parent-node-rect.execution.d.ts +1 -1
  80. package/f-draggable/domain/index.d.ts +0 -3
  81. package/f-draggable/domain/providers.d.ts +1 -4
  82. package/f-draggable/f-draggable-base.d.ts +2 -0
  83. package/f-draggable/f-draggable.directive.d.ts +4 -2
  84. package/f-draggable/node/connection-base-drag-handler.d.ts +1 -1
  85. package/f-draggable/node/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.d.ts +7 -9
  86. package/f-draggable/node/create-move-nodes-drag-model-from-selection/domain/get-node-move-restrictions/get-node-move-restrictions.execution.d.ts +3 -4
  87. package/f-draggable/node/create-move-nodes-drag-model-from-selection/providers.d.ts +1 -1
  88. package/f-draggable/node/node-drag-to-parent-preparation/node-drag-to-parent-preparation.execution.d.ts +4 -3
  89. package/f-draggable/node/node-drag-to-parent.drag-handler.d.ts +9 -4
  90. package/f-draggable/node/node-move-finalize/node-move-finalize.execution.d.ts +11 -11
  91. package/f-draggable/node/node-move-preparation/node-move-preparation.execution.d.ts +11 -14
  92. package/f-draggable/node/node-move-preparation/node-move-preparation.validator.d.ts +6 -9
  93. package/f-draggable/node/node.drag-handler.d.ts +9 -5
  94. package/f-draggable/node/providers.d.ts +1 -1
  95. package/f-draggable/providers.d.ts +1 -1
  96. package/f-flow.module.d.ts +1 -1
  97. package/f-line-alignment/domain/index.d.ts +0 -1
  98. package/f-line-alignment/f-line-alignment.component.d.ts +2 -1
  99. package/f-minimap/domain/providers.d.ts +1 -1
  100. package/f-node/{f-drag-handle/f-drag-handle.directive.d.ts → f-drag-handle.directive.d.ts} +1 -1
  101. package/f-node/index.d.ts +2 -2
  102. package/f-node/providers.d.ts +2 -2
  103. package/f-storage/providers.d.ts +1 -1
  104. package/fesm2022/foblex-flow.mjs +409 -482
  105. package/fesm2022/foblex-flow.mjs.map +1 -1
  106. package/package.json +3 -3
  107. package/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.d.ts +0 -11
  108. package/domain/f-connection/find-closest-input-using-snap-threshold/index.d.ts +0 -2
  109. package/esm2022/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.execution.mjs +0 -39
  110. package/esm2022/domain/f-connection/find-closest-input-using-snap-threshold/find-closest-input-using-snap-threshold.request.mjs +0 -11
  111. package/esm2022/domain/f-connection/find-closest-input-using-snap-threshold/index.mjs +0 -3
  112. package/esm2022/f-draggable/domain/get-node-padding/get-node-padding.execution.mjs +0 -34
  113. package/esm2022/f-draggable/domain/get-node-padding/get-node-padding.request.mjs +0 -9
  114. package/esm2022/f-draggable/domain/get-node-padding/index.mjs +0 -3
  115. package/esm2022/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.mjs +0 -30
  116. package/esm2022/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.request.mjs +0 -7
  117. package/esm2022/f-draggable/domain/get-normalized-node-rect/index.mjs +0 -3
  118. package/esm2022/f-draggable/domain/get-parent-nodes/get-parent-nodes.execution.mjs +0 -37
  119. package/esm2022/f-draggable/domain/get-parent-nodes/get-parent-nodes.request.mjs +0 -7
  120. package/esm2022/f-draggable/domain/get-parent-nodes/index.mjs +0 -3
  121. package/esm2022/f-line-alignment/domain/nearest-coordinate.mjs +0 -104
  122. package/esm2022/f-node/domain/index.mjs +0 -2
  123. package/esm2022/f-node/domain/is-node.mjs +0 -4
  124. package/esm2022/f-node/f-drag-handle/f-drag-handle.directive.mjs +0 -22
  125. package/esm2022/f-node/f-drag-handle/index.mjs +0 -2
  126. package/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.execution.d.ts +0 -13
  127. package/f-draggable/domain/get-normalized-node-rect/get-normalized-node-rect.request.d.ts +0 -5
  128. package/f-draggable/domain/get-normalized-node-rect/index.d.ts +0 -2
  129. package/f-line-alignment/domain/nearest-coordinate.d.ts +0 -27
  130. package/f-node/domain/index.d.ts +0 -1
  131. package/f-node/f-drag-handle/index.d.ts +0 -1
  132. /package/{f-draggable/domain → domain/f-node}/get-node-padding/get-node-padding.execution.d.ts +0 -0
  133. /package/{f-draggable/domain → domain/f-node}/get-node-padding/get-node-padding.request.d.ts +0 -0
  134. /package/{f-draggable/domain → domain/f-node}/get-node-padding/index.d.ts +0 -0
  135. /package/{f-draggable/domain → domain/f-node}/get-parent-nodes/get-parent-nodes.request.d.ts +0 -0
  136. /package/{f-draggable/domain → domain/f-node}/get-parent-nodes/index.d.ts +0 -0
  137. /package/f-node/{domain/is-node.d.ts → is-node.d.ts} +0 -0
@@ -1 +1 @@
1
- export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./canvas").CanvasMoveFinalizeExecution | typeof import("./canvas").CanvasMoveFinalizeValidator | typeof import("./canvas").CanvasMovePreparationExecution | typeof import("./canvas").CanvasMovePreparationValidator | typeof import("./connections").GetInputUnderPointerExecution | typeof import("./connections").GetInputUnderPointerValidator | typeof import("./connections").CreateConnectionFinalizeExecution | typeof import("./connections").CreateConnectionFinalizeValidator | typeof import("./connections").CreateConnectionDragHandlerExecution | typeof import("./connections").CreateConnectionFromOutletPreparationExecution | typeof import("./connections").GetCanBeConnectedOutputByOutletExecution | typeof import("./connections").GetCanBeConnectedOutputByOutletValidator | typeof import("./connections").CreateConnectionFromOutputPreparationExecution | typeof import("./connections").CreateConnectionFromOutputPreparationValidator | typeof import("./connections").CreateConnectionPreparationExecution | typeof import("./connections").CreateConnectionPreparationValidator | typeof import("./connections").ReassignConnectionFinalizeExecution | typeof import("./connections").ReassignConnectionFinalizeValidator | typeof import("./connections").ReassignConnectionPreparationExecution | typeof import("./connections").ReassignConnectionPreparationValidator | typeof import("./domain").GetNodePaddingExecution | typeof import("./domain").GetNormalizedNodeRectExecution | typeof import("./domain").GetNormalizedParentNodeRectExecution | typeof import("./domain").GetParentNodesExecution | typeof import("./domain").IsArrayHasParentNodeExecution | typeof import("./domain").IsConnectionUnderNodeExecution | typeof import("./domain").IsConnectionUnderNodeValidator | typeof import("./single-select").SingleSelectExecution | typeof import("./single-select").SingleSelectValidator | typeof import("../f-external-item").ExternalItemFinalizeExecution | typeof import("../f-external-item").ExternalItemFinalizeValidator | typeof import("../f-external-item").ExternalItemPreparationExecution | typeof import("../f-external-item").ExternalItemPreparationValidator | typeof import("../f-external-item").PreventDefaultIsExternalItemExecution | typeof import("./node").GetNodeMoveRestrictionsExecution | typeof import("./node").PutInputConnectionHandlersToArrayExecution | typeof import("./node").PutOutputConnectionHandlersToArrayExecution | typeof import("./node").CreateMoveNodesDragModelFromSelectionExecution | typeof import("./node").NodeMoveFinalizeExecution | typeof import("./node").NodeMoveFinalizeValidator | typeof import("./node").NodeMovePreparationExecution | typeof import("./node").NodeMovePreparationValidator | typeof import("./node").NodeDragToParentPreparationExecution | typeof import("./node").NodeDragToParentPreparationValidator | typeof import("./node").NodeDragToParentFinalizeExecution | typeof import("./node").NodeDragToParentFinalizeValidator | typeof import("./node-resize").ApplyChildResizeRestrictionsExecution | typeof import("./node-resize").ApplyParentResizeRestrictionsExecution | typeof import("./node-resize").CalculateChangedPositionExecution | typeof import("./node-resize").CalculateChangedSizeExecution | typeof import("./node-resize").GetNormalizedChildrenNodesRectExecution | typeof import("./node-resize").GetNodeResizeRestrictionsExecution | typeof import("./node-resize").NodeResizeFinalizeExecution | typeof import("./node-resize").NodeResizeFinalizeValidator | typeof import("./node-resize").NodeResizePreparationExecution | typeof import("./node-resize").NodeResizePreparationValidator | typeof import("../f-selection-area").SelectionAreaFinalizeExecution | typeof import("../f-selection-area").SelectionAreaFinalizeValidator | typeof import("../f-selection-area").SelectionAreaPreparationExecution | typeof import("../f-selection-area").SelectionAreaPreparationValidator | typeof import("@foblex/flow").CalculateFlowPointFromMinimapPointExecution | typeof import("@foblex/flow").MinimapDragFinalizeExecution | typeof import("@foblex/flow").MinimapDragFinalizeValidator | typeof import("@foblex/flow").MinimapDragPreparationExecution | typeof import("@foblex/flow").MinimapDragPreparationValidator | typeof import("@foblex/flow").MinimapDrawNodesExecution | typeof import("@foblex/flow").MinimapCalculateSvgScaleAndViewBoxExecution | typeof import("@foblex/flow").MinimapCalculateViewBoxExecution)[];
1
+ export declare const F_DRAGGABLE_PROVIDERS: (typeof import("./canvas").CanvasMoveFinalizeExecution | typeof import("./canvas").CanvasMoveFinalizeValidator | typeof import("./canvas").CanvasMovePreparationExecution | typeof import("./canvas").CanvasMovePreparationValidator | typeof import("./connections").GetCanBeConnectedOutputByOutletExecution | typeof import("./connections").GetCanBeConnectedOutputByOutletValidator | typeof import("../f-external-item").ExternalItemFinalizeExecution | typeof import("../f-external-item").ExternalItemFinalizeValidator | typeof import("../f-external-item").ExternalItemPreparationExecution | typeof import("../f-external-item").ExternalItemPreparationValidator | typeof import("../f-external-item").PreventDefaultIsExternalItemExecution | typeof import("./node").PutInputConnectionHandlersToArrayExecution | typeof import("./node").PutOutputConnectionHandlersToArrayExecution | typeof import("./domain").GetNormalizedParentNodeRectExecution | typeof import("./domain").IsArrayHasParentNodeExecution | typeof import("./domain").IsConnectionUnderNodeExecution | typeof import("./domain").IsConnectionUnderNodeValidator | typeof import("./node").GetNodeMoveRestrictionsExecution | typeof import("./node").CreateMoveNodesDragModelFromSelectionExecution | typeof import("./node").NodeDragToParentFinalizeExecution | typeof import("./node").NodeDragToParentFinalizeValidator | typeof import("./node").NodeDragToParentPreparationExecution | typeof import("./node").NodeDragToParentPreparationValidator | typeof import("./node").NodeMovePreparationExecution | typeof import("./node").NodeMovePreparationValidator | typeof import("./node").NodeMoveFinalizeExecution | typeof import("./node").NodeMoveFinalizeValidator | typeof import("./connections").ReassignConnectionFinalizeExecution | typeof import("./connections").ReassignConnectionFinalizeValidator | typeof import("./connections").ReassignConnectionPreparationExecution | typeof import("./connections").ReassignConnectionPreparationValidator | typeof import("./connections").GetInputUnderPointerExecution | typeof import("./connections").GetInputUnderPointerValidator | typeof import("./connections").CreateConnectionFinalizeExecution | typeof import("./connections").CreateConnectionFinalizeValidator | typeof import("./connections").CreateConnectionDragHandlerExecution | typeof import("./connections").CreateConnectionFromOutletPreparationExecution | typeof import("./connections").CreateConnectionFromOutputPreparationExecution | typeof import("./connections").CreateConnectionFromOutputPreparationValidator | typeof import("./connections").CreateConnectionPreparationExecution | typeof import("./connections").CreateConnectionPreparationValidator | typeof import("./node-resize").ApplyChildResizeRestrictionsExecution | typeof import("./node-resize").ApplyParentResizeRestrictionsExecution | typeof import("./node-resize").CalculateChangedPositionExecution | typeof import("./node-resize").CalculateChangedSizeExecution | typeof import("./node-resize").GetNormalizedChildrenNodesRectExecution | typeof import("./node-resize").GetNodeResizeRestrictionsExecution | typeof import("./node-resize").NodeResizeFinalizeExecution | typeof import("./node-resize").NodeResizeFinalizeValidator | typeof import("./node-resize").NodeResizePreparationExecution | typeof import("./node-resize").NodeResizePreparationValidator | typeof import("./single-select").SingleSelectExecution | typeof import("./single-select").SingleSelectValidator | typeof import("@foblex/flow").CalculateFlowPointFromMinimapPointExecution | typeof import("@foblex/flow").MinimapDragPreparationExecution | typeof import("@foblex/flow").MinimapDragPreparationValidator | typeof import("@foblex/flow").MinimapDragFinalizeExecution | typeof import("@foblex/flow").MinimapDragFinalizeValidator | typeof import("@foblex/flow").MinimapDrawNodesExecution | typeof import("@foblex/flow").MinimapCalculateViewBoxExecution | typeof import("@foblex/flow").MinimapCalculateSvgScaleAndViewBoxExecution | typeof import("../f-selection-area").SelectionAreaFinalizeExecution | typeof import("../f-selection-area").SelectionAreaFinalizeValidator | typeof import("../f-selection-area").SelectionAreaPreparationExecution | typeof import("../f-selection-area").SelectionAreaPreparationValidator)[];
@@ -27,7 +27,7 @@ import * as i25 from "./f-minimap/f-minimap-view.directive";
27
27
  import * as i26 from "./f-minimap/f-minimap-flow.directive";
28
28
  import * as i27 from "./f-node/f-group.directive";
29
29
  import * as i28 from "./f-node/f-node.directive";
30
- import * as i29 from "./f-node/f-drag-handle/f-drag-handle.directive";
30
+ import * as i29 from "./f-node/f-drag-handle.directive";
31
31
  import * as i30 from "./f-node/f-resize-handle/f-resize-handle.directive";
32
32
  import * as i31 from "./f-selection-area/f-selection-area.component";
33
33
  import * as i32 from "./f-draggable/f-draggable.directive";
@@ -3,4 +3,3 @@ export * from './i-line-alignment-result';
3
3
  export * from './i-nearest-coordinate-result';
4
4
  export * from './line-element';
5
5
  export * from './line-service';
6
- export * from './nearest-coordinate';
@@ -9,6 +9,7 @@ import * as i0 from "@angular/core";
9
9
  export declare class FLineAlignmentComponent extends FLineAlignmentBase implements AfterViewInit {
10
10
  private elementReference;
11
11
  private fDraggableDataContext;
12
+ private DEBOUNCE_TIME;
12
13
  fAlignThreshold: number;
13
14
  get hostElement(): HTMLElement;
14
15
  private lineService;
@@ -17,8 +18,8 @@ export declare class FLineAlignmentComponent extends FLineAlignmentBase implemen
17
18
  private rects;
18
19
  private _fMediator;
19
20
  private _fCanvas;
21
+ private _debounceTimer;
20
22
  private get _transform();
21
- private get _fFlowHostElement();
22
23
  constructor(elementReference: ElementRef<HTMLElement>, fDraggableDataContext: FDraggableDataContext, fBrowser: BrowserService);
23
24
  ngAfterViewInit(): void;
24
25
  initialize(allNodes: FNodeBase[], currentNodes: FNodeBase[]): void;
@@ -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-finalize").MinimapDragFinalizeExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeValidator | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationValidator | typeof MinimapDrawNodesExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution | typeof MinimapCalculateViewBoxExecution)[];
5
+ export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationValidator | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeValidator | typeof MinimapDrawNodesExecution | typeof MinimapCalculateViewBoxExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution)[];
@@ -1,5 +1,5 @@
1
1
  import { InjectionToken } from "@angular/core";
2
- import { IHasHostElement } from '../../i-has-host-element';
2
+ import { IHasHostElement } from '../i-has-host-element';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare const F_DRAG_HANDLE: InjectionToken<FDragHandleDirective>;
5
5
  export declare class FDragHandleDirective implements IHasHostElement {
package/f-node/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
- export * from './domain';
2
- export * from './f-drag-handle';
3
1
  export * from './f-resize-handle';
4
2
  export * from './f-rotate-handle';
3
+ export * from './f-drag-handle.directive';
5
4
  export * from './f-group.directive';
6
5
  export * from './f-node.directive';
7
6
  export * from './f-node-base';
7
+ export * from './is-node';
8
8
  export * from './providers';
@@ -1,5 +1,5 @@
1
1
  import { FNodeDirective } from './f-node.directive';
2
- import { FDragHandleDirective } from './f-drag-handle';
3
2
  import { FResizeHandleDirective } from './f-resize-handle';
4
3
  import { FGroupDirective } from './f-group.directive';
5
- export declare const F_NODE_PROVIDERS: (typeof FNodeDirective | typeof FGroupDirective | typeof FDragHandleDirective | typeof FResizeHandleDirective)[];
4
+ import { FDragHandleDirective } from './f-drag-handle.directive';
5
+ export declare const F_NODE_PROVIDERS: (typeof FResizeHandleDirective | typeof FDragHandleDirective | typeof FGroupDirective | typeof FNodeDirective)[];
@@ -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 FComponentsStore | typeof NotifyDataChangedExecution | typeof ListenCountChangesExecution | typeof ListenDataChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];
7
+ export declare const F_STORAGE_PROVIDERS: (typeof NotifyDataChangedExecution | typeof FComponentsStore | typeof ListenDataChangesExecution | typeof ListenCountChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];