@mozaic-ds/angular 2.0.39 → 2.0.41

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mozaic-ds/angular",
3
- "version": "2.0.39",
3
+ "version": "2.0.41",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20.3.15",
@@ -9,7 +9,7 @@
9
9
  "dependencies": {
10
10
  "tslib": "^2.8.1",
11
11
  "libphonenumber-js": "^1.12.31",
12
- "@mozaic-ds/icons-angular": "^0.9.0"
12
+ "@mozaic-ds/icons-angular": "^0.17.0"
13
13
  },
14
14
  "sideEffects": false,
15
15
  "repository": {
@@ -2236,6 +2236,84 @@ declare class MozNavigationIndicatorComponent {
2236
2236
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozNavigationIndicatorComponent, "moz-navigation-indicator", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "active": { "alias": "active"; "required": false; "isSignal": true; }; "action": { "alias": "action"; "required": false; "isSignal": true; }; "light": { "alias": "light"; "required": false; "isSignal": true; }; "hideAction": { "alias": "hideAction"; "required": false; "isSignal": true; }; "pauseLabel": { "alias": "pauseLabel"; "required": false; "isSignal": true; }; "resumeLabel": { "alias": "resumeLabel"; "required": false; "isSignal": true; }; }, { "active": "activeChange"; "stepClick": "stepClick"; "actionClick": "actionClick"; }, never, never, true, never>;
2237
2237
  }
2238
2238
 
2239
+ interface CellCoord {
2240
+ row: number;
2241
+ col: number;
2242
+ }
2243
+ interface CellRange {
2244
+ start: CellCoord;
2245
+ end: CellCoord;
2246
+ }
2247
+ interface CellEditState {
2248
+ editingCell: CellCoord | null;
2249
+ originalValue: unknown;
2250
+ draftValue: unknown;
2251
+ validationError: string | null;
2252
+ }
2253
+ interface CellEditEvent<T = unknown> {
2254
+ row: T;
2255
+ rowIndex: number;
2256
+ field: string;
2257
+ oldValue: unknown;
2258
+ newValue: unknown;
2259
+ }
2260
+ interface CellEditCancelEvent {
2261
+ rowIndex: number;
2262
+ field: string;
2263
+ originalValue: unknown;
2264
+ }
2265
+ interface BulkEditEvent {
2266
+ range: CellRange | null;
2267
+ cellCount: number;
2268
+ rowIds: unknown[];
2269
+ fields: string[];
2270
+ selectionMode?: 'rows' | 'cells';
2271
+ rowSelection?: unknown;
2272
+ }
2273
+ interface BulkCopyEvent {
2274
+ range: CellRange | null;
2275
+ data: string[][];
2276
+ rowIds: unknown[];
2277
+ fields: string[];
2278
+ selectionMode?: 'rows' | 'cells';
2279
+ rowSelection?: unknown;
2280
+ }
2281
+ interface BulkPasteEvent {
2282
+ range: CellRange | null;
2283
+ data: string[][];
2284
+ rowIds: unknown[];
2285
+ fields: string[];
2286
+ selectionMode?: 'rows' | 'cells';
2287
+ rowSelection?: unknown;
2288
+ }
2289
+ interface FillDownEvent {
2290
+ sourceCell: CellCoord;
2291
+ sourceValue: unknown;
2292
+ direction: 'vertical' | 'horizontal';
2293
+ /** Total cells actually written (excludes the anchor and non-editable columns). */
2294
+ affectedCellCount: number;
2295
+ field?: string;
2296
+ targetRange?: {
2297
+ startRow: number;
2298
+ endRow: number;
2299
+ };
2300
+ /** @deprecated Use `affectedCellCount` instead. */
2301
+ affectedRowCount?: number;
2302
+ /** Target columns written in the horizontal fill. Non-editable columns are filtered out. */
2303
+ targetFields?: string[];
2304
+ }
2305
+ interface CellError {
2306
+ message: string;
2307
+ }
2308
+ interface BulkDeleteEvent {
2309
+ range: CellRange | null;
2310
+ cellCount: number;
2311
+ rowIds: unknown[];
2312
+ fields: string[];
2313
+ selectionMode?: 'rows' | 'cells';
2314
+ rowSelection?: unknown;
2315
+ }
2316
+
2239
2317
  type SortDirection = 'asc' | 'desc' | null;
2240
2318
  type CellEditorType = 'text' | 'number' | 'textarea' | 'select' | 'checkbox' | 'date' | 'toggle' | 'custom';
