mn-angular-lib 1.0.103 → 1.0.105
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/package.json
CHANGED
|
@@ -10,7 +10,10 @@
|
|
|
10
10
|
display: flex;
|
|
11
11
|
align-items: center;
|
|
12
12
|
justify-content: center;
|
|
13
|
-
|
|
13
|
+
/* `padding-bottom` is transitioned too so a mobile bottom sheet rides up smoothly in sync
|
|
14
|
+
with the soft keyboard (see the `--keyboard-height` handling in the mobile-sheet block). */
|
|
15
|
+
transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out, opacity 0.3s ease-in-out,
|
|
16
|
+
padding-bottom 0.25s ease-out;
|
|
14
17
|
}
|
|
15
18
|
|
|
16
19
|
:host(.is-stacked) {
|
|
@@ -117,12 +120,24 @@
|
|
|
117
120
|
@media (max-width: 639.98px) {
|
|
118
121
|
:host(.mobile-sheet) {
|
|
119
122
|
align-items: flex-end;
|
|
123
|
+
/* Lift the whole sheet above the on-screen keyboard so focused fields stay visible.
|
|
124
|
+
On iOS the WKWebView does NOT resize when the keyboard opens (Capacitor `resize: none`,
|
|
125
|
+
chosen to avoid a relayout black-flash), so a bottom-anchored sheet would sit behind the
|
|
126
|
+
keyboard and no amount of inner scrolling can raise a low/last field above it — the sheet
|
|
127
|
+
itself must move up. Insetting this flex container by `--keyboard-height` (which the host
|
|
128
|
+
app publishes on iOS; 0 on web/Android where the view resizes natively) pushes the
|
|
129
|
+
flex-end-aligned sheet up by exactly the keyboard height. It's read as a plain CSS var,
|
|
130
|
+
so the library keeps no dependency on Capacitor. */
|
|
131
|
+
padding-bottom: var(--keyboard-height, 0px);
|
|
120
132
|
}
|
|
121
133
|
|
|
122
134
|
:host(.mobile-sheet) .modal-container {
|
|
123
135
|
width: 100%;
|
|
124
136
|
max-width: 100%;
|
|
125
|
-
|
|
137
|
+
/* Cap the sheet to the space left above the keyboard so a tall form shrinks and scrolls
|
|
138
|
+
internally instead of running off the top of the screen. Falls back to 92vh when the
|
|
139
|
+
keyboard is closed (`--keyboard-height` is 0). */
|
|
140
|
+
max-height: calc(92vh - var(--keyboard-height, 0px));
|
|
126
141
|
/* Keep the footer / last content clear of the iOS home indicator. The sheet
|
|
127
142
|
background extends into the inset so it reads as one continuous surface.
|
|
128
143
|
The container is border-box (Tailwind preflight), so this padding sits inside
|
|
@@ -163,6 +178,7 @@
|
|
|
163
178
|
short-circuits its close wait when reduced motion is requested.
|
|
164
179
|
========================= */
|
|
165
180
|
@media (prefers-reduced-motion: reduce) {
|
|
181
|
+
:host,
|
|
166
182
|
:host .modal-backdrop,
|
|
167
183
|
:host .modal-container {
|
|
168
184
|
animation-duration: 0.01ms !important;
|
|
@@ -2197,6 +2197,119 @@ declare class MnDatetime implements OnInit {
|
|
|
2197
2197
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnDatetime, "mn-lib-datetime", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
2198
2198
|
}
|
|
2199
2199
|
|
|
2200
|
+
/** Represents a single day tile in the date selector. */
|
|
2201
|
+
type DayTile = {
|
|
2202
|
+
/** The full date object (at midnight). */
|
|
2203
|
+
date: Date;
|
|
2204
|
+
/** Short day name (e.g. 'ma', 'Mon'). */
|
|
2205
|
+
dayName: string;
|
|
2206
|
+
/** Day-of-month number. */
|
|
2207
|
+
dayNumber: number;
|
|
2208
|
+
/** Short month name (e.g. 'mei', 'Jun'). */
|
|
2209
|
+
monthName: string;
|
|
2210
|
+
/** Whether this tile is the currently selected date. */
|
|
2211
|
+
isSelected: boolean;
|
|
2212
|
+
/** Whether this tile represents today. */
|
|
2213
|
+
isToday: boolean;
|
|
2214
|
+
};
|
|
2215
|
+
/**
|
|
2216
|
+
* Reusable, responsive date selector bar.
|
|
2217
|
+
*
|
|
2218
|
+
* Renders a "Today" button, previous/next day-window arrows, a strip of day
|
|
2219
|
+
* tiles (3 → 5 → 7 as the viewport widens; see {@link TILE_BREAKPOINTS}) and a
|
|
2220
|
+
* date picker. Selecting a
|
|
2221
|
+
* tile, pressing "Today", or picking a date through the picker emits the chosen
|
|
2222
|
+
* day via {@link dateSelected}. The arrows only shift the visible tile window and
|
|
2223
|
+
* never emit.
|
|
2224
|
+
*
|
|
2225
|
+
* The component carries no hard-coded copy: button/placeholder text is supplied
|
|
2226
|
+
* through {@link todayLabel} / {@link pickDateLabel}, and day/month names follow
|
|
2227
|
+
* {@link locale} (falling back to the active {@link MnLanguageService} locale).
|
|
2228
|
+
*
|
|
2229
|
+
* @example
|
|
2230
|
+
* ```html
|
|
2231
|
+
* <mn-date-selector-bar
|
|
2232
|
+
* [selectedDate]="focusDay"
|
|
2233
|
+
* [todayLabel]="'Today'"
|
|
2234
|
+
* [pickDateLabel]="'Pick a date'"
|
|
2235
|
+
* [locale]="'nl-NL'"
|
|
2236
|
+
* (dateSelected)="onDaySelected($event)">
|
|
2237
|
+
* </mn-date-selector-bar>
|
|
2238
|
+
* ```
|
|
2239
|
+
*/
|
|
2240
|
+
declare class MnDateSelectorBar implements OnInit {
|
|
2241
|
+
/**
|
|
2242
|
+
* Minimum viewport width (px) at which the day strip (arrows + tiles) is shown.
|
|
2243
|
+
* On narrower screens there isn't room for it, so only the Today button and the
|
|
2244
|
+
* date picker remain.
|
|
2245
|
+
*/
|
|
2246
|
+
private static readonly MIN_STRIP_WIDTH;
|
|
2247
|
+
/** The currently selected date, provided by the parent. */
|
|
2248
|
+
readonly selectedDate: i0.InputSignal<Date>;
|
|
2249
|
+
/** Label for the "Today" button. */
|
|
2250
|
+
readonly todayLabel: i0.InputSignal<string>;
|
|
2251
|
+
/** Placeholder for the date picker input. */
|
|
2252
|
+
readonly pickDateLabel: i0.InputSignal<string>;
|
|
2253
|
+
/**
|
|
2254
|
+
* BCP 47 locale used to format day/month names. When empty, the active
|
|
2255
|
+
* {@link MnLanguageService} locale is used.
|
|
2256
|
+
*/
|
|
2257
|
+
readonly locale: i0.InputSignal<string>;
|
|
2258
|
+
/** Emits when the user selects a new date. */
|
|
2259
|
+
readonly dateSelected: i0.OutputEmitterRef<Date>;
|
|
2260
|
+
/** The selected date formatted as YYYY-MM-DD for the date-picker input. */
|
|
2261
|
+
readonly selectedDateString: i0.Signal<string>;
|
|
2262
|
+
private readonly destroyRef;
|
|
2263
|
+
private readonly lang;
|
|
2264
|
+
/** Current viewport width in pixels, tracked so the tile count stays responsive. */
|
|
2265
|
+
private readonly viewportWidth;
|
|
2266
|
+
/**
|
|
2267
|
+
* Whether the day strip (arrows + day tiles) is shown. Below
|
|
2268
|
+
* {@link MnDateSelectorBar.MIN_STRIP_WIDTH} it is hidden, leaving only the Today
|
|
2269
|
+
* button and the date picker.
|
|
2270
|
+
*/
|
|
2271
|
+
readonly showDayStrip: i0.Signal<boolean>;
|
|
2272
|
+
/** Start offset (in days from today) for the visible day-tile window. */
|
|
2273
|
+
private readonly dayOffset;
|
|
2274
|
+
/** Bumped whenever the active language changes so name formatting re-runs. */
|
|
2275
|
+
private readonly localeTick;
|
|
2276
|
+
/**
|
|
2277
|
+
* Number of day tiles to render, resolved from {@link TILE_BREAKPOINTS} against
|
|
2278
|
+
* the current viewport width (3 → 5 → 7 as the screen widens).
|
|
2279
|
+
*/
|
|
2280
|
+
private readonly tileCount;
|
|
2281
|
+
/** Effective locale: explicit input, else the active app locale. */
|
|
2282
|
+
private readonly effectiveLocale;
|
|
2283
|
+
/** The visible day tiles, derived from the selected date, offset and viewport. */
|
|
2284
|
+
readonly dayTiles: i0.Signal<DayTile[]>;
|
|
2285
|
+
ngOnInit(): void;
|
|
2286
|
+
/** Shifts the visible window back by one tile-count without changing the selection. */
|
|
2287
|
+
navigatePrevious(): void;
|
|
2288
|
+
/** Shifts the visible window forward by one tile-count without changing the selection. */
|
|
2289
|
+
navigateNext(): void;
|
|
2290
|
+
/** Resets the window to today and selects today. */
|
|
2291
|
+
goToToday(): void;
|
|
2292
|
+
/** Selects a date and emits it, unless it is already the selected day. */
|
|
2293
|
+
selectDate(date: Date): void;
|
|
2294
|
+
/**
|
|
2295
|
+
* Handles the date-picker model change: centres the window on the picked date
|
|
2296
|
+
* and emits it (unless it is already the selected day).
|
|
2297
|
+
* @param value The date string in YYYY-MM-DD format.
|
|
2298
|
+
*/
|
|
2299
|
+
onDateModelChanged(value: string): void;
|
|
2300
|
+
/**
|
|
2301
|
+
* Returns the current viewport width in pixels, falling back to a desktop-ish
|
|
2302
|
+
* width when there is no window (e.g. server-side rendering).
|
|
2303
|
+
*/
|
|
2304
|
+
private getViewportWidth;
|
|
2305
|
+
/** Returns a Date object for today at midnight. */
|
|
2306
|
+
private getToday;
|
|
2307
|
+
/** Checks whether two dates fall on the same calendar day. */
|
|
2308
|
+
private isSameDay;
|
|
2309
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MnDateSelectorBar, never>;
|
|
2310
|
+
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>;
|
|
2311
|
+
}
|
|
2312
|
+
|
|
2200
2313
|
declare const mnMultiSelectVariants: tailwind_variants.TVReturnType<{
|
|
2201
2314
|
shadow: {
|
|
2202
2315
|
true: string;
|
|
@@ -4328,6 +4441,14 @@ declare class MnModalShellComponent<TResult = unknown> implements OnInit, AfterV
|
|
|
4328
4441
|
*/
|
|
4329
4442
|
readonly isStacked: i0.WritableSignal<boolean>;
|
|
4330
4443
|
readonly ModalKind: typeof ModalKind;
|
|
4444
|
+
/** The rendered wizard body, when this modal is a wizard — used to read the active step title. */
|
|
4445
|
+
private readonly wizardBody;
|
|
4446
|
+
/**
|
|
4447
|
+
* Title of the wizard's current step, or undefined for non-wizard modals.
|
|
4448
|
+
* The template appends it to the modal title on small screens, where the
|
|
4449
|
+
* step labels under the progress circles are hidden.
|
|
4450
|
+
*/
|
|
4451
|
+
readonly wizardStepTitle: i0.Signal<string | undefined>;
|
|
4331
4452
|
private previouslyFocusedElement;
|
|
4332
4453
|
private focusTrapListener;
|
|
4333
4454
|
private pollingTimer;
|
|
@@ -4585,6 +4706,14 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
4585
4706
|
formBodies: QueryList<MnFormBodyComponent>;
|
|
4586
4707
|
stepWrappers: QueryList<ElementRef<HTMLElement>>;
|
|
4587
4708
|
currentStepId: ModalStepId;
|
|
4709
|
+
/**
|
|
4710
|
+
* Title of the currently active step, mirrored into a signal so the modal
|
|
4711
|
+
* shell can append it to the modal title on small screens (where the step
|
|
4712
|
+
* labels under the progress circles are hidden). A signal — not a getter —
|
|
4713
|
+
* because the shell lives outside this component's change-detection subtree,
|
|
4714
|
+
* so a plain field mutation here would not update the shell in a zoneless app.
|
|
4715
|
+
*/
|
|
4716
|
+
readonly currentStepTitle: i0.WritableSignal<string | undefined>;
|
|
4588
4717
|
visitedStepIds: ModalStepId[];
|
|
4589
4718
|
isCurrentStepValid: boolean;
|
|
4590
4719
|
isCompleting: boolean;
|
|
@@ -4612,6 +4741,7 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
4612
4741
|
ngOnInit(): void;
|
|
4613
4742
|
ngAfterViewInit(): void;
|
|
4614
4743
|
isTextBody(step: WizardStepConfig): boolean;
|
|
4744
|
+
goToStep(step: WizardStepConfig): Promise<void>;
|
|
4615
4745
|
ngOnDestroy(): void;
|
|
4616
4746
|
/**
|
|
4617
4747
|
* Measures every step's natural height and records the tallest as
|
|
@@ -4633,12 +4763,17 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
4633
4763
|
get currentProgressIndex(): number;
|
|
4634
4764
|
get isFreeFlow(): boolean;
|
|
4635
4765
|
canNavigateToStep(step: WizardStepConfig): boolean;
|
|
4636
|
-
|
|
4766
|
+
next(): Promise<void>;
|
|
4637
4767
|
/** Find the MnFormBodyComponent for the current step */
|
|
4638
4768
|
private getCurrentFormBody;
|
|
4639
4769
|
private trackCurrentStepValidity;
|
|
4640
|
-
next(): Promise<void>;
|
|
4641
4770
|
back(): Promise<void>;
|
|
4771
|
+
/**
|
|
4772
|
+
* Activates a step and mirrors its title into {@link currentStepTitle} so the
|
|
4773
|
+
* shell can reflect the step name in the modal title on small screens.
|
|
4774
|
+
* @param stepId Id of the step to make current.
|
|
4775
|
+
*/
|
|
4776
|
+
private setCurrentStep;
|
|
4642
4777
|
complete(): Promise<void>;
|
|
4643
4778
|
/** Collect form data from all form-driven steps, namespaced by step ID */
|
|
4644
4779
|
private getAggregatedData;
|
|
@@ -4927,6 +5062,8 @@ type CalendarConfig = {
|
|
|
4927
5062
|
locale: string;
|
|
4928
5063
|
/** Label for the "Today" navigation button. Default: `'Today'`. */
|
|
4929
5064
|
todayLabel: string;
|
|
5065
|
+
/** Placeholder for the date-selector-bar date picker. Default: `'Pick a date'`. */
|
|
5066
|
+
pickDateLabel: string;
|
|
4930
5067
|
/** Title shown above the upcoming-events sidebar. Default: `'Upcoming events'`. */
|
|
4931
5068
|
upcomingEventsTitle: string;
|
|
4932
5069
|
/** Message shown when there are no upcoming events. Default: `'No upcoming events'`. */
|
|
@@ -5082,7 +5219,6 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5082
5219
|
readonly CalendarView: typeof CalendarView;
|
|
5083
5220
|
currentView: CalendarView;
|
|
5084
5221
|
focusDay: Date;
|
|
5085
|
-
dateInputValue: string;
|
|
5086
5222
|
viewOptions: {
|
|
5087
5223
|
value: CalendarView;
|
|
5088
5224
|
label: string;
|
|
@@ -5094,7 +5230,6 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5094
5230
|
/** Subject for broadcasting focus-day changes to child views. */
|
|
5095
5231
|
internalFocusDayChanged: Subject<Date>;
|
|
5096
5232
|
private destroy$;
|
|
5097
|
-
private formatter;
|
|
5098
5233
|
protected config: CalendarConfig;
|
|
5099
5234
|
/** Reference to the injected mn-config object (mutated in-place on locale change). */
|
|
5100
5235
|
private readonly mnConfigRef;
|
|
@@ -5106,16 +5241,8 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5106
5241
|
ngOnDestroy(): void;
|
|
5107
5242
|
/** Switches the active view. On mobile, forces day view. */
|
|
5108
5243
|
switchView(view: CalendarView): void;
|
|
5109
|
-
/**
|
|
5110
|
-
|
|
5111
|
-
/** Navigates to the next period (month / week / day). */
|
|
5112
|
-
navigateNext(): void;
|
|
5113
|
-
/** Navigates to today. */
|
|
5114
|
-
goToToday(): void;
|
|
5115
|
-
/** Handles the date-picker input change. */
|
|
5116
|
-
onDateInputChange(event: Event): void;
|
|
5117
|
-
/** Handles the mn-lib-datetime ngModel change. */
|
|
5118
|
-
onDateStringChange(value: string): void;
|
|
5244
|
+
/** Handles a day selection from the date-selector bar. */
|
|
5245
|
+
onDateStripChange(date: Date): void;
|
|
5119
5246
|
/** Handles a day click from the month view — switches to day view. */
|
|
5120
5247
|
onMonthDayClick(date: Date): void;
|
|
5121
5248
|
/** Forwards a child event click to the parent output. */
|
|
@@ -5128,7 +5255,6 @@ declare class CalendarViewComponent implements OnInit, OnDestroy {
|
|
|
5128
5255
|
private rebuildFromConfig;
|
|
5129
5256
|
private checkMobileView;
|
|
5130
5257
|
private setFocusDay;
|
|
5131
|
-
private updateDateInput;
|
|
5132
5258
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarViewComponent, never>;
|
|
5133
5259
|
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>;
|
|
5134
5260
|
}
|
|
@@ -6182,5 +6308,5 @@ type MnPreviewMessage = {
|
|
|
6182
6308
|
*/
|
|
6183
6309
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
6184
6310
|
|
|
6185
|
-
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_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, MnAlertOutletComponent, MnAlertService, MnAlertStore, MnBadge, MnButton, MnCheckbox, MnCollectionBase, MnCollectionPagination, MnCollectionState, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, 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, 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 };
|
|
6186
|
-
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, 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 };
|
|
6311
|
+
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_MULTI_SELECT_CONFIG, MN_SECTION_PATH, MN_SELECT_CONFIG, MN_TEXTAREA_CONFIG, 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, 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 };
|
|
6312
|
+
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 };
|