@foblex/flow 17.4.0 → 17.4.2

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 (212) hide show
  1. package/domain/css-cls.d.ts +3 -0
  2. package/domain/f-background/add-background-to-store/add-background-to-store.execution.d.ts +1 -1
  3. package/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.d.ts +3 -6
  4. package/domain/f-background/remove-background-from-store/remove-background-from-store.execution.d.ts +1 -1
  5. package/domain/f-background/set-background-transform/set-background-transform.execution.d.ts +1 -1
  6. package/domain/f-canvas/input-canvas-position/input-canvas-position.execution.d.ts +1 -1
  7. package/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.d.ts +1 -1
  8. package/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.d.ts +5 -5
  9. package/domain/f-connection/redraw-connections/redraw-connections.execution.d.ts +2 -2
  10. package/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.execution.d.ts +1 -1
  11. package/domain/f-node/calculate-input-connections/calculate-input-connections-request.d.ts +5 -0
  12. package/domain/f-node/calculate-input-connections/calculate-input-connections.execution.d.ts +12 -0
  13. package/domain/f-node/calculate-input-connections/index.d.ts +2 -0
  14. package/domain/f-node/calculate-output-connections/calculate-output-connections-request.d.ts +5 -0
  15. package/domain/f-node/calculate-output-connections/calculate-output-connections.execution.d.ts +12 -0
  16. package/domain/f-node/calculate-output-connections/index.d.ts +2 -0
  17. package/domain/f-node/index.d.ts +2 -0
  18. package/domain/f-node/providers.d.ts +3 -1
  19. package/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.execution.d.ts +1 -1
  20. package/domain/get-normalized-element-rect/get-normalized-element-rect.execution.d.ts +5 -3
  21. package/domain/providers.d.ts +1 -2
  22. package/domain/sort-item-layers/sort-item-layers.execution.d.ts +4 -5
  23. package/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.d.ts +6 -9
  24. package/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.d.ts +12 -14
  25. package/domain/update-item-and-children-layers/update-item-and-children-layers.execution.d.ts +15 -16
  26. package/esm2022/domain/css-cls.mjs +4 -1
  27. package/esm2022/domain/f-background/add-background-to-store/add-background-to-store.execution.mjs +1 -1
  28. package/esm2022/domain/f-background/add-pattern-to-background/add-pattern-to-background.execution.mjs +15 -19
  29. package/esm2022/domain/f-background/remove-background-from-store/remove-background-from-store.execution.mjs +1 -1
  30. package/esm2022/domain/f-background/set-background-transform/set-background-transform.execution.mjs +1 -1
  31. package/esm2022/domain/f-canvas/input-canvas-position/input-canvas-position.execution.mjs +2 -1
  32. package/esm2022/domain/f-canvas/input-canvas-scale/input-canvas-scale.execution.mjs +2 -2
  33. package/esm2022/domain/f-canvas/reset-scale-and-center/reset-scale-and-center.execution.mjs +12 -12
  34. package/esm2022/domain/f-connection/calculate-connection-line-by-behavior/floating-behavior.mjs +1 -1
  35. package/esm2022/domain/f-connection/redraw-connections/redraw-connections.execution.mjs +2 -2
  36. package/esm2022/domain/f-connectors/get-connector-and-rect/get-connector-and-rect.execution.mjs +1 -1
  37. package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections-request.mjs +7 -0
  38. package/esm2022/domain/f-node/calculate-input-connections/calculate-input-connections.execution.mjs +31 -0
  39. package/esm2022/domain/f-node/calculate-input-connections/index.mjs +3 -0
  40. package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections-request.mjs +7 -0
  41. package/esm2022/domain/f-node/calculate-output-connections/calculate-output-connections.execution.mjs +31 -0
  42. package/esm2022/domain/f-node/calculate-output-connections/index.mjs +3 -0
  43. package/esm2022/domain/f-node/index.mjs +3 -1
  44. package/esm2022/domain/f-node/providers.mjs +5 -1
  45. package/esm2022/domain/f-node/update-node-when-state-or-size-changed/update-node-when-state-or-size-changed.execution.mjs +1 -1
  46. package/esm2022/domain/get-normalized-element-rect/get-normalized-element-rect.execution.mjs +12 -4
  47. package/esm2022/domain/sort-item-layers/sort-item-layers.execution.mjs +14 -16
  48. package/esm2022/domain/sort-item-layers/sort-items-by-parent/sort-items-by-parent.execution.mjs +21 -27
  49. package/esm2022/domain/sort-item-layers/sort-node-layers-by-groups/sort-node-layers.execution.mjs +32 -34
  50. package/esm2022/domain/update-item-and-children-layers/update-item-and-children-layers.execution.mjs +46 -48
  51. package/esm2022/f-backgroud/f-background.component.mjs +9 -12
  52. package/esm2022/f-backgroud/f-circle-pattern/f-circle-pattern.component.mjs +15 -21
  53. package/esm2022/f-backgroud/f-rect-pattern/f-rect-pattern.component.mjs +18 -28
  54. package/esm2022/f-canvas/f-canvas-base.mjs +1 -1
  55. package/esm2022/f-canvas/f-canvas.component.mjs +29 -35
  56. package/esm2022/f-canvas/providers.mjs +1 -1
  57. package/esm2022/f-connection/common/f-connection-base.mjs +5 -5
  58. package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle-end.component.mjs +37 -0
  59. package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle-start.component.mjs +37 -0
  60. package/esm2022/f-connection/common/f-drag-handle/index.mjs +3 -2
  61. package/esm2022/f-connection/common/f-path/f-connection-path.component.mjs +2 -2
  62. package/esm2022/f-connection/common/f-selection/f-connection-selection.component.mjs +2 -2
  63. package/esm2022/f-connection/f-connection/f-connection.component.mjs +6 -6
  64. package/esm2022/f-connection/f-connection-for-create/f-connection-for-create.component.mjs +6 -6
  65. package/esm2022/f-connection/f-snap-connection/f-snap-connection.component.mjs +6 -6
  66. package/esm2022/f-connection/providers.mjs +4 -3
  67. package/esm2022/f-draggable/f-connection/f-create-connection/create-finalize/f-create-connection-finalize.execution.mjs +2 -3
  68. package/esm2022/f-draggable/f-connection/f-create-connection/f-create-connection.drag-handler.mjs +3 -3
  69. package/esm2022/f-draggable/f-connection/f-create-connection/get-first-connectable-output/get-first-connectable-output.execution.mjs +1 -1
  70. package/esm2022/f-draggable/f-connection/f-reassign-connection/f-reassign-connection.drag-handler.mjs +3 -3
  71. package/esm2022/f-draggable/f-connection/f-reassign-connection/reassign-preparation/f-reassign-connection-preparation.execution.mjs +3 -3
  72. package/esm2022/f-draggable/f-draggable.directive.mjs +8 -2
  73. package/esm2022/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.mjs +5 -5
  74. package/esm2022/f-draggable/f-node-move/connection-drag-handlers/source-target-connection.drag-handler.mjs +1 -1
  75. package/esm2022/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.mjs +1 -1
  76. package/esm2022/f-draggable/f-node-move/f-line-alignment.drag-handler.mjs +2 -2
  77. package/esm2022/f-draggable/f-node-move/f-node-move.drag-handler.mjs +1 -1
  78. package/esm2022/f-draggable/f-node-move/f-summary-node-move.drag-handler.mjs +1 -1
  79. package/esm2022/f-draggable/f-node-move/point-bounds-limiter.mjs +1 -1
  80. package/esm2022/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.execution.mjs +2 -2
  81. package/esm2022/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.mjs +4 -4
  82. package/esm2022/f-draggable/f-node-resize/calculate-changed-position/calculate-changed-position.execution.mjs +1 -1
  83. package/esm2022/f-draggable/f-node-resize/calculate-changed-size/calculate-changed-size.execution.mjs +1 -1
  84. package/esm2022/f-draggable/f-node-resize/calculate-changed-size/calculate-changed-size.request.mjs +1 -1
  85. package/esm2022/f-draggable/f-node-resize/f-node-resize.drag-handler.mjs +7 -6
  86. package/esm2022/f-draggable/f-node-rotate/calculate-difference-after-rotation.mjs +19 -0
  87. package/esm2022/f-draggable/f-node-rotate/f-node-rotate.drag-handler.mjs +69 -0
  88. package/esm2022/f-draggable/f-node-rotate/index.mjs +5 -0
  89. package/esm2022/f-draggable/f-node-rotate/providers.mjs +7 -0
  90. package/esm2022/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.execution.mjs +31 -0
  91. package/esm2022/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.request.mjs +7 -0
  92. package/esm2022/f-draggable/f-node-rotate/rotate-finalize/index.mjs +3 -0
  93. package/esm2022/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.mjs +86 -0
  94. package/esm2022/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.request.mjs +9 -0
  95. package/esm2022/f-draggable/f-node-rotate/rotate-preparation/index.mjs +3 -0
  96. package/esm2022/f-draggable/index.mjs +2 -1
  97. package/esm2022/f-draggable/providers.mjs +3 -1
  98. package/esm2022/f-external-item/domain/create-placeholder/f-external-item-create-placeholder.execution.mjs +1 -1
  99. package/esm2022/f-external-item/domain/create-preview/f-external-item-create-preview.execution.mjs +1 -1
  100. package/esm2022/f-external-item/domain/f-external-item.drag-handler.mjs +2 -2
  101. package/esm2022/f-external-item/domain/finalize/f-external-item-finalize.execution.mjs +1 -1
  102. package/esm2022/f-external-item/domain/preparation/f-external-item-preparation.execution.mjs +1 -1
  103. package/esm2022/f-external-item/f-external-item-placeholder.directive.mjs +1 -1
  104. package/esm2022/f-external-item/f-external-item-preview.directive.mjs +1 -1
  105. package/esm2022/f-external-item/f-external-item.directive.mjs +1 -1
  106. package/esm2022/f-external-item/index.mjs +2 -1
  107. package/esm2022/f-external-item/providers.mjs +5 -0
  108. package/esm2022/f-flow/f-flow-base.mjs +1 -1
  109. package/esm2022/f-flow/f-flow.component.mjs +12 -21
  110. package/esm2022/f-flow.module.mjs +48 -38
  111. package/esm2022/f-line-alignment/f-line-alignment-base.mjs +1 -1
  112. package/esm2022/f-line-alignment/f-line-alignment.component.mjs +5 -7
  113. package/esm2022/f-node/f-drag-handle.directive.mjs +3 -9
  114. package/esm2022/f-node/f-group.directive.mjs +19 -2
  115. package/esm2022/f-node/f-node-base.mjs +6 -2
  116. package/esm2022/f-node/f-node.directive.mjs +19 -2
  117. package/esm2022/f-node/f-resize-handle/f-resize-handle.directive.mjs +13 -24
  118. package/esm2022/f-node/f-rotate-handle/f-rotate-handle.directive.mjs +14 -26
  119. package/esm2022/f-node/f-rotate-handle/index.mjs +2 -1
  120. package/esm2022/f-node/f-rotate-handle/is-rotate-handle.mjs +5 -0
  121. package/esm2022/f-node/providers.mjs +3 -1
  122. package/esm2022/f-zoom/index.mjs +2 -1
  123. package/esm2022/f-zoom/providers.mjs +5 -0
  124. package/esm2022/reactivity/index.mjs +2 -1
  125. package/esm2022/reactivity/mediator-effect.mjs +14 -0
  126. package/f-backgroud/f-background.component.d.ts +4 -5
  127. package/f-backgroud/f-circle-pattern/f-circle-pattern.component.d.ts +9 -10
  128. package/f-backgroud/f-rect-pattern/f-rect-pattern.component.d.ts +11 -12
  129. package/f-backgroud/providers.d.ts +1 -1
  130. package/f-canvas/f-canvas-base.d.ts +5 -5
  131. package/f-canvas/f-canvas.component.d.ts +13 -10
  132. package/f-connection/common/f-connection-base.d.ts +4 -4
  133. package/f-connection/common/f-drag-handle/f-connection-drag-handle-end.component.d.ts +13 -0
  134. package/f-connection/common/f-drag-handle/f-connection-drag-handle-start.component.d.ts +13 -0
  135. package/f-connection/common/f-drag-handle/index.d.ts +2 -1
  136. package/f-connection/f-connection/f-connection.component.d.ts +2 -2
  137. package/f-connection/f-connection-for-create/f-connection-for-create.component.d.ts +2 -2
  138. package/f-connection/f-snap-connection/f-snap-connection.component.d.ts +2 -2
  139. package/f-connection/providers.d.ts +2 -2
  140. package/f-draggable/f-connection/f-create-connection/get-first-connectable-output/get-first-connectable-output.execution.d.ts +1 -1
  141. package/f-draggable/f-connection/providers.d.ts +1 -1
  142. package/f-draggable/f-draggable.directive.d.ts +2 -1
  143. package/f-draggable/f-drop-to-group/providers.d.ts +1 -1
  144. package/f-draggable/f-node-move/connection-drag-handlers/base-connection.drag-handler.d.ts +2 -2
  145. package/f-draggable/f-node-move/connection-drag-handlers/source-target-connection.drag-handler.d.ts +1 -1
  146. package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/create-move-nodes-drag-model-from-selection.execution.d.ts +3 -3
  147. package/f-draggable/f-node-move/create-move-nodes-drag-model-from-selection/providers.d.ts +1 -1
  148. package/f-draggable/f-node-move/f-line-alignment.drag-handler.d.ts +2 -2
  149. package/f-draggable/f-node-move/f-node-move.drag-handler.d.ts +1 -1
  150. package/f-draggable/f-node-move/f-summary-node-move.drag-handler.d.ts +3 -3
  151. package/f-draggable/f-node-move/point-bounds-limiter.d.ts +1 -1
  152. package/f-draggable/f-node-move/providers.d.ts +1 -1
  153. package/f-draggable/f-node-resize/apply-child-resize-restrictions/apply-child-resize-restrictions.request.d.ts +3 -2
  154. package/f-draggable/f-node-resize/f-node-resize.drag-handler.d.ts +3 -3
  155. package/f-draggable/f-node-rotate/calculate-difference-after-rotation.d.ts +20 -0
  156. package/f-draggable/f-node-rotate/f-node-rotate.drag-handler.d.ts +34 -0
  157. package/f-draggable/f-node-rotate/index.d.ts +4 -0
  158. package/f-draggable/f-node-rotate/providers.d.ts +3 -0
  159. package/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.execution.d.ts +10 -0
  160. package/f-draggable/f-node-rotate/rotate-finalize/f-node-rotate-finalize.request.d.ts +5 -0
  161. package/f-draggable/f-node-rotate/rotate-finalize/index.d.ts +2 -0
  162. package/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.execution.d.ts +22 -0
  163. package/f-draggable/f-node-rotate/rotate-preparation/f-node-rotate-preparation.request.d.ts +7 -0
  164. package/f-draggable/f-node-rotate/rotate-preparation/index.d.ts +2 -0
  165. package/f-draggable/index.d.ts +1 -0
  166. package/f-draggable/providers.d.ts +1 -1
  167. package/f-external-item/domain/create-placeholder/f-external-item-create-placeholder.execution.d.ts +2 -2
  168. package/f-external-item/domain/create-preview/f-external-item-create-preview.execution.d.ts +2 -2
  169. package/f-external-item/domain/finalize/f-external-item-finalize.execution.d.ts +5 -5
  170. package/f-external-item/domain/preparation/f-external-item-preparation.execution.d.ts +3 -3
  171. package/f-external-item/f-external-item-placeholder.directive.d.ts +2 -2
  172. package/f-external-item/f-external-item-preview.directive.d.ts +2 -2
  173. package/f-external-item/f-external-item.directive.d.ts +2 -2
  174. package/f-external-item/index.d.ts +1 -0
  175. package/f-external-item/providers.d.ts +2 -0
  176. package/f-flow/f-flow-base.d.ts +3 -3
  177. package/f-flow/f-flow.component.d.ts +8 -10
  178. package/f-flow.module.d.ts +36 -32
  179. package/f-line-alignment/f-line-alignment-base.d.ts +2 -2
  180. package/f-line-alignment/f-line-alignment.component.d.ts +4 -4
  181. package/f-minimap/domain/providers.d.ts +1 -1
  182. package/f-minimap/providers.d.ts +1 -1
  183. package/f-node/f-drag-handle.directive.d.ts +1 -6
  184. package/f-node/f-group.directive.d.ts +6 -3
  185. package/f-node/f-node-base.d.ts +4 -0
  186. package/f-node/f-node.directive.d.ts +6 -3
  187. package/f-node/f-resize-handle/f-resize-handle.directive.d.ts +4 -10
  188. package/f-node/f-rotate-handle/f-rotate-handle.directive.d.ts +4 -8
  189. package/f-node/f-rotate-handle/index.d.ts +1 -0
  190. package/f-node/f-rotate-handle/is-rotate-handle.d.ts +1 -0
  191. package/f-node/providers.d.ts +1 -2
  192. package/f-selection-area/domain/providers.d.ts +1 -1
  193. package/f-storage/providers.d.ts +1 -1
  194. package/f-zoom/index.d.ts +1 -0
  195. package/f-zoom/providers.d.ts +2 -0
  196. package/fesm2022/foblex-flow.mjs +676 -409
  197. package/fesm2022/foblex-flow.mjs.map +1 -1
  198. package/package.json +2 -2
  199. package/reactivity/index.d.ts +1 -0
  200. package/reactivity/mediator-effect.d.ts +2 -0
  201. package/errors/conflict-error.d.ts +0 -6
  202. package/errors/create-error-class.d.ts +0 -1
  203. package/errors/errors.d.ts +0 -3
  204. package/errors/index.d.ts +0 -4
  205. package/errors/not-found-error.d.ts +0 -6
  206. package/esm2022/errors/conflict-error.mjs +0 -7
  207. package/esm2022/errors/create-error-class.mjs +0 -10
  208. package/esm2022/errors/errors.mjs +0 -12
  209. package/esm2022/errors/index.mjs +0 -5
  210. package/esm2022/errors/not-found-error.mjs +0 -7
  211. package/esm2022/f-connection/common/f-drag-handle/f-connection-drag-handle.component.mjs +0 -41
  212. package/f-connection/common/f-drag-handle/f-connection-drag-handle.component.d.ts +0 -17
