@acorex/components 19.11.0-next.2 → 19.11.0-next.4

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 (75) hide show
  1. package/autocomplete/README.md +3 -0
  2. package/autocomplete/index.d.ts +2 -0
  3. package/autocomplete/lib/autocomplete.component.d.ts +113 -0
  4. package/autocomplete/lib/autocomplete.module.d.ts +7 -0
  5. package/common/lib/classes/components.class.d.ts +14 -1
  6. package/data-table/lib/columns/row-select-column.component.d.ts +8 -7
  7. package/dropdown/lib/dropdown-box.component.d.ts +2 -1
  8. package/dropdown/lib/dropdown-panel.component.d.ts +3 -1
  9. package/dropdown-button/lib/dropdown-button.component.d.ts +1 -1
  10. package/fesm2022/acorex-components-autocomplete.mjs +317 -0
  11. package/fesm2022/acorex-components-autocomplete.mjs.map +1 -0
  12. package/fesm2022/acorex-components-color-box.mjs +1 -1
  13. package/fesm2022/acorex-components-color-box.mjs.map +1 -1
  14. package/fesm2022/acorex-components-common.mjs +650 -610
  15. package/fesm2022/acorex-components-common.mjs.map +1 -1
  16. package/fesm2022/acorex-components-conversation.mjs +2 -2
  17. package/fesm2022/acorex-components-conversation.mjs.map +1 -1
  18. package/fesm2022/acorex-components-data-pager.mjs +13 -16
  19. package/fesm2022/acorex-components-data-pager.mjs.map +1 -1
  20. package/fesm2022/acorex-components-data-table.mjs +52 -29
  21. package/fesm2022/acorex-components-data-table.mjs.map +1 -1
  22. package/fesm2022/acorex-components-datetime-box.mjs +1 -1
  23. package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
  24. package/fesm2022/acorex-components-dropdown-button.mjs +2 -2
  25. package/fesm2022/acorex-components-dropdown-button.mjs.map +1 -1
  26. package/fesm2022/acorex-components-dropdown.mjs +12 -4
  27. package/fesm2022/acorex-components-dropdown.mjs.map +1 -1
  28. package/fesm2022/acorex-components-grid-layout-builder.mjs +122 -507
  29. package/fesm2022/acorex-components-grid-layout-builder.mjs.map +1 -1
  30. package/fesm2022/acorex-components-image-editor.mjs +303 -172
  31. package/fesm2022/acorex-components-image-editor.mjs.map +1 -1
  32. package/fesm2022/acorex-components-loading.mjs +2 -2
  33. package/fesm2022/acorex-components-loading.mjs.map +1 -1
  34. package/fesm2022/acorex-components-map.mjs +6 -16
  35. package/fesm2022/acorex-components-map.mjs.map +1 -1
  36. package/fesm2022/acorex-components-media-viewer.mjs +2 -2
  37. package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
  38. package/fesm2022/acorex-components-query-builder.mjs +19 -8
  39. package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
  40. package/fesm2022/acorex-components-scheduler.mjs +1 -1
  41. package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
  42. package/fesm2022/acorex-components-select-box.mjs +1 -1
  43. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  44. package/fesm2022/acorex-components-tag-box.mjs +121 -0
  45. package/fesm2022/acorex-components-tag-box.mjs.map +1 -0
  46. package/fesm2022/acorex-components-tag.mjs +2 -2
  47. package/fesm2022/acorex-components-tag.mjs.map +1 -1
  48. package/fesm2022/acorex-components-text-box.mjs +2 -2
  49. package/fesm2022/acorex-components-text-box.mjs.map +1 -1
  50. package/grid-layout-builder/index.d.ts +0 -1
  51. package/grid-layout-builder/lib/grid-layout-builder.module.d.ts +1 -2
  52. package/grid-layout-builder/lib/grid-layout-container.component.d.ts +34 -188
  53. package/grid-layout-builder/lib/grid-layout-widget.component.d.ts +4 -56
  54. package/grid-layout-builder/lib/types.d.ts +8 -12
  55. package/image-editor/index.d.ts +7 -2
  56. package/image-editor/lib/image-editor-container/image-editor-container.component.d.ts +4 -1
  57. package/image-editor/lib/image-editor-tools/image-editor-crop/image-editor-crop.component.d.ts +3 -8
  58. package/image-editor/lib/image-editor-tools/image-editor-header/image-editor-header.component.d.ts +12 -0
  59. package/image-editor/lib/image-editor-tools/image-editor-highlight/image-editor-highlight.component.d.ts +18 -0
  60. package/image-editor/lib/image-editor-tools/image-editor-history/image-editor-history.component.d.ts +13 -0
  61. package/image-editor/lib/image-editor-tools/image-editor-pen/image-editor-pen.component.d.ts +18 -0
  62. package/image-editor/lib/image-editor-tools/image-editor-rotate/image-editor-rotate.component.d.ts +16 -0
  63. package/image-editor/lib/image-editor-tools/image-editor-tool-selector/image-editor-tool-selector.component.d.ts +12 -0
  64. package/image-editor/lib/image-editor-view/image-editor-view.component.d.ts +7 -1
  65. package/image-editor/lib/image-editor.module.d.ts +10 -6
  66. package/image-editor/lib/image-editor.service.d.ts +6 -10
  67. package/package.json +9 -1
  68. package/query-builder/lib/query-builder.component.d.ts +5 -2
  69. package/tag-box/README.md +3 -0
  70. package/tag-box/index.d.ts +2 -0
  71. package/tag-box/lib/tag-box.component.d.ts +30 -0
  72. package/tag-box/lib/tag-box.module.d.ts +7 -0
  73. package/grid-layout-builder/lib/grid-layout-widget.directive.d.ts +0 -106
  74. package/image-editor/lib/image-editor-tools/image-editor-color-picker/image-editor-color-picker.component.d.ts +0 -17
  75. package/image-editor/lib/image-editor-tools/image-editor-pen-mode-changer/image-editor-pen-mode-changer.component.d.ts +0 -34
