@acorex/components 22.0.0-next.22 → 22.0.0-next.24

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 (39) hide show
  1. package/combo-box/README.md +3 -0
  2. package/fesm2022/acorex-components-calendar.mjs +2 -2
  3. package/fesm2022/acorex-components-calendar.mjs.map +1 -1
  4. package/fesm2022/acorex-components-color-palette.mjs +2 -2
  5. package/fesm2022/acorex-components-color-palette.mjs.map +1 -1
  6. package/fesm2022/acorex-components-combo-box.mjs +669 -0
  7. package/fesm2022/acorex-components-combo-box.mjs.map +1 -0
  8. package/fesm2022/acorex-components-cron-job.mjs +12 -12
  9. package/fesm2022/acorex-components-cron-job.mjs.map +1 -1
  10. package/fesm2022/acorex-components-datetime-box.mjs +2 -2
  11. package/fesm2022/acorex-components-datetime-box.mjs.map +1 -1
  12. package/fesm2022/acorex-components-form.mjs +4 -3
  13. package/fesm2022/acorex-components-form.mjs.map +1 -1
  14. package/fesm2022/acorex-components-list.mjs +265 -19
  15. package/fesm2022/acorex-components-list.mjs.map +1 -1
  16. package/fesm2022/acorex-components-phone-box.mjs +6 -6
  17. package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
  18. package/fesm2022/acorex-components-query-builder.mjs +6 -2
  19. package/fesm2022/acorex-components-query-builder.mjs.map +1 -1
  20. package/fesm2022/acorex-components-rest-api-generator.mjs +2 -2
  21. package/fesm2022/acorex-components-rest-api-generator.mjs.map +1 -1
  22. package/fesm2022/acorex-components-rrule.mjs +2 -2
  23. package/fesm2022/acorex-components-rrule.mjs.map +1 -1
  24. package/fesm2022/acorex-components-scheduler-picker.mjs +16 -16
  25. package/fesm2022/acorex-components-scheduler-picker.mjs.map +1 -1
  26. package/fesm2022/acorex-components-scheduler.mjs +2 -2
  27. package/fesm2022/acorex-components-scheduler.mjs.map +1 -1
  28. package/fesm2022/acorex-components-select-box.mjs +176 -451
  29. package/fesm2022/acorex-components-select-box.mjs.map +1 -1
  30. package/fesm2022/acorex-components-selection-list.mjs +0 -4
  31. package/fesm2022/acorex-components-selection-list.mjs.map +1 -1
  32. package/package.json +7 -3
  33. package/select-box/README.md +2 -0
  34. package/types/acorex-components-combo-box.d.ts +202 -0
  35. package/types/acorex-components-list.d.ts +65 -3
  36. package/types/acorex-components-phone-box.d.ts +2 -2
  37. package/types/acorex-components-query-builder.d.ts +10 -9
  38. package/types/acorex-components-select-box.d.ts +36 -147
  39. package/types/acorex-components-selection-list.d.ts +1 -2
@@ -101,6 +101,24 @@ declare class AXListComponent extends MXSelectionValueComponent implements OnIni
101
101
  * @ignore
102
102
  */
103
103
  private postponeFocus;
104
+ /**
105
+ * When true, keep trying to scroll/focus the selected item until async data & layout are ready.
106
+ * @ignore
107
+ */
108
+ private pendingRevealSelection;
109
+ /**
110
+ * When true, focus the selected row after a successful reveal.
111
+ * @ignore
112
+ */
113
+ private pendingRevealFocus;
114
+ /**
115
+ * Cached index of the last known selected item (from click or a successful resolve).
116
+ * Allows scrollToIndex before that page is loaded into the virtual cache.
117
+ * @ignore
118
+ */
119
+ private knownSelectedIndex;
120
+ /** @ignore */
121
+ private revealRetryHandle;
104
122
  /**
105
123
  * @ignore
106
124
  */
