mn-angular-lib 1.0.143 → 1.0.145
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
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
/*
|
|
2
|
+
The mobile bottom-sheet chrome (anchoring, slide animation, backdrop, safe-area inset)
|
|
3
|
+
lives in the shared mn-bottom-sheet component, which this dropdown projects its item
|
|
4
|
+
list into. No component-local styles are needed — layout is expressed entirely through
|
|
5
|
+
the template's Tailwind classes.
|
|
6
|
+
*/
|
|
@@ -2847,6 +2847,226 @@ declare class MnMultiSelect implements OnInit {
|
|
|
2847
2847
|
static ɵcmp: i0.ɵɵComponentDeclaration<MnMultiSelect, "mn-lib-multi-select", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
2848
2848
|
}
|
|
2849
2849
|
|
|
2850
|
+
/**
|
|
2851
|
+
* Layout variants for the ⋯ trigger button. Kept deliberately small: the trigger is
|
|
2852
|
+
* an icon affordance, so it only exposes the knobs a consumer realistically retunes
|
|
2853
|
+
* (size and border radius). Colour/hover come from the underlying mn-button.
|
|
2854
|
+
*/
|
|
2855
|
+
declare const mnDropdownTriggerVariants: tailwind_variants.TVReturnType<{
|
|
2856
|
+
size: {
|
|
2857
|
+
sm: string;
|
|
2858
|
+
md: string;
|
|
2859
|
+
lg: string;
|
|
2860
|
+
};
|
|
2861
|
+
borderRadius: {
|
|
2862
|
+
none: string;
|
|
2863
|
+
xs: string;
|
|
2864
|
+
sm: string;
|
|
2865
|
+
md: string;
|
|
2866
|
+
lg: string;
|
|
2867
|
+
xl: string;
|
|
2868
|
+
full: string;
|
|
2869
|
+
};
|
|
2870
|
+
}, undefined, "inline-flex items-center justify-center text-base-content/70 cursor-pointer", {
|
|
2871
|
+
size: {
|
|
2872
|
+
sm: string;
|
|
2873
|
+
md: string;
|
|
2874
|
+
lg: string;
|
|
2875
|
+
};
|
|
2876
|
+
borderRadius: {
|
|
2877
|
+
none: string;
|
|
2878
|
+
xs: string;
|
|
2879
|
+
sm: string;
|
|
2880
|
+
md: string;
|
|
2881
|
+
lg: string;
|
|
2882
|
+
xl: string;
|
|
2883
|
+
full: string;
|
|
2884
|
+
};
|
|
2885
|
+
}, undefined, tailwind_variants.TVReturnType<{
|
|
2886
|
+
size: {
|
|
2887
|
+
sm: string;
|
|
2888
|
+
md: string;
|
|
2889
|
+
lg: string;
|
|
2890
|
+
};
|
|
2891
|
+
borderRadius: {
|
|
2892
|
+
none: string;
|
|
2893
|
+
xs: string;
|
|
2894
|
+
sm: string;
|
|
2895
|
+
md: string;
|
|
2896
|
+
lg: string;
|
|
2897
|
+
xl: string;
|
|
2898
|
+
full: string;
|
|
2899
|
+
};
|
|
2900
|
+
}, undefined, "inline-flex items-center justify-center text-base-content/70 cursor-pointer", unknown, unknown, undefined>>;
|
|
2901
|
+
type MnDropdownTriggerVariants = VariantProps<typeof mnDropdownTriggerVariants>;
|
|
2902
|
+
|
|
2903
|
+
/**
|
|
2904
|
+
* A single command in a {@link MnDropdownProps} menu. Unlike a select option it holds
|
|
2905
|
+
* no value — choosing it fires {@link run} and closes the menu. This is a *command*
|
|
2906
|
+
* menu, not a value picker, which is why mn-dropdown is not a ControlValueAccessor.
|
|
2907
|
+
*/
|
|
2908
|
+
type MnDropdownAction = {
|
|
2909
|
+
/** Visible label. Falls back to `labelKey`'s resolved text when omitted. */
|
|
2910
|
+
label?: string;
|
|
2911
|
+
/**
|
|
2912
|
+
* Translation key for the label, resolved via MnLanguageService and kept updated on
|
|
2913
|
+
* locale change. Takes precedence over {@link label} when it resolves to a value.
|
|
2914
|
+
*/
|
|
2915
|
+
labelKey?: string;
|
|
2916
|
+
/**
|
|
2917
|
+
* Optional leading icon, supplied as a template so the consumer keeps full control
|
|
2918
|
+
* over which icon set is used (a lucide `<svg>`, an `<mn-icon>`, an emoji…).
|
|
2919
|
+
*/
|
|
2920
|
+
icon?: TemplateRef<unknown>;
|
|
2921
|
+
/** Invoked when the item is chosen. The menu closes immediately afterwards. */
|
|
2922
|
+
run: () => void;
|
|
2923
|
+
/** When true the item is shown dimmed and cannot be chosen. */
|
|
2924
|
+
disabled?: boolean;
|
|
2925
|
+
/** Renders the item in a destructive style (e.g. a "Delete" action). */
|
|
2926
|
+
danger?: boolean;
|
|
2927
|
+
};
|
|
2928
|
+
/**
|
|
2929
|
+
* Configuration for {@link MnDropdown}. Everything is passed through the single
|
|
2930
|
+
* `props` input, mirroring mn-select / mn-multi-select.
|
|
2931
|
+
*/
|
|
2932
|
+
type MnDropdownProps = {
|
|
2933
|
+
/** Unique identifier, required for the trigger/menu accessibility wiring. */
|
|
2934
|
+
id: string;
|
|
2935
|
+
/** The commands rendered in the menu, in order. */
|
|
2936
|
+
actions: MnDropdownAction[];
|
|
2937
|
+
/** Accessible label for the ⋯ trigger button. Falls back to a translated default. */
|
|
2938
|
+
ariaLabel?: string;
|
|
2939
|
+
/** Translation key for {@link ariaLabel}. Resolved via MnLanguageService. */
|
|
2940
|
+
ariaLabelKey?: string;
|
|
2941
|
+
/**
|
|
2942
|
+
* Heading shown above the items — on mobile the sheet covers its own trigger, so a
|
|
2943
|
+
* title tells the user what the menu belongs to. Optional on desktop.
|
|
2944
|
+
*/
|
|
2945
|
+
menuLabel?: string;
|
|
2946
|
+
/** Translation key for {@link menuLabel}. Resolved via MnLanguageService. */
|
|
2947
|
+
menuLabelKey?: string;
|
|
2948
|
+
/**
|
|
2949
|
+
* Whether the menu renders as a bottom sheet on small screens (< 640px). Defaults
|
|
2950
|
+
* to true; set false to keep the trigger-anchored popover on mobile too.
|
|
2951
|
+
*/
|
|
2952
|
+
mobileSheet?: boolean;
|
|
2953
|
+
/** Size variant of the ⋯ trigger (default: 'md'). */
|
|
2954
|
+
size?: MnDropdownTriggerVariants['size'];
|
|
2955
|
+
/** Border-radius variant of the ⋯ trigger (default: 'md'). */
|
|
2956
|
+
borderRadius?: MnDropdownTriggerVariants['borderRadius'];
|
|
2957
|
+
};
|
|
2958
|
+
/**
|
|
2959
|
+
* Config resolved via {@link MnConfigService} under the `mn-dropdown` section, so an
|
|
2960
|
+
* app can set shared accessible labels once instead of per instance.
|
|
2961
|
+
*/
|
|
2962
|
+
type MnDropdownUIConfig = {
|
|
2963
|
+
/** Default accessible label for the ⋯ trigger (falls back to "Actions"). */
|
|
2964
|
+
ariaLabel?: string;
|
|
2965
|
+
/** Default heading for the menu/sheet. */
|
|
2966
|
+
menuLabel?: string;
|
|
2967
|
+
/** Accessible label for the mobile sheet's close button (falls back to "Close"). */
|
|
2968
|
+
closeLabel?: string;
|
|
2969
|
+
};
|
|
2970
|
+
|
|
2971
|
+
declare const MN_DROPDOWN_CONFIG: InjectionToken<MnDropdownUIConfig>;
|
|
2972
|
+
/**
|
|
2973
|
+
* A ⋯ command menu. The trigger opens a `role="menu"` list of {@link MnDropdownAction}s
|
|
2974
|
+
* that each fire and dismiss on choice — a *command* menu, not a value picker, so it is
|
|
2975
|
+
* intentionally not a ControlValueAccessor.
|
|
2976
|
+
*
|
|
2977
|
+
* Presentation mirrors mn-multi-select: an anchored popover on desktop and the shared
|
|
2978
|
+
* {@link MnBottomSheet} on mobile (< 640px). Both the popover and the sheet host are
|
|
2979
|
+
* portalled to `document.body` so their `position: fixed` anchors to the viewport rather
|
|
2980
|
+
* than any transformed/filtered ancestor (a table cell, a card) — the same root-cause fix
|
|
2981
|
+
* the multi-select applies.
|
|
2982
|
+
*/
|
|
2983
|
+
declare class MnDropdown implements OnInit {
|
|
2984
|
+
props: MnDropdownProps;
|
|
2985
|
+
protected uiConfig: MnDropdownUIConfig;
|
|
2986
|
+
private readonly configService;
|
|
2987
|
+
private readonly sectionPath;
|
|
2988
|
+
private readonly explicitInstanceId;
|
|
2989
|
+
private readonly elRef;
|
|
2990
|
+
private readonly lang;
|
|
2991
|
+
private readonly destroyRef;
|
|
2992
|
+
private readonly renderer;
|
|
2993
|
+
private readonly cdr;
|
|
2994
|
+
/** Reference to the trigger element for positioning the popover. Read as an
|
|
2995
|
+
* `ElementRef` because `button[mnButton]` is a component — the default query would
|
|
2996
|
+
* otherwise return the MnButton instance, which has no `nativeElement`. */
|
|
2997
|
+
triggerRef: ElementRef<HTMLElement>;
|
|
2998
|
+
/** Layout classes for the anchored popover panel. The mobile sheet is rendered by
|
|
2999
|
+
* mn-bottom-sheet instead, so it needs no branch here. */
|
|
3000
|
+
readonly panelClasses = "fixed z-9999 min-w-48 max-w-[min(20rem,90vw)] bg-base-100 border border-base-300 rounded-md shadow-lg py-1 max-h-[60vh] overflow-auto -translate-x-full";
|
|
3001
|
+
/** Tailwind's `sm` breakpoint — below this the menu renders as a bottom sheet.
|
|
3002
|
+
* Kept in step with the same constant in mn-bottom-sheet / mn-multi-select. */
|
|
3003
|
+
private static readonly SHEET_MAX_WIDTH;
|
|
3004
|
+
/** The anchored popover panel currently moved into `document.body`, if any. */
|
|
3005
|
+
private movedPanel;
|
|
3006
|
+
/** The bottom-sheet host currently moved into `document.body`, if any. */
|
|
3007
|
+
private movedSheet;
|
|
3008
|
+
/** Whether the viewport is currently narrow enough for the sheet layout. */
|
|
3009
|
+
private isNarrowViewport;
|
|
3010
|
+
/** Live breakpoint match, so rotating the device re-evaluates the layout. */
|
|
3011
|
+
private sheetMedia;
|
|
3012
|
+
/** The listener registered on `sheetMedia`, retained for teardown. */
|
|
3013
|
+
private sheetMediaListener;
|
|
3014
|
+
/** `document.body`'s inline `overflow` before the sheet locked it, restored on close. */
|
|
3015
|
+
private previousBodyOverflow;
|
|
3016
|
+
/** Watches the trigger while open, so the panel closes if the trigger is hidden. */
|
|
3017
|
+
private visibilityObserver;
|
|
3018
|
+
/** Capture-phase scroll listener installed while open, closing on any ancestor scroll. */
|
|
3019
|
+
private scrollCapture;
|
|
3020
|
+
isOpen: boolean;
|
|
3021
|
+
/** Popover position computed from the trigger's bounding rect. */
|
|
3022
|
+
dropdownStyle: {
|
|
3023
|
+
top: string;
|
|
3024
|
+
left: string;
|
|
3025
|
+
};
|
|
3026
|
+
/**
|
|
3027
|
+
* The popover panel, relocated to `document.body` on appearance (see mn-multi-select's
|
|
3028
|
+
* portal rationale) and detached when the query clears on close/destroy.
|
|
3029
|
+
*/
|
|
3030
|
+
set dropdownRef(ref: ElementRef<HTMLElement> | undefined);
|
|
3031
|
+
/**
|
|
3032
|
+
* The bottom-sheet host, relocated to `document.body` so its `position: fixed`
|
|
3033
|
+
* children anchor to the viewport rather than a transformed ancestor.
|
|
3034
|
+
*/
|
|
3035
|
+
set sheetRef(ref: ElementRef<HTMLElement> | undefined);
|
|
3036
|
+
ngOnInit(): void;
|
|
3037
|
+
private resolveConfig;
|
|
3038
|
+
private startWatchingViewport;
|
|
3039
|
+
private stopWatchingViewport;
|
|
3040
|
+
toggle(): void;
|
|
3041
|
+
/** The single close path, so every open-only listener is torn down with the panel. */
|
|
3042
|
+
close(): void;
|
|
3043
|
+
/** Whether the menu should currently render as a bottom sheet. */
|
|
3044
|
+
get isSheet(): boolean;
|
|
3045
|
+
/** Fires an action and closes. Ignores disabled items defensively. */
|
|
3046
|
+
select(action: MnDropdownAction): void;
|
|
3047
|
+
private updateDropdownPosition;
|
|
3048
|
+
private startWatchingTrigger;
|
|
3049
|
+
private stopWatchingTrigger;
|
|
3050
|
+
onDocumentClick(event: Event): void;
|
|
3051
|
+
onEscape(): void;
|
|
3052
|
+
onWindowScrollOrResize(): void;
|
|
3053
|
+
private lockBodyScroll;
|
|
3054
|
+
private unlockBodyScroll;
|
|
3055
|
+
private portal;
|
|
3056
|
+
/** The label shown for an action, preferring a resolved translation key. */
|
|
3057
|
+
actionLabel(action: MnDropdownAction): string;
|
|
3058
|
+
/** Accessible name for the ⋯ trigger button. */
|
|
3059
|
+
get triggerAriaLabel(): string;
|
|
3060
|
+
/** Heading shown above the menu/sheet, or null when none is configured. */
|
|
3061
|
+
get menuLabel(): string | null;
|
|
3062
|
+
/** Accessible label for the sheet's close button. */
|
|
3063
|
+
get closeLabel(): string;
|
|
3064
|
+
get triggerClasses(): string;
|
|
3065
|
+
get resolvedId(): string;
|
|
3066
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MnDropdown, never>;
|
|
3067
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MnDropdown, "mn-lib-dropdown", never, { "props": { "alias": "props"; "required": true; }; }, {}, never, never, true, never>;
|
|
3068
|
+
}
|
|
3069
|
+
|
|
2850
3070
|
/**
|
|
2851
3071
|
* A viewport-anchored bottom sheet — the mobile presentation shared by the modal
|
|
2852
3072
|
* shell and the multi-select dropdown.
|
|
@@ -3979,13 +4199,52 @@ type MnColumnFilter = {
|
|
|
3979
4199
|
* skeleton at 75% width is used (matching the previous default).
|
|
3980
4200
|
*/
|
|
3981
4201
|
type ColumnSkeleton = Partial<MnSkeletonProps> | TemplateRef<unknown>;
|
|
4202
|
+
/**
|
|
4203
|
+
* A per-row command rendered in an actions column (see {@link ColumnBase.actions}).
|
|
4204
|
+
* Unlike a cell it carries no display value — choosing it invokes {@link run} with the
|
|
4205
|
+
* row. The table renders actions inline as buttons and, when there are
|
|
4206
|
+
* {@link ColumnBase.actionsCollapseThreshold} or more, collapses them into a ⋯ menu
|
|
4207
|
+
* (mn-dropdown) once the table is narrower than 450px.
|
|
4208
|
+
*/
|
|
4209
|
+
type MnTableRowAction<T> = {
|
|
4210
|
+
/** Visible label. Falls back to `labelKey`'s resolved text when omitted. */
|
|
4211
|
+
label?: string;
|
|
4212
|
+
/** Translation key for the label, resolved via MnLanguageService and kept updated on locale change. */
|
|
4213
|
+
labelKey?: string;
|
|
4214
|
+
/** Optional leading icon, supplied as a template (a lucide `<svg>`, an `<mn-icon>`, …). */
|
|
4215
|
+
icon?: TemplateRef<unknown>;
|
|
4216
|
+
/** Invoked with the row when the action is chosen. */
|
|
4217
|
+
run: (row: T) => void;
|
|
4218
|
+
/** Predicate deciding whether the action is disabled for a given row. */
|
|
4219
|
+
disabled?: (row: T) => boolean;
|
|
4220
|
+
/** Renders the action in a destructive style (e.g. "Delete"). */
|
|
4221
|
+
danger?: boolean;
|
|
4222
|
+
};
|
|
3982
4223
|
/** Everything about a column that is independent of filtering. */
|
|
3983
4224
|
type ColumnBase<T> = {
|
|
3984
4225
|
key: string;
|
|
3985
4226
|
header: string | TemplateRef<unknown>;
|
|
3986
4227
|
/** Translation key for the column header. When set, mn-table resolves it via MnLanguageService and keeps it updated on locale change. */
|
|
3987
4228
|
headerKey?: string;
|
|
3988
|
-
|
|
4229
|
+
/**
|
|
4230
|
+
* How a data cell is rendered — a string accessor or a `TemplateRef`. Optional only
|
|
4231
|
+
* because an {@link actions} column renders commands instead of a value; every value
|
|
4232
|
+
* column must set it.
|
|
4233
|
+
*/
|
|
4234
|
+
cell?: ((row: T) => string) | TemplateRef<unknown>;
|
|
4235
|
+
/**
|
|
4236
|
+
* Turns this column into an actions column: per-row command buttons rendered inline,
|
|
4237
|
+
* automatically collapsing into a ⋯ menu (mn-dropdown) once the table is narrower than
|
|
4238
|
+
* 450px **and** there are at least {@link actionsCollapseThreshold} actions. When set,
|
|
4239
|
+
* {@link cell} is ignored.
|
|
4240
|
+
*/
|
|
4241
|
+
actions?: MnTableRowAction<T>[];
|
|
4242
|
+
/**
|
|
4243
|
+
* Number of {@link actions} at or above which the inline buttons collapse to a ⋯ menu
|
|
4244
|
+
* on a narrow table. Defaults to 3 — one or two buttons still fit on a phone, a longer
|
|
4245
|
+
* list does not.
|
|
4246
|
+
*/
|
|
4247
|
+
actionsCollapseThreshold?: number;
|
|
3989
4248
|
/** Alternative cell renderer shown below the given breakpoint. When set, `cell` is hidden below this breakpoint and `cellSm` is shown instead. */
|
|
3990
4249
|
cellSm?: {
|
|
3991
4250
|
below: 'sm' | 'md' | 'lg';
|
|
@@ -4337,6 +4596,24 @@ declare class MnTable<T = object> extends MnSelectableCollectionBase<T, TableDat
|
|
|
4337
4596
|
getCellValue(column: ColumnDefinition<T>, row: T): string;
|
|
4338
4597
|
/** Returns the small-screen cell value for a column with cellSm defined. */
|
|
4339
4598
|
getCellSmValue(column: ColumnDefinition<T>, row: T): string;
|
|
4599
|
+
/**
|
|
4600
|
+
* Whether an actions column should offer the collapsing ⋯ variant: only when it has at
|
|
4601
|
+
* least its threshold's worth of actions (default 3). Below that, the inline buttons
|
|
4602
|
+
* stay put at every width — one or two fit on a phone. The width switch itself is a
|
|
4603
|
+
* pure container query in the template; this only decides whether to render the ⋯ path
|
|
4604
|
+
* at all.
|
|
4605
|
+
*/
|
|
4606
|
+
shouldCollapseActions(column: ColumnDefinition<T>): boolean;
|
|
4607
|
+
/** The resolved label for an inline action button (translation key wins once resolved). */
|
|
4608
|
+
rowActionLabel(action: MnTableRowAction<T>): string;
|
|
4609
|
+
/** Whether an action is disabled for the given row. */
|
|
4610
|
+
isRowActionDisabled(action: MnTableRowAction<T>, row: T): boolean;
|
|
4611
|
+
/** Invokes an action for a row. */
|
|
4612
|
+
runRowAction(action: MnTableRowAction<T>, row: T): void;
|
|
4613
|
+
/** A stable, unique element id for a row's actions dropdown (aria wiring). */
|
|
4614
|
+
actionsDropdownId(column: ColumnDefinition<T>, row: T): string;
|
|
4615
|
+
/** Maps a column's actions to mn-dropdown commands, binding the row into each. */
|
|
4616
|
+
rowDropdownActions(column: ColumnDefinition<T>, row: T): MnDropdownAction[];
|
|
4340
4617
|
trackByKey: (_index: number, column: ColumnDefinition<T>) => string;
|
|
4341
4618
|
/** True when the table is narrower than the filter-collapse breakpoint. */
|
|
4342
4619
|
private isFilterViewport;
|
|
@@ -8081,5 +8358,5 @@ type MnPreviewMessage = {
|
|
|
8081
8358
|
*/
|
|
8082
8359
|
declare function enableMnPreviewMode(configService: MnConfigService, langService: MnLanguageService, allowedOrigins?: string[]): void;
|
|
8083
8360
|
|
|
8084
|
-
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, MnBottomSheet, MnBreadcrumbs, 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, MnRichTextEditor, 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, defaultFilterPredicate, defaultIconForStyle, defaultTextAdapter, emptyFilterValue, enableMnPreviewMode, isFilterValueActive, isTranslatable, matchesColumnFilter, mnAlertVariants, mnBadgeVariants, mnBreadcrumbsVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig, resolveFilterableValue };
|
|
8085
|
-
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnBase, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnFilterValue, 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, MnBreadcrumbItem, MnBreadcrumbsData, MnBreadcrumbsVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnColumnFilter, 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, MnRichTextEditorControl, MnRichTextEditorLabels, MnRichTextEditorToolbar, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTableFilterLabels, 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 };
|
|
8361
|
+
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_DROPDOWN_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, MnBottomSheet, MnBreadcrumbs, MnButton, MnCheckbox, MnCollectionBase, MnCollectionPagination, MnCollectionState, MnConfigService, MnConfirmationBodyComponent, MnCustomBodyHostComponent, MnDateSelectorBar, MnDatetime, MnDropdown, MnDualHorizontalImage, MnFileInput, MnFormBodyComponent, MnGrid, MnHiddenBelowDirective, MnHttpService, MnIcon, MnIconAttributes, MnInformationCard, MnInputField, MnInstanceDirective, MnLanguageService, MnList, MnModalRef, MnModalService, MnModalShellComponent, MnMultiSelect, MnRichTextEditor, 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, defaultFilterPredicate, defaultIconForStyle, defaultTextAdapter, emptyFilterValue, enableMnPreviewMode, isFilterValueActive, isTranslatable, matchesColumnFilter, mnAlertVariants, mnBadgeVariants, mnBreadcrumbsVariants, mnButtonVariants, mnCheckboxVariants, mnCheckboxWrapperVariants, mnDatetimeVariants, mnDropdownTriggerVariants, mnFileInputVariants, mnIconVariants, mnInformationCardVariants, mnInputFieldVariants, mnMultiSelectVariants, mnSelectVariants, mnSkeletonVariants, mnTextareaVariants, numberAdapter, pickAdapter, provideMnAlerts, provideMnCalendarConfig, provideMnComponentConfig, provideMnConfig, provideMnLanguage, resolveCalendarConfig, resolveFilterableValue };
|
|
8362
|
+
export type { AnimationOptions, ApiError, BaseModalConfig, CalendarButton, CalendarConfig, CalendarDateFormatter, CalendarEvent, CalendarEventData, CancellationActionConfig, CheckboxFieldConfig, ColorFieldConfig, ColorPreset, ColumnBase, ColumnDay, ColumnDefinition, ColumnFilterOption, ColumnFilterState, ColumnFilterType, ColumnFilterValue, 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, MnBreadcrumbItem, MnBreadcrumbsData, MnBreadcrumbsVariants, MnButtonTypes, MnButtonVariants, MnCheckboxErrorMessageData, MnCheckboxErrorMessagesData, MnCheckboxProps, MnCheckboxUIConfig, MnCheckboxVariants, MnCheckboxWrapperVariants, MnCollectionDataSource, MnCollectionLabels, MnColumnFilter, MnConfigFile, MnConfigSettings, MnConfigValue, MnDatetimeErrorMessageData, MnDatetimeErrorMessagesData, MnDatetimeMode, MnDatetimeProps, MnDatetimeUIConfig, MnDatetimeVariants, MnDomAttrs, MnDropdownAction, MnDropdownProps, MnDropdownTriggerVariants, MnDropdownUIConfig, 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, MnRichTextEditorControl, MnRichTextEditorLabels, MnRichTextEditorToolbar, MnSelectErrorMessageData, MnSelectErrorMessagesData, MnSelectOption, MnSelectProps, MnSelectUIConfig, MnSelectVariants, MnSelectableCollectionDataSource, MnShowInput, MnSkeletonProps, MnSkeletonShape, MnSkeletonVariantProps, MnTabDataSource, MnTabItem, MnTableFilterLabels, MnTableRowAction, 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 };
|