mn-angular-lib 1.0.5 → 1.0.6
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 +267 -22
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +184 -5
package/package.json
CHANGED
|
@@ -1777,6 +1777,176 @@ declare class MnMultiSelect implements OnInit {
|
|
|
1777
1777
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnMultiSelect, "mn-lib-multi-select", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
1778
1778
|
}
|
|
1779
1779
|
|
|
1780
|
+
declare const mnSelectVariants: tailwind_variants.TVReturnType<{
|
|
1781
|
+
shadow: {
|
|
1782
|
+
true: string;
|
|
1783
|
+
};
|
|
1784
|
+
size: {
|
|
1785
|
+
sm: string;
|
|
1786
|
+
md: string;
|
|
1787
|
+
lg: string;
|
|
1788
|
+
};
|
|
1789
|
+
borderRadius: {
|
|
1790
|
+
none: string;
|
|
1791
|
+
xs: string;
|
|
1792
|
+
sm: string;
|
|
1793
|
+
md: string;
|
|
1794
|
+
lg: string;
|
|
1795
|
+
xl: string;
|
|
1796
|
+
two_xl: string;
|
|
1797
|
+
three_xl: string;
|
|
1798
|
+
four_xl: string;
|
|
1799
|
+
};
|
|
1800
|
+
fullWidth: {
|
|
1801
|
+
true: string;
|
|
1802
|
+
};
|
|
1803
|
+
}, undefined, "bg-base-100 border-1 border-base-300 text-base-content text-sm cursor-pointer", {
|
|
1804
|
+
shadow: {
|
|
1805
|
+
true: string;
|
|
1806
|
+
};
|
|
1807
|
+
size: {
|
|
1808
|
+
sm: string;
|
|
1809
|
+
md: string;
|
|
1810
|
+
lg: string;
|
|
1811
|
+
};
|
|
1812
|
+
borderRadius: {
|
|
1813
|
+
none: string;
|
|
1814
|
+
xs: string;
|
|
1815
|
+
sm: string;
|
|
1816
|
+
md: string;
|
|
1817
|
+
lg: string;
|
|
1818
|
+
xl: string;
|
|
1819
|
+
two_xl: string;
|
|
1820
|
+
three_xl: string;
|
|
1821
|
+
four_xl: string;
|
|
1822
|
+
};
|
|
1823
|
+
fullWidth: {
|
|
1824
|
+
true: string;
|
|
1825
|
+
};
|
|
1826
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
1827
|
+
shadow: {
|
|
1828
|
+
true: string;
|
|
1829
|
+
};
|
|
1830
|
+
size: {
|
|
1831
|
+
sm: string;
|
|
1832
|
+
md: string;
|
|
1833
|
+
lg: string;
|
|
1834
|
+
};
|
|
1835
|
+
borderRadius: {
|
|
1836
|
+
none: string;
|
|
1837
|
+
xs: string;
|
|
1838
|
+
sm: string;
|
|
1839
|
+
md: string;
|
|
1840
|
+
lg: string;
|
|
1841
|
+
xl: string;
|
|
1842
|
+
two_xl: string;
|
|
1843
|
+
three_xl: string;
|
|
1844
|
+
four_xl: string;
|
|
1845
|
+
};
|
|
1846
|
+
fullWidth: {
|
|
1847
|
+
true: string;
|
|
1848
|
+
};
|
|
1849
|
+
}, undefined, "bg-base-100 border-1 border-base-300 text-base-content text-sm cursor-pointer", unknown, unknown, undefined>>;
|
|
1850
|
+
type MnSelectVariants = VariantProps<typeof mnSelectVariants>;
|
|
1851
|
+
|
|
1852
|
+
type MnSelectErrorMessageData = string | ((args: any, errors: ValidationErrors) => string);
|
|
1853
|
+
type MnSelectErrorMessagesData = Partial<Record<string, MnSelectErrorMessageData>>;
|
|
1854
|
+
interface MnSelectOption<TValue = unknown> {
|
|
1855
|
+
/** Display label for the option */
|
|
1856
|
+
label: string;
|
|
1857
|
+
/** Value associated with the option */
|
|
1858
|
+
value: TValue;
|
|
1859
|
+
/** Whether the option is disabled */
|
|
1860
|
+
disabled?: boolean;
|
|
1861
|
+
}
|
|
1862
|
+
interface MnSelectProps<TValue = unknown> {
|
|
1863
|
+
/** Unique identifier for the select element (required for accessibility) */
|
|
1864
|
+
id: string;
|
|
1865
|
+
/** Name attribute for the select element (used in form submission) */
|
|
1866
|
+
name?: string;
|
|
1867
|
+
/** Label text displayed above the select */
|
|
1868
|
+
label?: string;
|
|
1869
|
+
/** Placeholder text shown when no option is selected */
|
|
1870
|
+
placeholder?: string;
|
|
1871
|
+
/** Available options to select from */
|
|
1872
|
+
options: MnSelectOption<TValue>[];
|
|
1873
|
+
/** Size variant of the select (default: 'md') */
|
|
1874
|
+
size?: MnSelectVariants['size'];
|
|
1875
|
+
/** Border radius variant (default: 'md') */
|
|
1876
|
+
borderRadius?: MnSelectVariants['borderRadius'];
|
|
1877
|
+
/** Shadow variant for the select */
|
|
1878
|
+
shadow?: MnSelectVariants['shadow'];
|
|
1879
|
+
/** Whether the select should take full width of its container */
|
|
1880
|
+
fullWidth?: MnSelectVariants['fullWidth'];
|
|
1881
|
+
/** Custom error messages mapped by validator error key */
|
|
1882
|
+
errorMessages?: MnSelectErrorMessagesData;
|
|
1883
|
+
/** Fallback error message when no specific message is found for an error */
|
|
1884
|
+
defaultErrorMessage?: string;
|
|
1885
|
+
/** Priority order for displaying errors when multiple validation errors exist */
|
|
1886
|
+
errorPriority?: string[];
|
|
1887
|
+
/** Whether to use built-in default error messages (default: true) */
|
|
1888
|
+
useBuiltInErrorMessages?: boolean;
|
|
1889
|
+
/** Whether to display all validation errors or just the first/priority error (default: false) */
|
|
1890
|
+
showAllErrors?: boolean;
|
|
1891
|
+
}
|
|
1892
|
+
interface MnSelectUIConfig {
|
|
1893
|
+
/** Label text displayed above the select */
|
|
1894
|
+
label?: string;
|
|
1895
|
+
/** Placeholder text shown when no option is selected */
|
|
1896
|
+
placeholder?: string;
|
|
1897
|
+
/** ARIA label for screen readers (falls back to label if not provided) */
|
|
1898
|
+
ariaLabel?: string;
|
|
1899
|
+
/**
|
|
1900
|
+
* Error messages resolved from config (supports $translate markers).
|
|
1901
|
+
* These override built-in error messages but are overridden by props.errorMessages.
|
|
1902
|
+
*/
|
|
1903
|
+
errorMessages?: Record<string, string>;
|
|
1904
|
+
}
|
|
1905
|
+
|
|
1906
|
+
declare const MN_SELECT_CONFIG: InjectionToken<MnSelectUIConfig>;
|
|
1907
|
+
declare class MnSelect implements OnInit {
|
|
1908
|
+
ngControl: NgControl;
|
|
1909
|
+
props: MnSelectProps;
|
|
1910
|
+
/** Currently selected value */
|
|
1911
|
+
selectedValue: unknown;
|
|
1912
|
+
isDisabled: boolean;
|
|
1913
|
+
protected uiConfig: MnSelectUIConfig;
|
|
1914
|
+
private readonly configService;
|
|
1915
|
+
private readonly sectionPath;
|
|
1916
|
+
private readonly explicitInstanceId;
|
|
1917
|
+
private readonly lang;
|
|
1918
|
+
private readonly destroyRef;
|
|
1919
|
+
private readonly builtInErrorMessages;
|
|
1920
|
+
constructor(ngControl: NgControl);
|
|
1921
|
+
get selectedOption(): MnSelectOption | undefined;
|
|
1922
|
+
get control(): _angular_forms.AbstractControl<any, any, any> | null;
|
|
1923
|
+
get showError(): boolean;
|
|
1924
|
+
get errorMessages(): string[];
|
|
1925
|
+
get errorMessage(): string | null;
|
|
1926
|
+
get resolvedId(): string;
|
|
1927
|
+
get resolvedName(): string | null;
|
|
1928
|
+
get selectClasses(): string;
|
|
1929
|
+
ngOnInit(): void;
|
|
1930
|
+
writeValue(val: unknown): void;
|
|
1931
|
+
registerOnChange(fn: any): void;
|
|
1932
|
+
registerOnTouched(fn: any): void;
|
|
1933
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1934
|
+
/** Returns the index of an option, used as the <option> value attribute */
|
|
1935
|
+
optionIndex(option: MnSelectOption): string;
|
|
1936
|
+
/** Handles native select change event */
|
|
1937
|
+
onSelectChange(event: Event): void;
|
|
1938
|
+
isSelected(option: MnSelectOption): boolean;
|
|
1939
|
+
handleBlur(): void;
|
|
1940
|
+
protected isRequired(): boolean;
|
|
1941
|
+
private onChange;
|
|
1942
|
+
private onTouched;
|
|
1943
|
+
private resolveConfig;
|
|
1944
|
+
private pickErrorKey;
|
|
1945
|
+
private resolveErrorMessageForKey;
|
|
1946
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MnSelect, [{ optional: true; self: true; }]>;
|
|
1947
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnSelect, "mn-lib-select", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1780
1950
|
interface PaginationStrategy {
|
|
1781
1951
|
hasMoreRows: boolean;
|
|
1782
1952
|
loadMore: () => Promise<void>;
|
|
@@ -3019,10 +3189,13 @@ declare class MnFormBodyComponent<TModel = any, TResult = TModel> implements OnI
|
|
|
3019
3189
|
getFieldError(key: string): string | null;
|
|
3020
3190
|
get hasFormErrors(): boolean;
|
|
3021
3191
|
private initializeDataSources;
|
|
3022
|
-
|
|
3192
|
+
isFieldLoading(key: string): boolean;
|
|
3023
3193
|
/** Get options for a field — uses dataSource options if available, otherwise static options */
|
|
3024
3194
|
getFieldOptions(field: FormFieldConfig<TModel>): SelectOption[];
|
|
3025
|
-
|
|
3195
|
+
/** Convert SelectOption[] to MnSelectOption[] for mn-lib-select */
|
|
3196
|
+
getSelectOptions(field: FormFieldConfig<TModel>): MnSelectOption[];
|
|
3197
|
+
getSelectProps(field: FormFieldConfig<TModel>): any;
|
|
3198
|
+
private loadFieldOptions;
|
|
3026
3199
|
private initializeTableFields;
|
|
3027
3200
|
onTableSelectionChange(field: FormFieldConfig<TModel>, selectedRows: any[]): void;
|
|
3028
3201
|
getRatingRange(field: FormFieldConfig<TModel>): number[];
|
|
@@ -3158,7 +3331,7 @@ declare class MnCustomBodyHostComponent implements OnInit {
|
|
|
3158
3331
|
}
|
|
3159
3332
|
|
|
3160
3333
|
/** Map of column key to its current filter value. */
|
|
3161
|
-
type ColumnFilterState = Record<string, string>;
|
|
3334
|
+
type ColumnFilterState = Record<string, string | undefined>;
|
|
3162
3335
|
declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
3163
3336
|
dataSource: TableDataSource<T>;
|
|
3164
3337
|
sortChange: EventEmitter<SortState | null>;
|
|
@@ -3213,6 +3386,10 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3213
3386
|
onSearch(searchString: string): void;
|
|
3214
3387
|
loadMoreRows(): void;
|
|
3215
3388
|
get resolvedPageSizeOptions(): number[];
|
|
3389
|
+
/** Page-size options formatted for mn-select. */
|
|
3390
|
+
get pageSizeSelectOptions(): MnSelectOption<number>[];
|
|
3391
|
+
/** Filter options formatted for mn-select for a given column. */
|
|
3392
|
+
getFilterSelectOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
|
|
3216
3393
|
goToPage(page: number): void;
|
|
3217
3394
|
onPageSizeChange(newSize: number): void;
|
|
3218
3395
|
get visiblePages(): number[];
|
|
@@ -3356,6 +3533,8 @@ declare class MnList<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3356
3533
|
onSearch(searchString: string): void;
|
|
3357
3534
|
loadMoreRows(): void;
|
|
3358
3535
|
get resolvedPageSizeOptions(): number[];
|
|
3536
|
+
/** Page-size options formatted for mn-select. */
|
|
3537
|
+
get pageSizeSelectOptions(): MnSelectOption<number>[];
|
|
3359
3538
|
goToPage(page: number): void;
|
|
3360
3539
|
onPageSizeChange(newSize: number): void;
|
|
3361
3540
|
get visiblePages(): number[];
|
|
@@ -4684,5 +4863,5 @@ interface MnPreviewMessage {
|
|
|
4684
4863
|
*/
|
|
4685
4864
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
4686
4865
|
|
|
4687
|
-
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_INPUT_FIELD_CONFIG, MN_INSTANCE_ID, MN_LIB_DUAL_HORIZONTAL_IMAGE, MN_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_TEXTAREA_CONFIG, MnAlertOutletComponent, MnAlertService, MnAlertStore, MnButton, MnCheckbox, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDatetime, MnDualHorizontalImage, MnFormBodyComponent, MnHiddenBelowDirective, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, 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, mnButtonVariants, mnCheckboxVariants, mnDatetimeVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
|
|
4688
|
-
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, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, HourRow, ListAppearance, ListDataSource, ListLabels, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessagesData, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPreviewMessage, MnShowInput, MnTabDataSource, MnTabItem, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, 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 };
|
|
4866
|
+
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_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, MnButton, MnCheckbox, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDatetime, MnDualHorizontalImage, MnFormBodyComponent, MnHiddenBelowDirective, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, MnSelect, 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, mnButtonVariants, mnCheckboxVariants, mnDatetimeVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
|
|
4867
|
+
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, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, HourRow, ListAppearance, ListDataSource, ListLabels, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessagesData, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPreviewMessage, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnShowInput, MnTabDataSource, MnTabItem, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, 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 };
|