@@ -149,16 +167,59 @@ declare class AXListComponent extends MXSelectionValueComponent implements OnIni
149
167
  * Renders the component by updating the viewport size, scrolling to the selected item, and optionally focusing the element.
150
168
  */
151
169
  render(): void;
170
+ /**
171
+ * Keeps trying to scroll (and optionally focus) the selected item until async list data
172
+ * and dropdown layout are ready. Call when the parent dropdown opens.
173
+ */
174
+ revealSelected(options?: {
175
+ focus?: boolean;
176
+ }): void;
177
+ /**
178
+ * Cancels an in-progress reveal (e.g. when the dropdown closes).
179
+ */
180
+ cancelRevealSelected(): void;
181
+ /**
182
+ * @ignore
183
+ */
184
+ private tryRevealSelected;
185
+ /** @ignore */
186
+ private scheduleRevealRetry;
187
+ /**
188
+ * Loads pages until the selected key appears in cache, then scrolls to it.
189
+ * @ignore
190
+ */
191
+ private findAndRevealSelectedAcrossPages;
192
+ /** @ignore */
193
+ private ensurePageLoaded;
194
+ /** @ignore */
195
+ private applyScrollToIndex;
196
+ /** @ignore */
197
+ private focusSelectedItem;
198
+ /** @ignore */
199
+ private rememberSelectedIndex;
152
200
  /**
153
201
  * Scrolls the viewport to the currently selected list item.
154
202
  */
155
203
  scrollTo(): void;
156
204
  /**
157
- * Resolves the selected item index from values already loaded in the list source.
158
- * Only considers loaded entries so lazy sources are not scanned by a global index.
205
+ * Scrolls the selected row into the visible viewport when it is cropped at the edge.
206
+ * @ignore
207
+ */
208
+ private ensureSelectedItemVisible;
209
+ /**
210
+ * Resolves the selected item index, preferring a known index so virtual scroll can load that page.
159
211
  * @ignore
160
212
  */
161
213
  private resolveSelectedIndex;
214
+ /**
215
+ * Resolves the selected item index from values already loaded in the list source.
216
+ * @ignore
217
+ */
218
+ private resolveSelectedIndexFromCache;
219
+ /**
220
+ * @ignore
221
+ */
222
+ private getSelectedKeys;
162
223
  /**
163
224
  * @ignore
164
225
  */
@@ -175,7 +236,8 @@ declare class AXListComponent extends MXSelectionValueComponent implements OnIni
175
236
  */
176
237
  scrollToIndex(index: number): void;
177
238
  /**
178
- * Sets focus to the first selectable list item. If no item is available, postpones focus.
239
+ * Sets focus to the selected list item (or the first item). Scrolls it into view first so
240
+ * virtualized rows are mounted, and uses preventScroll so the browser does not jump away.
179
241
  */
180
242
  focus(): void;
