mn-angular-lib 1.0.113 → 1.0.115
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 +418 -108
- package/fesm2022/mn-angular-lib.mjs.map +1 -1
- package/package.json +1 -1
- package/types/mn-angular-lib.d.ts +174 -46
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
|
-
*
|
|
2224
|
-
*
|
|
2225
|
-
*
|
|
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.
|
|
2243
|
+
*
|
|
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.
|
|
2226
2254
|
*
|
|
2227
|
-
* The component carries no hard-coded copy: button
|
|
2228
|
-
*
|
|
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<{
|
|
@@ -5282,8 +5378,12 @@ type CalendarConfig = {
|
|
|
5282
5378
|
locale: string;
|
|
5283
5379
|
/** Label for the "Today" navigation button. Default: `'Today'`. */
|
|
5284
5380
|
todayLabel: string;
|
|
5285
|
-
/** Placeholder for the
|
|
5381
|
+
/** Placeholder for the toolbar's date picker. Default: `'Pick a date'`. */
|
|
5286
5382
|
pickDateLabel: string;
|
|
5383
|
+
/** Accessible name for the toolbar's back arrow. Default: `'Previous'`. */
|
|
5384
|
+
previousLabel: string;
|
|
5385
|
+
/** Accessible name for the toolbar's forward arrow. Default: `'Next'`. */
|
|
5386
|
+
nextLabel: string;
|
|
5287
5387
|
/** Title shown above the upcoming-events sidebar. Default: `'Upcoming events'`. */
|
|
5288
5388
|
upcomingEventsTitle: string;
|
|
5289
5389
|
/** Message shown when there are no upcoming events. Default: `'No upcoming events'`. */
|
|
@@ -5437,6 +5537,8 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5437
5537
|
/** Emits when the action button is clicked. */
|
|
5438
5538
|
ButtonClickedEvent: EventEmitter<void>;
|
|
5439
5539
|
readonly CalendarView: typeof CalendarView;
|
|
5540
|
+
/** Ties the view tabs to the panel they control, uniquely per calendar. */
|
|
5541
|
+
readonly panelId: string;
|
|
5440
5542
|
currentView: CalendarView;
|
|
5441
5543
|
focusDay: Date;
|
|
5442
5544
|
viewOptions: {
|
|
@@ -5461,8 +5563,27 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5461
5563
|
ngOnDestroy(): void;
|
|
5462
5564
|
/** Switches the active view. On mobile, forces day view. */
|
|
5463
5565
|
switchView(view: CalendarView): void;
|
|
5464
|
-
/**
|
|
5465
|
-
|
|
5566
|
+
/**
|
|
5567
|
+
* Names the stretch of time on screen — the day, the week, or the month. It is
|
|
5568
|
+
* the toolbar's orientation: without it, navigating leaves you somewhere with
|
|
5569
|
+
* no label. Announced politely, so stepping through says where you landed.
|
|
5570
|
+
*/
|
|
5571
|
+
get periodLabel(): string;
|
|
5572
|
+
/** The focus day as YYYY-MM-DD, for the toolbar's date picker. */
|
|
5573
|
+
get focusDayString(): string;
|
|
5574
|
+
/**
|
|
5575
|
+
* Steps the calendar by one unit of whatever is on screen: a day in day view,
|
|
5576
|
+
* a week in week view, a month in month view. Navigating by the visible unit is
|
|
5577
|
+
* what makes one pair of arrows serve all three.
|
|
5578
|
+
*/
|
|
5579
|
+
navigate(step: number): void;
|
|
5580
|
+
/** Returns the calendar to today. */
|
|
5581
|
+
goToToday(): void;
|
|
5582
|
+
/**
|
|
5583
|
+
* Handles the toolbar date picker.
|
|
5584
|
+
* @param value The date string in YYYY-MM-DD format.
|
|
5585
|
+
*/
|
|
5586
|
+
onPickDate(value: string): void;
|
|
5466
5587
|
/** Handles a day click from the month view — switches to day view. */
|
|
5467
5588
|
onMonthDayClick(date: Date): void;
|
|
5468
5589
|
/** Forwards a child event click to the parent output. */
|
|
@@ -5474,6 +5595,13 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5474
5595
|
/** Rebuilds view options and labels from the current config. */
|
|
5475
5596
|
private rebuildFromConfig;
|
|
5476
5597
|
private checkMobileView;
|
|
5598
|
+
/**
|
|
5599
|
+
* Adds months without the end-of-month overflow `setMonth` alone produces —
|
|
5600
|
+
* 31 January plus one month is 28 February, not 3 March.
|
|
5601
|
+
*/
|
|
5602
|
+
private addMonths;
|
|
5603
|
+
/** Monday of the week containing `date`, matching the grid the views draw. */
|
|
5604
|
+
private startOfWeek;
|
|
5477
5605
|
private setFocusDay;
|
|
5478
5606
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarViewComponent, never>;
|
|
5479
5607
|
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarViewComponent, "mn-calendar-view", never, { "showButton": { "alias": "showButton"; "required": false; }; "buttonTitle": { "alias": "buttonTitle"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "CalendarEventComponent": { "alias": "CalendarEventComponent"; "required": false; }; "NewCalendarItemsEvent": { "alias": "NewCalendarItemsEvent"; "required": false; }; }, { "RequestNewCalendarItemsEvent": "RequestNewCalendarItemsEvent"; "CalendarItemClickedEvent": "CalendarItemClickedEvent"; "ButtonClickedEvent": "ButtonClickedEvent"; }, never, never, true, never>;
|
|
@@ -6529,4 +6657,4 @@ type MnPreviewMessage = {
|
|
|
6529
6657
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
6530
6658
|
|
|
6531
6659
|
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 };
|
|
6532
|
-
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, 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 };
|
|
6660
|
+
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 };
|