mn-angular-lib 1.0.106 → 1.0.108

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": "mn-angular-lib",
3
- "version": "1.0.106",
3
+ "version": "1.0.108",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.1.3",
6
6
  "@angular/core": "^21.1.3"
@@ -20,9 +20,11 @@
20
20
  opacity: 0.8;
21
21
  }
22
22
 
23
- /* Swipe-to-dismiss: animate the spring-back, but follow the finger 1:1 while dragging. */
23
+ /* Swipe-to-dismiss: animate the spring-back, but follow the finger 1:1 while dragging.
24
+ `min-height` is transitioned too so the mobile sheet grows/shrinks smoothly (not instantly)
25
+ when the soft keyboard opens/closes — see the `.mn-keyboard-open` growth rule below. */
24
26
  .modal-container {
25
- transition: transform 0.35s var(--mn-sheet-ease);
27
+ transition: transform 0.35s var(--mn-sheet-ease), min-height 0.25s var(--mn-sheet-ease);
26
28
  }
27
29
 
28
30
  .modal-container.sheet-dragging {
@@ -122,6 +124,9 @@
122
124
  :host(.mobile-sheet) .modal-container {
123
125
  width: 100%;
124
126
  max-width: 100%;
127
+ /* Explicit resting min-height so the keyboard-open growth (min-height: 92vh) can transition
128
+ from a defined value (`auto` would jump instead of animate). */
129
+ min-height: 0;
125
130
  /* Cap the sheet at 92vh. The soft keyboard OVERLAYS the lower part of the sheet rather
126
131
  than lifting it (on iOS the WKWebView does not resize — Capacitor `resize: none` — so
127
132
  there is nothing to lift into): the sheet stays anchored at the bottom and its inner
@@ -144,12 +149,14 @@
144
149
  focused field into view — pinning the height to 92vh guarantees content above the keyboard
145
150
  for the inner scroll (with its `--keyboard-height` scroll-padding) to reveal the field.
146
151
  Read as a plain class/var, so the library keeps no dependency on Capacitor.
147
- `!important` is required to beat the inline `[style.height]` the shell binds for FULL-size or
148
- explicit `sizeHeight` sheets (an inline style otherwise always wins over a stylesheet rule,
149
- leaving a short fixed-height sheet stuck behind the overlaying keyboard). A FULL (95vh) sheet
150
- is capped to 92vh while the keyboard is open, which is fine. */
152
+ Uses `min-height` (not `height`) so it beats the inline `[style.height]` the shell binds for
153
+ FULL-size / explicit `sizeHeight` sheets WITHOUT `!important` a larger `min-height` wins over
154
+ `height`, and `max-height: 92vh` caps a taller inline height back down AND so the growth can
155
+ be smoothly transitioned (see the `.modal-container` transition above). The app only adds
156
+ `.mn-keyboard-open` when the focused field would actually be behind the keyboard, so a modal
157
+ whose field is already visible never grows. */
151
158
  :host-context(.mn-keyboard-open).mobile-sheet .modal-container {
152
- height: 92vh !important;
159
+ min-height: 92vh;
153
160
  }
154
161
 
155
162
  /* Override whichever anim-* open animation was selected */
@@ -8,6 +8,8 @@ import { Observable, BehaviorSubject, Subject } from 'rxjs';
8
8
  import * as mn_angular_lib from 'mn-angular-lib';
9
9
  import * as _angular_forms from '@angular/forms';
10
10
  import { ValidationErrors, NgControl, AbstractControl, ValidatorFn, AsyncValidatorFn, FormGroup } from '@angular/forms';
11
+ import { LucideIconData } from '@lucide/angular';
12
+ export { LucideIconData } from '@lucide/angular';
11
13
  import { SafeHtml } from '@angular/platform-browser';
12
14
  import { HttpStatusCode, HttpHeaders, HttpErrorResponse, HttpClient, HttpResponse, HttpParams } from '@angular/common/http';
13
15
 
@@ -2455,8 +2457,20 @@ declare class MnMultiSelect implements OnInit {
2455
2457
  private readonly elRef;
2456
2458
  private readonly lang;
2457
2459
  private readonly destroyRef;
2460
+ private readonly renderer;
2458
2461
  /** Reference to the trigger element for positioning the dropdown */
2459
2462
  triggerRef: ElementRef<HTMLElement>;
2463
+ /** The panel element currently moved into `document.body`, if any. */
2464
+ private movedPanel;
2465
+ /**
2466
+ * The dropdown panel element, queried while it is rendered by the `@if` block.
2467
+ * The setter relocates the panel to `document.body` so that its `position: fixed`
2468
+ * coordinates resolve against the viewport rather than any transformed/filtered
2469
+ * ancestor (which would otherwise become the containing block and push the panel
2470
+ * to the middle of the screen — the root cause of the mis-positioning bug, also
2471
+ * broken on iOS). Cleanup is handled when the query clears on close/destroy.
2472
+ */
2473
+ set dropdownRef(ref: ElementRef<HTMLElement> | undefined);
2460
2474
  /** Currently selected values */
2461
2475
  selectedValues: unknown[];
2462
2476
  isOpen: boolean;
@@ -2473,6 +2487,7 @@ declare class MnMultiSelect implements OnInit {
2473
2487
  private readonly builtInErrorMessages;
2474
2488
  constructor();
2475
2489
  ngOnInit(): void;
2490
+ onDocumentClick(event: Event): void;
2476
2491
  private resolveConfig;
2477
2492
  writeValue(val: unknown): void;
2478
2493
  registerOnChange(fn: (val: unknown) => void): void;
@@ -2481,7 +2496,15 @@ declare class MnMultiSelect implements OnInit {
2481
2496
  toggle(): void;
2482
2497
  /** Calculates the fixed position for the dropdown based on the trigger element */
2483
2498
  private updateDropdownPosition;
2484
- onDocumentClick(event: Event): void;
2499
+ /** Closes the dropdown on Escape for keyboard accessibility. */
2500
+ onEscape(): void;
2501
+ /**
2502
+ * Move the dropdown panel to `document.body` when it appears, and detach it when
2503
+ * the query clears. Appending to the body root makes the panel immune to ancestor
2504
+ * `transform`/`filter`/`will-change`, so `position: fixed` anchors to the viewport
2505
+ * and the panel stays under its trigger. Idempotent and safe to call with `null`.
2506
+ */
2507
+ private relocateDropdown;
2485
2508
  /** Closes the dropdown when the page or a scrollable parent is scrolled */
2486
2509
  onWindowScrollOrResize(): void;
2487
2510
  toggleOption(option: MnMultiSelectOption): void;
@@ -3951,11 +3974,23 @@ type ConfirmationActionConfig<TResult = unknown> = {
3951
3974
  label: string;
3952
3975
  style?: ActionStyle;
3953
3976
  handler?: ModalResultHandler<TResult>;
3977
+ /**
3978
+ * Overrides the default leading icon for this action button. Pass a Lucide icon's
3979
+ * static data (e.g. `LucideTrash2.icon`). Only rendered when the modal's
3980
+ * `showActionIcons` is not explicitly `false`.
3981
+ */
3982
+ icon?: LucideIconData;
3954
3983
  };
3955
3984
  type CancellationActionConfig = {
3956
3985
  label: string;
3957
3986
  style?: ActionStyle;
3958
3987
  reason?: ModalCloseReason;
3988
+ /**
3989
+ * Overrides the default leading icon for this action button. Pass a Lucide icon's
3990
+ * static data (e.g. `LucideX.icon`). Only rendered when the modal's
3991
+ * `showActionIcons` is not explicitly `false`.
3992
+ */
3993
+ icon?: LucideIconData;
3959
3994
  };
3960
3995
  type ModalFooterAction<TResult = unknown> = {
3961
3996
  label: string;
@@ -3970,6 +4005,12 @@ type ModalFooterAction<TResult = unknown> = {
3970
4005
  handler?: (modalRef: ModalRef<TResult>) => Promise<void> | void;
3971
4006
  /** Whether the button is disabled */
3972
4007
  disabled?: boolean;
4008
+ /**
4009
+ * Overrides the default leading icon for this action button. Pass a Lucide icon's
4010
+ * static data (e.g. `LucideCheck.icon`). Defaults are derived from `style` when
4011
+ * omitted. Only rendered when the modal's `showActionIcons` is not explicitly `false`.
4012
+ */
4013
+ icon?: LucideIconData;
3973
4014
  };
3974
4015
  type ModalPollingConfig<TResult = unknown> = {
3975
4016
  /** Polling interval in milliseconds */
@@ -4025,6 +4066,8 @@ type BaseModalConfig<TResult = unknown> = {
4025
4066
  resultType?: TResult;
4026
4067
  /** Custom footer actions (overrides default footer) */
4027
4068
  footerActions?: ModalFooterAction<TResult>[];
4069
+ /** Whether modal action buttons render their icons. Defaults to true. */
4070
+ showActionIcons?: boolean;
4028
4071
  /** Polling configuration for periodic async operations */
4029
4072
  polling?: ModalPollingConfig<TResult>;
4030
4073
  /** Handler called when the modal is cancelled or dismissed */
@@ -4096,6 +4139,39 @@ type CustomModalConfig<TResult = unknown> = {
4096
4139
  } & BaseModalConfig<TResult>;
4097
4140
  type ModalConfig<TResult = unknown, TModel = unknown> = WizardModalConfig<TResult> | FormModalConfig<TModel, TResult> | ConfirmationModalConfig<TResult> | CustomModalConfig<TResult>;
4098
4141
 
4142
+ /**
4143
+ * Default leading-icon size (px) for modal action buttons, matching the standard
4144
+ * (`md`) button. Small (`sm`) buttons use {@link MODAL_ACTION_ICON_SIZE_SM}.
4145
+ */
4146
+ declare const MODAL_ACTION_ICON_SIZE = 18;
4147
+ /** Leading-icon size (px) for `sm`-sized modal action buttons. */
4148
+ declare const MODAL_ACTION_ICON_SIZE_SM = 16;
4149
+ /**
4150
+ * The canonical Lucide icon data used as defaults across all modal action buttons.
4151
+ * Each value is a Lucide icon's static `.icon` data, rendered via the dynamic
4152
+ * `svg[lucideIcon]` directive so no icon has to be registered in `MN_ICON_MAP`.
4153
+ */
4154
+ declare const MN_MODAL_ACTION_ICONS: {
4155
+ /** Affirmative action (confirm / submit / complete). */
4156
+ readonly confirm: LucideIconData;
4157
+ /** Destructive action (danger style). */
4158
+ readonly danger: LucideIconData;
4159
+ /** Cancel / dismiss / close action. */
4160
+ readonly cancel: LucideIconData;
4161
+ /** Wizard forward navigation (rendered trailing). */
4162
+ readonly next: LucideIconData;
4163
+ /** Wizard backward navigation. */
4164
+ readonly back: LucideIconData;
4165
+ };
4166
+ /**
4167
+ * Resolves the default action-button icon from its {@link ActionStyle}. Used by
4168
+ * generic footer actions and any confirm button that has no explicit icon:
4169
+ * `DANGER` → trash, `PRIMARY` → check, everything else (`GHOST`/`SECONDARY`) → cross.
4170
+ * @param style The action's style, if any.
4171
+ * @returns The Lucide icon data to render.
4172
+ */
4173
+ declare function defaultIconForStyle(style?: ActionStyle): LucideIconData;
4174
+
4099
4175
  /**
4100
4176
  * Intensity of a haptic impact. Mirrors the three impact weights exposed by most
4101
4177
  * native haptic engines (e.g. Capacitor Haptics `ImpactStyle`) without binding the
@@ -4694,6 +4770,14 @@ declare class MnFormBodyComponent<TModel = unknown, TResult = TModel> implements
4694
4770
  * @param field The field whose existing image was cleared.
4695
4771
  */
4696
4772
  onFileCleared(field: FormFieldConfig<TModel>): void;
4773
+ /** Icon size (px) for the footer action buttons. */
4774
+ readonly actionIconSize = 18;
4775
+ /** Whether action-button icons should render on this modal (defaults to true). */
4776
+ get showActionIcons(): boolean;
4777
+ /** The leading icon for the submit button, or null when icons are disabled. */
4778
+ get submitIcon(): LucideIconData | null;
4779
+ /** The leading icon for the cancel button, or null when icons are disabled. */
4780
+ get cancelIcon(): LucideIconData | null;
4697
4781
  submit(): Promise<void>;
4698
4782
  static ɵfac: i0.ɵɵFactoryDeclaration<MnFormBodyComponent<any, any>, never>;
4699
4783
  static ɵcmp: i0.ɵɵComponentDeclaration<MnFormBodyComponent<any, any>, "mn-form-body", never, { "config": { "alias": "config"; "required": false; }; "modalRef": { "alias": "modalRef"; "required": false; }; "hideFooter": { "alias": "hideFooter"; "required": false; }; "hideCustomBody": { "alias": "hideCustomBody"; "required": false; }; }, { "formStatusChange": "formStatusChange"; }, never, never, true, never>;
@@ -4759,6 +4843,20 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
4759
4843
  get canGoBack(): boolean;
4760
4844
  get canGoNext(): boolean;
4761
4845
  get isLastStep(): boolean;
4846
+ /** Icon size (px) for the wizard action buttons. */
4847
+ readonly actionIconSize = 18;
4848
+ /** Whether action-button icons should render on this wizard (defaults to true). */
4849
+ get showActionIcons(): boolean;
4850
+ /**
4851
+ * The leading icon for the back button, or null when icons are disabled.
4852
+ * Shows a back arrow when navigation is possible, otherwise a cross (the
4853
+ * button acts as "Close" on the first step).
4854
+ */
4855
+ get backIcon(): LucideIconData | null;
4856
+ /** The trailing icon for the next button, or null when icons are disabled. */
4857
+ get nextIcon(): LucideIconData | null;
4858
+ /** The leading icon for the complete button, or null when icons are disabled. */
4859
+ get completeIcon(): LucideIconData | null;
4762
4860
  /** Index of the current step for the progress line */
4763
4861
  get currentProgressIndex(): number;
4764
4862
  get isFreeFlow(): boolean;
@@ -4813,6 +4911,17 @@ declare class MnConfirmationBodyComponent<TResult = boolean> implements OnInit {
4813
4911
  getButtonColor(style: ActionStyle): 'primary' | 'secondary' | 'danger' | 'warning' | 'success';
4814
4912
  getButtonVariant(style: ActionStyle): 'fill' | 'outline' | 'text';
4815
4913
  get isConfirmDisabled(): boolean;
4914
+ /** Icon size (px) for the action buttons. */
4915
+ readonly actionIconSize = 18;
4916
+ /** Whether action-button icons should render on this modal (defaults to true). */
4917
+ get showActionIcons(): boolean;
4918
+ /**
4919
+ * The leading icon for the confirm button, or null when icons are disabled.
4920
+ * Uses the per-action override, else defaults by style (DANGER → trash, else check).
4921
+ */
4922
+ get confirmIcon(): LucideIconData | null;
4923
+ /** The leading icon for the cancel button, or null when icons are disabled. */
4924
+ get cancelIcon(): LucideIconData | null;
4816
4925
  static ɵfac: i0.ɵɵFactoryDeclaration<MnConfirmationBodyComponent<any>, never>;
4817
4926
  static ɵcmp: i0.ɵɵComponentDeclaration<MnConfirmationBodyComponent<any>, "mn-confirmation-body", never, { "config": { "alias": "config"; "required": false; }; "modalRef": { "alias": "modalRef"; "required": false; }; }, {}, never, never, true, never>;
4818
4927
  }
@@ -6308,5 +6417,5 @@ type MnPreviewMessage = {
6308
6417
  */
6309
6418
  declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
6310
6419
 
6311
- 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_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, 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, defaultTextAdapter, enableMnPreviewMode, isTranslatable, mnAlertVariants, mnBadgeVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
6420
+ 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, defaultIconForStyle, defaultTextAdapter, enableMnPreviewMode, isTranslatable, mnAlertVariants, mnBadgeVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
6312
6421
  export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnSkeleton, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, 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, 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, MnPreviewMessage, MnQueryParams, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, 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 };