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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/components",
3
- "version": "19.11.0-next.2",
3
+ "version": "19.11.0-next.3",
4
4
  "peerDependencies": {
5
5
  "@angular/common": ">=19.0.0",
6
6
  "@angular/core": ">=19.0.0",
@@ -37,6 +37,10 @@
37
37
  "types": "./audio-wave/index.d.ts",
38
38
  "default": "./fesm2022/acorex-components-audio-wave.mjs"
39
39
  },
40
+ "./autocomplete": {
41
+ "types": "./autocomplete/index.d.ts",
42
+ "default": "./fesm2022/acorex-components-autocomplete.mjs"
43
+ },
40
44
  "./avatar": {
41
45
  "types": "./avatar/index.d.ts",
42
46
  "default": "./fesm2022/acorex-components-avatar.mjs"
@@ -341,6 +345,10 @@
341
345
  "types": "./tag/index.d.ts",
342
346
  "default": "./fesm2022/acorex-components-tag.mjs"
343
347
  },
348
+ "./tag-box": {
349
+ "types": "./tag-box/index.d.ts",
350
+ "default": "./fesm2022/acorex-components-tag-box.mjs"
351
+ },
344
352
  "./text-area": {
345
353
  "types": "./text-area/index.d.ts",
346
354
  "default": "./fesm2022/acorex-components-text-area.mjs"
@@ -1,12 +1,15 @@
1
1
  import { AXButtonGroupItemComponent } from '@acorex/components/button-group';
2
- import { AXValueChangedEvent } from '@acorex/components/common';
2
+ import { AXDataSource, AXValueChangedEvent } from '@acorex/components/common';
3
+ import { AXSelectBoxComponent } from '@acorex/components/select-box';
3
4
  import * as i0 from "@angular/core";
4
5
  export declare class AXQueryBuilderComponent {
5
6
  #private;
6
- protected reRender: import("@angular/core").WritableSignal<boolean>;
7
7
  columnData: import("@angular/core").InputSignal<any[]>;
8
8
  queryData: import("@angular/core").ModelSignal<any[]>;
9
9
  onValueChanged: import("@angular/core").OutputEmitterRef<any[]>;
10
+ protected selectBoxRef: import("@angular/core").Signal<AXSelectBoxComponent>;
11
+ protected selectedItem: import("@angular/core").WritableSignal<any>;
12
+ ds: AXDataSource<unknown>;
10
13
  protected operators: {
11
14
  string: string[];
12
15
  boolean: string[];
@@ -0,0 +1,3 @@
1
+ # @acorex/components/text-box
2
+
3
+ Secondary entry point of `@acorex/components`. It can be used by importing from `@acorex/components/text-box`.
@@ -0,0 +1,2 @@
1
+ export * from './lib/tag-box.component';
2
+ export * from './lib/tag-box.module';
@@ -0,0 +1,30 @@
1
+ import { AXAutocompleteParentComponent, MXInputBaseValueComponent, MXLookComponent } from '@acorex/components/common';
2
+ import { AXUnsubscriber } from '@acorex/core/utils';
3
+ import { OnInit } from '@angular/core';
4
+ import * as i0 from "@angular/core";
5
+ declare const AXTagBoxComponent_base: import("polytype").Polytype.ClusteredConstructor<[{
6
+ new (): MXInputBaseValueComponent<string[]>;
7
+ ɵfac: import("@angular/core").ɵɵFactoryDeclaration<MXInputBaseValueComponent<any>, never>;
8
+ ɵprov: import("@angular/core").ɵɵInjectableDeclaration<MXInputBaseValueComponent<any>>;
9
+ }, typeof MXLookComponent, typeof AXAutocompleteParentComponent]>;
10
+ /**
11
+ * The TagBox is a component which detects user interaction and triggers a corresponding event
12
+ *
13
+ * @category Components
14
+ */
15
+ export declare class AXTagBoxComponent extends AXTagBoxComponent_base implements OnInit {
16
+ /** @ignore */
17
+ protected _updateOn: 'change' | 'blur' | 'submit';
18
+ _unsubscriber: AXUnsubscriber;
19
+ tags: import("@angular/core").WritableSignal<string[]>;
20
+ addOnComma: import("@angular/core").InputSignal<boolean>;
21
+ showRemoveButton: import("@angular/core").InputSignal<boolean>;
22
+ inputValue: import("@angular/core").ModelSignal<string>;
23
+ ngOnInit(): void;
24
+ addItem(item: string): void;
25
+ removeItem(index: number): void;
26
+ reset(e?: boolean): void;
27
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXTagBoxComponent, never>;
28
+ static ɵcmp: i0.ɵɵComponentDeclaration<AXTagBoxComponent, "ax-tag-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "allowNull": { "alias": "allowNull"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "addOnComma": { "alias": "addOnComma"; "required": false; "isSignal": true; }; "showRemoveButton": { "alias": "showRemoveButton"; "required": false; "isSignal": true; }; "inputValue": { "alias": "inputValue"; "required": false; "isSignal": true; }; }, { "onBlur": "onBlur"; "onFocus": "onFocus"; "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onKeyDown": "onKeyDown"; "onKeyUp": "onKeyUp"; "onKeyPress": "onKeyPress"; "inputValue": "inputValueChange"; }, never, ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-autocomplete", "ax-validation-rule"], true, never>;
29
+ }
30
+ export {};
@@ -0,0 +1,7 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./tag-box.component";
3
+ export declare class AXTextBoxModule {
4
+ static ɵfac: i0.ɵɵFactoryDeclaration<AXTextBoxModule, never>;
5
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXTextBoxModule, never, [typeof i1.AXTagBoxComponent], [typeof i1.AXTagBoxComponent]>;
6
+ static ɵinj: i0.ɵɵInjectorDeclaration<AXTextBoxModule>;
7
+ }
@@ -1,106 +0,0 @@
1
- import { OnDestroy, OnInit } from '@angular/core';
2
- import { AXGridLayoutNode, AXGridLayoutWidget, AXGridLayoutWidgetCompElement } from './types';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * A directive that turns any element into a GridStack widget.
6
- * It allows the element to be managed by the GridStack library,
7
- * enabling features like resizing, dragging, and layout customization.
8
- *
9
- * This directive creates an inner element inside the host element
10
- * and moves the widget content into it for better encapsulation and styling.
11
- *
12
- * @example
13
- * <div axGridLayoutWidget [options]="widgetOptions">Widget Content</div>
14
- */
15
- export declare class AXGridLayoutWidgetDirective implements OnInit, OnDestroy {
16
- /**
17
- * Reference to the native element of the directive.
18
- */
19
- private readonly elementRef;
20
- /**
21
- * Renderer2 for safe DOM manipulation.
22
- */
23
- private readonly renderer;
24
- /**
25
- * The native element of the directive.
26
- */
27
- el: AXGridLayoutWidgetCompElement;
28
- /**
29
- * The current options of the widget. These options are used to define the layout,
30
- * content, and behavior of the widget within the grid.
31
- */
32
- private _options?;
33
- /**
34
- * Reference to the newly created inner element.
35
- */
36
- private innerElement;
37
- /**
38
- * Input property that represents the widget's configuration options.
39
- *
40
- * The options include properties such as position, size, content, and other
41
- * configuration values. These options are updated dynamically.
42
- *
43
- * @param {AXGridLayoutNode} val The configuration object for the widget.
44
- * @returns {AXGridLayoutWidgetCompElement} The element associated with the widget.
45
- */
46
- options: import("@angular/core").InputSignalWithTransform<import("gridstack").GridStackNode, import("gridstack").GridStackNode>;
47
- /**
48
- * Initializes the directive and sets up the inner element.
49
- * Create a new inner element
50
- * Move the host element's content into the new inner element
51
- * Append the inner element to the host element
52
- * Set the reference to the grid widget directive
53
- */
54
- ngOnInit(): void;
55
- /**
56
- * Cleans up the directive when it is destroyed.
57
- */
58
- ngOnDestroy(): void;
59
- /**
60
- * Clears the widget's options.
61
- *
62
- * This method removes any existing options set for the widget and resets it
63
- * to its default state.
64
- */
65
- clearOptions(): void;
66
- /**
67
- * Removes this widget from the grid.
68
- *
69
- * This method interacts with GridStack to remove the widget from the layout.
70
- * Once removed, the widget will no longer be part of the grid.
71
- */
72
- removeWidget(): void;
73
- /**
74
- * Sets whether the widget can be locked (i.e., not resizable).
75
- *
76
- * @param {boolean} state Whether the widget should be locked or not.
77
- * @remarks
78
- * If the widget is locked, it cannot be resized.
79
- */
80
- setLockable(state: boolean): void;
81
- /**
82
- * Sets whether the widget can be resized.
83
- *
84
- * @param {boolean} state Whether the widget should be resizable or not.
85
- * @remarks
86
- * If the widget is resizable, the user can change its size by dragging.
87
- */
88
- setResizable(state: boolean): void;
89
- /**
90
- * Updates the options of the widget.
91
- *
92
- * @param {AXGridLayoutWidget} options The new options to apply to the widget.
93
- */
94
- setOptions(options: AXGridLayoutWidget): void;
95
- /**
96
- * Retrieves the current options of the widget.
97
- *
98
- * @returns {AXGridLayoutNode} The current configuration options of the widget.
99
- * @remarks
100
- * This method provides access to the widget's layout and configuration.
101
- * If no specific options are set, it returns the default options.
102
- */
103
- getOptions(): AXGridLayoutNode;
104
- static ɵfac: i0.ɵɵFactoryDeclaration<AXGridLayoutWidgetDirective, never>;
105
- static ɵdir: i0.ɵɵDirectiveDeclaration<AXGridLayoutWidgetDirective, "[axGridLayoutWidget]", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
106
- }
@@ -1,17 +0,0 @@
1
- import { AXImageEditorService } from '../../image-editor.service';
2
- import * as i0 from "@angular/core";
3
- /**
4
- * paint color picker.
5
- * @category Components
6
- */
7
- export declare class AXImageEditorColorPickerComponent {
8
- /** @ignore */
9
- protected service: AXImageEditorService;
10
- /** @ignore */
11
- protected selectedColor: import("@angular/core").WritableSignal<string>;
12
- /** @ignore */
13
- protected changeColorHandler(e: string): void;
14
- get __hostClass(): string;
15
- static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorColorPickerComponent, never>;
16
- static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorColorPickerComponent, "ax-image-editor-color-picker", never, {}, {}, never, never, true, never>;
17
- }
@@ -1,34 +0,0 @@
1
- import { AXPlacement } from '@acorex/components/common';
2
- import { AXPopoverCloseTrigger, AXPopoverOpenTrigger } from '@acorex/components/popover';
3
- import { AXImageEditorService } from '../../image-editor.service';
4
- import * as i0 from "@angular/core";
5
- /**
6
- * paint mode.
7
- * @category Components
8
- */
9
- export declare class AXImageEditorPenModeChangerComponent {
10
- /** @ignore */
11
- protected service: AXImageEditorService;
12
- /** @ignore */
13
- protected value: number;
14
- /** @ignore */
15
- protected popoverOption: {
16
- openOn: AXPopoverOpenTrigger;
17
- closeOn: AXPopoverCloseTrigger;
18
- placement: AXPlacement;
19
- offsetX: number;
20
- offsetY: number;
21
- };
22
- /** @ignore */
23
- protected selectedPenType: import("@angular/core").WritableSignal<"pen" | "highlight">;
24
- /** @ignore */
25
- protected penTypeHandler(e: 'pen' | 'highlight'): void;
26
- /** @ignore */
27
- protected clear(): void;
28
- /** @ignore */
29
- get __hostClass(): string;
30
- /** @ignore */
31
- protected valueHandler(e: number): void;
32
- static ɵfac: i0.ɵɵFactoryDeclaration<AXImageEditorPenModeChangerComponent, never>;
33
- static ɵcmp: i0.ɵɵComponentDeclaration<AXImageEditorPenModeChangerComponent, "ax-image-editor-pen-mode-changer", never, {}, {}, never, never, true, never>;
34
- }