mn-angular-lib 1.0.5 → 1.0.7
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 +288 -28
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +195 -10
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { InjectionToken, Provider, TemplateRef, OnInit, ElementRef, Type, ComponentRef, AfterViewInit, OnDestroy, ChangeDetectorRef,
|
|
2
|
+
import { InjectionToken, Provider, TemplateRef, OnInit, OnChanges, EventEmitter, ElementRef, Type, ComponentRef, AfterViewInit, OnDestroy, ChangeDetectorRef, QueryList, ViewContainerRef, DoCheck, SimpleChanges, PipeTransform } from '@angular/core';
|
|
3
3
|
export { TemplateRef, Type } from '@angular/core';
|
|
4
4
|
import * as tailwind_variants from 'tailwind-variants';
|
|
5
5
|
import { VariantProps } from 'tailwind-variants';
|
|
@@ -1297,7 +1297,7 @@ declare const mnCheckboxVariants: tailwind_variants.TVReturnType<{
|
|
|
1297
1297
|
md: string;
|
|
1298
1298
|
lg: string;
|
|
1299
1299
|
};
|
|
1300
|
-
}, undefined, "
|
|
1300
|
+
}, undefined, "checkbox checkbox-primary cursor-pointer", {
|
|
1301
1301
|
size: {
|
|
1302
1302
|
sm: string;
|
|
1303
1303
|
md: string;
|
|
@@ -1323,7 +1323,7 @@ declare const mnCheckboxVariants: tailwind_variants.TVReturnType<{
|
|
|
1323
1323
|
md: string;
|
|
1324
1324
|
lg: string;
|
|
1325
1325
|
};
|
|
1326
|
-
}, undefined, "
|
|
1326
|
+
}, undefined, "checkbox checkbox-primary cursor-pointer", unknown, unknown, undefined>>;
|
|
1327
1327
|
type MnCheckboxVariants = VariantProps<typeof mnCheckboxVariants>;
|
|
1328
1328
|
|
|
1329
1329
|
type MnCheckboxErrorMessageData = string | ((args: any, errors: ValidationErrors) => string);
|
|
@@ -1363,10 +1363,14 @@ interface MnCheckboxUIConfig {
|
|
|
1363
1363
|
}
|
|
1364
1364
|
|
|
1365
1365
|
declare const MN_CHECKBOX_CONFIG: InjectionToken<MnCheckboxUIConfig>;
|
|
1366
|
-
declare class MnCheckbox implements OnInit {
|
|
1366
|
+
declare class MnCheckbox implements OnInit, OnChanges {
|
|
1367
1367
|
ngControl: NgControl;
|
|
1368
1368
|
protected uiConfig: MnCheckboxUIConfig;
|
|
1369
1369
|
props: MnCheckboxProps;
|
|
1370
|
+
/** Direct checked binding for non-form usage */
|
|
1371
|
+
checked?: boolean;
|
|
1372
|
+
/** Emits when checked state changes (for non-form usage) */
|
|
1373
|
+
checkedChange: EventEmitter<boolean>;
|
|
1370
1374
|
private readonly configService;
|
|
1371
1375
|
private readonly sectionPath;
|
|
1372
1376
|
private readonly explicitInstanceId;
|
|
@@ -1381,6 +1385,8 @@ declare class MnCheckbox implements OnInit {
|
|
|
1381
1385
|
ngOnInit(): void;
|
|
1382
1386
|
private resolveConfig;
|
|
1383
1387
|
writeValue(val: unknown): void;
|
|
1388
|
+
/** Sync value from checked input when not using forms */
|
|
1389
|
+
ngOnChanges(): void;
|
|
1384
1390
|
registerOnChange(fn: any): void;
|
|
1385
1391
|
registerOnTouched(fn: any): void;
|
|
1386
1392
|
setDisabledState(isDisabled: boolean): void;
|
|
@@ -1397,7 +1403,7 @@ declare class MnCheckbox implements OnInit {
|
|
|
1397
1403
|
get resolvedName(): string | null;
|
|
1398
1404
|
get checkboxClasses(): string;
|
|
1399
1405
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnCheckbox, [{ optional: true; self: true; }]>;
|
|
1400
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MnCheckbox, "mn-lib-checkbox", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
1406
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnCheckbox, "mn-lib-checkbox", never, { "props": { "alias": "props"; "required": true; }; "checked": { "alias": "checked"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
1401
1407
|
}
|
|
1402
1408
|
|
|
1403
1409
|
declare const mnDatetimeVariants: tailwind_variants.TVReturnType<{
|
|
@@ -1777,6 +1783,176 @@ declare class MnMultiSelect implements OnInit {
|
|
|
1777
1783
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnMultiSelect, "mn-lib-multi-select", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
1778
1784
|
}
|
|
1779
1785
|
|
|
1786
|
+
declare const mnSelectVariants: tailwind_variants.TVReturnType<{
|
|
1787
|
+
shadow: {
|
|
1788
|
+
true: string;
|
|
1789
|
+
};
|
|
1790
|
+
size: {
|
|
1791
|
+
sm: string;
|
|
1792
|
+
md: string;
|
|
1793
|
+
lg: string;
|
|
1794
|
+
};
|
|
1795
|
+
borderRadius: {
|
|
1796
|
+
none: string;
|
|
1797
|
+
xs: string;
|
|
1798
|
+
sm: string;
|
|
1799
|
+
md: string;
|
|
1800
|
+
lg: string;
|
|
1801
|
+
xl: string;
|
|
1802
|
+
two_xl: string;
|
|
1803
|
+
three_xl: string;
|
|
1804
|
+
four_xl: string;
|
|
1805
|
+
};
|
|
1806
|
+
fullWidth: {
|
|
1807
|
+
true: string;
|
|
1808
|
+
};
|
|
1809
|
+
}, undefined, "bg-base-100 border-1 border-base-300 text-base-content text-sm cursor-pointer", {
|
|
1810
|
+
shadow: {
|
|
1811
|
+
true: string;
|
|
1812
|
+
};
|
|
1813
|
+
size: {
|
|
1814
|
+
sm: string;
|
|
1815
|
+
md: string;
|
|
1816
|
+
lg: string;
|
|
1817
|
+
};
|
|
1818
|
+
borderRadius: {
|
|
1819
|
+
none: string;
|
|
1820
|
+
xs: string;
|
|
1821
|
+
sm: string;
|
|
1822
|
+
md: string;
|
|
1823
|
+
lg: string;
|
|
1824
|
+
xl: string;
|
|
1825
|
+
two_xl: string;
|
|
1826
|
+
three_xl: string;
|
|
1827
|
+
four_xl: string;
|
|
1828
|
+
};
|
|
1829
|
+
fullWidth: {
|
|
1830
|
+
true: string;
|
|
1831
|
+
};
|
|
1832
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
1833
|
+
shadow: {
|
|
1834
|
+
true: string;
|
|
1835
|
+
};
|
|
1836
|
+
size: {
|
|
1837
|
+
sm: string;
|
|
1838
|
+
md: string;
|
|
1839
|
+
lg: string;
|
|
1840
|
+
};
|
|
1841
|
+
borderRadius: {
|
|
1842
|
+
none: string;
|
|
1843
|
+
xs: string;
|
|
1844
|
+
sm: string;
|
|
1845
|
+
md: string;
|
|
1846
|
+
lg: string;
|
|
1847
|
+
xl: string;
|
|
1848
|
+
two_xl: string;
|
|
1849
|
+
three_xl: string;
|
|
1850
|
+
four_xl: string;
|
|
1851
|
+
};
|
|
1852
|
+
fullWidth: {
|
|
1853
|
+
true: string;
|
|
1854
|
+
};
|
|
1855
|
+
}, undefined, "bg-base-100 border-1 border-base-300 text-base-content text-sm cursor-pointer", unknown, unknown, undefined>>;
|
|
1856
|
+
type MnSelectVariants = VariantProps<typeof mnSelectVariants>;
|
|
1857
|
+
|
|
1858
|
+
type MnSelectErrorMessageData = string | ((args: any, errors: ValidationErrors) => string);
|
|
1859
|
+
type MnSelectErrorMessagesData = Partial<Record<string, MnSelectErrorMessageData>>;
|
|
1860
|
+
interface MnSelectOption<TValue = unknown> {
|
|
1861
|
+
/** Display label for the option */
|
|
1862
|
+
label: string;
|
|
1863
|
+
/** Value associated with the option */
|
|
1864
|
+
value: TValue;
|
|
1865
|
+
/** Whether the option is disabled */
|
|
1866
|
+
disabled?: boolean;
|
|
1867
|
+
}
|
|
1868
|
+
interface MnSelectProps<TValue = unknown> {
|
|
1869
|
+
/** Unique identifier for the select element (required for accessibility) */
|
|
1870
|
+
id: string;
|
|
1871
|
+
/** Name attribute for the select element (used in form submission) */
|
|
1872
|
+
name?: string;
|
|
1873
|
+
/** Label text displayed above the select */
|
|
1874
|
+
label?: string;
|
|
1875
|
+
/** Placeholder text shown when no option is selected */
|
|
1876
|
+
placeholder?: string;
|
|
1877
|
+
/** Available options to select from */
|
|
1878
|
+
options: MnSelectOption<TValue>[];
|
|
1879
|
+
/** Size variant of the select (default: 'md') */
|
|
1880
|
+
size?: MnSelectVariants['size'];
|
|
1881
|
+
/** Border radius variant (default: 'md') */
|
|
1882
|
+
borderRadius?: MnSelectVariants['borderRadius'];
|
|
1883
|
+
/** Shadow variant for the select */
|
|
1884
|
+
shadow?: MnSelectVariants['shadow'];
|
|
1885
|
+
/** Whether the select should take full width of its container */
|
|
1886
|
+
fullWidth?: MnSelectVariants['fullWidth'];
|
|
1887
|
+
/** Custom error messages mapped by validator error key */
|
|
1888
|
+
errorMessages?: MnSelectErrorMessagesData;
|
|
1889
|
+
/** Fallback error message when no specific message is found for an error */
|
|
1890
|
+
defaultErrorMessage?: string;
|
|
1891
|
+
/** Priority order for displaying errors when multiple validation errors exist */
|
|
1892
|
+
errorPriority?: string[];
|
|
1893
|
+
/** Whether to use built-in default error messages (default: true) */
|
|
1894
|
+
useBuiltInErrorMessages?: boolean;
|
|
1895
|
+
/** Whether to display all validation errors or just the first/priority error (default: false) */
|
|
1896
|
+
showAllErrors?: boolean;
|
|
1897
|
+
}
|
|
1898
|
+
interface MnSelectUIConfig {
|
|
1899
|
+
/** Label text displayed above the select */
|
|
1900
|
+
label?: string;
|
|
1901
|
+
/** Placeholder text shown when no option is selected */
|
|
1902
|
+
placeholder?: string;
|
|
1903
|
+
/** ARIA label for screen readers (falls back to label if not provided) */
|
|
1904
|
+
ariaLabel?: string;
|
|
1905
|
+
/**
|
|
1906
|
+
* Error messages resolved from config (supports $translate markers).
|
|
1907
|
+
* These override built-in error messages but are overridden by props.errorMessages.
|
|
1908
|
+
*/
|
|
1909
|
+
errorMessages?: Record<string, string>;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
declare const MN_SELECT_CONFIG: InjectionToken<MnSelectUIConfig>;
|
|
1913
|
+
declare class MnSelect implements OnInit {
|
|
1914
|
+
ngControl: NgControl;
|
|
1915
|
+
props: MnSelectProps;
|
|
1916
|
+
/** Currently selected value */
|
|
1917
|
+
selectedValue: unknown;
|
|
1918
|
+
isDisabled: boolean;
|
|
1919
|
+
protected uiConfig: MnSelectUIConfig;
|
|
1920
|
+
private readonly configService;
|
|
1921
|
+
private readonly sectionPath;
|
|
1922
|
+
private readonly explicitInstanceId;
|
|
1923
|
+
private readonly lang;
|
|
1924
|
+
private readonly destroyRef;
|
|
1925
|
+
private readonly builtInErrorMessages;
|
|
1926
|
+
constructor(ngControl: NgControl);
|
|
1927
|
+
get selectedOption(): MnSelectOption | undefined;
|
|
1928
|
+
get control(): _angular_forms.AbstractControl<any, any, any> | null;
|
|
1929
|
+
get showError(): boolean;
|
|
1930
|
+
get errorMessages(): string[];
|
|
1931
|
+
get errorMessage(): string | null;
|
|
1932
|
+
get resolvedId(): string;
|
|
1933
|
+
get resolvedName(): string | null;
|
|
1934
|
+
get selectClasses(): string;
|
|
1935
|
+
ngOnInit(): void;
|
|
1936
|
+
writeValue(val: unknown): void;
|
|
1937
|
+
registerOnChange(fn: any): void;
|
|
1938
|
+
registerOnTouched(fn: any): void;
|
|
1939
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1940
|
+
/** Returns the index of an option, used as the <option> value attribute */
|
|
1941
|
+
optionIndex(option: MnSelectOption): string;
|
|
1942
|
+
/** Handles native select change event */
|
|
1943
|
+
onSelectChange(event: Event): void;
|
|
1944
|
+
isSelected(option: MnSelectOption): boolean;
|
|
1945
|
+
handleBlur(): void;
|
|
1946
|
+
protected isRequired(): boolean;
|
|
1947
|
+
private onChange;
|
|
1948
|
+
private onTouched;
|
|
1949
|
+
private resolveConfig;
|
|
1950
|
+
private pickErrorKey;
|
|
1951
|
+
private resolveErrorMessageForKey;
|
|
1952
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MnSelect, [{ optional: true; self: true; }]>;
|
|
1953
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnSelect, "mn-lib-select", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1780
1956
|
interface PaginationStrategy {
|
|
1781
1957
|
hasMoreRows: boolean;
|
|
1782
1958
|
loadMore: () => Promise<void>;
|
|
@@ -3019,10 +3195,13 @@ declare class MnFormBodyComponent<TModel = any, TResult = TModel> implements OnI
|
|
|
3019
3195
|
getFieldError(key: string): string | null;
|
|
3020
3196
|
get hasFormErrors(): boolean;
|
|
3021
3197
|
private initializeDataSources;
|
|
3022
|
-
|
|
3198
|
+
isFieldLoading(key: string): boolean;
|
|
3023
3199
|
/** Get options for a field — uses dataSource options if available, otherwise static options */
|
|
3024
3200
|
getFieldOptions(field: FormFieldConfig<TModel>): SelectOption[];
|
|
3025
|
-
|
|
3201
|
+
/** Convert SelectOption[] to MnSelectOption[] for mn-lib-select */
|
|
3202
|
+
getSelectOptions(field: FormFieldConfig<TModel>): MnSelectOption[];
|
|
3203
|
+
getSelectProps(field: FormFieldConfig<TModel>): any;
|
|
3204
|
+
private loadFieldOptions;
|
|
3026
3205
|
private initializeTableFields;
|
|
3027
3206
|
onTableSelectionChange(field: FormFieldConfig<TModel>, selectedRows: any[]): void;
|
|
3028
3207
|
getRatingRange(field: FormFieldConfig<TModel>): number[];
|
|
@@ -3158,7 +3337,7 @@ declare class MnCustomBodyHostComponent implements OnInit {
|
|
|
3158
3337
|
}
|
|
3159
3338
|
|
|
3160
3339
|
/** Map of column key to its current filter value. */
|
|
3161
|
-
type ColumnFilterState = Record<string, string>;
|
|
3340
|
+
type ColumnFilterState = Record<string, string | undefined>;
|
|
3162
3341
|
declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
3163
3342
|
dataSource: TableDataSource<T>;
|
|
3164
3343
|
sortChange: EventEmitter<SortState | null>;
|
|
@@ -3213,6 +3392,10 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3213
3392
|
onSearch(searchString: string): void;
|
|
3214
3393
|
loadMoreRows(): void;
|
|
3215
3394
|
get resolvedPageSizeOptions(): number[];
|
|
3395
|
+
/** Page-size options formatted for mn-select. */
|
|
3396
|
+
get pageSizeSelectOptions(): MnSelectOption<number>[];
|
|
3397
|
+
/** Filter options formatted for mn-select for a given column. */
|
|
3398
|
+
getFilterSelectOptions(column: ColumnDefinition<T>): MnSelectOption<string>[];
|
|
3216
3399
|
goToPage(page: number): void;
|
|
3217
3400
|
onPageSizeChange(newSize: number): void;
|
|
3218
3401
|
get visiblePages(): number[];
|
|
@@ -3356,6 +3539,8 @@ declare class MnList<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3356
3539
|
onSearch(searchString: string): void;
|
|
3357
3540
|
loadMoreRows(): void;
|
|
3358
3541
|
get resolvedPageSizeOptions(): number[];
|
|
3542
|
+
/** Page-size options formatted for mn-select. */
|
|
3543
|
+
get pageSizeSelectOptions(): MnSelectOption<number>[];
|
|
3359
3544
|
goToPage(page: number): void;
|
|
3360
3545
|
onPageSizeChange(newSize: number): void;
|
|
3361
3546
|
get visiblePages(): number[];
|
|
@@ -4684,5 +4869,5 @@ interface MnPreviewMessage {
|
|
|
4684
4869
|
*/
|
|
4685
4870
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
4686
4871
|
|
|
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 };
|
|
4872
|
+
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 };
|
|
4873
|
+
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 };
|