@@ -1,221 +1,67 @@
1
- import { OnDestroy } from '@angular/core';
2
- import { AXGridLayout, AXGridLayoutDroppedEvent, AXGridLayoutElementEvent, AXGridLayoutEventEvent, AXGridLayoutNode, AXGridLayoutNodesEvent, AXGridLayoutOptions, AXGridLayoutWidget, AXGridLayoutWidgetCompElement, AXGridLayoutWidgetElement, AXSaveCallback } from './types';
1
+ import { NXComponent } from '@acorex/components/common';
2
+ import { OnDestroy, QueryList } from '@angular/core';
3
+ import { Subscription } from 'rxjs';
4
+ import { AXGridLayoutWidgetComponent } from './grid-layout-widget.component';
5
+ import { AXGridLayout, AXGridLayoutChangedEvent, AXGridLayoutDroppedEvent, AXGridLayoutElementEvent, AXGridLayoutEventEvent, AXGridLayoutNode, AXGridLayoutNodesEvent, AXGridLayoutOptions, AXGridLayoutWidget, AXGridLayoutWidgetElement, AXSaveCallback } from './types';
3
6
  import * as i0 from "@angular/core";
4
- /**
5
- * The `AXGridLayoutContainerComponent` is an Angular component that acts as a wrapper for the GridStack library.
6
- * It provides a flexible grid layout system for arranging items within a container. It integrates with GridStack.js
7
- * and allows dynamic manipulation of grid items (widgets), including adding, removing, resizing, and dragging.
8
- *
9
- * This component uses Angular's reactive signals, outputs, and lifecycle hooks to manage grid state and interactions.
10
- */
11
- export declare class AXGridLayoutContainerComponent implements OnDestroy {
7
+ export declare class AXGridLayoutContainerComponent extends NXComponent implements OnDestroy {
12
8
  #private;
13
9
  options: import("@angular/core").InputSignal<import("gridstack").GridStackOptions>;
14
- /**
15
- * Output event emitted when a widget is added to the grid.
16
- */
17
10
  protected onAdded: import("@angular/core").OutputEmitterRef<AXGridLayoutNodesEvent>;
18
- /**
19
- * Output event emitted when a widget or layout is changed.
20
- */
21
- protected onChange: import("@angular/core").OutputEmitterRef<AXGridLayoutNodesEvent>;
22
- /**
23
- * Output event emitted when the grid is disabled.
24
- */
25
- protected onDisable: import("@angular/core").OutputEmitterRef<AXGridLayoutEventEvent>;
26
- /**
27
- * Output event emitted during a drag operation on a widget.
28
- */
29
- protected onDrag: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
30
- /**
31
- * Output event emitted when drag starts on a widget.
32
- */
33
- protected onDragStart: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
34
- /**
35
- * Output event emitted when drag stops on a widget.
36
- */
37
- protected onDragStop: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
38
- /**
39
- * Output event emitted when a widget is dropped on the grid.
40
- */
41
- protected onDropped: import("@angular/core").OutputEmitterRef<AXGridLayoutDroppedEvent>;
42
- /**
43
- * Output event emitted when the grid is enabled.
44
- */
45
- protected onEnable: import("@angular/core").OutputEmitterRef<AXGridLayoutEventEvent>;
46
- /**
47
- * Output event emitted when a widget is removed from the grid.
48
- */
49
11
  protected onRemoved: import("@angular/core").OutputEmitterRef<AXGridLayoutNodesEvent>;
50
- /**
51
- * Output event emitted when a widget is resized.
52
- */
53
- protected onResize: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
54
- /**
55
- * Output event emitted when resizing starts on a widget.
56
- */
57
- protected onResizeStart: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
58
- /**
59
- * Output event emitted when resizing stops on a widget.
60
- */
61
- protected onResizeStop: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
62
- /**
63
- * Output event emitted when the grid is rendered.
64
- */
65
- protected isRendered: import("@angular/core").OutputEmitterRef<boolean>;
66
- /**
67
- * Model that tracks whether the grid container is empty.
68
- */
12
+ protected onWidgetChange: import("@angular/core").OutputEmitterRef<AXGridLayoutNodesEvent>;
13
+ protected onChange: import("@angular/core").OutputEmitterRef<AXGridLayoutChangedEvent>;
14
+ protected _onEnable: import("@angular/core").OutputEmitterRef<AXGridLayoutEventEvent>;
15
+ protected _onDisable: import("@angular/core").OutputEmitterRef<AXGridLayoutEventEvent>;
16
+ protected _onWidgetDrag: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
17
+ protected _onWidgetDragStart: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
18
+ protected _onWidgetDragStop: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
19
+ protected _onWidgetDropped: import("@angular/core").OutputEmitterRef<AXGridLayoutDroppedEvent>;
20
+ protected _onWidgetResized: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
21
+ protected _onWidgetResizeStart: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
22
+ protected _onWidgetResizeStop: import("@angular/core").OutputEmitterRef<AXGridLayoutElementEvent>;
23
+ protected isLayoutRendered: import("@angular/core").OutputEmitterRef<boolean>;
69
24
  protected isEmpty: import("@angular/core").ModelSignal<boolean>;
70
- private serializedData?;
71
- private compItems;
72
- private dirItems;
73
- private calcOptions;
74
25
  private readonly elementRef;
75
- private ngZone;
76
- private grid;
26
+ private readonly ngZone;
27
+ private readonly domSanitizer;
28
+ private widgets;
29
+ gridstackItems?: QueryList<AXGridLayoutWidgetComponent>;
77
30
  private el;
78
- private domSanitizer;
79
- constructor();
31
+ private serializedData?;
32
+ private grid?;
33
+ protected _sub: Subscription | undefined;
80
34
  ngOnDestroy(): void;
81
- private childChange;
82
- /**
83
- * Updates the grid layout with the current set of widgets, clearing previous options.
84
- */
85
35
  private updateAll;
86
- /**
87
- * Checks whether the grid is empty and updates the `isEmpty` model accordingly.
88
- */
89
36
  private checkEmpty;
90
- /**
91
- * Hooks event listeners to the grid for various grid events (e.g., add, remove, drag, resize).
92
- */
93
37
  private hookEvents;
94
- /**
95
- * Removes all event listeners from the grid.
96
- */
97
38
  private unhookEvents;
98
- /**
99
- * Creates a new widget and returns it.
100
- * @param w - Widget position/size options.
101
- * @returns The created widget's HTML element, or `undefined` if the grid is not initialized.
102
- */
103
39
  addWidget(w: AXGridLayoutWidget, withAutoArrange?: boolean): AXGridLayoutWidgetElement | undefined;
104
- /**
105
- * Re-layout grid items to reclaim any empty space.
106
- * @param layout - Compaction mode: 'list' or 'compact'. Default is 'compact'.
107
- * @param doSort - Whether to sort items automatically. Default is `true`.
108
- */
109
40
  compact(layout?: 'list' | 'compact', doSort?: boolean): void;
110
- /**
111
- * Updates the current cell height.
112
- * @param val - The new cell height value.
113
- * @param update - Whether to rebuild the internal CSS stylesheet. Default is `true`.
114
- */
115
41
  setCellHeight(val: number, update?: boolean): void;
116
- /**
117
- * Sets the number of columns in the grid and updates existing widgets to conform to the new layout.
118
- * @param column - Number of columns (must be > 0). Default is 12.
119
- * @param layout - Re-layout behavior: 'list', 'compact', 'moveScale', 'move', 'scale', 'none'.
120
- * Default is 'moveScale'.
121
- */
122
42
  setColumn(column: number, layout?: 'list' | 'compact' | 'moveScale' | 'move' | 'scale' | 'none'): void;
123
- /**
124
- * Destroys the grid instance.
125
- * @param removeDOM - If `false`, nodes and grid will not be removed from the DOM. Default is `true`.
126
- */
127
43
  destroy(removeDOM?: boolean): void;
128
- /**
129
- * Sets whether widgets in the grid can be moved (dragged).
130
- *
131
- * @param state If true, widgets are movable; otherwise, they are locked.
132
- * @param recurse If true, the setting is applied to nested widgets as well.
133
- */
134
44
  setMovable(state: boolean, recurse?: boolean): void;
135
- /**
136
- * Sets whether widgets in the grid can be resized.
137
- *
138
- * @param state If true, widgets are resizable; otherwise, they are fixed.
139
- * @param recurse If true, the setting is applied to nested widgets as well.
140
- */
141
45
  setResizable(state: boolean, recurse?: boolean): void;
142
- /**
143
- * Sets or gets the floating behavior of widgets.
144
- * @param val - If provided, sets floating behavior (`true` or `false`). If not provided, returns the current value.
145
- * @returns The current floating behavior if `val` is not provided.
146
- */
147
46
  setFloat(val: boolean): void;
148
- /**
149
- * Sets the margin (gap) between grid items and their content.
150
- * @param value - The margin value (number or string).
151
- */
152
47
  setMargin(value: number | string): void;
153
- /**
154
- * Removes a widget from the grid.
155
- * @param el - The widget to remove.
156
- * @param removeDOM - If `false`, the widget won't be removed from the DOM. Default is `true`.
157
- * @param triggerEvent - If `false`, no 'removed' callbacks will be called. Default is `true`.
158
- */
159
48
  removeWidget(el: AXGridLayoutWidgetElement, removeDOM?: boolean, triggerEvent?: boolean): void;
160
- /**
161
- * Removes all widgets from the grid.
162
- * @param removeDOM - If `false`, widgets won't be removed from the DOM. Default is `true`.
163
- */
164
49
  removeAll(removeDOM?: boolean): void;
165
- /**
166
- * Rotates a widget by swapping its width and height.
167
- * @param els - The widget or selector of widgets to rotate.
168
- * @param relative - Optional pixel coordinates to rotate around (keeps that cell under the cursor).
169
- */
170
- setRotate(element: AXGridLayoutWidgetCompElement): void;
171
- /**
172
- * Toggles the grid animation state.
173
- * @param doAnimate - If `true`, the grid will animate.
174
- */
175
50
  setAnimation(doAnimate: boolean): void;
176
- /**
177
- * Saves the current grid layout configuration.
178
- *
179
- * @param saveContent Whether to save the content of the grid items.
180
- * @param saveGridOpt Whether to save the grid options.
181
- * @param saveCallback Optional callback for custom save logic.
182
- * @returns The serialized grid layout options.
183
- */
184
51
  save(saveContent?: boolean, saveGridOpt?: boolean, saveCallback?: AXSaveCallback): AXGridLayoutOptions;
185
- /**
186
- * Loads a serialized grid layout configuration into the grid.
187
- *
188
- * @param serializedData The serialized grid options to load.
189
- * @param cleanBeforeLoad If true, the grid will be cleared before loading the new layout.
190
- * @returns A promise that resolves to the loaded grid instance.
191
- */
192
52
  load(serializedData?: AXGridLayoutOptions, cleanBeforeLoad?: boolean): Promise<AXGridLayout>;
193
- /**
194
- * Sets up draggable functionality for external elements to be added to the grid.
195
- *
196
- * @param dragIn A CSS selector or an array of elements that can be dragged into the grid.
197
- * @param widgets An optional set of widgets that are draggable into the grid.
198
- */
199
53
  setupDraggable(dragIn?: string | HTMLElement[], widgets?: AXGridLayoutWidget): Promise<void>;
200
- /**
201
- * Sets grid layout options.
202
- * @param options The new grid layout options to apply.
203
- *
204
- * `Experimental`
205
- */
206
54
  setOption(options: AXGridLayoutOptions): void;
207
- /**
208
- * Retrieves the current grid layout options.
209
- *
210
- * @returns The current grid options.
211
- */
212
55
  getOptions(): AXGridLayoutOptions;
213
- /**
214
- * Retrieves all the child nodes (widgets) in the grid layout.
215
- *
216
- * @returns An array of grid layout nodes representing the widgets.
217
- */
218
56
  getChildren(): AXGridLayoutNode[];
57
+ findEmptySpace(input: {
58
+ h: number;
59
+ w: number;
60
+ }): {
61
+ x?: number;
62
+ y?: number;
63
+ };
64
+ private _dispatchChangeEvent;
219
65
  static ɵfac: i0.ɵɵFactoryDeclaration<AXGridLayoutContainerComponent, never>;
220
- static ɵcmp: i0.ɵɵComponentDeclaration<AXGridLayoutContainerComponent, "ax-grid-layout-container", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "isEmpty": { "alias": "isEmpty"; "required": false; "isSignal": true; }; }, { "onAdded": "onAdded"; "onChange": "onChange"; "onDisable": "onDisable"; "onDrag": "onDrag"; "onDragStart": "onDragStart"; "onDragStop": "onDragStop"; "onDropped": "onDropped"; "onEnable": "onEnable"; "onRemoved": "onRemoved"; "onResize": "onResize"; "onResizeStart": "onResizeStart"; "onResizeStop": "onResizeStop"; "isRendered": "isRendered"; "isEmpty": "isEmptyChange"; }, ["compItems", "dirItems"], ["*"], true, never>;
66
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXGridLayoutContainerComponent, "ax-grid-layout-container", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "isEmpty": { "alias": "isEmpty"; "required": false; "isSignal": true; }; }, { "onAdded": "onAdded"; "onRemoved": "onRemoved"; "onWidgetChange": "onWidgetChange"; "onChange": "onChange"; "_onEnable": "_onEnable"; "_onDisable": "_onDisable"; "_onWidgetDrag": "_onWidgetDrag"; "_onWidgetDragStart": "_onWidgetDragStart"; "_onWidgetDragStop": "_onWidgetDragStop"; "_onWidgetDropped": "_onWidgetDropped"; "_onWidgetResized": "_onWidgetResized"; "_onWidgetResizeStart": "_onWidgetResizeStart"; "_onWidgetResizeStop": "_onWidgetResizeStop"; "isLayoutRendered": "isLayoutRendered"; "isEmpty": "isEmptyChange"; }, ["widgets", "gridstackItems"], ["*"], true, never>;
221
67
  }