181
243
  /**
@@ -5,7 +5,7 @@ import { CountryItem } from '@acorex/core/constants';
5
5
  import * as i1 from '@angular/common';
6
6
  import * as i2 from '@angular/forms';
7
7
  import * as i3 from 'angular-imask';
8
- import * as i4 from '@acorex/components/select-box';
8
+ import * as i4 from '@acorex/components/combo-box';
9
9
  import * as i5 from '@acorex/components/search-box';
10
10
  import * as i6 from '@acorex/components/decorators';
11
11
  import * as i7 from '@acorex/components/button';
@@ -96,7 +96,7 @@ declare class AXPhoneBoxComponent extends AXPhoneBoxComponent_base {
96
96
 
97
97
  declare class AXPhoneBoxModule {
98
98
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXPhoneBoxModule, never>;
99
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXPhoneBoxModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.IMaskModule, typeof i4.AXSelectBoxModule, typeof i5.AXSearchBoxModule, typeof i6.AXDecoratorModule, typeof i7.AXButtonModule, typeof i8.AXTextBoxModule, typeof AXPhoneBoxComponent], [typeof AXPhoneBoxComponent]>;
99
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXPhoneBoxModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.IMaskModule, typeof i4.AXComboBoxModule, typeof i5.AXSearchBoxModule, typeof i6.AXDecoratorModule, typeof i7.AXButtonModule, typeof i8.AXTextBoxModule, typeof AXPhoneBoxComponent], [typeof AXPhoneBoxComponent]>;
100
100
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXPhoneBoxModule>;
101
101
  }
102
102
 
@@ -2,21 +2,22 @@ import * as _angular_core from '@angular/core';
2
2
  import * as i1 from '@acorex/components/button-group';
3
3
  import { AXButtonGroupItemComponent } from '@acorex/components/button-group';
4
4
  import { AXDataSource, AXValueChangedEvent } from '@acorex/cdk/common';
5
- import * as i3 from '@acorex/components/select-box';
6
- import { AXSelectBoxComponent } from '@acorex/components/select-box';
5
+ import * as i4 from '@acorex/components/combo-box';
6
+ import { AXComboBoxComponent } from '@acorex/components/combo-box';
7
7
  import * as i2 from '@acorex/components/decorators';
8
- import * as i4 from '@acorex/components/button';
9
- import * as i5 from '@acorex/components/text-box';
10
- import * as i6 from '@acorex/components/number-box';
11
- import * as i7 from '@acorex/components/datetime-box';
12
- import * as i8 from '@angular/common';
8
+ import * as i3 from '@acorex/components/select-box';
9
+ import * as i5 from '@acorex/components/button';
10
+ import * as i6 from '@acorex/components/text-box';
11
+ import * as i7 from '@acorex/components/number-box';
12
+ import * as i8 from '@acorex/components/datetime-box';
13
+ import * as i9 from '@angular/common';
13
14
 
14
15
  declare class AXQueryBuilderComponent {
15
16
  #private;
16
17
  readonly columnData: _angular_core.InputSignal<any[]>;
17
18
  queryData: _angular_core.ModelSignal<any[]>;
18
19
  onValueChanged: _angular_core.OutputEmitterRef<any[]>;
19
- protected selectBoxRef: _angular_core.Signal<AXSelectBoxComponent>;
20
+ protected selectBoxRef: _angular_core.Signal<AXComboBoxComponent>;
20
21
  protected selectedItem: _angular_core.WritableSignal<any>;
21
22
  ds: AXDataSource<unknown>;
22
23
  protected operators: {
@@ -45,7 +46,7 @@ declare class AXQueryBuilderComponent {
45
46
 
46
47
  declare class AXQueryBuilderModule {
47
48
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXQueryBuilderModule, never>;
48
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXQueryBuilderModule, never, [typeof i1.AXButtonGroupModule, typeof i2.AXDecoratorModule, typeof i3.AXSelectBoxModule, typeof i4.AXButtonModule, typeof i5.AXTextBoxModule, typeof i6.AXNumberBoxModule, typeof i7.AXDateTimeBoxModule, typeof i8.CommonModule, typeof AXQueryBuilderComponent], [typeof AXQueryBuilderComponent]>;
49
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXQueryBuilderModule, never, [typeof i1.AXButtonGroupModule, typeof i2.AXDecoratorModule, typeof i3.AXSelectBoxModule, typeof i4.AXComboBoxModule, typeof i5.AXButtonModule, typeof i6.AXTextBoxModule, typeof i7.AXNumberBoxModule, typeof i8.AXDateTimeBoxModule, typeof i9.CommonModule, typeof AXQueryBuilderComponent], [typeof AXQueryBuilderComponent]>;
49
50
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXQueryBuilderModule>;
50
51
  }
51
52
 
@@ -1,14 +1,11 @@
1
1
  import * as _angular_core from '@angular/core';
2
- import { OnDestroy, TemplateRef, ElementRef } from '@angular/core';
2
+ import { OnDestroy, TemplateRef } from '@angular/core';
3
3
  import * as polytype from 'polytype';
4
4
  import * as i2 from '@acorex/cdk/common';
5
- import { MXSelectionValueComponent, MXLookComponent, AXDataSource, MXSelectionBridgeService, AXEvent, AXValueChangedEvent, AXItemClickEvent, AXItemSelectedEvent } from '@acorex/cdk/common';
5
+ import { MXSelectionValueComponent, MXLookComponent, MXSelectionBridgeService, AXEvent, AXValueChangedEvent } from '@acorex/cdk/common';
6
6
  import * as i12 from '@acorex/components/dropdown';
7
7
  import { MXDropdownBoxBaseComponent, AXDropdownBoxComponent } from '@acorex/components/dropdown';
8
- import * as i13 from '@acorex/components/list';
9
- import { AXListComponent } from '@acorex/components/list';
10
8
  import { AXSearchBoxComponent } from '@acorex/components/search-box';
11
- import { Observable } from 'rxjs';
12
9
  import * as i1 from '@angular/common';
13
10
  import * as i3 from '@angular/forms';
14
11
  import * as i4 from '@acorex/components/check-box';
@@ -19,35 +16,26 @@ import * as i8 from '@acorex/components/popover';
19
16
  import * as i9 from '@acorex/components/loading';
20
17
  import * as i10 from '@angular/cdk/a11y';
21
18
  import * as i11 from '@acorex/components/text-box';
19
+ import * as i13 from '@acorex/components/selection-list';
22
20
 
23
21
  declare const AXSelectBoxComponent_base: polytype.Polytype.ClusteredConstructor<[typeof MXDropdownBoxBaseComponent, typeof MXSelectionValueComponent, typeof MXLookComponent]>;
24
22
  /**
25
- * The Button is a component which detects user interaction and triggers a corresponding event
26
- * @category
23
+ * Simple dropdown select for a static items array.
24
+ * For AXDataSource / lazy-load support, use ComboBox.
27
25
  */