2241
2319
  interface ColumnDef<T = unknown> {
@@ -2297,6 +2375,8 @@ interface ColumnDef<T = unknown> {
2297
2375
  editTemplate?: TemplateRef<unknown>;
2298
2376
  /** Custom filter template rendered in the sub-header filter row */
2299
2377
  filterTemplate?: TemplateRef<unknown>;
2378
+ /** Validation function for cell values. Returns CellError or null. */
2379
+ cellValidator?: (value: unknown, row: T) => CellError | null;
2300
2380
  }
2301
2381
  interface ColumnStateEntry {
2302
2382
  field: string;
@@ -2357,65 +2437,7 @@ interface SortEvent {
2357
2437
  sorts: SortDef[];
2358
2438
  }
2359
2439
 
2360
- interface CellCoord {
2361
- row: number;
2362
- col: number;
2363
- }
2364
- interface CellRange {
2365
- start: CellCoord;
2366
- end: CellCoord;
2367
- }
2368
- interface CellEditState {
2369
- editingCell: CellCoord | null;
2370
- originalValue: unknown;
2371
- draftValue: unknown;
2372
- validationError: string | null;
2373
- }
2374
- interface CellEditEvent<T = unknown> {
2375
- row: T;
2376
- rowIndex: number;
2377
- field: string;
2378
- oldValue: unknown;
2379
- newValue: unknown;
2380
- }
2381
- interface CellEditCancelEvent {
2382
- rowIndex: number;
2383
- field: string;
2384
- originalValue: unknown;
2385
- }
2386
- interface BulkEditEvent {
2387
- range: CellRange | null;
2388
- cellCount: number;
2389
- rowIds: unknown[];
2390
- fields: string[];
2391
- selectionMode?: 'rows' | 'cells';
2392
- rowSelection?: unknown;
2393
- }
2394
- interface BulkCopyEvent {
2395
- range: CellRange | null;
2396
- data: string[][];
2397
- rowIds: unknown[];
2398
- fields: string[];
2399
- selectionMode?: 'rows' | 'cells';
2400
- rowSelection?: unknown;
2401
- }
2402
- interface BulkPasteEvent {
2403
- range: CellRange | null;
2404
- data: string[][];
2405
- rowIds: unknown[];
2406
- fields: string[];
2407
- selectionMode?: 'rows' | 'cells';
2408
- rowSelection?: unknown;
2409
- }
2410
- interface BulkDeleteEvent {
2411
- range: CellRange | null;
2412
- cellCount: number;
2413
- rowIds: unknown[];
2414
- fields: string[];
2415
- selectionMode?: 'rows' | 'cells';
2416
- rowSelection?: unknown;
2417
- }
2418
-
2440
+ type LoadingStrategy = 'pagination' | 'infinite-scroll';
2419
2441
  interface PaginationState {
2420
2442
  pageIndex: number;
2421
2443
  pageSize: number;
@@ -2428,6 +2450,10 @@ interface PageEvent {
2428
2450
  previousPageIndex: number;
2429
2451
  previousPageSize: number;
2430
2452
  }
2453
+ interface LoadMoreEvent {
2454
+ offset: number;
2455
+ limit: number;
2456
+ }
2431
2457
 
2432
2458
  interface FilterEvent {
2433
2459
  filters: ActiveFilter[];
@@ -2559,6 +2585,7 @@ declare class GridStateManager<T = unknown> {
2559
2585
  readonly sourceData: _angular_core.WritableSignal<T[]>;
2560
2586
  readonly totalItems: _angular_core.WritableSignal<number>;
2561
2587
  readonly mode: _angular_core.WritableSignal<"client" | "server">;
2588
+ readonly loadingStrategy: _angular_core.WritableSignal<LoadingStrategy>;
2562
2589
  readonly columnDefs: _angular_core.WritableSignal<ColumnDef<T>[]>;
2563
2590
  readonly columnStates: _angular_core.WritableSignal<ColumnStateEntry[]>;
2564
2591
  readonly activeSorts: _angular_core.WritableSignal<SortDef[]>;
@@ -2573,6 +2600,11 @@ declare class GridStateManager<T = unknown> {
2573
2600
  readonly scrollTop: _angular_core.WritableSignal<number>;
2574
2601
  readonly scrollViewportWidth: _angular_core.WritableSignal<number>;
2575
2602
  readonly scrollContentTotalWidth: _angular_core.WritableSignal<number>;
2603
+ readonly horizontalVirtualScrollEnabled: _angular_core.WritableSignal<boolean>;
2604
+ readonly visibleColumnRange: _angular_core.WritableSignal<{
2605
+ start: number;
2606
+ end: number;
2607
+ }>;
2576
2608
  readonly isLoading: _angular_core.WritableSignal<boolean>;
2577
2609
  readonly rowHeight: _angular_core.WritableSignal<number>;
2578
2610
  readonly density: _angular_core.WritableSignal<GridDensity>;
@@ -2587,6 +2619,9 @@ declare class GridStateManager<T = unknown> {
2587
2619
  } | null>;
2588
2620
  readonly isDragging: _angular_core.WritableSignal<boolean>;
2589
2621
  readonly focusSource: _angular_core.WritableSignal<"click" | "keyboard" | null>;
2622
+ readonly isFilling: _angular_core.WritableSignal<boolean>;
2623
+ readonly fillAnchor: _angular_core.WritableSignal<CellCoord | null>;
2624
+ readonly fillTarget: _angular_core.WritableSignal<CellCoord | null>;
2590
2625
  readonly expandedRowIds: _angular_core.WritableSignal<Set<unknown>>;
2591
2626
  readonly rowIdField: _angular_core.WritableSignal<string>;
2592
2627
  readonly activeSelectionMode: _angular_core.WritableSignal<"none" | "rows" | "cells">;
@@ -2600,10 +2635,28 @@ declare class GridStateManager<T = unknown> {
2600
2635
  readonly pinnedLeftWidth: _angular_core.Signal<number>;
2601
2636
  readonly pinnedRightWidth: _angular_core.Signal<number>;
2602
2637
  readonly unpinnedWidth: _angular_core.Signal<number>;
2638
+ /**
2639
+ * Unpinned columns actually rendered in data rows. When horizontal virtual scroll
2640
+ * is disabled, this is the full set; when enabled, it's the slice inside the
2641
+ * current visibleColumnRange. Header and filter row keep rendering the full set —
2642
+ * only row cells are virtualized.
2643
+ */
2644
+ /**
2645
+ * Effective column range with edit-mode widening: keeps the column being edited
2646
+ * inside the rendered window so the editor never gets torn down mid-edit.
2647
+ */
2648
+ readonly effectiveColumnRange: _angular_core.Signal<{
2649
+ start: number;
2650
+ end: number;
2651
+ }>;
2652
+ readonly renderedUnpinnedColumns: _angular_core.Signal<ColumnStateEntry[]>;
2653
+ readonly leadingColumnSpacer: _angular_core.Signal<number>;
2654
+ readonly trailingColumnSpacer: _angular_core.Signal<number>;
2603
2655
  readonly columnDefMap: _angular_core.Signal<Map<string, ColumnDef<T>>>;
2604
2656
  readonly gridTemplateColumns: _angular_core.Signal<string>;
2605
2657
  readonly totalContentWidth: _angular_core.Signal<number>;
2606
2658
  readonly totalPages: _angular_core.Signal<number>;
2659
+ readonly hasMore: _angular_core.Signal<boolean>;
2607
2660
  initColumns(defs: ColumnDef<T>[]): void;
2608
2661
  updateColumnState(field: string, updates: Partial<ColumnStateEntry>): void;
2609
2662
  private resolveWidth;
@@ -2662,9 +2715,14 @@ declare class MozGridComponent<T = unknown> {
2662
2715
  private readonly filterEngine;
2663
2716
  private readonly persistenceEngine;
2664
2717
  private readonly exportEngine;
2718
+ private readonly validationEngine;
2719
+ private readonly horizontalVirtualScrollEngine;
2720
+ private readonly paginationEngine;
2721
+ private readonly infiniteScrollEngine;
2665
2722
  private readonly gridBody;
2666
2723
  private readonly gridContainer;
2667
2724
  private readonly ngZone;
2725
+ private readonly destroyRef;
2668
2726
  private readonly drawerService;
2669
2727
  private readonly columnDefs;
2670
2728
  private readonly toolbarDefs;
@@ -2677,7 +2735,6 @@ declare class MozGridComponent<T = unknown> {
2677
2735
  readonly rowHeight: _angular_core.InputSignal<number>;
2678
2736
  readonly loading: _angular_core.InputSignal<boolean>;
2679
2737
  readonly rowSelection: _angular_core.InputSignal<boolean>;
2680
- readonly cellSelection: _angular_core.InputSignal<boolean>;
2681
2738
  readonly expandable: _angular_core.InputSignal<boolean>;
2682
2739
  readonly rowIdField: _angular_core.InputSignal<string>;
2683
2740
  readonly detailTemplate: _angular_core.InputSignal<TemplateRef<unknown> | null>;
@@ -2685,9 +2742,13 @@ declare class MozGridComponent<T = unknown> {
2685
2742
  readonly reorderable: _angular_core.InputSignal<boolean>;
2686
2743
  readonly stateKey: _angular_core.InputSignal<string | null>;
2687
2744
  readonly exportable: _angular_core.InputSignal<boolean>;
2745
+ readonly horizontalVirtualScroll: _angular_core.InputSignal<boolean>;
2746
+ readonly loadingStrategy: _angular_core.InputSignal<LoadingStrategy>;
2747
+ readonly scrollThreshold: _angular_core.InputSignal<number>;
2688
2748
  readonly plugins: _angular_core.InputSignal<GridPlugin[]>;
2689
2749
  readonly sortChange: _angular_core.OutputEmitterRef<SortEvent>;
2690
2750
  readonly pageChange: _angular_core.OutputEmitterRef<PageEvent>;
2751
+ readonly loadMore: _angular_core.OutputEmitterRef<LoadMoreEvent>;
2691
2752
  readonly cellEdit: _angular_core.OutputEmitterRef<CellEditEvent<T>>;
2692
2753
  readonly cellEditCancel: _angular_core.OutputEmitterRef<CellEditCancelEvent>;
2693
2754
  readonly selectionChange: _angular_core.OutputEmitterRef<RowSelectionEvent<T>>;
@@ -2698,6 +2759,7 @@ declare class MozGridComponent<T = unknown> {
2698
2759
  readonly bulkCopy: _angular_core.OutputEmitterRef<BulkCopyEvent>;
2699
2760
  readonly bulkPaste: _angular_core.OutputEmitterRef<BulkPasteEvent>;
2700
2761
  readonly bulkDelete: _angular_core.OutputEmitterRef<BulkDeleteEvent>;
2762
+ readonly fillDown: _angular_core.OutputEmitterRef<FillDownEvent>;
2701
2763
  readonly settingsChange: _angular_core.OutputEmitterRef<GridSettingsResult>;
2702
2764
  protected readonly isFullscreen: _angular_core.WritableSignal<boolean>;
2703
2765
  protected readonly groupPanelOpen: _angular_core.WritableSignal<boolean>;
@@ -2711,7 +2773,11 @@ declare class MozGridComponent<T = unknown> {
2711
2773
  protected readonly toolbarEndDefs: _angular_core.Signal<MozGridToolbarDef[]>;
2712
2774
  protected readonly selectionBannerVisible: _angular_core.Signal<boolean>;
2713
2775
  protected readonly selectionTotalCount: _angular_core.Signal<number>;
2776
+ protected readonly showPagination: _angular_core.Signal<boolean>;
2777
+ protected readonly showInfiniteScrollLoader: _angular_core.Signal<boolean>;
2714
2778
  private columnsInitialized;
2779
+ private stateRestored;
2780
+ private documentMouseUpHandler;
2715
2781
  constructor();
2716
2782
  onSortClick(event: {
2717
2783
  field: string;
@@ -2727,8 +2793,18 @@ declare class MozGridComponent<T = unknown> {
2727
2793
  private activateRowSelectionMode;
2728
2794
  onKeydown(event: KeyboardEvent): void;
2729
2795
  private handleEditModeKeydown;
2796
+ private resetInfiniteScrollIfActive;
2730
2797
  private refocusGrid;
2731
2798
  onMouseUp(): void;
2799
+ /**
2800
+ * Maps a display row index (from displayRow.index) to the actual index in
2801
+ * sourceData(). When grouping or sorting is active the display index doesn't
2802
+ * match sourceData order, so we resolve via object identity.
2803
+ */
2804
+ private displayIndexToSourceIndex;
2805
+ private applyFill;
2806
+ private applyVerticalFill;
2807
+ private applyHorizontalFill;
2732
2808
  onGroupToggle(groupKey: string): void;
2733
2809
  onRemoveGroup(field: string): void;
2734
2810
  onToggleGroupSort(field: string): void;
@@ -2760,6 +2836,7 @@ declare class MozGridComponent<T = unknown> {
2760
2836
  onBulkEdit(): void;
2761
2837
  onBulkCopy(): void;
2762
2838
  onBulkPaste(): Promise<void>;
2839
+ onBulkExport(): void;
2763
2840
  onBulkDelete(): void;
2764
2841
  private extractRangeData;
2765
2842
  private applyPasteData;
@@ -2768,7 +2845,7 @@ declare class MozGridComponent<T = unknown> {
2768
2845
  private deleteSelectedRows;
2769
2846
  private coerceAndValidate;
2770
2847
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridComponent<any>, never>;
2771
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozGridComponent<any>, "moz-grid", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "rowSelection": { "alias": "rowSelection"; "required": false; "isSignal": true; }; "cellSelection": { "alias": "cellSelection"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "rowIdField": { "alias": "rowIdField"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "reorderable": { "alias": "reorderable"; "required": false; "isSignal": true; }; "stateKey": { "alias": "stateKey"; "required": false; "isSignal": true; }; "exportable": { "alias": "exportable"; "required": false; "isSignal": true; }; "plugins": { "alias": "plugins"; "required": false; "isSignal": true; }; }, { "sortChange": "sortChange"; "pageChange": "pageChange"; "cellEdit": "cellEdit"; "cellEditCancel": "cellEditCancel"; "selectionChange": "selectionChange"; "cellSelectionChange": "cellSelectionChange"; "groupChange": "groupChange"; "filterChange": "filterChange"; "bulkEdit": "bulkEdit"; "bulkCopy": "bulkCopy"; "bulkPaste": "bulkPaste"; "bulkDelete": "bulkDelete"; "settingsChange": "settingsChange"; }, ["columnDefs", "toolbarDefs"], ["[mozGridFilterTags]"], true, never>;
2848
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozGridComponent<any>, "moz-grid", never, { "data": { "alias": "data"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "pagination": { "alias": "pagination"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "rowSelection": { "alias": "rowSelection"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "rowIdField": { "alias": "rowIdField"; "required": false; "isSignal": true; }; "detailTemplate": { "alias": "detailTemplate"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "reorderable": { "alias": "reorderable"; "required": false; "isSignal": true; }; "stateKey": { "alias": "stateKey"; "required": false; "isSignal": true; }; "exportable": { "alias": "exportable"; "required": false; "isSignal": true; }; "horizontalVirtualScroll": { "alias": "horizontalVirtualScroll"; "required": false; "isSignal": true; }; "loadingStrategy": { "alias": "loadingStrategy"; "required": false; "isSignal": true; }; "scrollThreshold": { "alias": "scrollThreshold"; "required": false; "isSignal": true; }; "plugins": { "alias": "plugins"; "required": false; "isSignal": true; }; }, { "sortChange": "sortChange"; "pageChange": "pageChange"; "loadMore": "loadMore"; "cellEdit": "cellEdit"; "cellEditCancel": "cellEditCancel"; "selectionChange": "selectionChange"; "cellSelectionChange": "cellSelectionChange"; "groupChange": "groupChange"; "filterChange": "filterChange"; "bulkEdit": "bulkEdit"; "bulkCopy": "bulkCopy"; "bulkPaste": "bulkPaste"; "bulkDelete": "bulkDelete"; "fillDown": "fillDown"; "settingsChange": "settingsChange"; }, ["columnDefs", "toolbarDefs"], ["[mozGridFilterTags]"], true, never>;
2772
2849
  }
2773
2850
 
2774
2851
  interface GroupRow<T = unknown> {
@@ -2810,8 +2887,6 @@ interface GridOptions<T = unknown> {
2810
2887
  rowSelection: boolean;
2811
2888
  /** Selection mode */
2812
2889
  selectionMode: 'single' | 'multiple';
2813
- /** Enable cell selection / navigation */
2814
- cellSelection: boolean;
2815
2890
  /** Enable column grouping */
2816
2891
  grouping: boolean;
2817
2892
  /** Enable fullscreen toggle */
@@ -2847,6 +2922,7 @@ declare class MozGridColumnDef<T = unknown> {
2847
2922
  readonly pinned: _angular_core.InputSignal<"start" | "end" | null>;
2848
2923
  readonly cellEditor: _angular_core.InputSignal<CellEditorType | undefined>;
2849
2924
  readonly cellEditorOptions: _angular_core.InputSignal<MozSelectOption[] | undefined>;
2925
+ readonly cellValidator: _angular_core.InputSignal<((value: unknown, row: unknown) => CellError | null) | undefined>;
2850
2926
  readonly cellTemplateInput: _angular_core.InputSignal<TemplateRef<unknown> | null>;
2851
2927
  readonly editTemplateInput: _angular_core.InputSignal<TemplateRef<unknown> | null>;
2852
2928
  readonly filterTemplateInput: _angular_core.InputSignal<TemplateRef<unknown> | null>;
@@ -2855,7 +2931,7 @@ declare class MozGridColumnDef<T = unknown> {
2855
2931
  readonly filterTemplateContent: _angular_core.Signal<TemplateRef<unknown> | undefined>;
2856
2932
  toColumnDef(): ColumnDef<T>;
2857
2933
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridColumnDef<any>, never>;
2858
- static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MozGridColumnDef<any>, "moz-grid-column-def", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "headerName": { "alias": "headerName"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "flex": { "alias": "flex"; "required": false; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "reorderable": { "alias": "reorderable"; "required": false; "isSignal": true; }; "groupable": { "alias": "groupable"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "hideable": { "alias": "hideable"; "required": false; "isSignal": true; }; "freezable": { "alias": "freezable"; "required": false; "isSignal": true; }; "headerMenuDisabled": { "alias": "headerMenuDisabled"; "required": false; "isSignal": true; }; "pinned": { "alias": "pinned"; "required": false; "isSignal": true; }; "cellEditor": { "alias": "cellEditor"; "required": false; "isSignal": true; }; "cellEditorOptions": { "alias": "cellEditorOptions"; "required": false; "isSignal": true; }; "cellTemplateInput": { "alias": "cellTemplate"; "required": false; "isSignal": true; }; "editTemplateInput": { "alias": "editTemplate"; "required": false; "isSignal": true; }; "filterTemplateInput": { "alias": "filterTemplate"; "required": false; "isSignal": true; }; }, {}, ["cellTemplateContent", "editTemplateContent", "filterTemplateContent"], never, true, never>;
2934
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MozGridColumnDef<any>, "moz-grid-column-def", never, { "field": { "alias": "field"; "required": true; "isSignal": true; }; "headerName": { "alias": "headerName"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "flex": { "alias": "flex"; "required": false; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; "isSignal": true; }; "resizable": { "alias": "resizable"; "required": false; "isSignal": true; }; "reorderable": { "alias": "reorderable"; "required": false; "isSignal": true; }; "groupable": { "alias": "groupable"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "visible": { "alias": "visible"; "required": false; "isSignal": true; }; "hideable": { "alias": "hideable"; "required": false; "isSignal": true; }; "freezable": { "alias": "freezable"; "required": false; "isSignal": true; }; "headerMenuDisabled": { "alias": "headerMenuDisabled"; "required": false; "isSignal": true; }; "pinned": { "alias": "pinned"; "required": false; "isSignal": true; }; "cellEditor": { "alias": "cellEditor"; "required": false; "isSignal": true; }; "cellEditorOptions": { "alias": "cellEditorOptions"; "required": false; "isSignal": true; }; "cellValidator": { "alias": "cellValidator"; "required": false; "isSignal": true; }; "cellTemplateInput": { "alias": "cellTemplate"; "required": false; "isSignal": true; }; "editTemplateInput": { "alias": "editTemplate"; "required": false; "isSignal": true; }; "filterTemplateInput": { "alias": "filterTemplate"; "required": false; "isSignal": true; }; }, {}, ["cellTemplateContent", "editTemplateContent", "filterTemplateContent"], never, true, never>;
2859
2935
  }
2860
2936
 
2861
2937
  declare class GridEngine<T = unknown> {
@@ -2876,6 +2952,7 @@ declare class GridEngine<T = unknown> {
2876
2952
  /**
2877
2953
  * Pipeline step 3: paginated data.
2878
2954
  * In server mode, the data is already paginated by the server.
2955
+ * In infinite-scroll mode, all accumulated data is displayed (no slice).
2879
2956
  * Pagination applies before grouping so groups are per-page.
2880
2957
  */
2881
2958
  readonly paginatedData: _angular_core.Signal<T[]>;
@@ -2955,6 +3032,44 @@ declare class CellSelectionEngine<T = unknown> {
2955
3032
  moveLeft(): void;
2956
3033
  moveRight(): void;
2957
3034
  moveToNextEditableCell(): void;
3035
+ startFill(row: number, col: number): void;
3036
+ /**
3037
+ * Extends the fill range. The dominant axis (the one with the largest delta
3038
+ * from the anchor) wins: vertical if |dRow| >= |dCol|, otherwise horizontal.
3039
+ * The fill is 1D — it's always locked to a single row or a single column.
3040
+ */
3041
+ extendFill(row: number, col: number): void;
3042
+ endFill(): {
3043
+ anchor: {
3044
+ row: number;
3045
+ col: number;
3046
+ };
3047
+ target: {
3048
+ row: number;
3049
+ col: number;
3050
+ };
3051
+ } | null;
3052
+ cancelFill(): void;
3053
+ isCellInFillRange(row: number, col: number): boolean;
3054
+ /**
3055
+ * During a horizontal fill, cells that sit inside the drag bounding box but
3056
+ * belong to a non-editable column cannot receive the filled value. We expose
3057
+ * them here so the view can paint a red dashed outline — a visual cue that
3058
+ * the fill is skipping that column.
3059
+ */
3060
+ isCellInFillRejectRange(row: number, col: number): boolean;
3061
+ private isColEditable;
3062
+ /**
3063
+ * Returns the effective editor type for a column index.
3064
+ * Falls back to 'text' when no explicit cellEditor is defined.
3065
+ */
3066
+ private getColEditorType;
3067
+ /**
3068
+ * Checks whether the source column's editor type is compatible with the
3069
+ * target column's editor type for a horizontal fill operation.
3070
+ * text↔text, number↔number, select↔select, etc. — only same-type is allowed.
3071
+ */
3072
+ private isColTypeCompatible;
2958
3073
  private moveBy;
2959
3074
  getNormalizedRange(): CellRange | null;
2960
3075
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<CellSelectionEngine<any>, never>;
@@ -3073,6 +3188,83 @@ declare class TreeEngine<T = unknown> {
3073
3188
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<TreeEngine<any>>;
3074
3189
  }
3075
3190
 
3191
+ declare class CellValidationEngine<T = unknown> {
3192
+ private readonly state;
3193
+ /** Map<"rowIndex:field", CellError> */
3194
+ readonly cellErrors: _angular_core.WritableSignal<Map<string, CellError>>;
3195
+ /** Number of cells currently in error */
3196
+ readonly errorCount: _angular_core.Signal<number>;
3197
+ /** Revalidate all cells for the given data slice */
3198
+ validateAll(data: T[]): void;
3199
+ /** Revalidate a single cell */
3200
+ validateCell(rowIndex: number, field: string, value: unknown, row: T): void;
3201
+ /** Get the error for a specific cell, or null */
3202
+ getCellError(rowIndex: number, field: string): CellError | null;
3203
+ /** Check if a specific cell has an error */
3204
+ hasCellError(rowIndex: number, field: string): boolean;
3205
+ /** Clear all errors */
3206
+ clearAll(): void;
3207
+ private removeCellError;
3208
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CellValidationEngine<any>, never>;
3209
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<CellValidationEngine<any>>;
3210
+ }
3211
+
3212
+ declare class HorizontalVirtualScrollEngine<T = unknown> {
3213
+ private readonly state;
3214
+ /** Cumulative left offsets of unpinned columns. Length = unpinnedColumns.length + 1. */
3215
+ private offsets;
3216
+ constructor();
3217
+ /** Called by grid.ts when the body viewport scrolls or resizes. */
3218
+ onScroll(scrollLeft: number, viewportWidth: number): void;
3219
+ rebuildOffsets(): void;
3220
+ private recompute;
3221
+ /** Binary search: returns the largest index i such that offsets[i] <= x. */
3222
+ private findIndexAt;
3223
+ private fullRange;
3224
+ private setRange;
3225
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<HorizontalVirtualScrollEngine<any>, never>;
3226
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<HorizontalVirtualScrollEngine<any>>;
3227
+ }
3228
+
3229
+ declare class PaginationEngine<T = unknown> {
3230
+ private readonly state;
3231
+ readonly totalPages: _angular_core.Signal<number>;
3232
+ readonly currentPage: _angular_core.Signal<number>;
3233
+ readonly startItem: _angular_core.Signal<number>;
3234
+ readonly endItem: _angular_core.Signal<number>;
3235
+ readonly isFirstPage: _angular_core.Signal<boolean>;
3236
+ readonly isLastPage: _angular_core.Signal<boolean>;
3237
+ private readonly computedTotal;
3238
+ goToPage(pageIndex: number): void;
3239
+ nextPage(): void;
3240
+ previousPage(): void;
3241
+ setPageSize(size: number): void;
3242
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginationEngine<any>, never>;
3243
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<PaginationEngine<any>>;
3244
+ }
3245
+
3246
+ declare class InfiniteScrollEngine<T = unknown> {
3247
+ private readonly state;
3248
+ private readonly destroyRef;
3249
+ private readonly ngZone;
3250
+ private scrollListener;
3251
+ private scrollElement;
3252
+ private loadMoreCallback;
3253
+ readonly scrollThreshold: _angular_core.WritableSignal<number>;
3254
+ readonly hasMore: _angular_core.Signal<boolean>;
3255
+ readonly isActive: _angular_core.Signal<boolean>;
3256
+ attach(scrollElement: HTMLElement, onLoadMore: (event: LoadMoreEvent) => void): void;
3257
+ detach(): void;
3258
+ private checkScrollPosition;
3259
+ /**
3260
+ * Reset scroll state — called when sort/filter changes require
3261
+ * reloading from offset 0.
3262
+ */
3263
+ reset(onLoadMore: (event: LoadMoreEvent) => void): void;
3264
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<InfiniteScrollEngine<any>, never>;
3265
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<InfiniteScrollEngine<any>>;
3266
+ }
3267
+
3076
3268
  declare function trackDisplayRow<T>(_index: number, row: DisplayRow<T>): string;
3077
3269
  declare function trackByField(_index: number, col: {
3078
3270
  field: string;
@@ -3172,8 +3364,8 @@ declare class MozGridRowComponent<T = unknown> {
3172
3364
  protected readonly state: GridStateManager<any>;
3173
3365
  private readonly inlineEdit;
3174
3366
  private readonly rowSelection;
3175
- private readonly cellSelectionEngine;
3176
3367
  private readonly expandableEngine;
3368
+ private readonly elRef;
3177
3369
  protected readonly trackByField: typeof trackByField;
3178
3370
  readonly row: _angular_core.InputSignal<T>;
3179
3371
  readonly rowIndex: _angular_core.InputSignal<number>;
@@ -3182,6 +3374,8 @@ declare class MozGridRowComponent<T = unknown> {
3182
3374
  readonly showExpand: _angular_core.InputSignal<boolean>;
3183
3375
  readonly pinnedEnd: _angular_core.InputSignal<boolean>;
3184
3376
  readonly colIndexOffset: _angular_core.InputSignal<number>;
3377
+ /** True for the center (unpinned) section so leading/trailing column spacers render. */
3378
+ readonly isCenter: _angular_core.InputSignal<boolean>;
3185
3379
  readonly cellEdit: _angular_core.OutputEmitterRef<{
3186
3380
  row: T;
3187
3381
  rowIndex: number;
@@ -3202,16 +3396,20 @@ declare class MozGridRowComponent<T = unknown> {
3202
3396
  onCommitEdit(): void;
3203
3397
  onCancelEdit(): void;
3204
3398
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridRowComponent<any>, never>;
3205
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozGridRowComponent<any>, "moz-grid-row", never, { "row": { "alias": "row"; "required": true; "isSignal": true; }; "rowIndex": { "alias": "rowIndex"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; "isSignal": true; }; "showExpand": { "alias": "showExpand"; "required": false; "isSignal": true; }; "pinnedEnd": { "alias": "pinnedEnd"; "required": false; "isSignal": true; }; "colIndexOffset": { "alias": "colIndexOffset"; "required": false; "isSignal": true; }; }, { "cellEdit": "cellEdit"; "cellEditCancel": "cellEditCancel"; "rowSelectionToggle": "rowSelectionToggle"; }, never, never, true, never>;
3399
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozGridRowComponent<any>, "moz-grid-row", never, { "row": { "alias": "row"; "required": true; "isSignal": true; }; "rowIndex": { "alias": "rowIndex"; "required": true; "isSignal": true; }; "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; "isSignal": true; }; "showExpand": { "alias": "showExpand"; "required": false; "isSignal": true; }; "pinnedEnd": { "alias": "pinnedEnd"; "required": false; "isSignal": true; }; "colIndexOffset": { "alias": "colIndexOffset"; "required": false; "isSignal": true; }; "isCenter": { "alias": "isCenter"; "required": false; "isSignal": true; }; }, { "cellEdit": "cellEdit"; "cellEditCancel": "cellEditCancel"; "rowSelectionToggle": "rowSelectionToggle"; }, never, never, true, never>;
3206
3400
  }
3207
3401
 
3208
3402
  declare class MozGridCellComponent<T = unknown> {
3209
3403
  private readonly state;
3210
3404
  private readonly inlineEdit;
3211
3405
  private readonly cellSelectionEngine;
3406
+ private readonly validationEngine;
3212
3407
  private readonly elRef;
3408
+ private preEditWidth;
3213
3409
  constructor();
3214
3410
  private focusEditor;
3411
+ private expandColumnIfNeeded;
3412
+ private restoreColumnWidth;
3215
3413
  readonly row: _angular_core.InputSignal<T>;
3216
3414
  readonly rowIndex: _angular_core.InputSignal<number>;
3217
3415
  readonly colIndex: _angular_core.InputSignal<number>;
@@ -3233,6 +3431,9 @@ declare class MozGridCellComponent<T = unknown> {
3233
3431
  readonly editorType: _angular_core.Signal<CellEditorType>;
3234
3432
  readonly isFocused: _angular_core.Signal<boolean>;
3235
3433
  readonly isInRange: _angular_core.Signal<boolean>;
3434
+ readonly isInFillRange: _angular_core.Signal<boolean>;
3435
+ readonly isInFillRejectRange: _angular_core.Signal<boolean>;
3436
+ readonly cellError: _angular_core.Signal<_mozaic_ds_angular.CellError | null>;
3236
3437
  onCellClick(event: MouseEvent): void;
3237
3438
  onMouseDown(event: MouseEvent): void;
3238
3439
  onMouseEnter(): void;
@@ -3373,6 +3574,11 @@ declare class GridGroupDrawerComponent {
3373
3574
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<GridGroupDrawerComponent, "moz-grid-group-drawer", never, {}, {}, never, never, true, never>;
3374
3575
  }
3375
3576
 
3577
+ declare class MozGridLoadingIndicatorComponent {
3578
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridLoadingIndicatorComponent, never>;
3579
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozGridLoadingIndicatorComponent, "moz-grid-loading-indicator", never, {}, {}, never, never, true, never>;
3580
+ }
3581
+
3376
3582
  /**
3377
3583
  * McCombobox — Data models & type guards
3378
3584
  *
@@ -3792,5 +3998,5 @@ declare class MozTreeNodeComponent<T = unknown> {
3792
3998
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<MozTreeNodeComponent<any>, "moz-tree-node", never, { "node": { "alias": "node"; "required": true; "isSignal": true; }; "depth": { "alias": "depth"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "indentSize": { "alias": "indentSize"; "required": false; "isSignal": true; }; "nodeTemplate": { "alias": "nodeTemplate"; "required": false; "isSignal": true; }; "nodeTemplates": { "alias": "nodeTemplates"; "required": false; "isSignal": true; }; "loadChildren": { "alias": "loadChildren"; "required": false; "isSignal": true; }; "ancestors": { "alias": "ancestors"; "required": false; "isSignal": true; }; "flat": { "alias": "flat"; "required": false; "isSignal": true; }; "noResultText": { "alias": "noResultText"; "required": false; "isSignal": true; }; }, { "expandChange": "expandChange"; "selectionChange": "selectionChange"; }, never, never, true, never>;
3793
3999
  }
3794
4000
 
3795
- export { ACTION_LISTBOX_CONFIG, ActionListboxContainerComponent, ActionListboxRef, BuiltInMenuComponent, CellSelectionEngine, ColumnReorderEngine, ColumnResizeEngine, DEFAULT_ACTION_LISTBOX_CONFIG, DEFAULT_GRID_OPTIONS, DEFAULT_MODAL_CONFIG, DEFAULT_TOASTER_CONFIG, DRAWER_CONFIG, DRAWER_DATA, DrawerContainerComponent, ExpandableRowEngine, ExportEngine, FilterEngine, GridEngine, GridGroupDrawerComponent, GridSettingsDrawerComponent, GridStateManager, GroupEngine, InlineEditEngine, KeyboardEngine, MODAL_CONFIG, MODAL_DATA, MozAccordionComponent, MozAccordionContentComponent, MozAccordionHeaderComponent, MozAccordionPanelComponent, MozActionBottomBarComponent, MozActionListboxComponent, MozActionListboxTriggerDirective, MozAvatarComponent, MozBreadcrumbComponent, MozButtonComponent, MozCalloutComponent, MozCarouselComponent, MozCheckListMenuComponent, MozCheckboxComponent, MozCheckboxGroupComponent, MozCircularProgressBarComponent, MozComboboxComponent, MozComboboxHarness, MozComboboxOptionHarness, MozDatepickerComponent, MozDividerComponent, MozDrawerComponent, MozDrawerFooterDirective, MozDrawerRef, MozDrawerService, MozFieldComponent, MozFieldGroupComponent, MozFileUploaderComponent, MozFileUploaderItemComponent, MozFlagComponent, MozGridBodyComponent, MozGridCellComponent, MozGridColumnDef, MozGridColumnVisibilityPanelComponent, MozGridComponent, MozGridDetailRowComponent, MozGridFooterComponent, MozGridGroupRowComponent, MozGridHeaderCellComponent, MozGridHeaderComponent, MozGridHeaderMenuComponent, MozGridRowComponent, MozGridToolbarDef, MozIconButtonComponent, MozKpiComponent, MozLinearProgressBarBufferComponent, MozLinearProgressBarPercentageComponent, MozLinkComponent, MozLoaderComponent, MozLoadingOverlayComponent, MozModalComponent, MozModalFooterDirective, MozModalRef, MozModalService, MozNavigationIndicatorComponent, MozNumberBadgeComponent, MozOverlayComponent, MozPageHeaderComponent, MozPaginationComponent, MozPasswordInputDirective, MozPhoneNumberComponent, MozPincodeInputComponent, MozPopoverComponent, MozPopoverFooterDirective, MozPopoverTriggerDirective, MozQuantitySelectorComponent, MozRadioComponent, MozRadioGroupComponent, MozSegmentedControlComponent, MozSelectComponent, MozSidebarComponent, MozStarRatingComponent, MozStatusBadgeComponent, MozStatusDotComponent, MozStatusMessageComponent, MozStatusNotificationComponent, MozStepperBottomBarComponent, MozStepperCompactComponent, MozStepperInlineComponent, MozStepperStackedComponent, MozTabComponent, MozTabsComponent, MozTagComponent, MozTextInput, MozTextarea, MozTileComponent, MozTileExpandableComponent, MozTileSelectableComponent, MozToasterComponent, MozToasterRef, MozToasterService, MozToggleComponent, MozTooltipComponent, MozTooltipDirective, MozTreeComponent, MozTreeNodeComponent, MozTreeNodeTemplateDirective, POPOVER_CONFIG, POPOVER_DATA, PopoverContainerComponent, PopoverRef, PopoverService, RowSelectionEngine, SortEngine, StatePersistenceEngine, TOASTER_CONFIG, TreeEngine, TreeKeyboardService, TreeSelectionService, TreeStateService, isSection, trackByField, trackDisplayRow };
3796
- export type { ActionListboxConfig, ActionListboxPosition, ActiveFilter, BulkCopyEvent, BulkDeleteEvent, BulkEditEvent, BulkPasteEvent, CellCoord, CellEditCancelEvent, CellEditEvent, CellEditState, CellEditorType, CellRange, CellSelectionEvent, ColumnDef, ColumnFreezeEvent, ColumnReorderEvent, ColumnResizeEvent, ColumnSearchToggleEvent, ColumnStateEntry, ColumnVisibilityEvent, DisplayRow, ExportOptions, FilterDef, FilterEvent, FlatNode, GridDensity, GridEventMap, GridEventType, GridOptions, GridPlugin, GridSettingsData, GridSettingsResult, GridToolbarSlot, GroupDrawerData, GroupDrawerResult, GroupEntry, GroupEvent, GroupRow, HeaderMenuActionId, HeaderMenuConfig, LoadChildrenFn, MozActionListItem, MozActionListItemAppearance, MozAvatarSize, MozBreadcrumbAppearance, MozBreadcrumbLink, MozBuiltInMenuItem, MozBuiltInMenuItemTarget, MozButtonAppearance, MozButtonIconPosition, MozButtonSize, MozButtonType, MozCalloutVariant, MozCheckListMenuItem, MozCircularProgessBarSize, MozComboboxItem, MozComboboxOption, MozComboboxSection, MozComboboxSize, MozDatepickerSize, MozDividerAppearance, MozDividerOrientation, MozDividerSize, MozDrawerConfig, MozDrawerPosition, MozFileUploaderFormat, MozFileUploaderItemFormat, MozFlagType, MozIconButtonAppearance, MozIconButtonSize, MozIconButtonType, MozKpiSize, MozKpiStatus, MozKpiTrend, MozLinearProgressBarBufferSize, MozLinkAppearance, MozLinkIconPosition, MozLinkSize, MozLoaderAppearance, MozLoaderSize, MozNavigationIndicatorAction, MozNumberBadgeAppearance, MozNumberBadgeSize, MozPageHeaderScope, MozPhoneNumberCountry, MozPhoneNumberSize, MozPhoneNumberValue, MozPincodeLength, MozPopoverAppearance, MozPopoverPosition, MozPopoverSize, MozQuantitySelectorSize, MozSegmentedControlSize, MozSegmentedItem, MozSelectOption, MozSelectSize, MozSelectValue, MozSidebarItem, MozSidebarSubItem, MozStarRatingAppearance, MozStarRatingSize, MozStatusBadgeStatus, MozStatusDotSize, MozStatusDotStatus, MozStatusMessageStatus, MozStatusNotificationStatus, MozStepperBottomBarStep, MozStepperInlineStep, MozStepperStackedStep, MozTabItem, MozTagSize, MozTagType, MozTextInputSize, MozTileAppearance, MozTileExpandableTrigger, MozTileInputPosition, MozTileInputVerticalPosition, MozTileSelectableAppearance, MozTileSelectableType, MozToasterPosition, MozToasterRole, MozToasterStatus, MozToggleSize, MozTooltipPosition, PageEvent, PaginationState, PersistedGridState, PopoverConfig, PopoverTriggerMode, RowSelectionEvent, SelectAllMode, SortDef, SortDirection, SortEvent, TreeDisplayRow, TreeNode, TreeNodeConfig, TreeNodeContext, TreeSelectionMode };
4001
+ export { ACTION_LISTBOX_CONFIG, ActionListboxContainerComponent, ActionListboxRef, BuiltInMenuComponent, CellSelectionEngine, CellValidationEngine, ColumnReorderEngine, ColumnResizeEngine, DEFAULT_ACTION_LISTBOX_CONFIG, DEFAULT_GRID_OPTIONS, DEFAULT_MODAL_CONFIG, DEFAULT_TOASTER_CONFIG, DRAWER_CONFIG, DRAWER_DATA, DrawerContainerComponent, ExpandableRowEngine, ExportEngine, FilterEngine, GridEngine, GridGroupDrawerComponent, GridSettingsDrawerComponent, GridStateManager, GroupEngine, HorizontalVirtualScrollEngine, InfiniteScrollEngine, InlineEditEngine, KeyboardEngine, MODAL_CONFIG, MODAL_DATA, MozAccordionComponent, MozAccordionContentComponent, MozAccordionHeaderComponent, MozAccordionPanelComponent, MozActionBottomBarComponent, MozActionListboxComponent, MozActionListboxTriggerDirective, MozAvatarComponent, MozBreadcrumbComponent, MozButtonComponent, MozCalloutComponent, MozCarouselComponent, MozCheckListMenuComponent, MozCheckboxComponent, MozCheckboxGroupComponent, MozCircularProgressBarComponent, MozComboboxComponent, MozComboboxHarness, MozComboboxOptionHarness, MozDatepickerComponent, MozDividerComponent, MozDrawerComponent, MozDrawerFooterDirective, MozDrawerRef, MozDrawerService, MozFieldComponent, MozFieldGroupComponent, MozFileUploaderComponent, MozFileUploaderItemComponent, MozFlagComponent, MozGridBodyComponent, MozGridCellComponent, MozGridColumnDef, MozGridColumnVisibilityPanelComponent, MozGridComponent, MozGridDetailRowComponent, MozGridFooterComponent, MozGridGroupRowComponent, MozGridHeaderCellComponent, MozGridHeaderComponent, MozGridHeaderMenuComponent, MozGridLoadingIndicatorComponent, MozGridRowComponent, MozGridToolbarDef, MozIconButtonComponent, MozKpiComponent, MozLinearProgressBarBufferComponent, MozLinearProgressBarPercentageComponent, MozLinkComponent, MozLoaderComponent, MozLoadingOverlayComponent, MozModalComponent, MozModalFooterDirective, MozModalRef, MozModalService, MozNavigationIndicatorComponent, MozNumberBadgeComponent, MozOverlayComponent, MozPageHeaderComponent, MozPaginationComponent, MozPasswordInputDirective, MozPhoneNumberComponent, MozPincodeInputComponent, MozPopoverComponent, MozPopoverFooterDirective, MozPopoverTriggerDirective, MozQuantitySelectorComponent, MozRadioComponent, MozRadioGroupComponent, MozSegmentedControlComponent, MozSelectComponent, MozSidebarComponent, MozStarRatingComponent, MozStatusBadgeComponent, MozStatusDotComponent, MozStatusMessageComponent, MozStatusNotificationComponent, MozStepperBottomBarComponent, MozStepperCompactComponent, MozStepperInlineComponent, MozStepperStackedComponent, MozTabComponent, MozTabsComponent, MozTagComponent, MozTextInput, MozTextarea, MozTileComponent, MozTileExpandableComponent, MozTileSelectableComponent, MozToasterComponent, MozToasterRef, MozToasterService, MozToggleComponent, MozTooltipComponent, MozTooltipDirective, MozTreeComponent, MozTreeNodeComponent, MozTreeNodeTemplateDirective, POPOVER_CONFIG, POPOVER_DATA, PaginationEngine, PopoverContainerComponent, PopoverRef, PopoverService, RowSelectionEngine, SortEngine, StatePersistenceEngine, TOASTER_CONFIG, TreeEngine, TreeKeyboardService, TreeSelectionService, TreeStateService, isSection, trackByField, trackDisplayRow };
4002
+ export type { ActionListboxConfig, ActionListboxPosition, ActiveFilter, BulkCopyEvent, BulkDeleteEvent, BulkEditEvent, BulkPasteEvent, CellCoord, CellEditCancelEvent, CellEditEvent, CellEditState, CellEditorType, CellError, CellRange, CellSelectionEvent, ColumnDef, ColumnFreezeEvent, ColumnReorderEvent, ColumnResizeEvent, ColumnSearchToggleEvent, ColumnStateEntry, ColumnVisibilityEvent, DisplayRow, ExportOptions, FillDownEvent, FilterDef, FilterEvent, FlatNode, GridDensity, GridEventMap, GridEventType, GridOptions, GridPlugin, GridSettingsData, GridSettingsResult, GridToolbarSlot, GroupDrawerData, GroupDrawerResult, GroupEntry, GroupEvent, GroupRow, HeaderMenuActionId, HeaderMenuConfig, LoadChildrenFn, LoadMoreEvent, LoadingStrategy, MozActionListItem, MozActionListItemAppearance, MozAvatarSize, MozBreadcrumbAppearance, MozBreadcrumbLink, MozBuiltInMenuItem, MozBuiltInMenuItemTarget, MozButtonAppearance, MozButtonIconPosition, MozButtonSize, MozButtonType, MozCalloutVariant, MozCheckListMenuItem, MozCircularProgessBarSize, MozComboboxItem, MozComboboxOption, MozComboboxSection, MozComboboxSize, MozDatepickerSize, MozDividerAppearance, MozDividerOrientation, MozDividerSize, MozDrawerConfig, MozDrawerPosition, MozFileUploaderFormat, MozFileUploaderItemFormat, MozFlagType, MozIconButtonAppearance, MozIconButtonSize, MozIconButtonType, MozKpiSize, MozKpiStatus, MozKpiTrend, MozLinearProgressBarBufferSize, MozLinkAppearance, MozLinkIconPosition, MozLinkSize, MozLoaderAppearance, MozLoaderSize, MozNavigationIndicatorAction, MozNumberBadgeAppearance, MozNumberBadgeSize, MozPageHeaderScope, MozPhoneNumberCountry, MozPhoneNumberSize, MozPhoneNumberValue, MozPincodeLength, MozPopoverAppearance, MozPopoverPosition, MozPopoverSize, MozQuantitySelectorSize, MozSegmentedControlSize, MozSegmentedItem, MozSelectOption, MozSelectSize, MozSelectValue, MozSidebarItem, MozSidebarSubItem, MozStarRatingAppearance, MozStarRatingSize, MozStatusBadgeStatus, MozStatusDotSize, MozStatusDotStatus, MozStatusMessageStatus, MozStatusNotificationStatus, MozStepperBottomBarStep, MozStepperInlineStep, MozStepperStackedStep, MozTabItem, MozTagSize, MozTagType, MozTextInputSize, MozTileAppearance, MozTileExpandableTrigger, MozTileInputPosition, MozTileInputVerticalPosition, MozTileSelectableAppearance, MozTileSelectableType, MozToasterPosition, MozToasterRole, MozToasterStatus, MozToggleSize, MozTooltipPosition, PageEvent, PaginationState, PersistedGridState, PopoverConfig, PopoverTriggerMode, RowSelectionEvent, SelectAllMode, SortDef, SortDirection, SortEvent, TreeDisplayRow, TreeNode, TreeNodeConfig, TreeNodeContext, TreeSelectionMode };