@@ -1,66 +1,14 @@
1
- import { AXGridLayoutNode, AXGridLayoutWidget, AXGridLayoutWidgetCompElement } from './types';
1
+ import { AXGridLayoutNode, AXGridLayoutWidget } from './types';
2
2
  import * as i0 from "@angular/core";
3
- /**
4
- * A component that represents a widget within the grid layout. It serves as an individual
5
- * item within a `gridstack` layout, providing options for customization and interaction.
6
- *
7
- * This widget component is used within the `AXGridLayoutContainerComponent` to manage the
8
- * layout of widgets in a grid system. The component interacts with the GridStack library
9
- * to offer features like resizing, movement, and customization of the widget's properties.
10
- *
11
- * @example
12
- * <ax-grid-layout-widget [options]="widgetOptions">
13
- * <div>Widget Content</div>
14
- * </ax-grid-layout-widget>
15
- */
16
3
  export declare class AXGridLayoutWidgetComponent {
17
- /** Reference to the native element of this widget component. */
18
4
  private readonly elementRef;
19
- /** The native element of the widget component. */
20
- el: AXGridLayoutWidgetCompElement;
21
- /** Internal storage for widget options. */
22
- private _options?;
23
- /**
24
- * Input property that represents the widget's configuration options.
25
- *
26
- * @param {AXGridLayoutNode} val - The configuration object for the widget.
27
- * @returns {AXGridLayoutWidgetCompElement} - The element associated with the widget.
28
- */
29
- options: import("@angular/core").InputSignalWithTransform<import("gridstack").GridStackNode, import("gridstack").GridStackNode>;
30
- constructor();
31
- /** Clears the widget's options. */
32
- clearOptions(): void;
33
- /** Removes this widget from the grid. */
34
- removeWidget(): void;
35
- /**
36
- * Sets whether the widget can be locked (i.e., not resizable).
37
- *
38
- * @param {boolean} state - Whether the widget should be locked or not.
39
- */
5
+ options: import("@angular/core").InputSignal<AXGridLayoutNode>;
6
+ eff: import("@angular/core").EffectRef;
40
7
  setLockable(state: boolean): void;
41
- /**
42
- * Sets whether the widget can be resized.
43
- *
44
- * @param {boolean} state - Whether the widget should be resizable or not.
45
- */
46
8
  setResizable(state: boolean): void;
47
- /**
48
- * Updates the options of the widget.
49
- *
50
- * @param {AXGridLayoutWidget} options - The new options to apply to the widget.
51
- */
52
9
  setOptions(options: AXGridLayoutWidget): void;
53
- /**
54
- * Retrieves the current options of the widget.
55
- *
56
- * @returns {AXGridLayoutNode} - The current configuration options of the widget.
57
- */
58
10
  getOptions(): AXGridLayoutNode;
59
- /**
60
- * Helper method to update widget options.
61
- *
62
- * @param {Partial<AXGridLayoutWidget>} options - The options to update.
63
- */
11
+ element(): import("gridstack").GridItemHTMLElement;
64
12
  private updateWidgetOptions;
65
13
  static ɵfac: i0.ɵɵFactoryDeclaration<AXGridLayoutWidgetComponent, never>;
66
14
  static ɵcmp: i0.ɵɵComponentDeclaration<AXGridLayoutWidgetComponent, "ax-grid-layout-widget", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -1,12 +1,11 @@
1
+ import { NXEvent } from '@acorex/components/common';
1
2
  import { AXGridLayoutContainerComponent } from './grid-layout-container.component';
2
- import { AXGridLayoutWidgetComponent } from './grid-layout-widget.component';
3
- import { AXGridLayoutWidgetDirective } from './grid-layout-widget.directive';
4
- export type AXGridLayoutNode = import('gridstack').GridStackNode;
3
+ export type AXGridLayoutNode = import('gridstack').GridStackNode & {
4
+ data?: unknown;
5
+ };
5
6
  export type AXGridLayout = import('gridstack').GridStack;
6
7
  export type AXGridLayoutOptions = import('gridstack').GridStackOptions;
7
- export type AXGridLayoutWidget = import('gridstack').GridStackWidget & {
8
- data?: any;
9
- };
8
+ export type AXGridLayoutWidget = import('gridstack').GridStackWidget;
10
9
  export type AXGridLayoutContainerElement = import('gridstack').GridHTMLElement;
11
10
  export type AXGridLayoutWidgetElement = import('gridstack').GridItemHTMLElement;
12
11
  export type AXGridLayoutEventEvent = {
@@ -20,15 +19,12 @@ export type AXGridLayoutNodesEvent = {
20
19
  event: Event;
21
20
  nodes: AXGridLayoutNode[];
22
21
  };
22
+ export interface AXGridLayoutChangedEvent extends NXEvent<AXGridLayoutContainerComponent> {
23
+ nodes: AXGridLayoutNode[];
24
+ }
23
25
  export type AXGridLayoutDroppedEvent = {
24
26
  event: Event;
25
27
  previousNode: AXGridLayoutNode;
26
28
  newNode: AXGridLayoutNode;
27
29
  };
28
- export interface AXGridLayoutContainerCompElement extends AXGridLayoutContainerElement {
29
- _gridComp?: AXGridLayoutContainerComponent;
30
- }
31
- export interface AXGridLayoutWidgetCompElement extends AXGridLayoutWidgetElement {
32
- _gridWidgetComp?: AXGridLayoutWidgetComponent | AXGridLayoutWidgetDirective;
33
- }
34
30
  export type AXSaveCallback = import('gridstack').SaveFcn;
@@ -1,6 +1,11 @@
1
1
  export * from './lib/image-editor-container/image-editor-container.component';
2
- export * from './lib/image-editor-tools/image-editor-color-picker/image-editor-color-picker.component';
3
2
  export * from './lib/image-editor-tools/image-editor-crop/image-editor-crop.component';
4
- export * from './lib/image-editor-tools/image-editor-pen-mode-changer/image-editor-pen-mode-changer.component';
3
+ export * from './lib/image-editor-tools/image-editor-header/image-editor-header.component';
4
+ export * from './lib/image-editor-tools/image-editor-highlight/image-editor-highlight.component';
5
+ export * from './lib/image-editor-tools/image-editor-history/image-editor-history.component';
6
+ export * from './lib/image-editor-tools/image-editor-pen/image-editor-pen.component';
7
+ export * from './lib/image-editor-tools/image-editor-rotate/image-editor-rotate.component';
8
+ export * from './lib/image-editor-tools/image-editor-tool-selector/image-editor-tool-selector.component';
5
9
  export * from './lib/image-editor-view/image-editor-view.component';
6
10
  export * from './lib/image-editor.module';
11
+ export * from './lib/image-editor.service';
@@ -1,6 +1,7 @@
1
1
  import { MXInputBaseValueComponent, MXLookComponent } from '@acorex/components/common';
2
2
  import { AXDialogService } from '@acorex/components/dialog';
3
3
  import { ElementRef } from '@angular/core';
4
+ import { AXImageEditorViewComponent } from '../image-editor-view/image-editor-view.component';
4
5
  import { AXImageEditorService } from '../image-editor.service';
5
6
  import * as i0 from "@angular/core";
6
7
  declare const AXImageEditorContainerComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
@@ -16,6 +17,7 @@ export declare class AXImageEditorContainerComponent extends AXImageEditorContai
16
17
  /** @ignore */
17
18
  protected service: AXImageEditorService;
18
19
  imageEditorContainer: import("@angular/core").Signal<ElementRef<any>>;
20
+ view: import("@angular/core").Signal<AXImageEditorViewComponent>;
19
21
  /** @ignore */
20
22
  protected dialogService: AXDialogService;
21
23
  /** @ignore */
@@ -28,7 +30,8 @@ export declare class AXImageEditorContainerComponent extends AXImageEditorContai
28
30
  draggable: boolean;
29
31
  }>;
30
32
  save(): void;
33
+ protected cropButtonHandler(): void;
31
34
  static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorContainerComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorContainerComponent, "ax-image-editor-container", never, { "look": { "alias": "look"; "required": false; }; }, { "onValueChanged": "onValueChanged"; }, never, ["*", "ax-validation-rule"], true, never>;
35
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorContainerComponent, "ax-image-editor-container", never, { "look": { "alias": "look"; "required": false; }; }, { "onValueChanged": "onValueChanged"; }, ["view"], ["ax-image-editor-view", "ax-validation-rule"], true, never>;
33
36
  }
