mn-angular-lib 1.0.136 → 1.0.138

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.
@@ -128,6 +128,13 @@ type MnAlertTemplateContext = {
128
128
  dismiss: () => void;
129
129
  };
130
130
  declare class MnAlertOutletComponent {
131
+ private readonly lang;
132
+ /**
133
+ * Accessible name for this control. Resolved through the conventional
134
+ * `mnAlert.close` key so an app can translate it, falling back to English when the
135
+ * key is not defined rather than leaking the raw key into the UI.
136
+ */
137
+ get closeLabel(): string;
131
138
  template?: TemplateRef<MnAlertTemplateContext>;
132
139
  private store;
133
140
  alerts$: Observable<MnAlert[]>;
@@ -3243,6 +3250,21 @@ declare class MnLanguageService {
3243
3250
  * Helper to retrieve a value from a potentially nested translation map using a dot-notated key.
3244
3251
  */
3245
3252
  private getValueFromMap;
3253
+ /**
3254
+ * Translate a key **only if it is defined**, returning `undefined` otherwise.
3255
+ *
3256
+ * {@link translate} deliberately returns the key itself when it is missing, which
3257
+ * makes it unusable for a library's own default labels: a consumer that never
3258
+ * defined `mnCollection.rowsPerPage` would see that raw string in their UI. This
3259
+ * lets a caller try a conventional key and fall back to a readable English default
3260
+ * when the app has not translated it, so components ship translatable strings
3261
+ * without forcing every consumer to define them.
3262
+ *
3263
+ * @param key The dot-notated translation key.
3264
+ * @param params Optional `{{name}}` interpolation values.
3265
+ * @returns The translation, or `undefined` when the key is not defined.
3266
+ */
3267
+ translateIfPresent(key: string, params?: Record<string, string | number>): string | undefined;
3246
3268
  /**
3247
3269
  * Shorthand alias for `translate`.
3248
3270
  */
@@ -3399,6 +3421,24 @@ declare abstract class MnCollectionBase<T, DS extends MnCollectionDataSource<T>>
3399
3421
  * to keep the default (currently nothing).
3400
3422
  */
3401
3423
  protected onRowsChanged(): void;
3424
+ /**
3425
+ * Resolves a label three ways, in order: the consumer's explicit key, a
3426
+ * conventional `mnCollection.*` key when the app defines one, and finally a
3427
+ * readable English default.
3428
+ *
3429
+ * The middle step is what makes the components translatable out of the box: an
3430
+ * app that adds the `mnCollection` namespace to its locale files gets every
3431
+ * table, list and grid translated at once, with no per-call-site wiring across
3432
+ * dozens of data sources. An app that does not keeps today's English text rather
3433
+ * than leaking raw keys into the UI.
3434
+ *
3435
+ * @param consumerKey The data source's own translation key, if it set one.
3436
+ * @param defaultKey The conventional key this label falls back to.
3437
+ * @param fallback The English text used when neither key resolves.
3438
+ * @param params Optional interpolation values.
3439
+ * @returns The resolved label.
3440
+ */
3441
+ protected resolveLabel(consumerKey: string | undefined, defaultKey: string, fallback: string, params?: Record<string, string | number>): string;
3402
3442
  /**
3403
3443
  * Resolves translation keys to display strings via {@link MnLanguageService}.
3404
3444
  * Subclasses override to resolve their own keys; call `super` to keep these.
@@ -3469,12 +3509,6 @@ declare abstract class MnSelectableCollectionBase<T, DS extends MnSelectableColl
3469
3509
  * its ids matched a loaded row yet. See {@link beforeInitialFilter}.
3470
3510
  */
3471
3511
  private pendingInitialEmit;
3472
- /**
3473
- * The ids that arrived pre-selected, kept apart from {@link selectedIds} so
3474
- * {@link prioritizeInitialSelection} has a set that does **not** move as the user
3475
- * clicks. Null when the collection opened with nothing selected.
3476
- */
3477
- private pinnedSelectionIds;
3478
3512
  /**
3479
3513
  * Every selected row, in selection order, for the summary. Ids whose row was
3480
3514
  * never seen are skipped rather than rendered as a bare id.
@@ -3484,6 +3518,15 @@ declare abstract class MnSelectableCollectionBase<T, DS extends MnSelectableColl
3484
3518
  get showSelectionSummary(): boolean;
3485
3519
  /** How many tags to show before collapsing the remainder. */
3486
3520
  get selectionSummaryLimit(): number;
3521
+ /**
3522
+ * Tag count the summary collapses at when the data source names no limit.
3523
+ *
3524
+ * Subclasses that know their own width narrow this: the same eight tags that
3525
+ * read as a compact header on a wide table become seven stacked lines in a phone
3526
+ * sheet, pushing the rows they describe off screen. Overridden by
3527
+ * {@link MnCollectionDataSource.selectionSummaryLimit}.
3528
+ */
3529
+ protected get defaultSelectionSummaryLimit(): number;
3487
3530
  /**
3488
3531
  * The tags to render: the first {@link selectionSummaryLimit} rows, or all of them
3489
3532
  * once expanded. Keeps a large selection from turning the header into the page.
@@ -3517,23 +3560,6 @@ declare abstract class MnSelectableCollectionBase<T, DS extends MnSelectableColl
3517
3560
  * @returns The label, or null when none can be derived.
3518
3561
  */
3519
3562
  protected defaultSelectionLabel(_row: T): string | null;
3520
- /**
3521
- * Reorders rows so the ones that were already selected when the collection
3522
- * opened come first, preserving the incoming order within each group.
3523
- *
3524
- * Deliberately keyed on the *initial* selection rather than the live one: pinning
3525
- * what the user is currently ticking would make a row jump to the top the instant
3526
- * it is clicked, moving the next row under the pointer mid-click. Freezing the set
3527
- * answers the actual question — "what was already chosen?" — and leaves the list
3528
- * still while it is being worked with. A row deselected during the session keeps
3529
- * its place for the same reason.
3530
- *
3531
- * Callers apply this only when no explicit sort is active, so a sorted column
3532
- * always wins.
3533
- * @param items The rows in their current order.
3534
- * @returns The rows with the initially-selected ones hoisted to the top.
3535
- */
3536
- protected prioritizeInitialSelection(items: T[]): T[];
3537
3563
  /** Seeds selection from `initialSelectedIds` before the first filter pass. */
3538
3564
  protected beforeInitialFilter(): void;
3539
3565
  /** Announces a deferred initial selection as soon as its rows are loaded. */
@@ -3566,6 +3592,7 @@ type MnPageSlot = {
3566
3592
  * reacts to the outputs.
3567
3593
  */
3568
3594
  declare class MnCollectionPagination {
3595
+ private readonly lang;
3569
3596
  /** Prefix for the page-size select's id, keeping it unique per host. */
3570
3597
  idPrefix: string;
3571
3598
  isPaginated: boolean;
@@ -3594,17 +3621,61 @@ declare class MnCollectionPagination {
3594
3621
  * e.g. page 5 of 50 → `1 … 4 5 6 … 50`
3595
3622
  */
3596
3623
  get pageSlots(): MnPageSlot[];
3597
- /** Wrapper classes for a slot: anchors and their gaps are md+ only. */
3598
- slotVisibility(slot: MnPageSlot): string;
3599
3624
  /** e.g. `Page 5 of 50`. */
3600
3625
  get pageIndicatorLabel(): string;
3601
3626
  /** e.g. `41–50 of 250`. */
3602
3627
  get itemRangeLabel(): string;
3628
+ /** "Items per page" label beside the page-size selector. */
3629
+ get rowsPerPageLabel(): string;
3603
3630
  /**
3604
3631
  * Substitutes `{{name}}` placeholders, matching the interpolation syntax used
3605
3632
  * by MnLanguageService so the same translation strings work either way.
3606
3633
  */
3607
3634
  private fill;
3635
+ /** Label for the load-more button. */
3636
+ get loadMoreLabel(): string;
3637
+ /** Accessible label for the first-page control. */
3638
+ get firstPageLabel(): string;
3639
+ /** Accessible label for the previous-page control. */
3640
+ get previousPageLabel(): string;
3641
+ /** Accessible label for the next-page control. */
3642
+ get nextPageLabel(): string;
3643
+ /** Accessible label for the last-page control. */
3644
+ get lastPageLabel(): string;
3645
+ /**
3646
+ * Wrapper classes for one slot in the page strip, shrinking it in two steps as
3647
+ * the footer narrows. Container queries, so the measurement is the footer's own
3648
+ * width — the same strip is wide on a page and cramped in a modal.
3649
+ *
3650
+ * The first/last anchors and their gaps drop below 640px, where « and » already
3651
+ * jump to either end. Below 380px every number except the current one drops too:
3652
+ * the strip would otherwise wrap onto a second line and push the footer over the
3653
+ * table, and the "Page 3 of 9" readout beside it already says where the user is.
3654
+ * The arrows survive both steps, so navigation never depends on a number.
3655
+ */
3656
+ slotVisibility(slot: MnPageSlot): string;
3657
+ /**
3658
+ * Accessible label for a page-number button.
3659
+ * @param page The page the button jumps to.
3660
+ * @returns The label, naming the page.
3661
+ */
3662
+ pageLabel(page: number): string;
3663
+ /**
3664
+ * Resolves a label three ways, in order: the consumer's explicit text, the
3665
+ * conventional `mnCollection.*` key when the app defines one, and finally a
3666
+ * readable English default.
3667
+ *
3668
+ * Mirrors `MnCollectionBase.resolveLabel`; this component is presentational and
3669
+ * does not extend that base, but its chrome must be just as translatable — the
3670
+ * page-size label and the item-range readout are on screen for every paged
3671
+ * collection in the app.
3672
+ *
3673
+ * @param explicit The label the host passed in, if any.
3674
+ * @param key The conventional translation key to try.
3675
+ * @param fallback The English text used when neither resolves.
3676
+ * @returns The resolved label.
3677
+ */
3678
+ private label;
3608
3679
  static ɵfac: i0.ɵɵFactoryDeclaration<MnCollectionPagination, never>;
3609
3680
  static ɵcmp: i0.ɵɵComponentDeclaration<MnCollectionPagination, "mn-collection-pagination", never, { "idPrefix": { "alias": "idPrefix"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "isServerPaginated": { "alias": "isServerPaginated"; "required": false; }; "showLoadMore": { "alias": "showLoadMore"; "required": false; }; "loadingMoreRows": { "alias": "loadingMoreRows"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "totalItemCount": { "alias": "totalItemCount"; "required": false; }; "visiblePages": { "alias": "visiblePages"; "required": false; }; "pageSizeSelectOptions": { "alias": "pageSizeSelectOptions"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; }, { "loadMore": "loadMore"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, true, never>;
3610
3681
  }
@@ -3879,10 +3950,13 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
3879
3950
  isColumnFilterActive(column: ColumnDefinition<T>): boolean;
3880
3951
  /** Filter options formatted for mn-multi-select for a given column. */
3881
3952
  getFilterMultiSelectOptions(column: ColumnDefinition<T>): MnMultiSelectOption<string>[];
3882
- /** Any / Yes / No options for a boolean column filter. */
3883
- getBooleanFilterOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
3884
- /** Filter options formatted for mn-select for a given column. */
3885
- getFilterSelectOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
3953
+ /** Label for the small-screen filters toggle button. */
3954
+ get filtersButtonLabel(): string;
3955
+ /**
3956
+ * Summary a multi-select filter collapses to once more than one option is picked.
3957
+ * Resolved with the `{count}` token intact for mn-multi-select to fill in.
3958
+ */
3959
+ get filterSelectedLabel(): string;
3886
3960
  /** Current text/select filter value for a column. */
3887
3961
  textFilterValue(column: ColumnDefinition<T>): string;
3888
3962
  /** Current multi-select filter value for a column. */
@@ -3893,15 +3967,12 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
3893
3967
  clearAllFilters(): void;
3894
3968
  /** Whether any column has filtering enabled. */
3895
3969
  get hasColumnFilters(): boolean;
3896
- /** Label for the small-screen filters toggle button. */
3897
- get filtersButtonLabel(): string;
3898
- /**
3899
- * Summary a multi-select filter collapses to once more than one option is picked.
3900
- * Resolved with the `{count}` token intact for mn-multi-select to fill in.
3901
- */
3902
- get filterSelectedLabel(): string;
3903
3970
  /** Label for the "clear all filters" action in the small-screen panel. */
3904
3971
  get clearFiltersButtonLabel(): string;
3972
+ /** Heading for the selection summary, with the count filled in. */
3973
+ get selectionSummaryTitle(): string;
3974
+ /** Label for the summary's clear-everything action. */
3975
+ get selectionClearAllLabel(): string;
3905
3976
  /** Opens/closes the stacked filter panel shown on small screens. */
3906
3977
  toggleFiltersPanel(): void;
3907
3978
  private readonly baseTableClasses;
@@ -3944,18 +4015,23 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
3944
4015
  get tableClasses(): string;
3945
4016
  /** Page size to use at/above the `md` breakpoint (consumer's pageSize, or the user's selection). */
3946
4017
  private desktopPageSize;
3947
- /** Heading for the selection summary, with the count filled in. */
3948
- get selectionSummaryTitle(): string;
3949
- /** Label for the summary's clear-everything action. */
3950
- get selectionClearAllLabel(): string;
3951
4018
  /** Label for the summary's expand/collapse control. */
3952
4019
  get selectionSummaryToggleLabel(): string;
3953
- /**
3954
- * Accessible label for a tag's remove button.
3955
- * @param row The row the tag stands for.
3956
- * @returns The label, naming the row so screen readers announce which one goes.
4020
+ /** Placeholder and accessible name for the search box. */
4021
+ get searchPlaceholderLabel(): string;
4022
+ /** Accessible name for the scrollable table region. */
4023
+ get tableRegionLabel(): string;
4024
+ /**
4025
+ * Fewer tags once the table is narrow. A tag holding a person's full name takes
4026
+ * a whole line at phone width, so the eight that read as a compact header on a
4027
+ * wide table become eight stacked lines in a modal sheet — the summary then
4028
+ * occupies more of the screen than the rows it is summarising.
4029
+ *
4030
+ * Reuses {@link filtersCollapsed} rather than measuring again: it is already
4031
+ * maintained on every resize and means exactly "this table is under 640px".
4032
+ * The heading still states the true total, so the hidden tags cost no information.
3957
4033
  */
3958
- selectionRemoveLabel(row: T): string;
4034
+ protected get defaultSelectionSummaryLimit(): number;
3959
4035
  /** Tracks the desktop page size when the user picks one (selector only shows at >= md). */
3960
4036
  onPageSizeChange(newSize: number): void;
3961
4037
  /** The effective column-width strategy, defaulting to `stable`. */
@@ -3967,6 +4043,8 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
3967
4043
  * it sits in could still have grown to fit it.
3968
4044
  */
3969
4045
  get widthsArePinned(): boolean;
4046
+ /** Any / Yes / No options for a boolean column filter. */
4047
+ getBooleanFilterOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
3970
4048
  /**
3971
4049
  * The width to render for a column: the consumer's own declared width always
3972
4050
  * wins, then a width pinned by the `stable` layout, otherwise none.
@@ -4083,6 +4161,14 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
4083
4161
  /** Resolves the range / boolean filter control labels from their translation keys. */
4084
4162
  private resolveFilterLabelKeys;
4085
4163
  private applySorting;
4164
+ /** Filter options formatted for mn-select for a given column. */
4165
+ getFilterSelectOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
4166
+ /**
4167
+ * Accessible label for a tag's remove button.
4168
+ * @param row The row the tag stands for.
4169
+ * @returns The label, naming the row so screen readers announce which one goes.
4170
+ */
4171
+ selectionRemoveLabel(row: T): string;
4086
4172
  static ɵfac: i0.ɵɵFactoryDeclaration<MnTable<any>, never>;
4087
4173
  static ɵcmp: i0.ɵɵComponentDeclaration<MnTable<any>, "mn-table", never, {}, { "sortChange": "sortChange"; "rowClick": "rowClick"; }, never, never, true, never>;
4088
4174
  }
@@ -5309,6 +5395,13 @@ declare class MnModalService {
5309
5395
  }
5310
5396
 
5311
5397
  declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterViewInit, OnDestroy {
5398
+ private readonly lang;
5399
+ /**
5400
+ * Accessible name for this control. Resolved through the conventional
5401
+ * `mnModal.close` key so an app can translate it, falling back to English when the
5402
+ * key is not defined rather than leaking the raw key into the UI.
5403
+ */
5404
+ get closeModalLabel(): string;
5312
5405
  private el;
5313
5406
  private cdr;
5314
5407
  /** Downward release speed (px/ms) above which a short drag still dismisses — a "flick".
@@ -5822,6 +5915,8 @@ declare class MnList<T = unknown> extends MnSelectableCollectionBase<T, ListData
5822
5915
  protected get trackedToolbarTemplate(): TemplateRef<unknown> | undefined;
5823
5916
  protected collectionBody?: ElementRef<HTMLElement>;
5824
5917
  protected applyFilter(searchForItems: boolean): void;
5918
+ /** Accessible name for the scrollable list region. */
5919
+ get listRegionLabel(): string;
5825
5920
  static ɵfac: i0.ɵɵFactoryDeclaration<MnList<any>, never>;
5826
5921
  static ɵcmp: i0.ɵɵComponentDeclaration<MnList<any>, "mn-list", never, {}, { "itemClick": "itemClick"; }, never, never, true, never>;
5827
5922
  }
@@ -5930,6 +6025,10 @@ declare class MnGrid<T = unknown> extends MnCollectionBase<T, GridDataSource<T>>
5930
6025
  protected collectionBody?: ElementRef<HTMLElement>;
5931
6026
  onItemClick(item: T): void;
5932
6027
  protected applyFilter(searchForItems: boolean): void;
6028
+ /** Accessible name for the scrollable grid region. */
6029
+ get gridRegionLabel(): string;
6030
+ /** Accessible name for the loading placeholder. */
6031
+ get loadingLabel(): string;
5933
6032
  static ɵfac: i0.ɵɵFactoryDeclaration<MnGrid<any>, never>;
5934
6033
  static ɵcmp: i0.ɵɵComponentDeclaration<MnGrid<any>, "mn-grid", never, {}, { "itemClick": "itemClick"; }, never, never, true, never>;
5935
6034
  }
@@ -6189,6 +6288,12 @@ type MonthItem = {
6189
6288
  * ```
6190
6289
  */
6191
6290
  declare class CalendarViewComponent implements OnInit, OnDestroy {
6291
+ /**
6292
+ * Accessible name for this control. Resolved through the conventional
6293
+ * `mnCalendar.calendarView` key so an app can translate it, falling back to English when the
6294
+ * key is not defined rather than leaking the raw key into the UI.
6295
+ */
6296
+ get calendarViewLabel(): string;
6192
6297
  /** Whether to show the action button in the toolbar. */
6193
6298
  showButton: boolean;
6194
6299
  /** Label text for the action button. */
@@ -6286,6 +6391,13 @@ type DisplayHourRow$1 = {
6286
6391
  * so they appear side-by-side rather than stacked.
6287
6392
  */
6288
6393
  declare class CalendarWeekComponent implements OnInit, OnDestroy {
6394
+ private readonly lang;
6395
+ /**
6396
+ * Accessible name for this control. Resolved through the conventional
6397
+ * `mnCalendar.weekView` key so an app can translate it, falling back to English when the
6398
+ * key is not defined rather than leaking the raw key into the UI.
6399
+ */
6400
+ get weekViewLabel(): string;
6289
6401
  private layoutService;
6290
6402
  private cdr;
6291
6403
  /** The date around which the week is centred. */
@@ -6356,6 +6468,13 @@ type DisplayHourRow = {
6356
6468
  * {@link CalendarEventLayoutService}.
6357
6469
  */
6358
6470
  declare class CalendarDayComponent implements OnInit, OnDestroy {
6471
+ private readonly lang;
6472
+ /**
6473
+ * Accessible name for this control. Resolved through the conventional
6474
+ * `mnCalendar.dayView` key so an app can translate it, falling back to English when the
6475
+ * key is not defined rather than leaking the raw key into the UI.
6476
+ */
6477
+ get dayViewLabel(): string;
6359
6478
  private layoutService;
6360
6479
  private cdr;
6361
6480
  /** The date to display. */
@@ -6415,6 +6534,13 @@ declare class CalendarDayComponent implements OnInit, OnDestroy {
6415
6534
  * events on that day. Clicking a cell emits `dayClicked`.
6416
6535
  */
6417
6536
  declare class CalendarMonthComponent implements OnInit, OnDestroy {
6537
+ private readonly lang;
6538
+ /**
6539
+ * Accessible name for this control. Resolved through the conventional
6540
+ * `mnCalendar.monthView` key so an app can translate it, falling back to English when the
6541
+ * key is not defined rather than leaking the raw key into the UI.
6542
+ */
6543
+ get monthViewLabel(): string;
6418
6544
  /** The date whose month is displayed. */
6419
6545
  focusDay: Date;
6420
6546
  /** Observable that emits the full event list whenever it changes. */
@@ -6502,6 +6628,13 @@ declare class CalendarEventDefaultComponent implements CalendarEventData, OnInit
6502
6628
  * (events whose end time is in the future), sorted by start time.
6503
6629
  */
6504
6630
  declare class UpcomingEventsComponent implements OnInit, OnChanges, OnDestroy {
6631
+ private readonly lang;
6632
+ /**
6633
+ * Accessible name for this control. Resolved through the conventional
6634
+ * `mnCalendar.upcomingEvents` key so an app can translate it, falling back to English when the
6635
+ * key is not defined rather than leaking the raw key into the UI.
6636
+ */
6637
+ get upcomingEventsLabel(): string;
6505
6638
  /** Observable that emits the full event list whenever it changes. */
6506
6639
  eventsChanged: Observable<CalendarEvent[]>;
6507
6640
  /** Resolved calendar configuration passed from the parent view. */
@@ -6723,6 +6856,12 @@ type MnTabDataSource = {
6723
6856
  declare class MnTabComponent implements DoCheck, AfterViewInit, OnDestroy {
6724
6857
  /** The horizontally-scrolling wrapper the edge fade is painted onto. */
6725
6858
  private scrollContainer?;
6859
+ /** The tab row; queried for the active tab so the indicator can measure it. */
6860
+ private tabList?;
6861
+ /** The shared underline that slides to the active tab. */
6862
+ private indicator?;
6863
+ /** Pending indicator remeasure, cancelled on destroy so a post-destroy frame can't read a detached ref. */
6864
+ private indicatorFrame?;
6726
6865
  /** How far the fade reaches in from each overflowing edge. */
6727
6866
  private static readonly FADE;
6728
6867
  /** Data source containing tab items and default active index. */
@@ -6788,6 +6927,20 @@ declare class MnTabComponent implements DoCheck, AfterViewInit, OnDestroy {
6788
6927
  * @param item - The tab item to activate.
6789
6928
  */
6790
6929
  setActive(item: MnTabItem): void;
6930
+ /**
6931
+ * Moves the shared underline to the active tab. When `animate` is false the
6932
+ * move is snapped (no slide) by disabling the transition for one reflow —
6933
+ * used on init, async selection and resize, where a slide would read as jank.
6934
+ * @param animate - Whether the move should slide (true) or snap (false).
6935
+ */
6936
+ private updateIndicator;
6937
+ /**
6938
+ * Remeasures the indicator on the next animation frame, so the read happens
6939
+ * after layout reflects the latest active-tab classes. Coalesces bursts and
6940
+ * is cancellable on destroy.
6941
+ * @param animate - Whether the resulting move should slide.
6942
+ */
6943
+ private scheduleIndicator;
6791
6944
  /**
6792
6945
  * Returns the resolved badge value for a tab item, supporting both plain numbers and Signal<number>.
6793
6946
  * @param item - The tab item whose badge to resolve.
@@ -6803,6 +6956,158 @@ declare class MnTabComponent implements DoCheck, AfterViewInit, OnDestroy {
6803
6956
  static ɵcmp: i0.ɵɵComponentDeclaration<MnTabComponent, "mn-tab", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "scrollable": { "alias": "scrollable"; "required": false; }; "justified": { "alias": "justified"; "required": false; }; }, { "activeChange": "activeChange"; }, never, never, true, never>;
6804
6957
  }
6805
6958
 
6959
+ /**
6960
+ * One control on the editor's default toolbar.
6961
+ *
6962
+ * The list doubles as the key space for {@link MnRichTextEditorLabels}: a label
6963
+ * can only be given for a control the default toolbar actually renders.
6964
+ */
6965
+ type MnRichTextEditorControl = 'textStyle' | 'bold' | 'italic' | 'underline' | 'strike' | 'orderedList' | 'bulletList' | 'blockquote' | 'codeBlock' | 'link' | 'clean';
6966
+ /**
6967
+ * Hover labels for the toolbar controls.
6968
+ *
6969
+ * Values are either literal text (`labels`) or translation keys resolved through
6970
+ * `MnLanguageService` (`labelKeys`); anything left out falls back to the
6971
+ * component's built-in English label.
6972
+ */
6973
+ type MnRichTextEditorLabels = Partial<Record<MnRichTextEditorControl, string>>;
6974
+ /**
6975
+ * A Quill toolbar definition: rows of control descriptors, exactly as Quill's
6976
+ * `modules.toolbar` option takes them.
6977
+ *
6978
+ * Typed loosely on purpose — Quill accepts strings (`'bold'`) and objects
6979
+ * (`{ header: [2, 3, false] }`) in the same row, and the library does not export
6980
+ * a type for it.
6981
+ */
6982
+ type MnRichTextEditorToolbar = readonly (readonly unknown[])[];
6983
+
6984
+ /**
6985
+ * Thin wrapper around the {@link Quill} rich-text editor.
6986
+ *
6987
+ * Quill is used **directly** rather than through an Angular wrapper package: the
6988
+ * wrapper libraries carry peer-dependency ranges that lag behind Angular's
6989
+ * release train, and none of them add anything this component needs.
6990
+ *
6991
+ * Consumers must install `quill` themselves (it is an optional peer dependency)
6992
+ * and load its snow theme, e.g. `node_modules/quill/dist/quill.snow.css` in the
6993
+ * `styles` array of `angular.json`. Only the chrome around that theme — radius,
6994
+ * borders, height limits and the toolbar tooltips — belongs to this component;
6995
+ * recolouring Quill's own palette to an app theme stays with the app, because
6996
+ * the same `.ql-snow` markup is normally reused to render stored HTML in places
6997
+ * where no editor is mounted.
6998
+ *
6999
+ * Quill itself is pulled in with a dynamic `import()` when the editor mounts.
7000
+ * This component sits in the library's single entry point, which apps import
7001
+ * eagerly, so a static import would put the whole editor engine in every app's
7002
+ * initial bundle — including the pages that never open one.
7003
+ *
7004
+ * Zoneless notes: nothing here relies on an implicit change-detection tick. The
7005
+ * editor is created inside {@link afterNextRender} (the host element only exists
7006
+ * after the first render pass) and every value that flows back out is written to
7007
+ * a signal or emitted through an `output`, both of which schedule change
7008
+ * detection themselves. No `setTimeout`, no manual `detectChanges`.
7009
+ *
7010
+ * The produced HTML is **not** trusted: sanitise it before rendering it anywhere.
7011
+ *
7012
+ * @example
7013
+ * ```html
7014
+ * <mn-rich-text-editor
7015
+ * [content]="draft()"
7016
+ * [placeholder]="'minutes.placeholder' | mnTranslate"
7017
+ * [labelKeys]="{ bold: 'editor.bold', italic: 'editor.italic' }"
7018
+ * (contentChange)="draft.set($event)">
7019
+ * </mn-rich-text-editor>
7020
+ * ```
7021
+ */
7022
+ declare class MnRichTextEditor implements OnDestroy {
7023
+ /**
7024
+ * The initial HTML content. Later changes are applied only when they differ
7025
+ * from what the editor currently holds, so a parent echoing the emitted value
7026
+ * back never moves the caret.
7027
+ */
7028
+ readonly content: i0.InputSignal<string>;
7029
+ /** Placeholder shown while the editor is empty. */
7030
+ readonly placeholder: i0.InputSignal<string>;
7031
+ /** Accessible label for the editing surface. */
7032
+ readonly ariaLabel: i0.InputSignal<string>;
7033
+ /** Toolbar layout, in Quill's own format. Defaults to a prose-oriented set. */
7034
+ readonly toolbar: i0.InputSignal<MnRichTextEditorToolbar>;
7035
+ /** Literal hover labels per toolbar control. */
7036
+ readonly labels: i0.InputSignal<Partial<Record<MnRichTextEditorControl, string>>>;
7037
+ /** Translation keys per toolbar control; takes precedence over `labels`. */
7038
+ readonly labelKeys: i0.InputSignal<Partial<Record<MnRichTextEditorControl, string>>>;
7039
+ /**
7040
+ * Utilities applied to the wrapper, for sizing the writing surface. Overriding
7041
+ * this replaces the default height limits, so pass both bounds when you do.
7042
+ */
7043
+ readonly editorClass: i0.InputSignal<string>;
7044
+ /** Emits the editor's HTML on every user edit. */
7045
+ readonly contentChange: i0.OutputEmitterRef<string>;
7046
+ /**
7047
+ * Chrome around Quill's snow theme: the field's radius, border and surface.
7048
+ *
7049
+ * Descendant variants rather than a stylesheet — the utilities come from the
7050
+ * consuming app's Tailwind build (which scans this bundle), so they follow the
7051
+ * app's theme tokens the same way the rest of the library does.
7052
+ */
7053
+ protected readonly chromeClass: string;
7054
+ /** Host element, used to keep DOM queries inside this component. */
7055
+ private readonly host;
7056
+ /** Language service, used to resolve the toolbar labels from keys. */
7057
+ private readonly lang;
7058
+ /** The container Quill mounts into. */
7059
+ private readonly editorHost;
7060
+ /** The live editor instance, or null before Quill has loaded. */
7061
+ private quill;
7062
+ /** Whether the component is gone, so a late Quill load knows to stop. */
7063
+ private destroyed;
7064
+ /** The last HTML this component emitted, used to skip redundant writes. */
7065
+ private readonly lastEmitted;
7066
+ constructor();
7067
+ /** Drops the editor reference so the instance can be garbage collected. */
7068
+ ngOnDestroy(): void;
7069
+ /** Moves focus into the editing surface. */
7070
+ focusEditor(): void;
7071
+ /**
7072
+ * Loads Quill, builds the instance and wires its change handler.
7073
+ *
7074
+ * Nothing awaits this beyond the component itself: the surface appears once
7075
+ * the engine has loaded, and until then the `content` effect is a no-op that
7076
+ * the seeding below makes good.
7077
+ */
7078
+ private createEditor;
7079
+ /**
7080
+ * Gives each toolbar control a hover label, so hovering explains what the
7081
+ * style does. Set on the Quill-generated DOM after init; a control the current
7082
+ * toolbar does not render is simply skipped.
7083
+ */
7084
+ private applyToolbarLabels;
7085
+ /**
7086
+ * Picks the hover label for one control.
7087
+ * @param control The control being labelled.
7088
+ * @param labels Literal labels supplied by the consumer.
7089
+ * @param keys Translation keys supplied by the consumer.
7090
+ * @returns The translated key, the literal label, or the built-in default.
7091
+ */
7092
+ private resolveLabel;
7093
+ /**
7094
+ * Replaces the editor content with stored HTML. Quill parses it into its own
7095
+ * document model, which silently drops anything it has no format for — a
7096
+ * useful extra filter on top of the consumer's sanitiser.
7097
+ * @param html The HTML to load into the editor.
7098
+ */
7099
+ private setEditorHtml;
7100
+ /** Emits the editor's current HTML, normalising Quill's "empty" document. */
7101
+ private emitCurrentHtml;
7102
+ /**
7103
+ * Reads the editor's HTML.
7104
+ * @returns The current HTML, or an empty string when the editor is blank.
7105
+ */
7106
+ private readHtml;
7107
+ static ɵfac: i0.ɵɵFactoryDeclaration<MnRichTextEditor, never>;
7108
+ static ɵcmp: i0.ɵɵComponentDeclaration<MnRichTextEditor, "mn-rich-text-editor", never, { "content": { "alias": "content"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "toolbar": { "alias": "toolbar"; "required": false; "isSignal": true; }; "labels": { "alias": "labels"; "required": false; "isSignal": true; }; "labelKeys": { "alias": "labelKeys"; "required": false; "isSignal": true; }; "editorClass": { "alias": "editorClass"; "required": false; "isSignal": true; }; }, { "contentChange": "contentChange"; }, never, never, true, never>;
7109
+ }
7110
+
6806
7111
  declare const mnIconVariants: tailwind_variants.TVReturnType<{
6807
7112
  color: {
6808
7113
  current: string;
@@ -7357,5 +7662,5 @@ type MnPreviewMessage = {
7357
7662
  */
7358
7663
  declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
7359
7664
 
7360
- export { API_BASE_URL, ActionStyle, BackdropMode, BaseModalBuilder, CALENDAR_CONFIG, CALENDAR_DATE_FORMATTER, CalendarDayComponent, CalendarEventComponent, CalendarEventDefaultComponent, CalendarEventLayoutService, CalendarMonthComponent, CalendarUtility, CalendarView, CalendarViewComponent, CalendarWeekComponent, CloseMode, ColumnSortType, ConfirmationModalBuilder, ConfirmationTone, CrudService, CustomModalBuilder, DEFAULT_CALENDAR_CONFIG, DEFAULT_MN_ALERT_CONFIG, DefaultCalendarDateFormatter, FieldAppearance, FieldKind, FormLayoutMode, FormModalBuilder, KeyboardMode, MN_ALERT_CONFIG, MN_CALENDAR_COMPONENT_NAME, MN_CALENDAR_CONFIG, MN_CHECKBOX_CONFIG, MN_DATETIME_CONFIG, MN_HAPTICS, MN_ICON_MAP, MN_INPUT_FIELD_CONFIG, MN_INSTANCE_ID, MN_LIB_DUAL_HORIZONTAL_IMAGE, MN_MODAL_ACTION_ICONS, MN_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, MODAL_ACTION_ICON_SIZE, MODAL_ACTION_ICON_SIZE_SM, MnAlertOutletComponent, MnAlertService, MnAlertStore, MnBadge, MnButton, MnCheckbox, MnCollectionBase, MnCollectionPagination, MnCollectionState, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDateSelectorBar, MnDatetime, MnDualHorizontalImage, MnFileInput, MnFormBodyComponent, MnGrid, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, MnSelect, MnSelectableCollectionBase, MnShowAboveDirective, MnShowBelowDirective, MnSkeleton, MnTabComponent, MnTable, MnTextarea, MnTranslatePipe, MnWizardBodyComponent, ModalBuilder, ModalCloseReason, ModalIntent, ModalKind, ModalSize, NavigationDirection, OptionState, SelectionMode, StepBuilder, StepState, SubmitMode, UpcomingEventRowComponent, UpcomingEventsComponent, ValidationCode, ValidationStatus, WizardFlowMode, WizardModalBuilder, dateTimeAdapter, defaultFilterPredicate, defaultIconForStyle, defaultTextAdapter, emptyFilterValue, enableMnPreviewMode, isFilterValueActive, isTranslatable, matchesColumnFilter, mnAlertVariants, mnBadgeVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig, resolveFilterableValue };
7361
- export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnBase, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnFilterValue, ColumnSkeleton, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DateSelectorBarLayout, DatetimeFieldConfig, DayTile, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, GridDataSource, GridLayout, GridSkeleton, HourRow, ListAppearance, ListDataSource, ListLabels, ListSkeleton, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnColumnFilter, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, MnFileDisplayItem, MnFileInputDisplayMode, MnFileInputErrorMessageData, MnFileInputErrorMessagesData, MnFileInputProps, MnFileInputUIConfig, MnFileInputVariants, MnHapticStyle, MnHapticsHandler, MnIconTypes, MnIconVariants, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPageSlot, MnPreviewMessage, MnQueryParams, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTableFilterLabels, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, MnValidationErrorArgs, ModalCancelHandler, ModalCloseEvent, ModalConfig, ModalFooterAction, ModalI18nLabels, ModalInputMap, ModalPollingConfig, ModalRef, ModalResultHandler, ModalStepId, MonthItem, MultiSelectFieldConfig, MultiSelectTableFieldConfig, NumberFieldConfig, OffsetPaginationStrategy, PaginationMode, PaginationStrategy, PasswordFieldConfig, Primitive, QueryParams, QueryValue, RatingFieldConfig, Result, ResultMeta, SelectFieldConfig, SelectOption, SingleSelectTableFieldConfig, SliderFieldConfig, SortState, StepBodyConfig, StepGuard, StepValidator, SuccessResult, TableAppearance, TableDataSource, TableLabels, TextFieldConfig, TextareaFieldConfig, ValidationResult, WizardBeforeCompleteValidator, WizardModalConfig, WizardResult, WizardStepChangeEvent, WizardStepChangeHandler, WizardStepConfig };
7665
+ export { API_BASE_URL, ActionStyle, BackdropMode, BaseModalBuilder, CALENDAR_CONFIG, CALENDAR_DATE_FORMATTER, CalendarDayComponent, CalendarEventComponent, CalendarEventDefaultComponent, CalendarEventLayoutService, CalendarMonthComponent, CalendarUtility, CalendarView, CalendarViewComponent, CalendarWeekComponent, CloseMode, ColumnSortType, ConfirmationModalBuilder, ConfirmationTone, CrudService, CustomModalBuilder, DEFAULT_CALENDAR_CONFIG, DEFAULT_MN_ALERT_CONFIG, DefaultCalendarDateFormatter, FieldAppearance, FieldKind, FormLayoutMode, FormModalBuilder, KeyboardMode, MN_ALERT_CONFIG, MN_CALENDAR_COMPONENT_NAME, MN_CALENDAR_CONFIG, MN_CHECKBOX_CONFIG, MN_DATETIME_CONFIG, MN_HAPTICS, MN_ICON_MAP, MN_INPUT_FIELD_CONFIG, MN_INSTANCE_ID, MN_LIB_DUAL_HORIZONTAL_IMAGE, MN_MODAL_ACTION_ICONS, MN_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, MODAL_ACTION_ICON_SIZE, MODAL_ACTION_ICON_SIZE_SM, MnAlertOutletComponent, MnAlertService, MnAlertStore, MnBadge, MnButton, MnCheckbox, MnCollectionBase, MnCollectionPagination, MnCollectionState, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDateSelectorBar, MnDatetime, MnDualHorizontalImage, MnFileInput, MnFormBodyComponent, MnGrid, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnRichTextEditor, MnSectionDirective, MnSelect, MnSelectableCollectionBase, MnShowAboveDirective, MnShowBelowDirective, MnSkeleton, MnTabComponent, MnTable, MnTextarea, MnTranslatePipe, MnWizardBodyComponent, ModalBuilder, ModalCloseReason, ModalIntent, ModalKind, ModalSize, NavigationDirection, OptionState, SelectionMode, StepBuilder, StepState, SubmitMode, UpcomingEventRowComponent, UpcomingEventsComponent, ValidationCode, ValidationStatus, WizardFlowMode, WizardModalBuilder, dateTimeAdapter, defaultFilterPredicate, defaultIconForStyle, defaultTextAdapter, emptyFilterValue, enableMnPreviewMode, isFilterValueActive, isTranslatable, matchesColumnFilter, mnAlertVariants, mnBadgeVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig, resolveFilterableValue };
7666
+ export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnBase, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnFilterValue, ColumnSkeleton, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DateSelectorBarLayout, DatetimeFieldConfig, DayTile, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, GridDataSource, GridLayout, GridSkeleton, HourRow, ListAppearance, ListDataSource, ListLabels, ListSkeleton, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnColumnFilter, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, MnFileDisplayItem, MnFileInputDisplayMode, MnFileInputErrorMessageData, MnFileInputErrorMessagesData, MnFileInputProps, MnFileInputUIConfig, MnFileInputVariants, MnHapticStyle, MnHapticsHandler, MnIconTypes, MnIconVariants, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPageSlot, MnPreviewMessage, MnQueryParams, MnRichTextEditorControl, MnRichTextEditorLabels, MnRichTextEditorToolbar, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTableFilterLabels, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, MnValidationErrorArgs, ModalCancelHandler, ModalCloseEvent, ModalConfig, ModalFooterAction, ModalI18nLabels, ModalInputMap, ModalPollingConfig, ModalRef, ModalResultHandler, ModalStepId, MonthItem, MultiSelectFieldConfig, MultiSelectTableFieldConfig, NumberFieldConfig, OffsetPaginationStrategy, PaginationMode, PaginationStrategy, PasswordFieldConfig, Primitive, QueryParams, QueryValue, RatingFieldConfig, Result, ResultMeta, SelectFieldConfig, SelectOption, SingleSelectTableFieldConfig, SliderFieldConfig, SortState, StepBodyConfig, StepGuard, StepValidator, SuccessResult, TableAppearance, TableDataSource, TableLabels, TextFieldConfig, TextareaFieldConfig, ValidationResult, WizardBeforeCompleteValidator, WizardModalConfig, WizardResult, WizardStepChangeEvent, WizardStepChangeHandler, WizardStepConfig };