mn-angular-lib 1.0.71 → 1.0.73
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/fesm2022/mn-angular-lib.mjs +114 -20
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/features/mn-modal/components/mn-modal-shell/mn-modal-shell.component.css +69 -0
- package/src/lib/features/mn-skeleton/mn-skeleton.css +24 -0
- package/types/mn-angular-lib.d.ts +67 -4
package/package.json
CHANGED
|
@@ -45,6 +45,42 @@
|
|
|
45
45
|
to { opacity: 0; transform: scale(0.95); }
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
+
@keyframes slideUpIn {
|
|
49
|
+
from {
|
|
50
|
+
opacity: 0;
|
|
51
|
+
transform: translateY(100%);
|
|
52
|
+
}
|
|
53
|
+
to {
|
|
54
|
+
opacity: 1;
|
|
55
|
+
transform: translateY(0);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
@keyframes slideUpOut {
|
|
60
|
+
from {
|
|
61
|
+
opacity: 1;
|
|
62
|
+
transform: translateY(0);
|
|
63
|
+
}
|
|
64
|
+
to {
|
|
65
|
+
opacity: 0;
|
|
66
|
+
transform: translateY(100%);
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/* Open animations — keyed by the same .anim-* host classes as the close animations
|
|
71
|
+
below, so mobile bottom-sheet overrides can target both in one place. */
|
|
72
|
+
:host(.anim-slide) .modal-container {
|
|
73
|
+
animation: slideIn 0.2s ease-in-out;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
:host(.anim-fade) .modal-container {
|
|
77
|
+
animation: fadeIn 0.2s ease-in-out;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
:host(.anim-zoom) .modal-container {
|
|
81
|
+
animation: zoomIn 0.2s ease-in-out;
|
|
82
|
+
}
|
|
83
|
+
|
|
48
84
|
:host(.closing) .modal-backdrop {
|
|
49
85
|
animation: fadeOut 0.15s ease-in-out forwards;
|
|
50
86
|
}
|
|
@@ -60,3 +96,36 @@
|
|
|
60
96
|
:host(.closing).anim-zoom .modal-container {
|
|
61
97
|
animation: zoomOut 0.15s ease-in-out forwards;
|
|
62
98
|
}
|
|
99
|
+
|
|
100
|
+
/* =========================
|
|
101
|
+
Mobile bottom sheet (< 640px), gated by the .mobile-sheet host class.
|
|
102
|
+
Anchors the modal to the bottom, makes it full-width with rounded top
|
|
103
|
+
corners, and overrides every open/close animation with a slide-up.
|
|
104
|
+
========================= */
|
|
105
|
+
@media (max-width: 639.98px) {
|
|
106
|
+
:host(.mobile-sheet) {
|
|
107
|
+
align-items: flex-end;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
:host(.mobile-sheet) .modal-container {
|
|
111
|
+
width: 100%;
|
|
112
|
+
max-width: 100%;
|
|
113
|
+
max-height: 92vh;
|
|
114
|
+
border-radius: 1rem 1rem 0 0;
|
|
115
|
+
animation: slideUpIn 0.25s ease-out;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/* Override whichever anim-* open animation was selected */
|
|
119
|
+
:host(.mobile-sheet).anim-slide .modal-container,
|
|
120
|
+
:host(.mobile-sheet).anim-fade .modal-container,
|
|
121
|
+
:host(.mobile-sheet).anim-zoom .modal-container {
|
|
122
|
+
animation: slideUpIn 0.25s ease-out;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
:host(.mobile-sheet).closing .modal-container,
|
|
126
|
+
:host(.mobile-sheet).closing.anim-slide .modal-container,
|
|
127
|
+
:host(.mobile-sheet).closing.anim-fade .modal-container,
|
|
128
|
+
:host(.mobile-sheet).closing.anim-zoom .modal-container {
|
|
129
|
+
animation: slideUpOut 0.2s ease-in forwards;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
:host {
|
|
2
|
+
display: block;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
@keyframes mn-skeleton-shimmer {
|
|
6
|
+
0% {
|
|
7
|
+
transform: translateX(-150%);
|
|
8
|
+
}
|
|
9
|
+
100% {
|
|
10
|
+
transform: translateX(150%);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.mn-skeleton-shimmer-bar {
|
|
15
|
+
position: absolute;
|
|
16
|
+
inset: 0;
|
|
17
|
+
background: linear-gradient(
|
|
18
|
+
90deg,
|
|
19
|
+
transparent 0%,
|
|
20
|
+
rgba(255, 255, 255, 0.15) 50%,
|
|
21
|
+
transparent 100%
|
|
22
|
+
);
|
|
23
|
+
animation: mn-skeleton-shimmer 1.5s ease-in-out infinite;
|
|
24
|
+
}
|
|
@@ -3027,6 +3027,11 @@ type BaseModalConfig<TResult = unknown> = {
|
|
|
3027
3027
|
i18n?: ModalI18nLabels;
|
|
3028
3028
|
/** Animation configuration */
|
|
3029
3029
|
animation?: AnimationOptions | AnimationOptions['type'];
|
|
3030
|
+
/**
|
|
3031
|
+
* Whether the modal renders as a bottom sheet on small screens (< 640px).
|
|
3032
|
+
* Defaults to true. Set to false to keep it a centered dialog on mobile.
|
|
3033
|
+
*/
|
|
3034
|
+
mobileBottomSheet?: boolean;
|
|
3030
3035
|
/** Custom component to render in the modal body */
|
|
3031
3036
|
component?: Type<unknown>;
|
|
3032
3037
|
/** Custom template to render in the modal body */
|
|
@@ -3255,6 +3260,11 @@ declare abstract class BaseModalBuilder<TConfig extends BaseModalConfig<TResult>
|
|
|
3255
3260
|
template(template: TemplateRef<unknown>): this;
|
|
3256
3261
|
inputs(inputs: ModalInputMap): this;
|
|
3257
3262
|
animation(animation: AnimationOptions | AnimationOptions['type']): this;
|
|
3263
|
+
/**
|
|
3264
|
+
* Control whether the modal renders as a bottom sheet on small screens (< 640px).
|
|
3265
|
+
* Enabled by default; pass `false` to keep a centered dialog on mobile.
|
|
3266
|
+
*/
|
|
3267
|
+
mobileBottomSheet(enabled?: boolean): this;
|
|
3258
3268
|
/**
|
|
3259
3269
|
* Add a custom body/content to the modal.
|
|
3260
3270
|
*/
|
|
@@ -3398,6 +3408,8 @@ declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterV
|
|
|
3398
3408
|
asConfirmation(config: ModalConfig<TResult>): ConfirmationModalConfig;
|
|
3399
3409
|
asCustom(config: ModalConfig<TResult>): CustomModalConfig;
|
|
3400
3410
|
get hostClasses(): string;
|
|
3411
|
+
/** Whether this modal renders as a bottom sheet on small screens (default: true). */
|
|
3412
|
+
get isMobileSheet(): boolean;
|
|
3401
3413
|
/** Triggers the closing animation. Deferred to avoid NG0100 when called during a CD cycle. */
|
|
3402
3414
|
startClosing(): Promise<void>;
|
|
3403
3415
|
onEscapeKey(event: Event): void;
|
|
@@ -3408,7 +3420,6 @@ declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterV
|
|
|
3408
3420
|
get containerSizeClass(): string;
|
|
3409
3421
|
get containerHeightStyle(): string | null;
|
|
3410
3422
|
get showCloseButton(): boolean;
|
|
3411
|
-
get animationClass(): string;
|
|
3412
3423
|
get hasCustomFooterActions(): boolean;
|
|
3413
3424
|
get leftFooterActions(): ModalFooterAction<TResult>[];
|
|
3414
3425
|
get rightFooterActions(): ModalFooterAction<TResult>[];
|
|
@@ -3585,11 +3596,17 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
3585
3596
|
config: WizardModalConfig;
|
|
3586
3597
|
modalRef: MnModalRef<WizardResult>;
|
|
3587
3598
|
formBodies: QueryList<MnFormBodyComponent>;
|
|
3599
|
+
stepWrappers: QueryList<ElementRef<HTMLElement>>;
|
|
3588
3600
|
currentStepId: ModalStepId;
|
|
3589
3601
|
visitedStepIds: ModalStepId[];
|
|
3590
3602
|
isCurrentStepValid: boolean;
|
|
3591
3603
|
isCompleting: boolean;
|
|
3592
3604
|
wizardErrors: Record<string, string>;
|
|
3605
|
+
/**
|
|
3606
|
+
* Min-height (px) for the step container, sized to the tallest step so the
|
|
3607
|
+
* modal does not jump when navigating between steps. Monotonic — only grows.
|
|
3608
|
+
*/
|
|
3609
|
+
measuredMinHeight: number;
|
|
3593
3610
|
private languageService;
|
|
3594
3611
|
private static readonly DEFAULT_LABELS;
|
|
3595
3612
|
private resolveLabel;
|
|
@@ -3607,8 +3624,15 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
3607
3624
|
private formBodiesSubscription?;
|
|
3608
3625
|
ngOnInit(): void;
|
|
3609
3626
|
ngAfterViewInit(): void;
|
|
3610
|
-
ngOnDestroy(): void;
|
|
3611
3627
|
isTextBody(step: WizardStepConfig): boolean;
|
|
3628
|
+
ngOnDestroy(): void;
|
|
3629
|
+
/**
|
|
3630
|
+
* Measures every step's natural height and records the tallest as
|
|
3631
|
+
* {@link measuredMinHeight}. Monotonic: the value only ever grows, so a
|
|
3632
|
+
* re-measure can never shrink the modal. Skipped when the modal has an
|
|
3633
|
+
* explicit height or is full-size (those are already fixed-height).
|
|
3634
|
+
*/
|
|
3635
|
+
private measureTallestStep;
|
|
3612
3636
|
/** Get visible steps (filtered by visibility condition) */
|
|
3613
3637
|
get visibleSteps(): WizardStepConfig[];
|
|
3614
3638
|
isStepVisible(step: WizardStepConfig): boolean;
|
|
@@ -4639,6 +4663,45 @@ declare class MnIconAttributes {
|
|
|
4639
4663
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MnIconAttributes, "mn-icon[mnIconPistol], mn-icon[mnIconPending]", never, {}, {}, never, never, true, never>;
|
|
4640
4664
|
}
|
|
4641
4665
|
|
|
4666
|
+
type MnSkeletonShape = 'rectangle' | 'circle' | 'text';
|
|
4667
|
+
type MnSkeletonProps = {
|
|
4668
|
+
shape?: MnSkeletonShape;
|
|
4669
|
+
animated?: boolean;
|
|
4670
|
+
width?: string;
|
|
4671
|
+
height?: string;
|
|
4672
|
+
};
|
|
4673
|
+
|
|
4674
|
+
declare class MnSkeleton {
|
|
4675
|
+
data: Partial<MnSkeletonProps>;
|
|
4676
|
+
get hostClasses(): string;
|
|
4677
|
+
get width(): string | null;
|
|
4678
|
+
get height(): string | null;
|
|
4679
|
+
get isAnimated(): boolean;
|
|
4680
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MnSkeleton, never>;
|
|
4681
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnSkeleton, "mn-skeleton", never, { "data": { "alias": "data"; "required": false; }; }, {}, never, never, true, never>;
|
|
4682
|
+
}
|
|
4683
|
+
|
|
4684
|
+
declare const mnSkeletonVariants: tailwind_variants.TVReturnType<{
|
|
4685
|
+
shape: {
|
|
4686
|
+
rectangle: string;
|
|
4687
|
+
circle: string;
|
|
4688
|
+
text: string;
|
|
4689
|
+
};
|
|
4690
|
+
}, undefined, "bg-base-300 relative overflow-hidden", {
|
|
4691
|
+
shape: {
|
|
4692
|
+
rectangle: string;
|
|
4693
|
+
circle: string;
|
|
4694
|
+
text: string;
|
|
4695
|
+
};
|
|
4696
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
4697
|
+
shape: {
|
|
4698
|
+
rectangle: string;
|
|
4699
|
+
circle: string;
|
|
4700
|
+
text: string;
|
|
4701
|
+
};
|
|
4702
|
+
}, undefined, "bg-base-300 relative overflow-hidden", unknown, unknown, undefined>>;
|
|
4703
|
+
type MnSkeletonVariantProps = VariantProps<typeof mnSkeletonVariants>;
|
|
4704
|
+
|
|
4642
4705
|
/**
|
|
4643
4706
|
* Types for mn-lib configuration.
|
|
4644
4707
|
*/
|
|
@@ -5267,5 +5330,5 @@ type MnPreviewMessage = {
|
|
|
5267
5330
|
*/
|
|
5268
5331
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
5269
5332
|
|
|
5270
|
-
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_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, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDatetime, MnDualHorizontalImage, MnFormBodyComponent, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, MnSelect, MnShowAboveDirective, MnShowBelowDirective, 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, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
|
|
5271
|
-
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DatetimeFieldConfig, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, HourRow, ListAppearance, ListDataSource, ListLabels, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, 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, MnShowInput, 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, 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 };
|
|
5333
|
+
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_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, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDatetime, MnDualHorizontalImage, MnFormBodyComponent, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, MnSelect, 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, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
|
|
5334
|
+
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DatetimeFieldConfig, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, HourRow, ListAppearance, ListDataSource, ListLabels, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, 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, 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, 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 };
|