34
37
  export {};
@@ -5,14 +5,9 @@ import * as i0 from "@angular/core";
5
5
  * @category Components
6
6
  */
7
7
  export declare class AXImageEditorCropComponent {
8
- /** @ignore */
9
8
  protected service: AXImageEditorService;
10
- /** @ignore */
11
- protected rotateRightHandler(): void;
12
- /** @ignore */
13
- protected rotateLeftHandler(): void;
14
- /** @ignore */
15
- protected crop(): void;
9
+ cropPressed: import("@angular/core").OutputEmitterRef<void>;
10
+ protected cropButtonHandler(): void;
16
11
  static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorCropComponent, never>;
17
- static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorCropComponent, "ax-image-editor-crop", never, {}, {}, never, never, true, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorCropComponent, "ax-image-editor-crop", never, {}, { "cropPressed": "cropPressed"; }, never, never, true, never>;
18
13
  }
@@ -0,0 +1,12 @@
1
+ import { AXImageEditorContainerComponent } from '../../image-editor-container/image-editor-container.component';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXimageEditorHeaderComponent {
8
+ protected parent: AXImageEditorContainerComponent;
9
+ protected saveHandler(): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXimageEditorHeaderComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXimageEditorHeaderComponent, "ax-image-editor-header", never, {}, {}, never, never, true, never>;
12
+ }
@@ -0,0 +1,18 @@
1
+ import { AXImageEditorService } from '../../image-editor.service';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXImageEditorHighlightComponent {
8
+ protected service: AXImageEditorService;
9
+ /** @ignore */
10
+ protected selectedColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
11
+ /** @ignore */
12
+ protected value: number;
13
+ protected changeColorHandler(e: string): void;
14
+ /** @ignore */
15
+ protected valueHandler(e: number): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorHighlightComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorHighlightComponent, "ax-image-editor-highlight", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,13 @@
1
+ import { AXImageEditorService } from '../../image-editor.service';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXImageEditorHistoryComponent {
8
+ protected service: AXImageEditorService;
9
+ protected UndoHandler(): void;
10
+ protected RedoHandler(): void;
11
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorHistoryComponent, never>;
12
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorHistoryComponent, "ax-image-editor-history", never, {}, {}, never, never, true, never>;
13
+ }
@@ -0,0 +1,18 @@
1
+ import { AXImageEditorService } from '../../image-editor.service';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXImageEditorPenComponent {
8
+ protected service: AXImageEditorService;
9
+ /** @ignore */
10
+ protected value: number;
11
+ /** @ignore */
12
+ protected selectedColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
13
+ protected changeColorHandler(e: string): void;
14
+ /** @ignore */
15
+ protected valueHandler(e: number): void;
16
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorPenComponent, never>;
17
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorPenComponent, "ax-image-editor-pen", never, {}, {}, never, never, true, never>;
18
+ }
@@ -0,0 +1,16 @@
1
+ import { AXImageEditorService } from '../../image-editor.service';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXImageEditorRotateComponent {
8
+ /** @ignore */
9
+ protected service: AXImageEditorService;
10
+ /** @ignore */
11
+ protected rotateRightHandler(): void;
12
+ /** @ignore */
13
+ protected rotateLeftHandler(): void;
14
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorRotateComponent, never>;
15
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorRotateComponent, "ax-image-editor-rotate", never, {}, {}, never, never, true, never>;
16
+ }
@@ -0,0 +1,12 @@
1
+ import { AXImageEditorService } from '../../image-editor.service';
2
+ import * as i0 from "@angular/core";
3
+ /**
4
+ * paint mode.
5
+ * @category Components
6
+ */
7
+ export declare class AXImageEditorToolSelectorComponent {
8
+ protected service: AXImageEditorService;
9
+ protected changeToolHandler(tool: 'pen' | 'highlight' | 'crop' | 'rotate'): void;
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorToolSelectorComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorToolSelectorComponent, "ax-image-editor-tool-selector", never, {}, {}, never, never, true, never>;
12
+ }
@@ -27,10 +27,14 @@ export declare class AXImageEditorViewComponent extends MXBaseComponent implemen
27
27
  /** @ignore */
28
28
  protected cropEndY: import("@angular/core").WritableSignal<number>;
29
29
  /** @ignore */
30
+ protected isDrawRectangleCreated: import("@angular/core").WritableSignal<boolean>;
31
+ /** @ignore */
30
32
  protected parent: AXImageEditorContainerComponent;
31
33
  protected renderer: Renderer2;
32
34
  /** @ignore */
33
35
  protected imageAspect: import("@angular/core").Signal<number>;
36
+ protected imageEditorHistory: import("@angular/core").WritableSignal<HTMLImageElement[]>;
37
+ protected imageEditorHistoryPointer: import("@angular/core").WritableSignal<number>;
34
38
  private ngZone;
35
39
  /** @ignore */
36
40
  resizeEventListener: any;
@@ -47,6 +51,8 @@ export declare class AXImageEditorViewComponent extends MXBaseComponent implemen
47
51
  /** @ignore */
48
52
  protected imageLoaded(): void;
49
53
  /** @ignore */
54
+ protected imageChanged(): void;
55
+ /** @ignore */
50
56
  protected penConfigHandler(penType: 'pen' | 'highlight'): void;
51
57
  /** @ignore */
52
58
  protected getBoundingCanvasHandler(): DOMRect;
@@ -67,7 +73,7 @@ export declare class AXImageEditorViewComponent extends MXBaseComponent implemen
67
73
  /** @ignore */
68
74
  protected cropImageFunction(): void;
69
75
  /** @ignore */
70
- protected cropButtonHandler(): void;
76
+ cropButtonHandler(): void;
71
77
  /** @ignore */
72
78
  protected rotateImage(): void;
73
79
  /** @ignore */
@@ -9,13 +9,17 @@ import * as i7 from "@acorex/components/decorators";
9
9
  import * as i8 from "@acorex/components/loading";
10
10
  import * as i9 from "@acorex/components/dialog";
11
11
  import * as i10 from "@acorex/components/tooltip";
12
- import * as i11 from "./image-editor-tools/image-editor-color-picker/image-editor-color-picker.component";
13
- import * as i12 from "./image-editor-tools/image-editor-pen-mode-changer/image-editor-pen-mode-changer.component";
14
- import * as i13 from "./image-editor-view/image-editor-view.component";
15
- import * as i14 from "./image-editor-container/image-editor-container.component";
16
- import * as i15 from "./image-editor-tools/image-editor-crop/image-editor-crop.component";
12
+ import * as i11 from "./image-editor-view/image-editor-view.component";
13
+ import * as i12 from "./image-editor-container/image-editor-container.component";
14
+ import * as i13 from "./image-editor-tools/image-editor-crop/image-editor-crop.component";
15
+ import * as i14 from "./image-editor-tools/image-editor-history/image-editor-history.component";
16
+ import * as i15 from "./image-editor-tools/image-editor-tool-selector/image-editor-tool-selector.component";
17
+ import * as i16 from "./image-editor-tools/image-editor-pen/image-editor-pen.component";
18
+ import * as i17 from "./image-editor-tools/image-editor-highlight/image-editor-highlight.component";
19
+ import * as i18 from "./image-editor-tools/image-editor-rotate/image-editor-rotate.component";
20
+ import * as i19 from "./image-editor-tools/image-editor-header/image-editor-header.component";
17
21
  export declare class AXImageEditorModule {
18
22
  static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorModule, never>;
19
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXImageEditorModule, never, [typeof i1.AXButtonModule, typeof i2.FormsModule, typeof i3.AXRangeSliderModule, typeof i4.AXSelectBoxModule, typeof i5.AXColorBoxModule, typeof i6.AXPopoverModule, typeof i7.AXDecoratorModule, typeof i8.AXLoadingModule, typeof i9.AXDialogModule, typeof i10.AXTooltipModule, typeof i11.AXImageEditorColorPickerComponent, typeof i12.AXImageEditorPenModeChangerComponent, typeof i13.AXImageEditorViewComponent, typeof i14.AXImageEditorContainerComponent, typeof i15.AXImageEditorCropComponent], [typeof i11.AXImageEditorColorPickerComponent, typeof i12.AXImageEditorPenModeChangerComponent, typeof i13.AXImageEditorViewComponent, typeof i14.AXImageEditorContainerComponent, typeof i15.AXImageEditorCropComponent]>;
23
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXImageEditorModule, never, [typeof i1.AXButtonModule, typeof i2.FormsModule, typeof i3.AXRangeSliderModule, typeof i4.AXSelectBoxModule, typeof i5.AXColorBoxModule, typeof i6.AXPopoverModule, typeof i7.AXDecoratorModule, typeof i8.AXLoadingModule, typeof i9.AXDialogModule, typeof i10.AXTooltipModule, typeof i11.AXImageEditorViewComponent, typeof i12.AXImageEditorContainerComponent, typeof i13.AXImageEditorCropComponent, typeof i14.AXImageEditorHistoryComponent, typeof i15.AXImageEditorToolSelectorComponent, typeof i16.AXImageEditorPenComponent, typeof i17.AXImageEditorHighlightComponent, typeof i18.AXImageEditorRotateComponent, typeof i19.AXimageEditorHeaderComponent], [typeof i11.AXImageEditorViewComponent, typeof i12.AXImageEditorContainerComponent, typeof i13.AXImageEditorCropComponent, typeof i14.AXImageEditorHistoryComponent, typeof i15.AXImageEditorToolSelectorComponent, typeof i16.AXImageEditorPenComponent, typeof i17.AXImageEditorHighlightComponent, typeof i18.AXImageEditorRotateComponent, typeof i19.AXimageEditorHeaderComponent]>;
20
24
  static ɵinj: i0.ɵɵInjectorDeclaration<AXImageEditorModule>;
21
25
  }
@@ -1,17 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  export declare class AXImageEditorService {
3
+ activeToolState: import("@angular/core").WritableSignal<"pen" | "highlight" | "crop" | "rotate" | "history">;
3
4
  penColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
4
- lineCap: import("@angular/core").WritableSignal<CanvasLineCap>;
5
- lineWidth: import("@angular/core").WritableSignal<number>;
5
+ highlightColor: import("@angular/core").WritableSignal<string | CanvasGradient | CanvasPattern>;
6
+ penWidth: import("@angular/core").WritableSignal<number>;
7
+ highlightWidth: import("@angular/core").WritableSignal<number>;
6
8
  penType: import("@angular/core").WritableSignal<"pen" | "highlight">;
7
- toggleClear: import("@angular/core").WritableSignal<{
8
- state: boolean;
9
- userInteract: boolean;
10
- }>;
11
- cropState: import("@angular/core").WritableSignal<{
12
- state: boolean;
13
- userInteract: boolean;
14
- }>;
15
9
  rotate: import("@angular/core").WritableSignal<{
16
10
  state: number;
17
11
  userInteract: boolean;
@@ -20,6 +14,8 @@ export declare class AXImageEditorService {
20
14
  newImage: import("@angular/core").WritableSignal<HTMLImageElement>;
21
15
  initialImage: import("@angular/core").WritableSignal<HTMLImageElement>;
22
16
  imageBlob: import("@angular/core").WritableSignal<Blob[]>;
17
+ undoPressed: import("@angular/core").WritableSignal<boolean>;
18
+ redoPressed: import("@angular/core").WritableSignal<boolean>;
23
19
  static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorService, never>;
24
20
  static ɵprov: i0.ɵɵInjectableDeclaration<AXImageEditorService>;
25
21
  }