mn-angular-lib 1.0.3 → 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 +478 -120
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +252 -17
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>;
|
|
@@ -1848,7 +2018,7 @@ interface TableDataSource<T> {
|
|
|
1848
2018
|
searchPlaceholder?: string;
|
|
1849
2019
|
isInSearch?: (row: T, searchValue: string) => boolean;
|
|
1850
2020
|
searchForAdditionalItems?: (searchValue: string) => Promise<T[]>;
|
|
1851
|
-
paginationMode?: 'none' | 'load-more' | 'paginated' | 'infinite-scroll';
|
|
2021
|
+
paginationMode?: 'none' | 'load-more' | 'paginated' | 'client-side-pagination' | 'infinite-scroll';
|
|
1852
2022
|
paginationStrategy?: PaginationStrategy;
|
|
1853
2023
|
loadAdditionalRows?: () => Promise<T[]>;
|
|
1854
2024
|
/** Number of rows per page when paginationMode is 'paginated'. Defaults to 10. */
|
|
@@ -1857,6 +2027,28 @@ interface TableDataSource<T> {
|
|
|
1857
2027
|
pageSizeOptions?: number[];
|
|
1858
2028
|
/** Callback invoked when the user changes the page size via the dropdown. */
|
|
1859
2029
|
onPageSizeChange?: (newSize: number) => void;
|
|
2030
|
+
/**
|
|
2031
|
+
* Total number of items on the server.
|
|
2032
|
+
* When set, pagination and infinite-scroll use this instead of filteredItems.length.
|
|
2033
|
+
*/
|
|
2034
|
+
totalItems?: number;
|
|
2035
|
+
/**
|
|
2036
|
+
* Callback invoked when the user navigates to a different page.
|
|
2037
|
+
* When provided, the table delegates pagination to the consumer (server-side).
|
|
2038
|
+
* The consumer is responsible for fetching the new page data and updating dataRows.
|
|
2039
|
+
*/
|
|
2040
|
+
onPageChange?: (page: number) => void;
|
|
2041
|
+
/**
|
|
2042
|
+
* Callback invoked when the user types in the search box (server-side search).
|
|
2043
|
+
* When provided, the table skips client-side filtering and delegates to the consumer.
|
|
2044
|
+
*/
|
|
2045
|
+
onServerSearch?: (searchValue: string) => void;
|
|
2046
|
+
/**
|
|
2047
|
+
* Callback invoked when the user scrolls to the bottom in infinite-scroll mode.
|
|
2048
|
+
* When provided, the table delegates loading more rows to the consumer (server-side).
|
|
2049
|
+
* The consumer is responsible for appending new data to dataRows.
|
|
2050
|
+
*/
|
|
2051
|
+
onLoadMore?: () => void;
|
|
1860
2052
|
defaultSort?: SortState;
|
|
1861
2053
|
selectionMode?: 'none' | 'single' | 'multi';
|
|
1862
2054
|
selectedRows?: BehaviorSubject<T[]>;
|
|
@@ -2997,10 +3189,13 @@ declare class MnFormBodyComponent<TModel = any, TResult = TModel> implements OnI
|
|
|
2997
3189
|
getFieldError(key: string): string | null;
|
|
2998
3190
|
get hasFormErrors(): boolean;
|
|
2999
3191
|
private initializeDataSources;
|
|
3000
|
-
|
|
3192
|
+
isFieldLoading(key: string): boolean;
|
|
3001
3193
|
/** Get options for a field — uses dataSource options if available, otherwise static options */
|
|
3002
3194
|
getFieldOptions(field: FormFieldConfig<TModel>): SelectOption[];
|
|
3003
|
-
|
|
3195
|
+
/** Convert SelectOption[] to MnSelectOption[] for mn-lib-select */
|
|
3196
|
+
getSelectOptions(field: FormFieldConfig<TModel>): MnSelectOption[];
|
|
3197
|
+
getSelectProps(field: FormFieldConfig<TModel>): any;
|
|
3198
|
+
private loadFieldOptions;
|
|
3004
3199
|
private initializeTableFields;
|
|
3005
3200
|
onTableSelectionChange(field: FormFieldConfig<TModel>, selectedRows: any[]): void;
|
|
3006
3201
|
getRatingRange(field: FormFieldConfig<TModel>): number[];
|
|
@@ -3136,7 +3331,7 @@ declare class MnCustomBodyHostComponent implements OnInit {
|
|
|
3136
3331
|
}
|
|
3137
3332
|
|
|
3138
3333
|
/** Map of column key to its current filter value. */
|
|
3139
|
-
type ColumnFilterState = Record<string, string>;
|
|
3334
|
+
type ColumnFilterState = Record<string, string | undefined>;
|
|
3140
3335
|
declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
3141
3336
|
dataSource: TableDataSource<T>;
|
|
3142
3337
|
sortChange: EventEmitter<SortState | null>;
|
|
@@ -3163,9 +3358,9 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3163
3358
|
* by Angular's default change detection (e.g. toolbarTemplate).
|
|
3164
3359
|
*/
|
|
3165
3360
|
ngDoCheck(): void;
|
|
3166
|
-
|
|
3361
|
+
get showLoadMore(): boolean;
|
|
3167
3362
|
ngOnDestroy(): void;
|
|
3168
|
-
|
|
3363
|
+
get isPaginated(): boolean;
|
|
3169
3364
|
/** Whether any column has filtering enabled. */
|
|
3170
3365
|
get hasColumnFilters(): boolean;
|
|
3171
3366
|
/** Updates a column filter value and re-applies filtering. */
|
|
@@ -3180,11 +3375,21 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3180
3375
|
get hasSelection(): boolean;
|
|
3181
3376
|
get isMultiSelect(): boolean;
|
|
3182
3377
|
onRowClick(row: T): void;
|
|
3183
|
-
|
|
3184
|
-
get
|
|
3185
|
-
|
|
3378
|
+
/** Whether the table delegates pagination to the consumer (server-side). */
|
|
3379
|
+
get isServerPaginated(): boolean;
|
|
3380
|
+
/** Whether the table delegates search to the consumer (server-side). */
|
|
3381
|
+
get isServerSearched(): boolean;
|
|
3382
|
+
/** Total number of items, accounting for server-side pagination. */
|
|
3383
|
+
get totalItemCount(): number;
|
|
3186
3384
|
get totalPages(): number;
|
|
3385
|
+
ngOnInit(): void;
|
|
3386
|
+
onSearch(searchString: string): void;
|
|
3387
|
+
loadMoreRows(): void;
|
|
3187
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>[];
|
|
3188
3393
|
goToPage(page: number): void;
|
|
3189
3394
|
onPageSizeChange(newSize: number): void;
|
|
3190
3395
|
get visiblePages(): number[];
|
|
@@ -3199,6 +3404,7 @@ declare class MnTable<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3199
3404
|
private applyFilterAndSort;
|
|
3200
3405
|
private applySorting;
|
|
3201
3406
|
private processLoadedRows;
|
|
3407
|
+
private validateDataSource;
|
|
3202
3408
|
private emitSelection;
|
|
3203
3409
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnTable<any>, never>;
|
|
3204
3410
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnTable<any>, "mn-table", never, { "dataSource": { "alias": "dataSource"; "required": false; }; }, { "sortChange": "sortChange"; "selectionChange": "selectionChange"; "rowClick": "rowClick"; }, never, never, true, never>;
|
|
@@ -3247,13 +3453,35 @@ interface ListDataSource<T> {
|
|
|
3247
3453
|
searchPlaceholder?: string;
|
|
3248
3454
|
isInSearch?: (row: T, searchValue: string) => boolean;
|
|
3249
3455
|
searchForAdditionalItems?: (searchValue: string) => Promise<T[]>;
|
|
3250
|
-
paginationMode?: 'none' | 'load-more' | 'paginated' | 'infinite-scroll';
|
|
3456
|
+
paginationMode?: 'none' | 'load-more' | 'paginated' | 'client-side-pagination' | 'infinite-scroll';
|
|
3251
3457
|
paginationStrategy?: PaginationStrategy;
|
|
3252
3458
|
loadAdditionalRows?: () => Promise<T[]>;
|
|
3253
3459
|
/** Number of items per page when paginationMode is 'paginated'. Defaults to 10. */
|
|
3254
3460
|
pageSize?: number;
|
|
3255
3461
|
/** Options for the page-size selector dropdown. Defaults to [5, 10, 25, 50]. */
|
|
3256
3462
|
pageSizeOptions?: number[];
|
|
3463
|
+
/** Callback invoked when the user changes the page size via the dropdown. */
|
|
3464
|
+
onPageSizeChange?: (newSize: number) => void;
|
|
3465
|
+
/**
|
|
3466
|
+
* Total number of items on the server.
|
|
3467
|
+
* When set, pagination and infinite-scroll use this instead of filteredItems.length.
|
|
3468
|
+
*/
|
|
3469
|
+
totalItems?: number;
|
|
3470
|
+
/**
|
|
3471
|
+
* Callback invoked when the user navigates to a different page.
|
|
3472
|
+
* When provided, the list delegates pagination to the consumer (server-side).
|
|
3473
|
+
*/
|
|
3474
|
+
onPageChange?: (page: number) => void;
|
|
3475
|
+
/**
|
|
3476
|
+
* Callback invoked when the user types in the search box (server-side search).
|
|
3477
|
+
* When provided, the list skips client-side filtering and delegates to the consumer.
|
|
3478
|
+
*/
|
|
3479
|
+
onServerSearch?: (searchValue: string) => void;
|
|
3480
|
+
/**
|
|
3481
|
+
* Callback invoked when the user scrolls to the bottom in infinite-scroll mode.
|
|
3482
|
+
* When provided, the list delegates loading more rows to the consumer (server-side).
|
|
3483
|
+
*/
|
|
3484
|
+
onLoadMore?: () => void;
|
|
3257
3485
|
selectionMode?: 'none' | 'single' | 'multi';
|
|
3258
3486
|
selectedRows?: BehaviorSubject<T[]>;
|
|
3259
3487
|
/** IDs to pre-select when the list initializes. */
|
|
@@ -3286,9 +3514,9 @@ declare class MnList<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3286
3514
|
/** Tracks the previous toolbar template reference for change detection. */
|
|
3287
3515
|
private previousToolbarTemplate?;
|
|
3288
3516
|
ngDoCheck(): void;
|
|
3289
|
-
|
|
3517
|
+
get showLoadMore(): boolean;
|
|
3290
3518
|
ngOnDestroy(): void;
|
|
3291
|
-
|
|
3519
|
+
get isPaginated(): boolean;
|
|
3292
3520
|
isSelected(item: T): boolean;
|
|
3293
3521
|
toggleItem(item: T): void;
|
|
3294
3522
|
toggleAll(): void;
|
|
@@ -3296,11 +3524,17 @@ declare class MnList<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3296
3524
|
get hasSelection(): boolean;
|
|
3297
3525
|
get isMultiSelect(): boolean;
|
|
3298
3526
|
onItemClick(item: T): void;
|
|
3299
|
-
|
|
3300
|
-
get
|
|
3301
|
-
|
|
3527
|
+
/** Whether the list is in server-side paginated mode (always true when paginated or load-more). */
|
|
3528
|
+
get isServerPaginated(): boolean;
|
|
3529
|
+
/** Total number of items, accounting for server-side pagination. */
|
|
3530
|
+
get totalItemCount(): number;
|
|
3302
3531
|
get totalPages(): number;
|
|
3532
|
+
ngOnInit(): void;
|
|
3533
|
+
onSearch(searchString: string): void;
|
|
3534
|
+
loadMoreRows(): void;
|
|
3303
3535
|
get resolvedPageSizeOptions(): number[];
|
|
3536
|
+
/** Page-size options formatted for mn-select. */
|
|
3537
|
+
get pageSizeSelectOptions(): MnSelectOption<number>[];
|
|
3304
3538
|
goToPage(page: number): void;
|
|
3305
3539
|
onPageSizeChange(newSize: number): void;
|
|
3306
3540
|
get visiblePages(): number[];
|
|
@@ -3309,6 +3543,7 @@ declare class MnList<T = any> implements OnInit, OnDestroy, DoCheck {
|
|
|
3309
3543
|
private applyPagination;
|
|
3310
3544
|
private applyFilter;
|
|
3311
3545
|
private processLoadedRows;
|
|
3546
|
+
private validateDataSource;
|
|
3312
3547
|
private emitSelection;
|
|
3313
3548
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnList<any>, never>;
|
|
3314
3549
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnList<any>, "mn-list", never, { "dataSource": { "alias": "dataSource"; "required": false; }; }, { "selectionChange": "selectionChange"; "itemClick": "itemClick"; }, never, never, true, never>;
|
|
@@ -4628,5 +4863,5 @@ interface MnPreviewMessage {
|
|
|
4628
4863
|
*/
|
|
4629
4864
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
4630
4865
|
|
|
4631
|
-
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 };
|
|
4632
|
-
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 };
|