28
26
  declare class AXSelectBoxComponent extends AXSelectBoxComponent_base implements OnDestroy {
29
27
  #private;
30
- /**
31
- * Determines if an item is truncated.
32
- *
33
- * @defaultValue true
34
- */
35
- readonly isItemTruncated: _angular_core.InputSignal<boolean>;
36
- /**
37
- * Determines if a tooltip is shown for an item.
38
- *
39
- * @defaultValue false
40
- */
41
- readonly showItemTooltip: _angular_core.InputSignal<boolean>;
42
- private host;
43
- /** Height of each list item in pixels, or 'auto' to let list measure. */
44
- itemHeight: _angular_core.InputSignal<number | "auto">;
45
- /** Maximum number of visible items before scrolling. */
46
- maxVisibleItems: _angular_core.InputSignal<number>;
47
- /** @ignore */
48
- private hotKeyService;
49
- /** @ignore */
50
- protected isLoading: _angular_core.WritableSignal<boolean>;
28
+ /** Static items shown in the dropdown. */
29
+ readonly items: _angular_core.InputSignal<any[]>;
30
+ readonly placeholder: _angular_core.InputSignal<string>;
31
+ readonly minRecordsForSearch: _angular_core.InputSignal<number>;
32
+ readonly caption: _angular_core.InputSignal<string>;
33
+ readonly itemTemplate: _angular_core.InputSignal<TemplateRef<any>>;
34
+ readonly selectedTemplate: _angular_core.InputSignal<TemplateRef<any>>;
35
+ readonly emptyTemplate: _angular_core.InputSignal<TemplateRef<any>>;
36
+ readonly maxVisibleItems: _angular_core.InputSignal<number>;
37
+ readonly dropdownWidth: _angular_core.InputSignal<string>;
38
+ readonly searchBoxAutoFocus: _angular_core.InputSignal<boolean>;
51
39
  /** @ignore */
52
40
  protected searchValue: _angular_core.WritableSignal<string>;
53
41
  /** @ignore */
@@ -57,141 +45,42 @@ declare class AXSelectBoxComponent extends AXSelectBoxComponent_base implements
57
45
  /** @ignore */
58
46
  protected _dropdownHeight: _angular_core.WritableSignal<string>;
59
47
  /** @ignore */
60
- protected _listDataSource: AXDataSource<any>;
61
- /** @ignore */
62
- private _originalDataSource;
63
- /** @ignore */
64
- private onChangedSubscription;
65
- /** @ignore */
66
- private onLoadingChangedSubscription;
67
- /**
68
- * Gets the data source for the component, which can be either an `AXDataSource` or an array of items.
69
- * @returns {AXDataSource<any> | any[]}
70
- */
71
- get dataSource(): AXDataSource<any> | any[];
72
- /**
73
- * Sets the data source, either as an `AXDataSource` or an array.
74
- * @param {AXDataSource<any> | any[]} v
75
- */
76
- set dataSource(v: AXDataSource<any> | any[]);
77
- /**
78
- * The placeholder text displayed when the component is empty.
79
- * @param {string} placeholder
80
- */
81
- placeholder: string;
82
- /**
83
- * The minRecordsForSearch defines the minimum number of records required to display the search box.
84
- * @param {number} minRecordsForSearch
85
- */
86
- minRecordsForSearch: number;
87
- /**
88
- * The caption text to be displayed in the component.
89
- * @param {string} caption
90
- */
91
- caption: string;
92
- /**
93
- * The template used to customize the rendering of items.
94
- * @param {TemplateRef<any>} itemTemplate
95
- */
96
- itemTemplate: TemplateRef<any>;
97
- /**
98
- * The template used to customize the rendering of selected items.
99
- * @param {TemplateRef<any>} selectedTemplate
100
- */
101
- selectedTemplate: TemplateRef<any>;
102
- /**
103
- * The template used to display when there are no items.
104
- * @param {TemplateRef<any>} emptyTemplate
105
- */
106
- emptyTemplate: TemplateRef<any>;
107
- /**
108
- * The template used to display while loading.
109
- * @param {TemplateRef<any>} loadingTemplate
110
- */
111
- loadingTemplate: TemplateRef<any>;
112
- /**
113
- * The width of the dropdown in pixels.
114
- * @defaultValue null
115
- */
116
- dropdownWidth: _angular_core.InputSignal<string>;
117
- /** @ignore */
118
- panel: ElementRef<HTMLDivElement>;
119
- /** @ignore */
120
- list: AXListComponent;
121
- /** @ignore */
122
- searchBox: AXSearchBoxComponent;
123
- searchBoxAutoFocus: _angular_core.InputSignal<boolean>;
124
- /** @ignore */
125
- protected dropdown: AXDropdownBoxComponent;
126
- /**
127
- * Service for managing selection data, injected via `AX_SELECTION_DATA_TOKEN`.
128
- */
129
- selectionService: MXSelectionBridgeService;
130
- searchEvent: Observable<any>;
131
- /** @ignore */
48
+ protected visibleItems: _angular_core.WritableSignal<any[]>;
49
+ private hotKeyService;
132
50
  private _unsubscriber;
133
- /** @ignore */
51
+ selectionService: MXSelectionBridgeService;
52
+ private readonly panel;
53
+ private readonly selectionList;
54
+ protected readonly searchBox: _angular_core.Signal<AXSearchBoxComponent>;
55
+ private readonly dropdownRef;
56
+ /** Required by MXDropdownBoxBaseComponent. */
57
+ protected get dropdown(): AXDropdownBoxComponent;
134
58
  protected ngOnInit(): void;
135
- /**
136
- * Proactively fetches item data if the component has a value but no corresponding item data.
137
- * This prevents showing "loading..." when the component has a value.
138
- */
139
- private fetchItemDataIfNeeded;
140
- /** @ignore */
141
59
  ngOnDestroy(): void;
142
- /**
143
- * Retrieves an item by its key.
144
- * @param {any} key
145
- */
146
- getItemByKey(key: any): Promise<any> | any;
60
+ /** Finds an item by value key in the full items array. */
61
+ getItemByKey(key: any): any;
62
+ /** Filters visible items by textField contains. */
63
+ search(term: string): void;
64
+ /** Resets selection and closes the dropdown. */
65
+ refresh(): void;
66
+ internalValueChanged(value: any): void;
147
67
  /** @ignore */
148
68
  protected _handleOnOpenedEvent(e: AXEvent): void;
149
69
  /** @ignore */
150
70
  protected _handleOnClosedEvent(e: AXEvent): void;
151
71
  /** @ignore */
152
- protected _handleFocus(): void;
153
- /** @ignore */
154
- protected _handleBadgeRemove(e: MouseEvent, item: any): void;
72
+ protected _handleBadgeRemove(e: MouseEvent, item: unknown): void;
155
73
  /** @ignore */
156
74
  protected _handleValueChanged(e: AXValueChangedEvent): void;
157
75
  /** @ignore */
158
- protected _handleItemClick(e: AXItemClickEvent): void;
159
- /** @ignore */
160
- protected _handleItemSelected(e: AXItemSelectedEvent): void;
161
- private resetSearchAfterSelection;
162
- /** @ignore */
163
- private setDropdownSize;
164
- /**
165
- * Shrinks list height to the visible overlay area so virtual scroll ends on fully
166
- * visible rows instead of inside an overflow:hidden clipped region.
167
- * @ignore
168
- */
169
- private _fitListHeightToAvailableSpace;
170
- private updateDropdownPosition;
171
- private updateDropdownSize;
172
- private _fitDropdownToContent;
173
- internalValueChanged(value: any): void;
174
- /** @ignore */
175
- _handleKeydown(e: KeyboardEvent): void;
176
- /** @ignore */
177
- private selectItemByNav;
178
- /**
179
- * Filters the data source based on the provided search term.
180
- * @param {string} term
181
- */
182
- search(term: string): void;
183
- /**
184
- * Refreshes the component by resetting state, clearing selection cache, refreshing the list, and closing the component.
185
- */
186
- refresh(): void;
187
- hostClickListener(): void;
76
+ protected _handleKeydown(e: KeyboardEvent): void;
188
77
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSelectBoxComponent, never>;
189
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSelectBoxComponent, "ax-select-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "disabledField": { "alias": "disabledField"; "required": false; }; "textTemplate": { "alias": "textTemplate"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "isItemTruncated": { "alias": "isItemTruncated"; "required": false; "isSignal": true; }; "showItemTooltip": { "alias": "showItemTooltip"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "maxVisibleItems": { "alias": "maxVisibleItems"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; }; "minRecordsForSearch": { "alias": "minRecordsForSearch"; "required": false; }; "caption": { "alias": "caption"; "required": false; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; }; "selectedTemplate": { "alias": "selectedTemplate"; "required": false; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; "isSignal": true; }; "searchBoxAutoFocus": { "alias": "searchBoxAutoFocus"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onOpened": "onOpened"; "onClosed": "onClosed"; "onItemSelected": "onItemSelected"; "onItemClick": "onItemClick"; }, ["searchBox"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-search-box", "ax-footer", "ax-validation-rule"], true, never>;
78
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXSelectBoxComponent, "ax-select-box", never, { "disabled": { "alias": "disabled"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "minValue": { "alias": "minValue"; "required": false; }; "maxValue": { "alias": "maxValue"; "required": false; }; "value": { "alias": "value"; "required": false; }; "state": { "alias": "state"; "required": false; }; "name": { "alias": "name"; "required": false; }; "id": { "alias": "id"; "required": false; }; "type": { "alias": "type"; "required": false; }; "look": { "alias": "look"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "valueField": { "alias": "valueField"; "required": false; }; "textField": { "alias": "textField"; "required": false; }; "disabledField": { "alias": "disabledField"; "required": false; }; "textTemplate": { "alias": "textTemplate"; "required": false; }; "selectedItems": { "alias": "selectedItems"; "required": false; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "minRecordsForSearch": { "alias": "minRecordsForSearch"; "required": false; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; "selectedTemplate": { "alias": "selectedTemplate"; "required": false; "isSignal": true; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; "isSignal": true; }; "maxVisibleItems": { "alias": "maxVisibleItems"; "required": false; "isSignal": true; }; "dropdownWidth": { "alias": "dropdownWidth"; "required": false; "isSignal": true; }; "searchBoxAutoFocus": { "alias": "searchBoxAutoFocus"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "stateChange": "stateChange"; "onValueChanged": "onValueChanged"; "onBlur": "onBlur"; "onFocus": "onFocus"; "readonlyChange": "readonlyChange"; "disabledChange": "disabledChange"; "onOpened": "onOpened"; "onClosed": "onClosed"; "onItemSelected": "onItemSelected"; "onItemClick": "onItemClick"; }, ["searchBox"], ["ax-prefix", "ax-clear-button", "ax-suffix", "ax-search-box", "ax-footer", "ax-validation-rule"], true, never>;
190
79
  }
191
80
 
192
81
  declare class AXSelectBoxModule {
193
82
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXSelectBoxModule, never>;
194
- static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXSelectBoxModule, never, [typeof i1.CommonModule, typeof i2.AXCommonModule, typeof i3.FormsModule, typeof i4.AXCheckBoxModule, typeof i5.AXBadgeModule, typeof i6.AXDecoratorModule, typeof i7.AXTranslationModule, typeof i8.AXPopoverModule, typeof i9.AXLoadingModule, typeof i10.A11yModule, typeof i11.AXTextBoxModule, typeof i12.AXDropdownModule, typeof i13.AXListModule, typeof AXSelectBoxComponent], [typeof AXSelectBoxComponent]>;
83
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXSelectBoxModule, never, [typeof i1.CommonModule, typeof i2.AXCommonModule, typeof i3.FormsModule, typeof i4.AXCheckBoxModule, typeof i5.AXBadgeModule, typeof i6.AXDecoratorModule, typeof i7.AXTranslationModule, typeof i8.AXPopoverModule, typeof i9.AXLoadingModule, typeof i10.A11yModule, typeof i11.AXTextBoxModule, typeof i12.AXDropdownModule, typeof i13.AXSelectionListModule, typeof AXSelectBoxComponent], [typeof AXSelectBoxComponent]>;
195
84
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXSelectBoxModule>;
196
85
  }
197
86
 
@@ -6,7 +6,6 @@ import * as i2 from '@angular/forms';
6
6
  import * as i3 from '@acorex/components/check-box';
7
7
  import * as i4 from '@acorex/components/radio';
8
8
  import * as i5 from '@acorex/components/label';
9
- import * as i6 from '@acorex/components/form';
10
9
 
11
10
  type AXSelectionListLook = 'solid' | 'divided' | 'card';
12
11
  /**
@@ -85,7 +84,7 @@ declare class AXSelectionListComponent extends MXSelectionValueComponent {
85
84
 
86
85
  declare class AXSelectionListModule {
87
86
  static ɵfac: i0.ɵɵFactoryDeclaration<AXSelectionListModule, never>;
88
- static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectionListModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.AXCheckBoxModule, typeof i4.AXRadioModule, typeof i5.AXLabelModule, typeof i6.AXFormModule, typeof AXSelectionListComponent], [typeof AXSelectionListComponent]>;
87
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AXSelectionListModule, never, [typeof i1.CommonModule, typeof i2.FormsModule, typeof i3.AXCheckBoxModule, typeof i4.AXRadioModule, typeof i5.AXLabelModule, typeof AXSelectionListComponent], [typeof AXSelectionListComponent]>;
89
88
  static ɵinj: i0.ɵɵInjectorDeclaration<AXSelectionListModule>;
90
89
  }
91
90