@acorex/components 22.0.0-next.32 → 22.0.0-next.34

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.
@@ -0,0 +1,453 @@
1
+ import * as _angular_core from '@angular/core';
2
+ import { TemplateRef } from '@angular/core';
3
+ import { AXEvent, NXComponent, AXDataSource, AXStyleLookType, AXValueChangedEvent, AXListDataSource } from '@acorex/cdk/common';
4
+ import { AXPopoverComponent } from '@acorex/components/popover';
5
+ import { AXTreeViewNode, AXTreeViewDataSource, AXTreeViewSelectionBehavior, AXTreeViewItemTemplateContext, AXTreeViewSelectionChangeEvent } from '@acorex/components/tree-view';
6
+ import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
7
+
8
+ /**
9
+ * The lookup rendering mode. Each mode is rendered by its own internal mini component:
10
+ *
11
+ * - `drop-down-list` — a predefined list of options for picking single values.
12
+ * - `multi-select` — a predefined list of options for multiple item selection.
13
+ * - `drop-down-tree` — a tree-like structure for single item selection.
14
+ * - `multi-select-tree` — a tree-like structure for multiple item selection.
15
+ * - `multi-column` — a table-structured list with an editable typeahead input.
16
+ */
17
+ type AXLookupMode = 'drop-down-list' | 'multi-select' | 'drop-down-tree' | 'multi-select-tree' | 'multi-column';
18
+ /**
19
+ * A column definition for the `multi-column` lookup mode.
20
+ *
21
+ * - `field` — the item property rendered in this column.
22
+ * - `title` — the header text of the column.
23
+ * - `width` — optional CSS grid track size (e.g. `120px`, `1fr`, `minmax(80px, 1fr)`). Defaults to `1fr`.
24
+ */
25
+ interface AXLookupColumn {
26
+ field: string;
27
+ title: string;
28
+ width?: string;
29
+ }
30
+ /**
31
+ * A lookup item. Items are plain records; the lookup reads them through
32
+ * `valueField` / `textField` / `disabledField` mappings.
33
+ */
34
+ type AXLookupItem = Record<string, unknown>;
35
+ /**
36
+ * Internal event emitted by the mini view components when the user picks or toggles an item.
37
+ */
38
+ interface AXLookupItemClickEvent {
39
+ item: AXLookupItem;
40
+ value: unknown;
41
+ }
42
+ /**
43
+ * Emitted by `ax-lookup` when the selection changes, carrying the resolved selected items.
44
+ */
45
+ interface AXLookupSelectionChangedEvent extends AXEvent {
46
+ items: AXLookupItem[];
47
+ value: unknown | unknown[] | null;
48
+ }
49
+
50
+ /**
51
+ * Selection payload of the multi-select tree view.
52
+ */
53
+ interface AXLookupTreeSelectionEvent {
54
+ ids: string[];
55
+ nodes: AXTreeViewNode[];
56
+ }
57
+ /**
58
+ * Internal mini component for the `multi-select-tree` lookup mode:
59
+ * a predefined list rendered in a tree-like structure for multiple item selection.
60
+ *
61
+ * @category Components
62
+ */
63
+ declare class AXLookupMultiSelectTreeComponent {
64
+ /**
65
+ * The tree datasource: an array of nodes or a lazy children callback.
66
+ */
67
+ dataSource: _angular_core.InputSignal<AXTreeViewDataSource>;
68
+ /**
69
+ * The node property used as the selection value (tree `idField`).
70
+ */
71
+ valueField: _angular_core.InputSignal<string>;
72
+ /**
73
+ * The node property used as the display text (tree `titleField`).
74
+ */
75
+ textField: _angular_core.InputSignal<string>;
76
+ /**
77
+ * The node property marking a node as disabled.
78
+ */
79
+ disabledField: _angular_core.InputSignal<string>;
80
+ /**
81
+ * Currently selected values.
82
+ */
83
+ selectedValues: _angular_core.InputSignal<unknown[]>;
84
+ /**
85
+ * How selecting parent/child nodes affects each other. Passed through to the tree-view.
86
+ */
87
+ selectionBehavior: _angular_core.InputSignal<AXTreeViewSelectionBehavior>;
88
+ /**
89
+ * Custom template rendered for each tree node.
90
+ */
91
+ nodeTemplate: _angular_core.InputSignal<TemplateRef<AXTreeViewItemTemplateContext>>;
92
+ /**
93
+ * Emitted when the user changes the tree selection.
94
+ */
95
+ selectionChange: _angular_core.OutputEmitterRef<AXLookupTreeSelectionEvent>;
96
+ protected selectedIds: _angular_core.Signal<string[]>;
97
+ protected handleSelectionChange(e: AXTreeViewSelectionChangeEvent): void;
98
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupMultiSelectTreeComponent, never>;
99
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupMultiSelectTreeComponent, "ax-lookup-multi-select-tree", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "disabledField": { "alias": "disabledField"; "required": false; "isSignal": true; }; "selectedValues": { "alias": "selectedValues"; "required": false; "isSignal": true; }; "selectionBehavior": { "alias": "selectionBehavior"; "required": false; "isSignal": true; }; "nodeTemplate": { "alias": "nodeTemplate"; "required": false; "isSignal": true; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
100
+ }
101
+
102
+ /**
103
+ * An advanced drop-down (lookup) editor with five modes, `AXDataSource` support, and virtual scrolling.
104
+ *
105
+ * Modes (each rendered by its own internal mini component):
106
+ * - `drop-down-list` — a predefined list of options for picking single values.
107
+ * - `multi-select` — a predefined list of options for multiple item selection (chips in the trigger).
108
+ * - `drop-down-tree` — a predefined list rendered in a tree-like structure for single item selection.
109
+ * - `multi-select-tree` — a tree-like structure for multiple item selection.
110
+ * - `multi-column` — a table-structured list with an editable typeahead input.
111
+ *
112
+ * @category Components
113
+ */
114
+ declare class AXLookupComponent extends NXComponent {
115
+ #private;
116
+ /**
117
+ * The lookup rendering mode. Selects which mini component renders in the popup.
118
+ */
119
+ mode: _angular_core.InputSignal<AXLookupMode>;
120
+ /**
121
+ * The items source for list-based modes (`drop-down-list`, `multi-select`, `multi-column`).
122
+ * Accepts an `AXDataSource` (remote paging, `byKey`, server-side filter) or a plain array.
123
+ */
124
+ dataSource: _angular_core.InputSignal<AXLookupItem[] | AXDataSource<AXLookupItem>>;
125
+ /**
126
+ * The nodes source for tree modes (`drop-down-tree`, `multi-select-tree`):
127
+ * an array of nodes or a lazy children callback.
128
+ */
129
+ treeDataSource: _angular_core.InputSignal<AXTreeViewDataSource>;
130
+ /**
131
+ * The item property used as the selection value. Maps to the tree `idField` in tree modes.
132
+ */
133
+ valueField: _angular_core.InputSignal<string>;
134
+ /**
135
+ * The item property used as the display text. Maps to the tree `titleField` in tree modes
136
+ * (set it to `title` when your nodes use the default tree shape).
137
+ */
138
+ textField: _angular_core.InputSignal<string>;
139
+ /**
140
+ * The item property marking an item as disabled.
141
+ */
142
+ disabledField: _angular_core.InputSignal<string>;
143
+ /**
144
+ * Column definitions for the `multi-column` mode.
145
+ */
146
+ columns: _angular_core.InputSignal<AXLookupColumn[]>;
147
+ /**
148
+ * Whether typed text filters the datasource. Shows a search box inside the popup for
149
+ * `drop-down-list` / `multi-select`; in `multi-column` mode the trigger input itself filters.
150
+ */
151
+ searchable: _angular_core.InputSignal<boolean>;
152
+ /**
153
+ * The placeholder of the popup search box.
154
+ */
155
+ searchPlaceholder: _angular_core.InputSignal<string>;
156
+ /**
157
+ * The placeholder text shown when no value is selected.
158
+ */
159
+ placeholder: _angular_core.InputSignal<string>;
160
+ /**
161
+ * Whether the lookup is disabled.
162
+ */
163
+ disabled: _angular_core.ModelSignal<boolean>;
164
+ /**
165
+ * Whether the lookup is readonly.
166
+ */
167
+ readonly: _angular_core.ModelSignal<boolean>;
168
+ /**
169
+ * Predefined look scheme of the editor container. Same looks as other editor components like ax-text-box.
170
+ */
171
+ look: _angular_core.ModelSignal<AXStyleLookType>;
172
+ /**
173
+ * The fixed row height in pixels used by the virtual scroll viewport (list-based modes).
174
+ */
175
+ itemHeight: _angular_core.InputSignal<number>;
176
+ /**
177
+ * The maximum number of rows visible before the popup scrolls (list-based modes).
178
+ */
179
+ maxVisibleItems: _angular_core.InputSignal<number>;
180
+ /**
181
+ * How selecting parent/child nodes affects each other in `multi-select-tree` mode.
182
+ */
183
+ treeSelectionBehavior: _angular_core.InputSignal<AXTreeViewSelectionBehavior>;
184
+ /**
185
+ * Custom template rendered for each item/node. Context: `$implicit` is the item.
186
+ */
187
+ itemTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
188
+ /**
189
+ * Custom template for the selected item display (trigger text / chips). Context: `$implicit` is the item.
190
+ */
191
+ selectedTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
192
+ /**
193
+ * Custom template rendered when the datasource has no items.
194
+ */
195
+ emptyTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
196
+ /**
197
+ * Custom template rendered for rows whose page is still loading.
198
+ */
199
+ loadingTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
200
+ /**
201
+ * The selected value(s): a scalar in single modes, an array in
202
+ * `multi-select` / `multi-select-tree`. Supports two-way binding.
203
+ */
204
+ value: _angular_core.ModelSignal<unknown>;
205
+ /**
206
+ * Emitted when the selected value changes.
207
+ */
208
+ onValueChanged: _angular_core.OutputEmitterRef<AXValueChangedEvent<unknown>>;
209
+ /**
210
+ * Emitted when the selection changes, carrying the resolved selected items.
211
+ */
212
+ onSelectionChanged: _angular_core.OutputEmitterRef<AXLookupSelectionChangedEvent>;
213
+ /**
214
+ * Emitted when the popup opens.
215
+ */
216
+ onOpened: _angular_core.OutputEmitterRef<AXEvent>;
217
+ /**
218
+ * Emitted when the popup closes.
219
+ */
220
+ onClosed: _angular_core.OutputEmitterRef<AXEvent>;
221
+ /** Whether the popup is expanded. */
222
+ protected expanded: _angular_core.WritableSignal<boolean>;
223
+ /** Whether the current mode selects multiple values. */
224
+ protected isMultiple: _angular_core.Signal<boolean>;
225
+ /** Whether the current mode renders a tree. */
226
+ protected isTreeMode: _angular_core.Signal<boolean>;
227
+ /** Whether the trigger input is editable (multi-column typeahead). */
228
+ protected isEditableTrigger: _angular_core.Signal<boolean>;
229
+ /** Whether the popup shows a search box row. */
230
+ protected showPopupSearch: _angular_core.Signal<boolean>;
231
+ /** The datasource for list-based modes; plain arrays are converted. */
232
+ protected resolvedDataSource: _angular_core.Signal<AXDataSource<AXLookupItem>>;
233
+ /** The current selection normalized to an array. */
234
+ protected selectedValues: _angular_core.Signal<unknown[]>;
235
+ /** The resolved selected items (via cache, datasource `find`/`byKey`, or tree node lookup). */
236
+ protected selectedItems: _angular_core.WritableSignal<AXLookupItem[]>;
237
+ /** Display text shown in the trigger for single modes. */
238
+ protected displayText: _angular_core.Signal<string>;
239
+ /** The text typed in the editable (multi-column) trigger input. */
240
+ protected searchText: _angular_core.WritableSignal<string>;
241
+ /** The text typed in the popup search box. */
242
+ protected popupSearchText: _angular_core.WritableSignal<string>;
243
+ protected popoverRef: _angular_core.Signal<AXPopoverComponent>;
244
+ constructor();
245
+ /** Returns the display text of an item using the `textField` mapping. */
246
+ protected getItemText(item: AXLookupItem): string;
247
+ /**
248
+ * Opens (editable trigger) or toggles the popup on trigger click.
249
+ */
250
+ protected onTriggerClick(): void;
251
+ /**
252
+ * Keeps the expanded state in sync when the popover closes (e.g. click outside),
253
+ * and clears any applied search filter.
254
+ */
255
+ protected onPopoverClosed(): void;
256
+ /**
257
+ * Closes the popup.
258
+ */
259
+ close(): void;
260
+ /**
261
+ * Opens the popup.
262
+ */
263
+ open(): void;
264
+ /**
265
+ * Handles typing in the editable (multi-column) trigger input.
266
+ */
267
+ protected onTriggerSearchInput(text: string): void;
268
+ /**
269
+ * Handles typing in the popup search box.
270
+ */
271
+ protected onPopupSearchInput(text: string): void;
272
+ /**
273
+ * Commits a single pick (drop-down-list, drop-down-tree, multi-column) and closes the popup.
274
+ */
275
+ protected handleSinglePick(e: AXLookupItemClickEvent): void;
276
+ /**
277
+ * Toggles an item in the multi-select list; the popup stays open.
278
+ */
279
+ protected handleMultiToggle(e: AXLookupItemClickEvent): void;
280
+ /**
281
+ * Applies the multi-select-tree selection to the value; the popup stays open.
282
+ */
283
+ protected handleTreeSelectionChange(e: AXLookupTreeSelectionEvent): void;
284
+ /**
285
+ * Removes a single chip from the multi selection.
286
+ */
287
+ protected removeChip(event: Event, item: AXLookupItem): void;
288
+ /**
289
+ * Clears the whole selection.
290
+ */
291
+ protected clearAll(event: Event): void;
292
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupComponent, never>;
293
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupComponent, "ax-lookup", never, { "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "dataSource": { "alias": "dataSource"; "required": false; "isSignal": true; }; "treeDataSource": { "alias": "treeDataSource"; "required": false; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "disabledField": { "alias": "disabledField"; "required": false; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "searchable": { "alias": "searchable"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "look": { "alias": "look"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "maxVisibleItems": { "alias": "maxVisibleItems"; "required": false; "isSignal": true; }; "treeSelectionBehavior": { "alias": "treeSelectionBehavior"; "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; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "readonly": "readonlyChange"; "look": "lookChange"; "value": "valueChange"; "onValueChanged": "onValueChanged"; "onSelectionChanged": "onSelectionChanged"; "onOpened": "onOpened"; "onClosed": "onClosed"; }, never, ["ax-prefix", "ax-suffix"], true, never>;
294
+ }
295
+
296
+ /**
297
+ * Shared `AXDataSource` + CDK virtual scroll plumbing for the list-based lookup views
298
+ * (`ax-lookup-drop-down-list`, `ax-lookup-multi-select`, `ax-lookup-multi-column`).
299
+ */
300
+ declare abstract class AXLookupListViewBase {
301
+ #private;
302
+ /**
303
+ * The datasource providing the items (paged, remote-capable).
304
+ */
305
+ dataSource: _angular_core.InputSignal<AXDataSource<AXLookupItem>>;
306
+ /**
307
+ * The item property used as the selection value.
308
+ */
309
+ valueField: _angular_core.InputSignal<string>;
310
+ /**
311
+ * The item property used as the display text.
312
+ */
313
+ textField: _angular_core.InputSignal<string>;
314
+ /**
315
+ * The item property marking an item as disabled.
316
+ */
317
+ disabledField: _angular_core.InputSignal<string>;
318
+ /**
319
+ * Currently selected values (always an array, even for single selection).
320
+ */
321
+ selectedValues: _angular_core.InputSignal<unknown[]>;
322
+ /**
323
+ * The fixed row height in pixels used by the virtual scroll viewport.
324
+ */
325
+ itemHeight: _angular_core.InputSignal<number>;
326
+ /**
327
+ * The maximum number of rows visible before the popup scrolls.
328
+ */
329
+ maxVisibleItems: _angular_core.InputSignal<number>;
330
+ /**
331
+ * Custom template rendered for each item. Context: `$implicit` is the item.
332
+ */
333
+ itemTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
334
+ /**
335
+ * Custom template rendered when the datasource has no items.
336
+ */
337
+ emptyTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
338
+ /**
339
+ * Custom template rendered for rows whose page is still loading.
340
+ */
341
+ loadingTemplate: _angular_core.InputSignal<TemplateRef<unknown>>;
342
+ /**
343
+ * Emitted when the user picks (or toggles) an item.
344
+ */
345
+ itemClick: _angular_core.OutputEmitterRef<AXLookupItemClickEvent>;
346
+ /** CDK virtual scroll adapter over the datasource. */
347
+ protected listDataSource: _angular_core.WritableSignal<AXListDataSource<AXLookupItem>>;
348
+ protected totalCount: _angular_core.WritableSignal<number>;
349
+ protected isLoading: _angular_core.WritableSignal<boolean>;
350
+ protected isEmpty: _angular_core.Signal<boolean>;
351
+ /** Viewport height so the popup grows with the items up to `maxVisibleItems`. */
352
+ protected viewportHeight: _angular_core.Signal<number>;
353
+ protected viewportRef: _angular_core.Signal<CdkVirtualScrollViewport>;
354
+ constructor();
355
+ protected getValue(item: AXLookupItem): unknown;
356
+ protected getText(item: AXLookupItem): string;
357
+ protected isSelected(item: AXLookupItem): boolean;
358
+ protected isDisabled(item: AXLookupItem): boolean;
359
+ protected handleItemClick(item: AXLookupItem | null | undefined): void;
360
+ protected trackByIndex: (index: number) => number;
361
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupListViewBase, never>;
362
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AXLookupListViewBase, never, never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "disabledField": { "alias": "disabledField"; "required": false; "isSignal": true; }; "selectedValues": { "alias": "selectedValues"; "required": false; "isSignal": true; }; "itemHeight": { "alias": "itemHeight"; "required": false; "isSignal": true; }; "maxVisibleItems": { "alias": "maxVisibleItems"; "required": false; "isSignal": true; }; "itemTemplate": { "alias": "itemTemplate"; "required": false; "isSignal": true; }; "emptyTemplate": { "alias": "emptyTemplate"; "required": false; "isSignal": true; }; "loadingTemplate": { "alias": "loadingTemplate"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
363
+ }
364
+
365
+ /**
366
+ * Internal mini component for the `drop-down-list` lookup mode:
367
+ * a predefined, virtualized list of options for picking single values.
368
+ *
369
+ * @category Components
370
+ */
371
+ declare class AXLookupDropDownListComponent extends AXLookupListViewBase {
372
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupDropDownListComponent, never>;
373
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupDropDownListComponent, "ax-lookup-drop-down-list", never, {}, {}, never, never, true, never>;
374
+ }
375
+
376
+ /**
377
+ * Internal mini component for the `multi-select` lookup mode:
378
+ * a predefined, virtualized list of options with checkboxes for multiple item selection.
379
+ *
380
+ * @category Components
381
+ */
382
+ declare class AXLookupMultiSelectComponent extends AXLookupListViewBase {
383
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupMultiSelectComponent, never>;
384
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupMultiSelectComponent, "ax-lookup-multi-select", never, {}, {}, never, never, true, never>;
385
+ }
386
+
387
+ /**
388
+ * Internal mini component for the `drop-down-tree` lookup mode:
389
+ * a predefined list rendered in a tree-like structure for single item selection.
390
+ *
391
+ * @category Components
392
+ */
393
+ declare class AXLookupDropDownTreeComponent {
394
+ /**
395
+ * The tree datasource: an array of nodes or a lazy children callback.
396
+ */
397
+ dataSource: _angular_core.InputSignal<AXTreeViewDataSource>;
398
+ /**
399
+ * The node property used as the selection value (tree `idField`).
400
+ */
401
+ valueField: _angular_core.InputSignal<string>;
402
+ /**
403
+ * The node property used as the display text (tree `titleField`).
404
+ */
405
+ textField: _angular_core.InputSignal<string>;
406
+ /**
407
+ * The node property marking a node as disabled.
408
+ */
409
+ disabledField: _angular_core.InputSignal<string>;
410
+ /**
411
+ * Currently selected values (at most one for single selection).
412
+ */
413
+ selectedValues: _angular_core.InputSignal<unknown[]>;
414
+ /**
415
+ * Custom template rendered for each tree node.
416
+ */
417
+ nodeTemplate: _angular_core.InputSignal<TemplateRef<AXTreeViewItemTemplateContext>>;
418
+ /**
419
+ * Emitted when the user selects a node.
420
+ */
421
+ itemClick: _angular_core.OutputEmitterRef<AXLookupItemClickEvent>;
422
+ protected selectedIds: _angular_core.Signal<string[]>;
423
+ protected handleSelectionChange(e: AXTreeViewSelectionChangeEvent): void;
424
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupDropDownTreeComponent, never>;
425
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupDropDownTreeComponent, "ax-lookup-drop-down-tree", never, { "dataSource": { "alias": "dataSource"; "required": true; "isSignal": true; }; "valueField": { "alias": "valueField"; "required": false; "isSignal": true; }; "textField": { "alias": "textField"; "required": false; "isSignal": true; }; "disabledField": { "alias": "disabledField"; "required": false; "isSignal": true; }; "selectedValues": { "alias": "selectedValues"; "required": false; "isSignal": true; }; "nodeTemplate": { "alias": "nodeTemplate"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
426
+ }
427
+
428
+ /**
429
+ * Internal mini component for the `multi-column` lookup mode:
430
+ * a table-structured, virtualized list with a sticky header row.
431
+ *
432
+ * @category Components
433
+ */
434
+ declare class AXLookupMultiColumnComponent extends AXLookupListViewBase {
435
+ /**
436
+ * Column definitions rendered as a sticky header plus one grid cell per row.
437
+ */
438
+ columns: _angular_core.InputSignal<AXLookupColumn[]>;
439
+ /** CSS grid track list built from the column widths. */
440
+ protected gridTemplate: _angular_core.Signal<string>;
441
+ protected getCellText(item: AXLookupItem, column: AXLookupColumn): string;
442
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupMultiColumnComponent, never>;
443
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<AXLookupMultiColumnComponent, "ax-lookup-multi-column", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
444
+ }
445
+
446
+ declare class AXLookupModule {
447
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AXLookupModule, never>;
448
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AXLookupModule, never, [typeof AXLookupComponent, typeof AXLookupDropDownListComponent, typeof AXLookupMultiSelectComponent, typeof AXLookupDropDownTreeComponent, typeof AXLookupMultiSelectTreeComponent, typeof AXLookupMultiColumnComponent], [typeof AXLookupComponent, typeof AXLookupDropDownListComponent, typeof AXLookupMultiSelectComponent, typeof AXLookupDropDownTreeComponent, typeof AXLookupMultiSelectTreeComponent, typeof AXLookupMultiColumnComponent]>;
449
+ static ɵinj: _angular_core.ɵɵInjectorDeclaration<AXLookupModule>;
450
+ }
451
+
452
+ export { AXLookupComponent, AXLookupDropDownListComponent, AXLookupDropDownTreeComponent, AXLookupModule, AXLookupMultiColumnComponent, AXLookupMultiSelectComponent, AXLookupMultiSelectTreeComponent };
453
+ export type { AXLookupColumn, AXLookupItem, AXLookupItemClickEvent, AXLookupMode, AXLookupSelectionChangedEvent, AXLookupTreeSelectionEvent };