@@ -1,8 +1,8 @@
1
1
  import { OnDestroy, OnInit } from '@angular/core';
2
2
  import * as i0 from "@angular/core";
3
3
  export declare class FExternalItemPreviewDirective<T = any> implements OnInit, OnDestroy {
4
- private _fExternalItem;
5
- private _templateRef;
4
+ private readonly _fExternalItem;
5
+ private readonly _templateRef;
6
6
  ngOnInit(): void;
7
7
  ngOnDestroy(): void;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FExternalItemPreviewDirective<any>, never>;
@@ -2,8 +2,8 @@ import { OnDestroy, OnInit, TemplateRef } from '@angular/core';
2
2
  import { FExternalItemBase } from './f-external-item-base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FExternalItemDirective<TData> extends FExternalItemBase<TData> implements OnInit, OnDestroy {
5
- private _elementReference;
6
- private _fExternalItemService;
5
+ private readonly _elementReference;
6
+ private readonly _fExternalItemService;
7
7
  fExternalItemId: string;
8
8
  get hostElement(): HTMLElement | SVGElement;
9
9
  fData: TData | undefined;
@@ -6,3 +6,4 @@ export * from './f-external-item-placeholder.directive';
6
6
  export * from './f-external-item-preview.directive';
7
7
  export * from './f-external-item-token';
8
8
  export * from './is-external-item';
9
+ export * from './providers';
@@ -0,0 +1,2 @@
1
+ import { FExternalItemDirective } from './f-external-item.directive';
2
+ export declare const F_EXTERNAL_ITEM_PROVIDERS: (typeof FExternalItemDirective)[];
@@ -1,8 +1,8 @@
1
- import { EventEmitter, InjectionToken } from '@angular/core';
1
+ import { InjectionToken, InputSignal, OutputEmitterRef } from '@angular/core';
2
2
  import { IHasHostElement } from '../i-has-host-element';
3
3
  export declare const F_FLOW: InjectionToken<FFlowBase>;
4
4
  export declare abstract class FFlowBase implements IHasHostElement {
5
- abstract fId: string;
5
+ abstract fId: InputSignal<string>;
6
6
  abstract hostElement: HTMLElement;
7
- abstract fLoaded: EventEmitter<void>;
7
+ abstract fLoaded: OutputEmitterRef<void>;
8
8
  }
@@ -1,19 +1,17 @@
1
- import { AfterContentInit, EventEmitter, OnDestroy, OnInit } from '@angular/core';
1
+ import { AfterContentInit, OnDestroy, OnInit } from '@angular/core';
2
2
  import { FFlowBase } from './f-flow-base';
3
3
  import { IFFlowState, ICurrentSelection } from '../domain';
4
4
  import { IPoint, IRect } from '@foblex/2d';
5
- import { BrowserService } from '@foblex/platform';
6
5
  import * as i0 from "@angular/core";
7
6
  export declare class FFlowComponent extends FFlowBase implements OnInit, AfterContentInit, OnDestroy {
8
- private fBrowser;
9
- private _destroyRef;
10
- private _fMediator;
11
- private _elementReference;
12
- fId: string;
7
+ private readonly _destroyRef;
8
+ private readonly _fMediator;
9
+ private readonly _browserService;
10
+ private readonly _elementReference;
11
+ fId: import("@angular/core").InputSignal<string>;
13
12
  get hostElement(): HTMLElement;
14
- fLoaded: EventEmitter<void>;
13
+ fLoaded: import("@angular/core").OutputEmitterRef<void>;
15
14
  private _isLoaded;
16
- constructor(fBrowser: BrowserService);
17
15
  ngOnInit(): void;
18
16
  ngAfterContentInit(): void;
19
17
  private _listenCountChanges;
@@ -30,5 +28,5 @@ export declare class FFlowComponent extends FFlowBase implements OnInit, AfterCo
30
28
  clearSelection(): void;
31
29
  ngOnDestroy(): void;
32
30
  static ɵfac: i0.ɵɵFactoryDeclaration<FFlowComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<FFlowComponent, "f-flow", never, { "fId": { "alias": "fFlowId"; "required": false; }; }, { "fLoaded": "fLoaded"; }, never, ["[fDefinitions]", "f-background", "f-line-alignment", "f-canvas", "f-selection-area", "f-minimap"], false, never>;
31
+ static ɵcmp: i0.ɵɵComponentDeclaration<FFlowComponent, "f-flow", never, { "fId": { "alias": "fFlowId"; "required": false; "isSignal": true; }; }, { "fLoaded": "fLoaded"; }, never, ["[fDefinitions]", "f-background", "f-line-alignment", "f-canvas", "f-selection-area", "f-minimap"], true, never>;
34
32
  }
@@ -1,37 +1,41 @@
1
1
  import * as i0 from "@angular/core";
2
- import * as i1 from "./f-backgroud/f-background.component";
3
- import * as i2 from "./f-backgroud/f-rect-pattern/f-rect-pattern.component";
4
- import * as i3 from "./f-backgroud/f-circle-pattern/f-circle-pattern.component";
5
- import * as i4 from "./f-canvas/f-canvas.component";
6
- import * as i5 from "./f-connection/common/f-connection-text/f-connection-text.component";
7
- import * as i6 from "./f-connection/common/f-connection-text/f-connection-text-path.directive";
8
- import * as i7 from "./f-connection/common/f-drag-handle/f-connection-drag-handle.component";
9
- import * as i8 from "./f-connection/common/f-gradient/f-connection-gradient.component";
10
- import * as i9 from "./f-connection/common/f-path/f-connection-path.component";
11
- import * as i10 from "./f-connection/common/f-selection/f-connection-selection.component";
12
- import * as i11 from "./f-connection/f-connection/f-connection.component";
13
- import * as i12 from "./f-connection/f-connection-center/f-connection-center.directive";
14
- import * as i13 from "./f-connection/f-connection-for-create/f-connection-for-create.component";
15
- import * as i14 from "./f-connection/f-marker/f-marker.directive";
16
- import * as i15 from "./f-connection/f-snap-connection/f-snap-connection.component";
17
- import * as i16 from "./f-connectors/f-node-input/f-node-input.directive";
18
- import * as i17 from "./f-connectors/f-node-outlet/f-node-outlet.directive";
19
- import * as i18 from "./f-connectors/f-node-output/f-node-output.directive";
20
- import * as i19 from "./f-flow/f-flow.component";
21
- import * as i20 from "./f-line-alignment/f-line-alignment.component";
22
- import * as i21 from "./f-minimap/f-minimap.component";
23
- import * as i22 from "./f-minimap/f-minimap-canvas.directive";
24
- import * as i23 from "./f-minimap/f-minimap-view.directive";
25
- import * as i24 from "./f-minimap/f-minimap-flow.directive";
26
- import * as i25 from "./f-node/f-group.directive";
27
- import * as i26 from "./f-node/f-node.directive";
28
- import * as i27 from "./f-node/f-drag-handle.directive";
29
- import * as i28 from "./f-node/f-resize-handle/f-resize-handle.directive";
30
- import * as i29 from "./f-selection-area/f-selection-area.component";
31
- import * as i30 from "./f-draggable/f-draggable.directive";
32
- import * as i31 from "@angular/common";
2
+ import * as i1 from "./f-connection/common/f-connection-text/f-connection-text.component";
3
+ import * as i2 from "./f-connection/common/f-connection-text/f-connection-text-path.directive";
4
+ import * as i3 from "./f-connection/common/f-drag-handle/f-connection-drag-handle-start.component";
5
+ import * as i4 from "./f-connection/common/f-drag-handle/f-connection-drag-handle-end.component";
6
+ import * as i5 from "./f-connection/common/f-gradient/f-connection-gradient.component";
7
+ import * as i6 from "./f-connection/common/f-path/f-connection-path.component";
8
+ import * as i7 from "./f-connection/common/f-selection/f-connection-selection.component";
9
+ import * as i8 from "./f-connection/f-connection/f-connection.component";
10
+ import * as i9 from "./f-connection/f-connection-center/f-connection-center.directive";
11
+ import * as i10 from "./f-connection/f-connection-for-create/f-connection-for-create.component";
12
+ import * as i11 from "./f-connection/f-marker/f-marker.directive";
13
+ import * as i12 from "./f-connection/f-snap-connection/f-snap-connection.component";
14
+ import * as i13 from "./f-connectors/f-node-input/f-node-input.directive";
15
+ import * as i14 from "./f-connectors/f-node-outlet/f-node-outlet.directive";
16
+ import * as i15 from "./f-connectors/f-node-output/f-node-output.directive";
17
+ import * as i16 from "./f-line-alignment/f-line-alignment.component";
18
+ import * as i17 from "./f-minimap/f-minimap.component";
19
+ import * as i18 from "./f-minimap/f-minimap-canvas.directive";
20
+ import * as i19 from "./f-minimap/f-minimap-view.directive";
21
+ import * as i20 from "./f-minimap/f-minimap-flow.directive";
22
+ import * as i21 from "./f-node/f-group.directive";
23
+ import * as i22 from "./f-node/f-node.directive";
24
+ import * as i23 from "./f-node/f-drag-handle.directive";
25
+ import * as i24 from "./f-node/f-resize-handle/f-resize-handle.directive";
26
+ import * as i25 from "./f-node/f-rotate-handle/f-rotate-handle.directive";
27
+ import * as i26 from "./f-selection-area/f-selection-area.component";
28
+ import * as i27 from "./f-draggable/f-draggable.directive";
29
+ import * as i28 from "./f-flow/f-flow.component";
30
+ import * as i29 from "./f-canvas/f-canvas.component";
31
+ import * as i30 from "./f-backgroud/f-background.component";
32
+ import * as i31 from "./f-backgroud/f-rect-pattern/f-rect-pattern.component";
33
+ import * as i32 from "./f-backgroud/f-circle-pattern/f-circle-pattern.component";
34
+ import * as i33 from "./f-zoom/f-zoom.directive";
35
+ import * as i34 from "./f-external-item/f-external-item.directive";
36
+ import * as i35 from "@angular/common";
33
37
  export declare class FFlowModule {
34
38
  static ɵfac: i0.ɵɵFactoryDeclaration<FFlowModule, never>;
35
- static ɵmod: i0.ɵɵNgModuleDeclaration<FFlowModule, [typeof i1.FBackgroundComponent, typeof i2.FRectPatternComponent, typeof i3.FCirclePatternComponent, typeof i4.FCanvasComponent, typeof i5.FConnectionTextComponent, typeof i6.FConnectionTextPathDirective, typeof i7.FConnectionDragHandleComponent, typeof i8.FConnectionGradientComponent, typeof i9.FConnectionPathComponent, typeof i10.FConnectionSelectionComponent, typeof i11.FConnectionComponent, typeof i12.FConnectionCenterDirective, typeof i13.FConnectionForCreateComponent, typeof i14.FMarkerDirective, typeof i15.FSnapConnectionComponent, typeof i16.FNodeInputDirective, typeof i17.FNodeOutletDirective, typeof i18.FNodeOutputDirective, typeof i19.FFlowComponent, typeof i20.FLineAlignmentComponent, typeof i21.FMinimapComponent, typeof i22.FMinimapCanvasDirective, typeof i23.FMinimapViewDirective, typeof i24.FMinimapFlowDirective, typeof i25.FGroupDirective, typeof i26.FNodeDirective, typeof i27.FDragHandleDirective, typeof i28.FResizeHandleDirective, typeof i29.FSelectionAreaComponent, typeof i30.FDraggableDirective], [typeof i31.CommonModule], [typeof i1.FBackgroundComponent, typeof i2.FRectPatternComponent, typeof i3.FCirclePatternComponent, typeof i4.FCanvasComponent, typeof i5.FConnectionTextComponent, typeof i6.FConnectionTextPathDirective, typeof i7.FConnectionDragHandleComponent, typeof i8.FConnectionGradientComponent, typeof i9.FConnectionPathComponent, typeof i10.FConnectionSelectionComponent, typeof i11.FConnectionComponent, typeof i12.FConnectionCenterDirective, typeof i13.FConnectionForCreateComponent, typeof i14.FMarkerDirective, typeof i15.FSnapConnectionComponent, typeof i16.FNodeInputDirective, typeof i17.FNodeOutletDirective, typeof i18.FNodeOutputDirective, typeof i19.FFlowComponent, typeof i20.FLineAlignmentComponent, typeof i21.FMinimapComponent, typeof i22.FMinimapCanvasDirective, typeof i23.FMinimapViewDirective, typeof i24.FMinimapFlowDirective, typeof i25.FGroupDirective, typeof i26.FNodeDirective, typeof i27.FDragHandleDirective, typeof i28.FResizeHandleDirective, typeof i29.FSelectionAreaComponent, typeof i30.FDraggableDirective]>;
39
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FFlowModule, [typeof i1.FConnectionTextComponent, typeof i2.FConnectionTextPathDirective, typeof i3.FConnectionDragHandleStartComponent, typeof i4.FConnectionDragHandleEndComponent, typeof i5.FConnectionGradientComponent, typeof i6.FConnectionPathComponent, typeof i7.FConnectionSelectionComponent, typeof i8.FConnectionComponent, typeof i9.FConnectionCenterDirective, typeof i10.FConnectionForCreateComponent, typeof i11.FMarkerDirective, typeof i12.FSnapConnectionComponent, typeof i13.FNodeInputDirective, typeof i14.FNodeOutletDirective, typeof i15.FNodeOutputDirective, typeof i16.FLineAlignmentComponent, typeof i17.FMinimapComponent, typeof i18.FMinimapCanvasDirective, typeof i19.FMinimapViewDirective, typeof i20.FMinimapFlowDirective, typeof i21.FGroupDirective, typeof i22.FNodeDirective, typeof i23.FDragHandleDirective, typeof i24.FResizeHandleDirective, typeof i25.FRotateHandleDirective, typeof i26.FSelectionAreaComponent, typeof i27.FDraggableDirective], [typeof i28.FFlowComponent, typeof i29.FCanvasComponent, typeof i30.FBackgroundComponent, typeof i31.FRectPatternComponent, typeof i32.FCirclePatternComponent, typeof i33.FZoomDirective, typeof i34.FExternalItemDirective, typeof i35.CommonModule], [typeof i28.FFlowComponent, typeof i29.FCanvasComponent, typeof i30.FBackgroundComponent, typeof i31.FRectPatternComponent, typeof i32.FCirclePatternComponent, typeof i33.FZoomDirective, typeof i34.FExternalItemDirective, typeof i1.FConnectionTextComponent, typeof i2.FConnectionTextPathDirective, typeof i3.FConnectionDragHandleStartComponent, typeof i4.FConnectionDragHandleEndComponent, typeof i5.FConnectionGradientComponent, typeof i6.FConnectionPathComponent, typeof i7.FConnectionSelectionComponent, typeof i8.FConnectionComponent, typeof i9.FConnectionCenterDirective, typeof i10.FConnectionForCreateComponent, typeof i11.FMarkerDirective, typeof i12.FSnapConnectionComponent, typeof i13.FNodeInputDirective, typeof i14.FNodeOutletDirective, typeof i15.FNodeOutputDirective, typeof i16.FLineAlignmentComponent, typeof i17.FMinimapComponent, typeof i18.FMinimapCanvasDirective, typeof i19.FMinimapViewDirective, typeof i20.FMinimapFlowDirective, typeof i21.FGroupDirective, typeof i22.FNodeDirective, typeof i23.FDragHandleDirective, typeof i24.FResizeHandleDirective, typeof i25.FRotateHandleDirective, typeof i26.FSelectionAreaComponent, typeof i27.FDraggableDirective]>;
36
40
  static ɵinj: i0.ɵɵInjectorDeclaration<FFlowModule>;
37
41
  }
@@ -1,10 +1,10 @@
1
- import { InjectionToken } from '@angular/core';
1
+ import { InjectionToken, InputSignalWithTransform } from '@angular/core';
2
2
  import { IHasHostElement } from '../i-has-host-element';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare const F_LINE_ALIGNMENT: InjectionToken<FLineAlignmentBase>;
5
5
  export declare abstract class FLineAlignmentBase implements IHasHostElement {
6
6
  abstract hostElement: HTMLElement;
7
- abstract fAlignThreshold: number;
7
+ abstract fAlignThreshold: InputSignalWithTransform<number, unknown>;
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<FLineAlignmentBase, never>;
9
9
  static ɵdir: i0.ɵɵDirectiveDeclaration<FLineAlignmentBase, never, never, {}, {}, never, never, false, never>;
10
10
  }
@@ -2,12 +2,12 @@ import { OnDestroy, OnInit } from '@angular/core';
2
2
  import { FLineAlignmentBase } from './f-line-alignment-base';
3
3
  import * as i0 from "@angular/core";
4
4
  export declare class FLineAlignmentComponent extends FLineAlignmentBase implements OnInit, OnDestroy {
5
- fAlignThreshold: number;
6
- private _fMediator;
7
- private _elementReference;
5
+ fAlignThreshold: import("@angular/core").InputSignalWithTransform<number, unknown>;
6
+ private readonly _fMediator;
7
+ private readonly _elementReference;
8
8
  get hostElement(): HTMLElement;
9
9
  ngOnInit(): void;
10
10
  ngOnDestroy(): void;
11
11
  static ɵfac: i0.ɵɵFactoryDeclaration<FLineAlignmentComponent, never>;
12
- static ɵcmp: i0.ɵɵComponentDeclaration<FLineAlignmentComponent, "f-line-alignment", ["fComponent"], { "fAlignThreshold": { "alias": "fAlignThreshold"; "required": false; }; }, {}, never, never, false, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<FLineAlignmentComponent, "f-line-alignment", ["fComponent"], { "fAlignThreshold": { "alias": "fAlignThreshold"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
13
13
  }
@@ -2,4 +2,4 @@ import { CalculateFlowPointFromMinimapPointExecution } from './calculate-flow-po
2
2
  import { MinimapDrawNodesExecution } from './minimap-draw-nodes';
3
3
  import { MinimapCalculateViewBoxExecution } from './minimap-calculate-view-box';
4
4
  import { MinimapCalculateSvgScaleAndViewBoxExecution } from './minimap-calculate-svg-scale-and-view-box';
5
- export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof MinimapDrawNodesExecution | typeof MinimapCalculateViewBoxExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution)[];
5
+ export declare const F_MINIMAP_DRAG_AND_DROP_PROVIDERS: (typeof CalculateFlowPointFromMinimapPointExecution | typeof import("./minimap-drag-finalize").MinimapDragFinalizeExecution | typeof import("./minimap-drag-preparation").MinimapDragPreparationExecution | typeof MinimapDrawNodesExecution | typeof MinimapCalculateSvgScaleAndViewBoxExecution | typeof MinimapCalculateViewBoxExecution)[];
@@ -2,4 +2,4 @@ import { FMinimapComponent } from './f-minimap.component';
2
2
  import { FMinimapViewDirective } from './f-minimap-view.directive';
3
3
  import { FMinimapFlowDirective } from './f-minimap-flow.directive';
4
4
  import { FMinimapCanvasDirective } from './f-minimap-canvas.directive';
5
- export declare const F_MINIMAP_PROVIDERS: (typeof FMinimapFlowDirective | typeof FMinimapCanvasDirective | typeof FMinimapViewDirective | typeof FMinimapComponent)[];
5
+ export declare const F_MINIMAP_PROVIDERS: (typeof FMinimapComponent | typeof FMinimapCanvasDirective | typeof FMinimapFlowDirective | typeof FMinimapViewDirective)[];
@@ -1,10 +1,5 @@
1
- import { InjectionToken } from "@angular/core";
2
- import { IHasHostElement } from '../i-has-host-element';
3
1
  import * as i0 from "@angular/core";
4
- export declare const F_DRAG_HANDLE: InjectionToken<FDragHandleDirective>;
5
- export declare class FDragHandleDirective implements IHasHostElement {
6
- private _elementReference;
7
- get hostElement(): HTMLElement;
2
+ export declare class FDragHandleDirective {
8
3
  static ɵfac: i0.ɵɵFactoryDeclaration<FDragHandleDirective, never>;
9
4
  static ɵdir: i0.ɵɵDirectiveDeclaration<FDragHandleDirective, "[fDragHandle]", never, {}, {}, never, never, false, never>;
10
5
  }
@@ -12,6 +12,9 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
12
12
  set position(value: IPoint);
13
13
  get position(): IPoint;
14
14
  positionChange: EventEmitter<IPoint>;
15
+ set rotate(value: number);
16
+ get rotate(): number;
17
+ rotateChange: EventEmitter<number>;
15
18
  set size(value: ISize);
16
19
  get size(): ISize;
17
20
  sizeChange: EventEmitter<IRect>;
@@ -19,8 +22,8 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
19
22
  fSelectionDisabled: boolean;
20
23
  fIncludePadding: boolean;
21
24
  fConnectOnNode: boolean;
22
- private _destroyRef;
23
- private _fMediator;
25
+ private readonly _destroyRef;
26
+ private readonly _fMediator;
24
27
  constructor(elementReference: ElementRef<HTMLElement>, renderer: Renderer2, fBrowser: BrowserService);
25
28
  ngOnInit(): void;
26
29
  protected setStyle(styleName: string, value: string): void;
@@ -30,7 +33,7 @@ export declare class FGroupDirective extends FNodeBase implements OnInit, AfterV
30
33
  refresh(): void;
31
34
  ngOnDestroy(): void;
32
35
  static ɵfac: i0.ɵɵFactoryDeclaration<FGroupDirective, never>;
33
- static ɵdir: i0.ɵɵDirectiveDeclaration<FGroupDirective, "[fGroup]", ["fComponent"], { "fId": { "alias": "fGroupId"; "required": false; }; "fParentId": { "alias": "fGroupParentId"; "required": false; }; "position": { "alias": "fGroupPosition"; "required": false; }; "size": { "alias": "fGroupSize"; "required": false; }; "fDraggingDisabled": { "alias": "fGroupDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fGroupSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fGroupPositionChange"; "sizeChange": "fGroupSizeChange"; }, never, never, false, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FGroupDirective, "[fGroup]", ["fComponent"], { "fId": { "alias": "fGroupId"; "required": false; }; "fParentId": { "alias": "fGroupParentId"; "required": false; }; "position": { "alias": "fGroupPosition"; "required": false; }; "rotate": { "alias": "fGroupRotate"; "required": false; }; "size": { "alias": "fGroupSize"; "required": false; }; "fDraggingDisabled": { "alias": "fGroupDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fGroupSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fGroupPositionChange"; "rotateChange": "fGroupRotateChange"; "sizeChange": "fGroupSizeChange"; }, never, never, false, never>;
34
37
  static ngAcceptInputType_fDraggingDisabled: unknown;
35
38
  static ngAcceptInputType_fSelectionDisabled: unknown;
36
39
  static ngAcceptInputType_fIncludePadding: unknown;
@@ -17,6 +17,9 @@ export declare abstract class FNodeBase extends MIXIN_BASE implements ISelectabl
17
17
  abstract positionChange: EventEmitter<IPoint>;
18
18
  abstract position: IPoint;
19
19
  protected _position: IPoint;
20
+ abstract rotateChange: EventEmitter<number>;
21
+ abstract rotate: number;
22
+ protected _rotate: number;
20
23
  abstract sizeChange: EventEmitter<IRect>;
21
24
  abstract size: ISize;
22
25
  protected _size: ISize | undefined;
@@ -31,6 +34,7 @@ export declare abstract class FNodeBase extends MIXIN_BASE implements ISelectabl
31
34
  isContains(element: HTMLElement | SVGElement): boolean;
32
35
  redraw(): void;
33
36
  updatePosition(position: IPoint): void;
37
+ updateRotate(rotate: number): void;
34
38
  updateSize(value: ISize): void;
35
39
  setClass(className: string): void;
36
40
  removeClass(className: string): void;
@@ -13,14 +13,17 @@ export declare class FNodeDirective extends FNodeBase implements OnInit, AfterVi
13
13
  get position(): IPoint;
14
14
  positionChange: EventEmitter<IPoint>;
15
15
  set size(value: ISize);
16
+ set rotate(value: number);
17
+ get rotate(): number;
18
+ rotateChange: EventEmitter<number>;
16
19
  get size(): ISize;
17
20
  sizeChange: EventEmitter<IRect>;
18
21
  fDraggingDisabled: boolean;
19
22
  fSelectionDisabled: boolean;
20
23
  fIncludePadding: boolean;
21
24
  fConnectOnNode: boolean;
22
- private _destroyRef;
23
- private _fMediator;
25
+ private readonly _destroyRef;
26
+ private readonly _fMediator;
24
27
  constructor(elementReference: ElementRef<HTMLElement>, renderer: Renderer2, fBrowser: BrowserService);
25
28
  ngOnInit(): void;
26
29
  protected setStyle(styleName: string, value: string): void;
@@ -30,7 +33,7 @@ export declare class FNodeDirective extends FNodeBase implements OnInit, AfterVi
30
33
  refresh(): void;
31
34
  ngOnDestroy(): void;
32
35
  static ɵfac: i0.ɵɵFactoryDeclaration<FNodeDirective, never>;
33
- static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeDirective, "[fNode]", ["fComponent"], { "fId": { "alias": "fNodeId"; "required": false; }; "fParentId": { "alias": "fNodeParentId"; "required": false; }; "position": { "alias": "fNodePosition"; "required": false; }; "size": { "alias": "fNodeSize"; "required": false; }; "fDraggingDisabled": { "alias": "fNodeDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fNodeSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fNodePositionChange"; "sizeChange": "fNodeSizeChange"; }, never, never, false, never>;
36
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FNodeDirective, "[fNode]", ["fComponent"], { "fId": { "alias": "fNodeId"; "required": false; }; "fParentId": { "alias": "fNodeParentId"; "required": false; }; "position": { "alias": "fNodePosition"; "required": false; }; "size": { "alias": "fNodeSize"; "required": false; }; "rotate": { "alias": "fNodeRotate"; "required": false; }; "fDraggingDisabled": { "alias": "fNodeDraggingDisabled"; "required": false; }; "fSelectionDisabled": { "alias": "fNodeSelectionDisabled"; "required": false; }; "fIncludePadding": { "alias": "fIncludePadding"; "required": false; }; "fConnectOnNode": { "alias": "fConnectOnNode"; "required": false; }; }, { "positionChange": "fNodePositionChange"; "rotateChange": "fNodeRotateChange"; "sizeChange": "fNodeSizeChange"; }, never, never, false, never>;
34
37
  static ngAcceptInputType_fDraggingDisabled: unknown;
35
38
  static ngAcceptInputType_fSelectionDisabled: unknown;
36
39
  static ngAcceptInputType_fIncludePadding: unknown;
@@ -1,14 +1,8 @@
1
- import { InjectionToken } from "@angular/core";
2
1
  import { EFResizeHandleType } from './e-f-resize-handle-type';
3
- import { IHasHostElement } from '../../i-has-host-element';
4
2
  import * as i0 from "@angular/core";
5
- export declare const F_RESIZE_HANDLE: InjectionToken<FResizeHandleDirective>;
6
- export declare class FResizeHandleDirective implements IHasHostElement {
7
- private _elementReference;
8
- type: EFResizeHandleType;
9
- get typeClass(): string;
10
- get hostElement(): HTMLElement;
3
+ export declare class FResizeHandleDirective {
4
+ type: import("@angular/core").InputSignalWithTransform<EFResizeHandleType, unknown>;
5
+ protected class: import("@angular/core").Signal<string>;
11
6
  static ɵfac: i0.ɵɵFactoryDeclaration<FResizeHandleDirective, never>;
12
- static ɵdir: i0.ɵɵDirectiveDeclaration<FResizeHandleDirective, "[fResizeHandle]", never, { "type": { "alias": "fResizeHandleType"; "required": false; }; }, {}, never, never, false, never>;
13
- static ngAcceptInputType_type: unknown;
7
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FResizeHandleDirective, "[fResizeHandle]", never, { "type": { "alias": "fResizeHandleType"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
14
8
  }
@@ -1,9 +1,5 @@
1
- import { ElementRef } from "@angular/core";
2
- import { IHasHostElement } from '../../i-has-host-element';
3
- export declare class FRotateHandleDirective implements IHasHostElement {
4
- private elementReference;
5
- private isDisabled;
6
- get disabled(): boolean;
7
- get hostElement(): HTMLElement;
8
- constructor(elementReference: ElementRef<HTMLElement>);
1
+ import * as i0 from "@angular/core";
2
+ export declare class FRotateHandleDirective {
3
+ static ɵfac: i0.ɵɵFactoryDeclaration<FRotateHandleDirective, never>;
4
+ static ɵdir: i0.ɵɵDirectiveDeclaration<FRotateHandleDirective, "[fRotateHandle]", never, {}, {}, never, never, false, never>;
9
5
  }
@@ -1 +1,2 @@
1
1
  export * from './f-rotate-handle.directive';
2
+ export * from './is-rotate-handle';
@@ -0,0 +1 @@
1
+ export declare function isRotateHandle(element: HTMLElement): boolean;
@@ -1,5 +1,4 @@
1
1
  import { FNodeDirective } from './f-node.directive';
2
- import { FResizeHandleDirective } from './f-resize-handle';
3
2
  import { FGroupDirective } from './f-group.directive';
4
3
  import { FDragHandleDirective } from './f-drag-handle.directive';
5
- export declare const F_NODE_PROVIDERS: (typeof FResizeHandleDirective | typeof FDragHandleDirective | typeof FGroupDirective | typeof FNodeDirective)[];
4
+ export declare const F_NODE_PROVIDERS: (typeof FGroupDirective | typeof FNodeDirective | typeof FDragHandleDirective)[];
@@ -1,3 +1,3 @@
1
1
  import { SelectionAreaPreparationExecution } from './selection-area-preparation';
2
2
  import { SelectionAreaFinalizeExecution } from './selection-area-finalize';
3
- export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof SelectionAreaFinalizeExecution | typeof SelectionAreaPreparationExecution)[];
3
+ export declare const F_SELECTION_AREA_DRAG_AND_DROP_PROVIDERS: (typeof SelectionAreaPreparationExecution | typeof SelectionAreaFinalizeExecution)[];
@@ -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 NotifyDataChangedExecution | typeof FComponentsStore | typeof ListenDataChangesExecution | typeof ListenCountChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];
7
+ export declare const F_STORAGE_PROVIDERS: (typeof FComponentsStore | typeof NotifyDataChangedExecution | typeof ListenCountChangesExecution | typeof ListenDataChangesExecution | typeof ListenTransformChangesExecution | typeof NotifyTransformChangedExecution)[];
package/f-zoom/index.d.ts CHANGED
@@ -1,3 +1,4 @@
1
1
  export * from './e-f-zoom-direction';
2
2
  export * from './f-zoom-base';
3
3
  export * from './f-zoom.directive';
4
+ export * from './providers';
@@ -0,0 +1,2 @@
1
+ import { FZoomDirective } from './f-zoom.directive';
2
+ export declare const F_ZOOM_PROVIDERS: (typeof FZoomDirective)[];