mn-angular-lib 1.0.106 → 1.0.109
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
|
@@ -20,9 +20,11 @@
|
|
|
20
20
|
opacity: 0.8;
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
/* Swipe-to-dismiss: animate the spring-back, but follow the finger 1:1 while dragging.
|
|
23
|
+
/* Swipe-to-dismiss: animate the spring-back, but follow the finger 1:1 while dragging.
|
|
24
|
+
`min-height` is transitioned too so the mobile sheet grows/shrinks smoothly (not instantly)
|
|
25
|
+
when the soft keyboard opens/closes — see the `.mn-keyboard-open` growth rule below. */
|
|
24
26
|
.modal-container {
|
|
25
|
-
transition: transform 0.35s var(--mn-sheet-ease);
|
|
27
|
+
transition: transform 0.35s var(--mn-sheet-ease), min-height 0.25s var(--mn-sheet-ease);
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
.modal-container.sheet-dragging {
|
|
@@ -122,6 +124,9 @@
|
|
|
122
124
|
:host(.mobile-sheet) .modal-container {
|
|
123
125
|
width: 100%;
|
|
124
126
|
max-width: 100%;
|
|
127
|
+
/* Explicit resting min-height so the keyboard-open growth (min-height: 92vh) can transition
|
|
128
|
+
from a defined value (`auto` would jump instead of animate). */
|
|
129
|
+
min-height: 0;
|
|
125
130
|
/* Cap the sheet at 92vh. The soft keyboard OVERLAYS the lower part of the sheet rather
|
|
126
131
|
than lifting it (on iOS the WKWebView does not resize — Capacitor `resize: none` — so
|
|
127
132
|
there is nothing to lift into): the sheet stays anchored at the bottom and its inner
|
|
@@ -144,12 +149,14 @@
|
|
|
144
149
|
focused field into view — pinning the height to 92vh guarantees content above the keyboard
|
|
145
150
|
for the inner scroll (with its `--keyboard-height` scroll-padding) to reveal the field.
|
|
146
151
|
Read as a plain class/var, so the library keeps no dependency on Capacitor.
|
|
147
|
-
|
|
148
|
-
explicit `sizeHeight` sheets
|
|
149
|
-
|
|
150
|
-
|
|
152
|
+
Uses `min-height` (not `height`) so it beats the inline `[style.height]` the shell binds for
|
|
153
|
+
FULL-size / explicit `sizeHeight` sheets WITHOUT `!important` — a larger `min-height` wins over
|
|
154
|
+
`height`, and `max-height: 92vh` caps a taller inline height back down — AND so the growth can
|
|
155
|
+
be smoothly transitioned (see the `.modal-container` transition above). The app only adds
|
|
156
|
+
`.mn-keyboard-open` when the focused field would actually be behind the keyboard, so a modal
|
|
157
|
+
whose field is already visible never grows. */
|
|
151
158
|
:host-context(.mn-keyboard-open).mobile-sheet .modal-container {
|
|
152
|
-
height: 92vh
|
|
159
|
+
min-height: 92vh;
|
|
153
160
|
}
|
|
154
161
|
|
|
155
162
|
/* Override whichever anim-* open animation was selected */
|
|
@@ -8,6 +8,8 @@ import { Observable, BehaviorSubject, Subject } from 'rxjs';
|
|
|
8
8
|
import * as mn_angular_lib from 'mn-angular-lib';
|
|
9
9
|
import * as _angular_forms from '@angular/forms';
|
|
10
10
|
import { ValidationErrors, NgControl, AbstractControl, ValidatorFn, AsyncValidatorFn, FormGroup } from '@angular/forms';
|
|
11
|
+
import { LucideIconData } from '@lucide/angular';
|
|
12
|
+
export { LucideIconData } from '@lucide/angular';
|
|
11
13
|
import { SafeHtml } from '@angular/platform-browser';
|
|
12
14
|
import { HttpStatusCode, HttpHeaders, HttpErrorResponse, HttpClient, HttpResponse, HttpParams } from '@angular/common/http';
|
|
13
15
|
|
|
@@ -2409,6 +2411,20 @@ type MnMultiSelectProps<TValue = unknown> = {
|
|
|
2409
2411
|
searchPlaceholder?: string;
|
|
2410
2412
|
/** Maximum number of items that can be selected (undefined = unlimited) */
|
|
2411
2413
|
maxSelections?: number;
|
|
2414
|
+
/**
|
|
2415
|
+
* Once the number of selected options is strictly greater than this value, the
|
|
2416
|
+
* trigger collapses to a single count summary instead of rendering every chip.
|
|
2417
|
+
* Opt-in: collapsing is active when this or `collapsePlaceholder` is set. When
|
|
2418
|
+
* collapsing is enabled but this is omitted, the effective threshold defaults to 5.
|
|
2419
|
+
*/
|
|
2420
|
+
collapseThreshold?: number;
|
|
2421
|
+
/**
|
|
2422
|
+
* Summary text shown when the trigger is collapsed. The `{count}` token is
|
|
2423
|
+
* replaced with the number of selected options (e.g. `"{count} selected"` →
|
|
2424
|
+
* `"18 selected"`). Setting this enables collapsing on its own; when omitted
|
|
2425
|
+
* while collapsing is active, `"{count} selected"` is used as the fallback.
|
|
2426
|
+
*/
|
|
2427
|
+
collapsePlaceholder?: string;
|
|
2412
2428
|
/** Size variant of the multi-select (default: 'md') */
|
|
2413
2429
|
size?: MnMultiSelectVariants['size'];
|
|
2414
2430
|
/** Border radius variant (default: 'md') */
|
|
@@ -2455,8 +2471,20 @@ declare class MnMultiSelect implements OnInit {
|
|
|
2455
2471
|
private readonly elRef;
|
|
2456
2472
|
private readonly lang;
|
|
2457
2473
|
private readonly destroyRef;
|
|
2474
|
+
private readonly renderer;
|
|
2458
2475
|
/** Reference to the trigger element for positioning the dropdown */
|
|
2459
2476
|
triggerRef: ElementRef<HTMLElement>;
|
|
2477
|
+
/** The panel element currently moved into `document.body`, if any. */
|
|
2478
|
+
private movedPanel;
|
|
2479
|
+
/**
|
|
2480
|
+
* The dropdown panel element, queried while it is rendered by the `@if` block.
|
|
2481
|
+
* The setter relocates the panel to `document.body` so that its `position: fixed`
|
|
2482
|
+
* coordinates resolve against the viewport rather than any transformed/filtered
|
|
2483
|
+
* ancestor (which would otherwise become the containing block and push the panel
|
|
2484
|
+
* to the middle of the screen — the root cause of the mis-positioning bug, also
|
|
2485
|
+
* broken on iOS). Cleanup is handled when the query clears on close/destroy.
|
|
2486
|
+
*/
|
|
2487
|
+
set dropdownRef(ref: ElementRef<HTMLElement> | undefined);
|
|
2460
2488
|
/** Currently selected values */
|
|
2461
2489
|
selectedValues: unknown[];
|
|
2462
2490
|
isOpen: boolean;
|
|
@@ -2473,6 +2501,7 @@ declare class MnMultiSelect implements OnInit {
|
|
|
2473
2501
|
private readonly builtInErrorMessages;
|
|
2474
2502
|
constructor();
|
|
2475
2503
|
ngOnInit(): void;
|
|
2504
|
+
onDocumentClick(event: Event): void;
|
|
2476
2505
|
private resolveConfig;
|
|
2477
2506
|
writeValue(val: unknown): void;
|
|
2478
2507
|
registerOnChange(fn: (val: unknown) => void): void;
|
|
@@ -2481,7 +2510,15 @@ declare class MnMultiSelect implements OnInit {
|
|
|
2481
2510
|
toggle(): void;
|
|
2482
2511
|
/** Calculates the fixed position for the dropdown based on the trigger element */
|
|
2483
2512
|
private updateDropdownPosition;
|
|
2484
|
-
|
|
2513
|
+
/** Closes the dropdown on Escape for keyboard accessibility. */
|
|
2514
|
+
onEscape(): void;
|
|
2515
|
+
/**
|
|
2516
|
+
* Move the dropdown panel to `document.body` when it appears, and detach it when
|
|
2517
|
+
* the query clears. Appending to the body root makes the panel immune to ancestor
|
|
2518
|
+
* `transform`/`filter`/`will-change`, so `position: fixed` anchors to the viewport
|
|
2519
|
+
* and the panel stays under its trigger. Idempotent and safe to call with `null`.
|
|
2520
|
+
*/
|
|
2521
|
+
private relocateDropdown;
|
|
2485
2522
|
/** Closes the dropdown when the page or a scrollable parent is scrolled */
|
|
2486
2523
|
onWindowScrollOrResize(): void;
|
|
2487
2524
|
toggleOption(option: MnMultiSelectOption): void;
|
|
@@ -2491,6 +2528,29 @@ declare class MnMultiSelect implements OnInit {
|
|
|
2491
2528
|
onSearch(term: string): void;
|
|
2492
2529
|
get filteredOptions(): MnMultiSelectOption[];
|
|
2493
2530
|
get selectedOptions(): MnMultiSelectOption[];
|
|
2531
|
+
/**
|
|
2532
|
+
* Whether the collapse-to-summary feature is opted into. Active when either
|
|
2533
|
+
* `collapsePlaceholder` or `collapseThreshold` is supplied; existing usages
|
|
2534
|
+
* with neither prop are unaffected.
|
|
2535
|
+
*/
|
|
2536
|
+
get collapseEnabled(): boolean;
|
|
2537
|
+
/**
|
|
2538
|
+
* The threshold above which the trigger collapses. Defaults to 5 when collapsing
|
|
2539
|
+
* is enabled via `collapsePlaceholder` alone (no explicit `collapseThreshold`).
|
|
2540
|
+
*/
|
|
2541
|
+
get effectiveCollapseThreshold(): number;
|
|
2542
|
+
/**
|
|
2543
|
+
* Whether the trigger should currently render the count summary instead of the
|
|
2544
|
+
* individual chips: only when collapsing is enabled and the number of selected
|
|
2545
|
+
* options exceeds the effective threshold.
|
|
2546
|
+
*/
|
|
2547
|
+
get isCollapsed(): boolean;
|
|
2548
|
+
/**
|
|
2549
|
+
* The summary text shown while collapsed, with the `{count}` token replaced by
|
|
2550
|
+
* the number of selected options. Falls back to `"{count} selected"` when no
|
|
2551
|
+
* `collapsePlaceholder` is provided.
|
|
2552
|
+
*/
|
|
2553
|
+
get collapseSummaryText(): string;
|
|
2494
2554
|
handleBlur(): void;
|
|
2495
2555
|
get control(): _angular_forms.AbstractControl<any, any, any> | null;
|
|
2496
2556
|
get showError(): boolean;
|
|
@@ -3951,11 +4011,23 @@ type ConfirmationActionConfig<TResult = unknown> = {
|
|
|
3951
4011
|
label: string;
|
|
3952
4012
|
style?: ActionStyle;
|
|
3953
4013
|
handler?: ModalResultHandler<TResult>;
|
|
4014
|
+
/**
|
|
4015
|
+
* Overrides the default leading icon for this action button. Pass a Lucide icon's
|
|
4016
|
+
* static data (e.g. `LucideTrash2.icon`). Only rendered when the modal's
|
|
4017
|
+
* `showActionIcons` is not explicitly `false`.
|
|
4018
|
+
*/
|
|
4019
|
+
icon?: LucideIconData;
|
|
3954
4020
|
};
|
|
3955
4021
|
type CancellationActionConfig = {
|
|
3956
4022
|
label: string;
|
|
3957
4023
|
style?: ActionStyle;
|
|
3958
4024
|
reason?: ModalCloseReason;
|
|
4025
|
+
/**
|
|
4026
|
+
* Overrides the default leading icon for this action button. Pass a Lucide icon's
|
|
4027
|
+
* static data (e.g. `LucideX.icon`). Only rendered when the modal's
|
|
4028
|
+
* `showActionIcons` is not explicitly `false`.
|
|
4029
|
+
*/
|
|
4030
|
+
icon?: LucideIconData;
|
|
3959
4031
|
};
|
|
3960
4032
|
type ModalFooterAction<TResult = unknown> = {
|
|
3961
4033
|
label: string;
|
|
@@ -3970,6 +4042,12 @@ type ModalFooterAction<TResult = unknown> = {
|
|
|
3970
4042
|
handler?: (modalRef: ModalRef<TResult>) => Promise<void> | void;
|
|
3971
4043
|
/** Whether the button is disabled */
|
|
3972
4044
|
disabled?: boolean;
|
|
4045
|
+
/**
|
|
4046
|
+
* Overrides the default leading icon for this action button. Pass a Lucide icon's
|
|
4047
|
+
* static data (e.g. `LucideCheck.icon`). Defaults are derived from `style` when
|
|
4048
|
+
* omitted. Only rendered when the modal's `showActionIcons` is not explicitly `false`.
|
|
4049
|
+
*/
|
|
4050
|
+
icon?: LucideIconData;
|
|
3973
4051
|
};
|
|
3974
4052
|
type ModalPollingConfig<TResult = unknown> = {
|
|
3975
4053
|
/** Polling interval in milliseconds */
|
|
@@ -4025,6 +4103,8 @@ type BaseModalConfig<TResult = unknown> = {
|
|
|
4025
4103
|
resultType?: TResult;
|
|
4026
4104
|
/** Custom footer actions (overrides default footer) */
|
|
4027
4105
|
footerActions?: ModalFooterAction<TResult>[];
|
|
4106
|
+
/** Whether modal action buttons render their icons. Defaults to true. */
|
|
4107
|
+
showActionIcons?: boolean;
|
|
4028
4108
|
/** Polling configuration for periodic async operations */
|
|
4029
4109
|
polling?: ModalPollingConfig<TResult>;
|
|
4030
4110
|
/** Handler called when the modal is cancelled or dismissed */
|
|
@@ -4096,6 +4176,39 @@ type CustomModalConfig<TResult = unknown> = {
|
|
|
4096
4176
|
} & BaseModalConfig<TResult>;
|
|
4097
4177
|
type ModalConfig<TResult = unknown, TModel = unknown> = WizardModalConfig<TResult> | FormModalConfig<TModel, TResult> | ConfirmationModalConfig<TResult> | CustomModalConfig<TResult>;
|
|
4098
4178
|
|
|
4179
|
+
/**
|
|
4180
|
+
* Default leading-icon size (px) for modal action buttons, matching the standard
|
|
4181
|
+
* (`md`) button. Small (`sm`) buttons use {@link MODAL_ACTION_ICON_SIZE_SM}.
|
|
4182
|
+
*/
|
|
4183
|
+
declare const MODAL_ACTION_ICON_SIZE = 18;
|
|
4184
|
+
/** Leading-icon size (px) for `sm`-sized modal action buttons. */
|
|
4185
|
+
declare const MODAL_ACTION_ICON_SIZE_SM = 16;
|
|
4186
|
+
/**
|
|
4187
|
+
* The canonical Lucide icon data used as defaults across all modal action buttons.
|
|
4188
|
+
* Each value is a Lucide icon's static `.icon` data, rendered via the dynamic
|
|
4189
|
+
* `svg[lucideIcon]` directive so no icon has to be registered in `MN_ICON_MAP`.
|
|
4190
|
+
*/
|
|
4191
|
+
declare const MN_MODAL_ACTION_ICONS: {
|
|
4192
|
+
/** Affirmative action (confirm / submit / complete). */
|
|
4193
|
+
readonly confirm: LucideIconData;
|
|
4194
|
+
/** Destructive action (danger style). */
|
|
4195
|
+
readonly danger: LucideIconData;
|
|
4196
|
+
/** Cancel / dismiss / close action. */
|
|
4197
|
+
readonly cancel: LucideIconData;
|
|
4198
|
+
/** Wizard forward navigation (rendered trailing). */
|
|
4199
|
+
readonly next: LucideIconData;
|
|
4200
|
+
/** Wizard backward navigation. */
|
|
4201
|
+
readonly back: LucideIconData;
|
|
4202
|
+
};
|
|
4203
|
+
/**
|
|
4204
|
+
* Resolves the default action-button icon from its {@link ActionStyle}. Used by
|
|
4205
|
+
* generic footer actions and any confirm button that has no explicit icon:
|
|
4206
|
+
* `DANGER` → trash, `PRIMARY` → check, everything else (`GHOST`/`SECONDARY`) → cross.
|
|
4207
|
+
* @param style The action's style, if any.
|
|
4208
|
+
* @returns The Lucide icon data to render.
|
|
4209
|
+
*/
|
|
4210
|
+
declare function defaultIconForStyle(style?: ActionStyle): LucideIconData;
|
|
4211
|
+
|
|
4099
4212
|
/**
|
|
4100
4213
|
* Intensity of a haptic impact. Mirrors the three impact weights exposed by most
|
|
4101
4214
|
* native haptic engines (e.g. Capacitor Haptics `ImpactStyle`) without binding the
|
|
@@ -4694,6 +4807,14 @@ declare class MnFormBodyComponent<TModel = unknown, TResult = TModel> implements
|
|
|
4694
4807
|
* @param field The field whose existing image was cleared.
|
|
4695
4808
|
*/
|
|
4696
4809
|
onFileCleared(field: FormFieldConfig<TModel>): void;
|
|
4810
|
+
/** Icon size (px) for the footer action buttons. */
|
|
4811
|
+
readonly actionIconSize = 18;
|
|
4812
|
+
/** Whether action-button icons should render on this modal (defaults to true). */
|
|
4813
|
+
get showActionIcons(): boolean;
|
|
4814
|
+
/** The leading icon for the submit button, or null when icons are disabled. */
|
|
4815
|
+
get submitIcon(): LucideIconData | null;
|
|
4816
|
+
/** The leading icon for the cancel button, or null when icons are disabled. */
|
|
4817
|
+
get cancelIcon(): LucideIconData | null;
|
|
4697
4818
|
submit(): Promise<void>;
|
|
4698
4819
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnFormBodyComponent<any, any>, never>;
|
|
4699
4820
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnFormBodyComponent<any, any>, "mn-form-body", never, { "config": { "alias": "config"; "required": false; }; "modalRef": { "alias": "modalRef"; "required": false; }; "hideFooter": { "alias": "hideFooter"; "required": false; }; "hideCustomBody": { "alias": "hideCustomBody"; "required": false; }; }, { "formStatusChange": "formStatusChange"; }, never, never, true, never>;
|
|
@@ -4759,6 +4880,20 @@ declare class MnWizardBodyComponent implements OnInit, AfterViewInit, OnDestroy
|
|
|
4759
4880
|
get canGoBack(): boolean;
|
|
4760
4881
|
get canGoNext(): boolean;
|
|
4761
4882
|
get isLastStep(): boolean;
|
|
4883
|
+
/** Icon size (px) for the wizard action buttons. */
|
|
4884
|
+
readonly actionIconSize = 18;
|
|
4885
|
+
/** Whether action-button icons should render on this wizard (defaults to true). */
|
|
4886
|
+
get showActionIcons(): boolean;
|
|
4887
|
+
/**
|
|
4888
|
+
* The leading icon for the back button, or null when icons are disabled.
|
|
4889
|
+
* Shows a back arrow when navigation is possible, otherwise a cross (the
|
|
4890
|
+
* button acts as "Close" on the first step).
|
|
4891
|
+
*/
|
|
4892
|
+
get backIcon(): LucideIconData | null;
|
|
4893
|
+
/** The trailing icon for the next button, or null when icons are disabled. */
|
|
4894
|
+
get nextIcon(): LucideIconData | null;
|
|
4895
|
+
/** The leading icon for the complete button, or null when icons are disabled. */
|
|
4896
|
+
get completeIcon(): LucideIconData | null;
|
|
4762
4897
|
/** Index of the current step for the progress line */
|
|
4763
4898
|
get currentProgressIndex(): number;
|
|
4764
4899
|
get isFreeFlow(): boolean;
|
|
@@ -4813,6 +4948,17 @@ declare class MnConfirmationBodyComponent<TResult = boolean> implements OnInit {
|
|
|
4813
4948
|
getButtonColor(style: ActionStyle): 'primary' | 'secondary' | 'danger' | 'warning' | 'success';
|
|
4814
4949
|
getButtonVariant(style: ActionStyle): 'fill' | 'outline' | 'text';
|
|
4815
4950
|
get isConfirmDisabled(): boolean;
|
|
4951
|
+
/** Icon size (px) for the action buttons. */
|
|
4952
|
+
readonly actionIconSize = 18;
|
|
4953
|
+
/** Whether action-button icons should render on this modal (defaults to true). */
|
|
4954
|
+
get showActionIcons(): boolean;
|
|
4955
|
+
/**
|
|
4956
|
+
* The leading icon for the confirm button, or null when icons are disabled.
|
|
4957
|
+
* Uses the per-action override, else defaults by style (DANGER → trash, else check).
|
|
4958
|
+
*/
|
|
4959
|
+
get confirmIcon(): LucideIconData | null;
|
|
4960
|
+
/** The leading icon for the cancel button, or null when icons are disabled. */
|
|
4961
|
+
get cancelIcon(): LucideIconData | null;
|
|
4816
4962
|
static ɵfac: i0.ɵɵFactoryDeclaration<MnConfirmationBodyComponent<any>, never>;
|
|
4817
4963
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnConfirmationBodyComponent<any>, "mn-confirmation-body", never, { "config": { "alias": "config"; "required": false; }; "modalRef": { "alias": "modalRef"; "required": false; }; }, {}, never, never, true, never>;
|
|
4818
4964
|
}
|
|
@@ -6308,5 +6454,5 @@ type MnPreviewMessage = {
|
|
|
6308
6454
|
*/
|
|
6309
6455
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
6310
6456
|
|
|
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 };
|
|
6457
|
+
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 };
|
|
6312
6458
|
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 };
|