mn-angular-lib 1.0.112 → 1.0.114
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 +379 -100
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +188 -44
package/package.json
CHANGED
|
@@ -2199,6 +2199,18 @@ declare class MnDatetime implements OnInit {
|
|
|
2199
2199
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnDatetime, "mn-lib-datetime", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
2200
2200
|
}
|
|
2201
2201
|
|
|
2202
|
+
/**
|
|
2203
|
+
* How the bar arranges itself at its current width.
|
|
2204
|
+
*
|
|
2205
|
+
* - `inline` — the month, the day strip and Today all share one row. The bar
|
|
2206
|
+
* never stacks: as space runs out it shows fewer days rather than adding a row.
|
|
2207
|
+
* - `compact` — too narrow even for a three-day strip, so the days give way to a
|
|
2208
|
+
* date picker sitting beside Today.
|
|
2209
|
+
*
|
|
2210
|
+
* Resolved from the bar's own width — not the viewport — so a bar in a narrow
|
|
2211
|
+
* sidebar lays itself out like a phone even on a wide screen.
|
|
2212
|
+
*/
|
|
2213
|
+
type DateSelectorBarLayout = 'compact' | 'inline';
|
|
2202
2214
|
/** Represents a single day tile in the date selector. */
|
|
2203
2215
|
type DayTile = {
|
|
2204
2216
|
/** The full date object (at midnight). */
|
|
@@ -2209,23 +2221,39 @@ type DayTile = {
|
|
|
2209
2221
|
dayNumber: number;
|
|
2210
2222
|
/** Short month name (e.g. 'mei', 'Jun'). */
|
|
2211
2223
|
monthName: string;
|
|
2224
|
+
/**
|
|
2225
|
+
* Whether this tile is the first day of a month within the visible strip. The
|
|
2226
|
+
* days either side of it move apart, so the break is visible without a label —
|
|
2227
|
+
* the month caption above the strip names both months.
|
|
2228
|
+
*/
|
|
2229
|
+
startsNewMonth: boolean;
|
|
2212
2230
|
/** Whether this tile is the currently selected date. */
|
|
2213
2231
|
isSelected: boolean;
|
|
2214
2232
|
/** Whether this tile represents today. */
|
|
2215
2233
|
isToday: boolean;
|
|
2234
|
+
/** Full, locale-formatted date used as the tile's accessible name. */
|
|
2235
|
+
accessibleLabel: string;
|
|
2216
2236
|
};
|
|
2217
2237
|
/**
|
|
2218
2238
|
* Reusable, responsive date selector bar.
|
|
2219
2239
|
*
|
|
2220
|
-
* Renders a "Today" button, previous/next
|
|
2221
|
-
* tiles
|
|
2222
|
-
*
|
|
2223
|
-
* tile, pressing "Today", or picking a date through the picker emits the chosen
|
|
2224
|
-
* day via {@link dateSelected}. The arrows only shift the visible tile window and
|
|
2225
|
-
* never emit.
|
|
2240
|
+
* Renders a "Today" button, a month caption, previous/next arrows and a strip of
|
|
2241
|
+
* day tiles. Selecting a tile or pressing "Today" emits the chosen day via
|
|
2242
|
+
* {@link dateSelected}. The arrows only shift the visible days and never emit.
|
|
2226
2243
|
*
|
|
2227
|
-
*
|
|
2228
|
-
*
|
|
2244
|
+
* Given room, the strip is a whole week running Monday to Sunday, so the weekday
|
|
2245
|
+
* columns hold still as you page and no weekday appears twice. As the bar narrows
|
|
2246
|
+
* it shows fewer days rather than adding a second row — a partial strip has no
|
|
2247
|
+
* week to align to, so it slides to keep the selection in view instead. Narrower
|
|
2248
|
+
* still, and the days give way to a date picker beside Today, which keeps every
|
|
2249
|
+
* date reachable on a phone rather than leaving a strip too cramped to use.
|
|
2250
|
+
*
|
|
2251
|
+
* Selecting a day already on the strip leaves it exactly where it is; a selection
|
|
2252
|
+
* from outside moves the strip to where that day is. The arrows page by whatever
|
|
2253
|
+
* is on show, without touching the selection.
|
|
2254
|
+
*
|
|
2255
|
+
* The component carries no hard-coded copy: button, placeholder and assistive
|
|
2256
|
+
* text are supplied through the label inputs, and day/month names follow
|
|
2229
2257
|
* {@link locale} (falling back to the active {@link MnLanguageService} locale).
|
|
2230
2258
|
*
|
|
2231
2259
|
* @example
|
|
@@ -2240,18 +2268,18 @@ type DayTile = {
|
|
|
2240
2268
|
* ```
|
|
2241
2269
|
*/
|
|
2242
2270
|
declare class MnDateSelectorBar implements OnInit {
|
|
2243
|
-
/**
|
|
2244
|
-
* Minimum viewport width (px) at which the day strip (arrows + tiles) is shown.
|
|
2245
|
-
* On narrower screens there isn't room for it, so only the Today button and the
|
|
2246
|
-
* date picker remain.
|
|
2247
|
-
*/
|
|
2248
|
-
private static readonly MIN_STRIP_WIDTH;
|
|
2249
2271
|
/** The currently selected date, provided by the parent. */
|
|
2250
2272
|
readonly selectedDate: i0.InputSignal<Date>;
|
|
2251
2273
|
/** Label for the "Today" button. */
|
|
2252
2274
|
readonly todayLabel: i0.InputSignal<string>;
|
|
2253
|
-
/** Placeholder for the date picker
|
|
2275
|
+
/** Placeholder for the date picker shown in place of a too-cramped week strip. */
|
|
2254
2276
|
readonly pickDateLabel: i0.InputSignal<string>;
|
|
2277
|
+
/** Accessible name for the previous-week arrow. */
|
|
2278
|
+
readonly previousLabel: i0.InputSignal<string>;
|
|
2279
|
+
/** Accessible name for the next-week arrow. */
|
|
2280
|
+
readonly nextLabel: i0.InputSignal<string>;
|
|
2281
|
+
/** Accessible name for the day strip as a whole. */
|
|
2282
|
+
readonly dayStripLabel: i0.InputSignal<string>;
|
|
2255
2283
|
/**
|
|
2256
2284
|
* BCP 47 locale used to format day/month names. When empty, the active
|
|
2257
2285
|
* {@link MnLanguageService} locale is used.
|
|
@@ -2259,57 +2287,125 @@ declare class MnDateSelectorBar implements OnInit {
|
|
|
2259
2287
|
readonly locale: i0.InputSignal<string>;
|
|
2260
2288
|
/** Emits when the user selects a new date. */
|
|
2261
2289
|
readonly dateSelected: i0.OutputEmitterRef<Date>;
|
|
2262
|
-
/**
|
|
2263
|
-
readonly
|
|
2290
|
+
/** Unique id for this instance's date picker, so several bars can coexist. */
|
|
2291
|
+
readonly pickerId: string;
|
|
2264
2292
|
private readonly destroyRef;
|
|
2293
|
+
private readonly injector;
|
|
2294
|
+
private readonly host;
|
|
2265
2295
|
private readonly lang;
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
* Whether the day strip (arrows + day tiles) is shown. Below
|
|
2270
|
-
* {@link MnDateSelectorBar.MIN_STRIP_WIDTH} it is hidden, leaving only the Today
|
|
2271
|
-
* button and the date picker.
|
|
2272
|
-
*/
|
|
2273
|
-
readonly showDayStrip: i0.Signal<boolean>;
|
|
2274
|
-
/** Start offset (in days from today) for the visible day-tile window. */
|
|
2275
|
-
private readonly dayOffset;
|
|
2296
|
+
private readonly tileButtons;
|
|
2297
|
+
/** The bar's own width in px, tracked so the layout follows its container. */
|
|
2298
|
+
private readonly containerWidth;
|
|
2276
2299
|
/** Bumped whenever the active language changes so name formatting re-runs. */
|
|
2277
2300
|
private readonly localeTick;
|
|
2301
|
+
/** How the bar is arranged at the current width. */
|
|
2302
|
+
readonly layout: i0.Signal<DateSelectorBarLayout>;
|
|
2303
|
+
/** Whether the day strip is shown, or the picker has taken its place. */
|
|
2304
|
+
readonly showDayStrip: i0.Signal<boolean>;
|
|
2278
2305
|
/**
|
|
2279
|
-
*
|
|
2280
|
-
*
|
|
2306
|
+
* Days in the visible strip: a full week where there's room, fewer as the bar
|
|
2307
|
+
* narrows. The bar drops days rather than adding a second row, so it stays one
|
|
2308
|
+
* line at every width it can.
|
|
2281
2309
|
*/
|
|
2282
|
-
|
|
2310
|
+
readonly tileCount: i0.Signal<number>;
|
|
2283
2311
|
/** Effective locale: explicit input, else the active app locale. */
|
|
2284
2312
|
private readonly effectiveLocale;
|
|
2285
|
-
/**
|
|
2313
|
+
/**
|
|
2314
|
+
* First day of the visible strip — the week's Monday when a whole week is on
|
|
2315
|
+
* show, otherwise whatever start keeps the selection in view.
|
|
2316
|
+
*
|
|
2317
|
+
* The strip holds still while the selection stays on screen; a selection
|
|
2318
|
+
* outside it moves to where that day is. The arrows write here directly to page
|
|
2319
|
+
* away from the selection.
|
|
2320
|
+
*/
|
|
2321
|
+
private readonly windowStart;
|
|
2322
|
+
/**
|
|
2323
|
+
* Index of the tile that is currently keyboard-reachable (roving tabindex).
|
|
2324
|
+
* Tracks the selection so Tab lands on the selected day, falling back to Monday
|
|
2325
|
+
* when the selection has been paged out of sight.
|
|
2326
|
+
*/
|
|
2327
|
+
private readonly focusedIndex;
|
|
2328
|
+
/** The visible days, derived from the window start and the current selection. */
|
|
2286
2329
|
readonly dayTiles: i0.Signal<DayTile[]>;
|
|
2330
|
+
/**
|
|
2331
|
+
* Names the month the strip is currently in, so the days are never just loose
|
|
2332
|
+
* numbers. Reads as a range when the strip straddles two months, and carries
|
|
2333
|
+
* both years when it straddles two of those.
|
|
2334
|
+
*/
|
|
2335
|
+
readonly monthCaption: i0.Signal<string>;
|
|
2336
|
+
/** The selected date formatted as YYYY-MM-DD for the date-picker input. */
|
|
2337
|
+
readonly selectedDateString: i0.Signal<string>;
|
|
2338
|
+
/**
|
|
2339
|
+
* Props for the compact-layout date picker. Sized to match the Today button it
|
|
2340
|
+
* sits beside, and filling the rest of the row so it stays an easy tap target.
|
|
2341
|
+
*/
|
|
2342
|
+
readonly pickerProps: i0.Signal<{
|
|
2343
|
+
id: string;
|
|
2344
|
+
mode: "date";
|
|
2345
|
+
placeholder: string;
|
|
2346
|
+
size: "md";
|
|
2347
|
+
borderRadius: "lg";
|
|
2348
|
+
hover: boolean;
|
|
2349
|
+
fullWidth: boolean;
|
|
2350
|
+
}>;
|
|
2287
2351
|
ngOnInit(): void;
|
|
2288
|
-
/**
|
|
2352
|
+
/** Shows the days before the visible ones, without changing the selection. */
|
|
2289
2353
|
navigatePrevious(): void;
|
|
2290
|
-
/**
|
|
2354
|
+
/** Shows the days after the visible ones, without changing the selection. */
|
|
2291
2355
|
navigateNext(): void;
|
|
2292
|
-
/**
|
|
2356
|
+
/** Returns to today: brings today into the strip and selects it. */
|
|
2293
2357
|
goToToday(): void;
|
|
2294
2358
|
/** Selects a date and emits it, unless it is already the selected day. */
|
|
2295
2359
|
selectDate(date: Date): void;
|
|
2296
2360
|
/**
|
|
2297
|
-
* Handles the date-picker model change:
|
|
2298
|
-
*
|
|
2361
|
+
* Handles the date-picker model change: shows the picked day's week and emits
|
|
2362
|
+
* it (unless it is already the selected day).
|
|
2299
2363
|
* @param value The date string in YYYY-MM-DD format.
|
|
2300
2364
|
*/
|
|
2301
2365
|
onDateModelChanged(value: string): void;
|
|
2302
|
-
/**
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2366
|
+
/** Whether the tile at `index` is the one reachable with Tab. */
|
|
2367
|
+
isTabbable(index: number): boolean;
|
|
2368
|
+
/** Remembers which tile last held focus, so Tab returns to it. */
|
|
2369
|
+
onTileFocus(index: number): void;
|
|
2370
|
+
/**
|
|
2371
|
+
* Moves focus across the week with the arrow keys. Running off either end turns
|
|
2372
|
+
* the page to the neighbouring week and lands on the day that continues the run,
|
|
2373
|
+
* so the weeks read as one continuous calendar.
|
|
2374
|
+
*/
|
|
2375
|
+
onTileKeydown(event: KeyboardEvent, index: number): void;
|
|
2376
|
+
/** trackBy key for day tiles. */
|
|
2377
|
+
trackByTile(_index: number, tile: DayTile): number;
|
|
2378
|
+
/**
|
|
2379
|
+
* Moves the strip by `pages` of whatever it is currently showing. Paging by the
|
|
2380
|
+
* visible count is what keeps a full week Monday-aligned — seven days forward
|
|
2381
|
+
* from a Monday is the next Monday.
|
|
2382
|
+
*/
|
|
2383
|
+
private shiftWindow;
|
|
2384
|
+
/** Focuses the tile at `index` once the week has rendered. */
|
|
2385
|
+
private moveFocusTo;
|
|
2386
|
+
/** Index of the selected day within the visible week, or -1 when off-week. */
|
|
2387
|
+
private indexOfSelected;
|
|
2388
|
+
/**
|
|
2389
|
+
* Where the strip should start to show `date` among `count` days: the week's
|
|
2390
|
+
* Monday when a whole week is on show, otherwise centred on the day, since a
|
|
2391
|
+
* partial strip has no week to align to.
|
|
2392
|
+
*/
|
|
2393
|
+
private anchorFor;
|
|
2394
|
+
/**
|
|
2395
|
+
* Returns the Monday of the week containing `date`. `getDay()` counts from
|
|
2396
|
+
* Sunday, so the shift maps Sunday to the end of the week rather than the start.
|
|
2397
|
+
*/
|
|
2398
|
+
private startOfWeek;
|
|
2399
|
+
/** Whole calendar days from `from` to `to`, ignoring time of day and DST. */
|
|
2400
|
+
private daysBetween;
|
|
2401
|
+
/** Tracks the bar's own width so the layout responds to its container. */
|
|
2402
|
+
private observeOwnWidth;
|
|
2307
2403
|
/** Returns a Date object for today at midnight. */
|
|
2308
2404
|
private getToday;
|
|
2309
2405
|
/** Checks whether two dates fall on the same calendar day. */
|
|
2310
2406
|
private isSameDay;
|
|
2311
2407
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnDateSelectorBar, never>;
|
|
2312
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MnDateSelectorBar, "mn-date-selector-bar", never, { "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "todayLabel": { "alias": "todayLabel"; "required": false; "isSignal": true; }; "pickDateLabel": { "alias": "pickDateLabel"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; }, { "dateSelected": "dateSelected"; }, never, never, true, never>;
|
|
2408
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnDateSelectorBar, "mn-date-selector-bar", never, { "selectedDate": { "alias": "selectedDate"; "required": false; "isSignal": true; }; "todayLabel": { "alias": "todayLabel"; "required": false; "isSignal": true; }; "pickDateLabel": { "alias": "pickDateLabel"; "required": false; "isSignal": true; }; "previousLabel": { "alias": "previousLabel"; "required": false; "isSignal": true; }; "nextLabel": { "alias": "nextLabel"; "required": false; "isSignal": true; }; "dayStripLabel": { "alias": "dayStripLabel"; "required": false; "isSignal": true; }; "locale": { "alias": "locale"; "required": false; "isSignal": true; }; }, { "dateSelected": "dateSelected"; }, never, never, true, never>;
|
|
2313
2409
|
}
|
|
2314
2410
|
|
|
2315
2411
|
declare const mnMultiSelectVariants: tailwind_variants.TVReturnType<{
|
|
@@ -2814,6 +2910,21 @@ type MnCollectionLabels = {
|
|
|
2814
2910
|
rowsPerPage?: string;
|
|
2815
2911
|
/** Translation key for the "Rows per page" label. */
|
|
2816
2912
|
rowsPerPageKey?: string;
|
|
2913
|
+
/**
|
|
2914
|
+
* Page position readout, shown on narrow viewports where the item range does
|
|
2915
|
+
* not fit. Supports the `{{current}}` and `{{total}}` placeholders.
|
|
2916
|
+
* Defaults to `Page {{current}} of {{total}}`.
|
|
2917
|
+
*/
|
|
2918
|
+
pageIndicator?: string;
|
|
2919
|
+
/** Translation key for the page position readout. */
|
|
2920
|
+
pageIndicatorKey?: string;
|
|
2921
|
+
/**
|
|
2922
|
+
* Item range readout. Supports the `{{start}}`, `{{end}}` and `{{total}}`
|
|
2923
|
+
* placeholders. Defaults to `{{start}}–{{end}} of {{total}}`.
|
|
2924
|
+
*/
|
|
2925
|
+
itemRange?: string;
|
|
2926
|
+
/** Translation key for the item range readout. */
|
|
2927
|
+
itemRangeKey?: string;
|
|
2817
2928
|
};
|
|
2818
2929
|
/**
|
|
2819
2930
|
* Chrome shared by every MnLib collection component (table, list, grid):
|
|
@@ -3177,6 +3288,17 @@ declare abstract class MnSelectableCollectionBase<T, DS extends MnSelectableColl
|
|
|
3177
3288
|
static ɵdir: i0.ɵɵDirectiveDeclaration<MnSelectableCollectionBase<any, any>, never, never, {}, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
3178
3289
|
}
|
|
3179
3290
|
|
|
3291
|
+
/** One position in the page-number strip. */
|
|
3292
|
+
type MnPageSlot = {
|
|
3293
|
+
/** Page to jump to, or `null` for an ellipsis gap. */
|
|
3294
|
+
page: number | null;
|
|
3295
|
+
/**
|
|
3296
|
+
* True for the first/last page anchors and the gaps beside them. These are
|
|
3297
|
+
* hidden below `md`, where the readout states the total and « » already jump
|
|
3298
|
+
* to either end — the strip would otherwise wrap.
|
|
3299
|
+
*/
|
|
3300
|
+
anchor: boolean;
|
|
3301
|
+
};
|
|
3180
3302
|
/**
|
|
3181
3303
|
* Presentational pagination footer shared by every MnLib collection component
|
|
3182
3304
|
* (table, list, grid): the load-more button, the page-size selector and the
|
|
@@ -3202,6 +3324,28 @@ declare class MnCollectionPagination {
|
|
|
3202
3324
|
pageChange: EventEmitter<number>;
|
|
3203
3325
|
pageSizeChange: EventEmitter<number>;
|
|
3204
3326
|
get showPagination(): boolean;
|
|
3327
|
+
/** First item number on the current page, 1-based. Zero when there is no data. */
|
|
3328
|
+
get rangeStart(): number;
|
|
3329
|
+
/** Last item number on the current page, clamped to the total. */
|
|
3330
|
+
get rangeEnd(): number;
|
|
3331
|
+
/**
|
|
3332
|
+
* {@link visiblePages} anchored with the first and last page, so the total page
|
|
3333
|
+
* count is on screen at md+ without consulting the readout.
|
|
3334
|
+
*
|
|
3335
|
+
* e.g. page 5 of 50 → `1 … 4 5 6 … 50`
|
|
3336
|
+
*/
|
|
3337
|
+
get pageSlots(): MnPageSlot[];
|
|
3338
|
+
/** Wrapper classes for a slot: anchors and their gaps are md+ only. */
|
|
3339
|
+
slotVisibility(slot: MnPageSlot): string;
|
|
3340
|
+
/** e.g. `Page 5 of 50`. */
|
|
3341
|
+
get pageIndicatorLabel(): string;
|
|
3342
|
+
/** e.g. `41–50 of 250`. */
|
|
3343
|
+
get itemRangeLabel(): string;
|
|
3344
|
+
/**
|
|
3345
|
+
* Substitutes `{{name}}` placeholders, matching the interpolation syntax used
|
|
3346
|
+
* by MnLanguageService so the same translation strings work either way.
|
|
3347
|
+
*/
|
|
3348
|
+
private fill;
|
|
3205
3349
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnCollectionPagination, never>;
|
|
3206
3350
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnCollectionPagination, "mn-collection-pagination", never, { "idPrefix": { "alias": "idPrefix"; "required": false; }; "isPaginated": { "alias": "isPaginated"; "required": false; }; "isServerPaginated": { "alias": "isServerPaginated"; "required": false; }; "showLoadMore": { "alias": "showLoadMore"; "required": false; }; "loadingMoreRows": { "alias": "loadingMoreRows"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "totalPages": { "alias": "totalPages"; "required": false; }; "totalItemCount": { "alias": "totalItemCount"; "required": false; }; "visiblePages": { "alias": "visiblePages"; "required": false; }; "pageSizeSelectOptions": { "alias": "pageSizeSelectOptions"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; }, { "loadMore": "loadMore"; "pageChange": "pageChange"; "pageSizeChange": "pageSizeChange"; }, never, never, true, never>;
|
|
3207
3351
|
}
|
|
@@ -5234,7 +5378,7 @@ type CalendarConfig = {
|
|
|
5234
5378
|
locale: string;
|
|
5235
5379
|
/** Label for the "Today" navigation button. Default: `'Today'`. */
|
|
5236
5380
|
todayLabel: string;
|
|
5237
|
-
/** Placeholder for the date
|
|
5381
|
+
/** Placeholder for the date picker the selector bar shows on narrow screens. Default: `'Pick a date'`. */
|
|
5238
5382
|
pickDateLabel: string;
|
|
5239
5383
|
/** Title shown above the upcoming-events sidebar. Default: `'Upcoming events'`. */
|
|
5240
5384
|
upcomingEventsTitle: string;
|
|
@@ -6481,4 +6625,4 @@ type MnPreviewMessage = {
|
|
|
6481
6625
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
6482
6626
|
|
|
6483
6627
|
export { API_BASE_URL, ActionStyle, BackdropMode, BaseModalBuilder, CALENDAR_CONFIG, CALENDAR_DATE_FORMATTER, CalendarDayComponent, CalendarEventComponent, CalendarEventDefaultComponent, CalendarEventLayoutService, CalendarMonthComponent, CalendarUtility, CalendarView, CalendarViewComponent, CalendarWeekComponent, CloseMode, ColumnSortType, ConfirmationModalBuilder, ConfirmationTone, CrudService, CustomModalBuilder, DEFAULT_CALENDAR_CONFIG, DEFAULT_MN_ALERT_CONFIG, DefaultCalendarDateFormatter, FieldAppearance, FieldKind, FormLayoutMode, FormModalBuilder, KeyboardMode, MN_ALERT_CONFIG, MN_CALENDAR_COMPONENT_NAME, MN_CALENDAR_CONFIG, MN_CHECKBOX_CONFIG, MN_DATETIME_CONFIG, MN_HAPTICS, MN_ICON_MAP, MN_INPUT_FIELD_CONFIG, MN_INSTANCE_ID, MN_LIB_DUAL_HORIZONTAL_IMAGE, MN_MODAL_ACTION_ICONS, MN_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, MODAL_ACTION_ICON_SIZE, MODAL_ACTION_ICON_SIZE_SM, MnAlertOutletComponent, MnAlertService, MnAlertStore, MnBadge, MnButton, MnCheckbox, MnCollectionBase, MnCollectionPagination, MnCollectionState, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDateSelectorBar, MnDatetime, MnDualHorizontalImage, MnFileInput, MnFormBodyComponent, MnGrid, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnSectionDirective, MnSelect, MnSelectableCollectionBase, MnShowAboveDirective, MnShowBelowDirective, MnSkeleton, MnTabComponent, MnTable, MnTextarea, MnTranslatePipe, MnWizardBodyComponent, ModalBuilder, ModalCloseReason, ModalIntent, ModalKind, ModalSize, NavigationDirection, OptionState, SelectionMode, StepBuilder, StepState, SubmitMode, UpcomingEventRowComponent, UpcomingEventsComponent, ValidationCode, ValidationStatus, WizardFlowMode, WizardModalBuilder, dateTimeAdapter, defaultIconForStyle, defaultTextAdapter, enableMnPreviewMode, isTranslatable, mnAlertVariants, mnBadgeVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig };
|
|
6484
|
-
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnSkeleton, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DatetimeFieldConfig, DayTile, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, GridDataSource, GridLayout, GridSkeleton, HourRow, ListAppearance, ListDataSource, ListLabels, ListSkeleton, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, MnFileDisplayItem, MnFileInputDisplayMode, MnFileInputErrorMessageData, MnFileInputErrorMessagesData, MnFileInputProps, MnFileInputUIConfig, MnFileInputVariants, MnHapticStyle, MnHapticsHandler, MnIconTypes, MnIconVariants, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPreviewMessage, MnQueryParams, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, MnValidationErrorArgs, ModalCancelHandler, ModalCloseEvent, ModalConfig, ModalFooterAction, ModalI18nLabels, ModalInputMap, ModalPollingConfig, ModalRef, ModalResultHandler, ModalStepId, MonthItem, MultiSelectFieldConfig, MultiSelectTableFieldConfig, NumberFieldConfig, OffsetPaginationStrategy, PaginationMode, PaginationStrategy, PasswordFieldConfig, Primitive, QueryParams, QueryValue, RatingFieldConfig, Result, ResultMeta, SelectFieldConfig, SelectOption, SingleSelectTableFieldConfig, SliderFieldConfig, SortState, StepBodyConfig, StepGuard, StepValidator, SuccessResult, TableAppearance, TableDataSource, TableLabels, TextFieldConfig, TextareaFieldConfig, ValidationResult, WizardBeforeCompleteValidator, WizardModalConfig, WizardResult, WizardStepChangeEvent, WizardStepChangeHandler, WizardStepConfig };
|
|
6628
|
+
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnSkeleton, ConfirmationActionConfig, ConfirmationModalConfig, CrudConfig, CurrentTimeCalendarEvent, CursorPaginationStrategy, CustomFieldConfig, CustomModalConfig, DateFieldConfig, DateSelectorBarLayout, DatetimeFieldConfig, DayTile, FailureResult, FieldDataSource, FieldRequiredCondition, FieldValidator, FieldVisibilityCondition, FileFieldConfig, FormFieldConfig, FormFieldGroup, FormModalConfig, FormRow, FormRowField, FormValidator, GridDataSource, GridLayout, GridSkeleton, HourRow, ListAppearance, ListDataSource, ListLabels, ListSkeleton, MnAlert, MnAlertConfig, MnAlertId, MnAlertKind, MnAlertTemplateContext, MnAlertVariants, MnBadgeTypes, MnBadgeVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDualHorizontalImageConfig, MnDualHorizontalImageTypes, MnErrorMessageData, MnErrorMessageFn, MnErrorMessagesData, MnFileDisplayItem, MnFileInputDisplayMode, MnFileInputErrorMessageData, MnFileInputErrorMessagesData, MnFileInputProps, MnFileInputUIConfig, MnFileInputVariants, MnHapticStyle, MnHapticsHandler, MnIconTypes, MnIconVariants, MnImageType, MnInformationCardBaseData, MnInformationCardData, MnInformationCardVariants, MnInputAdapter, MnInputBaseProps, MnInputDateTimeProps, MnInputFieldProps, MnInputFieldUIConfig, MnInputProps, MnInputType, MnInputVariants, MnLanguageConfig, MnMultiSelectErrorMessageData, MnMultiSelectErrorMessagesData, MnMultiSelectOption, MnMultiSelectProps, MnMultiSelectUIConfig, MnMultiSelectVariants, MnPageSlot, MnPreviewMessage, MnQueryParams, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTextareaErrorMessageData, MnTextareaErrorMessagesData, MnTextareaProps, MnTextareaUIConfig, MnTextareaVariants, MnTranslatable, MnTranslationMap, MnTranslations, MnValidationErrorArgs, ModalCancelHandler, ModalCloseEvent, ModalConfig, ModalFooterAction, ModalI18nLabels, ModalInputMap, ModalPollingConfig, ModalRef, ModalResultHandler, ModalStepId, MonthItem, MultiSelectFieldConfig, MultiSelectTableFieldConfig, NumberFieldConfig, OffsetPaginationStrategy, PaginationMode, PaginationStrategy, PasswordFieldConfig, Primitive, QueryParams, QueryValue, RatingFieldConfig, Result, ResultMeta, SelectFieldConfig, SelectOption, SingleSelectTableFieldConfig, SliderFieldConfig, SortState, StepBodyConfig, StepGuard, StepValidator, SuccessResult, TableAppearance, TableDataSource, TableLabels, TextFieldConfig, TextareaFieldConfig, ValidationResult, WizardBeforeCompleteValidator, WizardModalConfig, WizardResult, WizardStepChangeEvent, WizardStepChangeHandler, WizardStepConfig };
|