@mozaic-ds/angular 2.0.45 → 2.0.47

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.45",
3
+ "version": "2.0.47",
4
4
  "type": "module",
5
5
  "peerDependencies": {
6
6
  "@angular/common": ">=20.3.15",
@@ -2278,11 +2278,29 @@ interface BulkCopyEvent {
2278
2278
  selectionMode?: 'rows' | 'cells';
2279
2279
  rowSelection?: unknown;
2280
2280
  }
2281
+ /**
2282
+ * A single cell change produced by a bulk operation (paste, delete, …).
2283
+ * Values are already coerced to the column's expected type and have passed
2284
+ * `cellEditorValidator`; consumers can persist them as-is.
2285
+ */
2286
+ interface BulkCellChange {
2287
+ rowIndex: number;
2288
+ rowId: unknown;
2289
+ field: string;
2290
+ oldValue: unknown;
2291
+ newValue: unknown;
2292
+ }
2281
2293
  interface BulkPasteEvent {
2282
2294
  range: CellRange | null;
2283
2295
  data: string[][];
2284
2296
  rowIds: unknown[];
2285
2297
  fields: string[];
2298
+ /**
2299
+ * Fully resolved per-cell changes applied by the grid (post-coercion,
2300
+ * post-validation). Use this to persist server-side — no need to replicate
2301
+ * the fill logic from `data` vs `range`.
2302
+ */
2303
+ changes: BulkCellChange[];
2286
2304
  selectionMode?: 'rows' | 'cells';
2287
2305
  rowSelection?: unknown;
2288
2306
  }
@@ -2310,6 +2328,11 @@ interface BulkDeleteEvent {
2310
2328
  cellCount: number;
2311
2329
  rowIds: unknown[];
2312
2330
  fields: string[];
2331
+ /**
2332
+ * Fully resolved per-cell changes applied by the grid (post-coercion,
2333
+ * post-validation). Use this to persist server-side.
2334
+ */
2335
+ changes: BulkCellChange[];
2313
2336
  selectionMode?: 'rows' | 'cells';
2314
2337
  rowSelection?: unknown;
2315
2338
  }
@@ -2781,6 +2804,49 @@ declare class MozGridToolbarDef {
2781
2804
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MozGridToolbarDef, "[mozGridToolbarDef]", never, { "slot": { "alias": "mozGridToolbarDef"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2782
2805
  }
2783
2806
 
2807
+ /**
2808
+ * Discriminator for the empty-state context.
2809
+ * - `no-data` : the source dataset is empty (no rows ever loaded).
2810
+ * - `no-results` : the dataset is non-empty but the active filter / search
2811
+ * produced zero rows.
2812
+ *
2813
+ * A template registered without an explicit kind defaults to `no-data` and
2814
+ * is also used as the fallback when `no-results` has no dedicated template.
2815
+ */
2816
+ type GridEmptyKind = 'no-data' | 'no-results';
2817
+ /**
2818
+ * Marks a `<ng-template>` projected into `<moz-grid>` as the renderer for
2819
+ * the empty state. Register one or two templates:
2820
+ *
2821
+ * ```html
2822
+ * <moz-grid [data]="rows">
2823
+ * <ng-template mozGridEmptyDef>
2824
+ * <p>Aucune donnée pour le moment</p>
2825
+ * </ng-template>
2826
+ *
2827
+ * <ng-template mozGridEmptyDef="no-results" let-ctx>
2828
+ * <p>Aucun résultat pour vos filtres ({{ ctx.activeFilterCount }})</p>
2829
+ * <button (click)="ctx.clearFilters()">Réinitialiser</button>
2830
+ * </ng-template>
2831
+ * </moz-grid>
2832
+ * ```
2833
+ *
2834
+ * The implicit context (`let-ctx`) exposes `{ activeFilterCount, clearFilters }`.
2835
+ */
2836
+ declare class MozGridEmptyDef {
2837
+ readonly kind: _angular_core.InputSignal<GridEmptyKind>;
2838
+ readonly template: TemplateRef<GridEmptyContext>;
2839
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridEmptyDef, never>;
2840
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MozGridEmptyDef, "[mozGridEmptyDef]", never, { "kind": { "alias": "mozGridEmptyDef"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2841
+ }
2842
+ /** Context object passed to a `mozGridEmptyDef` template. */
2843
+ interface GridEmptyContext {
2844
+ /** Number of active filter conditions; `0` when called with `no-data`. */
2845
+ activeFilterCount: number;
2846
+ /** Convenience callback to clear all filter conditions. */
2847
+ clearFilters: () => void;
2848
+ }
2849
+
2784
2850
  declare class MozGridComponent<T = unknown> {
2785
2851
  protected readonly state: GridStateManager<T>;
2786
2852
  private readonly gridEngine;
@@ -2807,6 +2873,7 @@ declare class MozGridComponent<T = unknown> {
2807
2873
  private readonly drawerService;
2808
2874
  private readonly columnDefs;
2809
2875
  private readonly toolbarDefs;
2876
+ private readonly emptyDefs;
2810
2877
  readonly data: _angular_core.InputSignal<T[]>;
2811
2878
  readonly mode: _angular_core.InputSignal<"client" | "server">;
2812
2879
  readonly totalItems: _angular_core.InputSignal<number>;
@@ -2822,6 +2889,16 @@ declare class MozGridComponent<T = unknown> {
2822
2889
  readonly fullscreen: _angular_core.InputSignal<boolean>;
2823
2890
  readonly reorderable: _angular_core.InputSignal<boolean>;
2824
2891
  readonly stateKey: _angular_core.InputSignal<string | null>;
2892
+ /** Title for the default "no data" empty state. */
2893
+ readonly emptyDataTitle: _angular_core.InputSignal<string>;
2894
+ /** Description for the default "no data" empty state. */
2895
+ readonly emptyDataDescription: _angular_core.InputSignal<string>;
2896
+ /** Title for the default "no results" empty state (active filters). */
2897
+ readonly noResultsTitle: _angular_core.InputSignal<string>;
2898
+ /** Description for the default "no results" empty state. */
2899
+ readonly noResultsDescription: _angular_core.InputSignal<string>;
2900
+ /** CTA label on the "no results" state. Empty disables the button. */
2901
+ readonly noResultsActionLabel: _angular_core.InputSignal<string>;
2825
2902
  readonly exportable: _angular_core.InputSignal<boolean>;
2826
2903
  readonly horizontalVirtualScroll: _angular_core.InputSignal<boolean>;
2827
2904
  readonly loadingStrategy: _angular_core.InputSignal<LoadingStrategy>;
@@ -2854,6 +2931,32 @@ declare class MozGridComponent<T = unknown> {
2854
2931
  /** Display descriptors for the "FILTERED BY" tag bar. */
2855
2932
  protected readonly activeFilters: _angular_core.Signal<ActiveFilter[]>;
2856
2933
  protected readonly activeFilterCount: _angular_core.Signal<number>;
2934
+ /**
2935
+ * Kind of empty state to show, or `'none'` when rows are present:
2936
+ * - `'no-data'` : no rows have been loaded (and the source is empty).
2937
+ * - `'no-results'` : the source has rows but the active filters yield 0.
2938
+ *
2939
+ * Loading and infinite-scroll loading-more states are *not* treated as
2940
+ * empty (we let the loading indicator drive the UX instead).
2941
+ */
2942
+ protected readonly emptyStateKind: _angular_core.Signal<"none" | GridEmptyKind>;
2943
+ /** Resolves the projected `<ng-template mozGridEmptyDef>` for the kind. */
2944
+ protected readonly emptyTemplate: _angular_core.Signal<TemplateRef<GridEmptyContext> | null>;
2945
+ /** Context object exposed to projected empty-state templates. */
2946
+ protected readonly emptyContext: _angular_core.Signal<GridEmptyContext>;
2947
+ /**
2948
+ * Wrap the empty context for `ngTemplateOutlet` so consumers can use
2949
+ * either `let-ctx` (positional, via `$implicit`) or named bindings
2950
+ * (`let-clearFilters="clearFilters"`) without having to choose at
2951
+ * declaration time.
2952
+ */
2953
+ protected readonly emptyTemplateContext: _angular_core.Signal<{
2954
+ activeFilterCount: number;
2955
+ clearFilters: () => void;
2956
+ $implicit: GridEmptyContext;
2957
+ }>;
2958
+ /** CTA label for the default no-results state — hidden when no filters. */
2959
+ protected readonly resolvedNoResultsActionLabel: _angular_core.Signal<string>;
2857
2960
  protected readonly hasHiddenColumns: _angular_core.Signal<boolean>;
2858
2961
  protected readonly hiddenColumnsList: _angular_core.Signal<{
2859
2962
  field: string;
@@ -2933,6 +3036,12 @@ declare class MozGridComponent<T = unknown> {
2933
3036
  private getRangeFields;
2934
3037
  private getRowSelectionIds;
2935
3038
  private getAllVisibleFields;
3039
+ /**
3040
+ * Resolves a list of internal `HistoryCellChange` records into the public
3041
+ * `BulkCellChange[]` shape exposed on bulk events. Looks up each row's
3042
+ * configured id so consumers can persist changes without a second pass.
3043
+ */
3044
+ private toBulkCellChanges;
2936
3045
  private clearSelectionAndCloseBar;
2937
3046
  onBulkEdit(): void;
2938
3047
  onBulkCopy(): void;
@@ -2945,7 +3054,7 @@ declare class MozGridComponent<T = unknown> {
2945
3054
  private deleteSelectedRows;
2946
3055
  private coerceAndValidate;
2947
3056
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MozGridComponent<any>, never>;
2948
- 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; }; "filterApplyMode": { "alias": "filterApplyMode"; "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>;
3057
+ 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; }; "emptyDataTitle": { "alias": "emptyDataTitle"; "required": false; "isSignal": true; }; "emptyDataDescription": { "alias": "emptyDataDescription"; "required": false; "isSignal": true; }; "noResultsTitle": { "alias": "noResultsTitle"; "required": false; "isSignal": true; }; "noResultsDescription": { "alias": "noResultsDescription"; "required": false; "isSignal": true; }; "noResultsActionLabel": { "alias": "noResultsActionLabel"; "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; }; "filterApplyMode": { "alias": "filterApplyMode"; "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", "emptyDefs"], ["[mozGridFilterTags]"], true, never>;
2949
3058
  }
2950
3059
 
2951
3060
  interface GroupRow<T = unknown> {
@@ -3298,8 +3407,13 @@ declare class FilterEngine<T = unknown> {
3298
3407
  /** Returns the filter data type inferred for a column. */
3299
3408
  getFilterType(field: string): FilterDataType;
3300
3409
  /**
3301
- * Builds the column descriptors consumed by the filter builder UI. The
3302
- * returned list includes only filterable columns.
3410
+ * Builds the column descriptors consumed by the filter builder UI.
3411
+ *
3412
+ * All `filterable` columns are included, even those that ship a custom
3413
+ * `filterTemplate`. The custom template drives the inline header filter
3414
+ * row (quick per-column UI), while the builder — rendered in the toolbar
3415
+ * drawer and in the column-menu overlay — always uses the generic editors.
3416
+ * The two mechanisms are complementary and can coexist on the same column.
3303
3417
  */
3304
3418
  describeFilterableColumns(): FilterColumnDescriptor[];
3305
3419
  describeColumn(def: ColumnDef<T>): FilterColumnDescriptor;
@@ -4252,5 +4366,5 @@ declare class MozTreeNodeComponent<T = unknown> {
4252
4366
  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>;
4253
4367
  }
4254
4368
 
4255
- 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 };
4256
- 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, FilterEvent, FlatNode, GridDensity, GridEventMap, GridEventType, GridOptions, GridPlugin, GridSettingsData, GridSettingsResult, GridToolbarSlot, GroupDrawerData, GroupDrawerResult, GroupEntry, GroupEvent, GroupRow, HeaderMenuActionId, HeaderMenuConfig, KeyboardActions, 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 };
4369
+ 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, MozGridEmptyDef, 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 };
4370
+ export type { ActionListboxConfig, ActionListboxPosition, ActiveFilter, BulkCellChange, BulkCopyEvent, BulkDeleteEvent, BulkEditEvent, BulkPasteEvent, CellCoord, CellEditCancelEvent, CellEditEvent, CellEditState, CellEditorType, CellError, CellRange, CellSelectionEvent, ColumnDef, ColumnFreezeEvent, ColumnReorderEvent, ColumnResizeEvent, ColumnSearchToggleEvent, ColumnStateEntry, ColumnVisibilityEvent, DisplayRow, ExportOptions, FillDownEvent, FilterEvent, FlatNode, GridDensity, GridEmptyContext, GridEmptyKind, GridEventMap, GridEventType, GridOptions, GridPlugin, GridSettingsData, GridSettingsResult, GridToolbarSlot, GroupDrawerData, GroupDrawerResult, GroupEntry, GroupEvent, GroupRow, HeaderMenuActionId, HeaderMenuConfig, KeyboardActions, 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 };