@mozaic-ds/vue 2.11.0 → 2.13.0
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/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +791 -353
- package/dist/mozaic-vue.js +2945 -2404
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +5 -5
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +7 -6
- package/src/components/{usingPresets.mdx → BrandPresets.mdx} +2 -2
- package/src/components/Changelog.mdx +19 -0
- package/src/components/Color.mdx +226 -0
- package/src/components/Contributing.mdx +12 -6
- package/src/components/GettingStarted.mdx +1 -1
- package/src/components/Icon.stories.ts +134 -0
- package/src/components/Welcome.mdx +49 -0
- package/src/components/accordionlist/MAccordionList.spec.ts +136 -0
- package/src/components/accordionlist/MAccordionList.stories.ts +123 -0
- package/src/components/accordionlist/MAccordionList.vue +91 -0
- package/src/components/accordionlist/README.md +24 -0
- package/src/components/accordionlist/m-accordion-list.const.ts +9 -0
- package/src/components/accordionlistitem/MAccordionListItem.spec.ts +123 -0
- package/src/components/accordionlistitem/MAccordionListItem.vue +95 -0
- package/src/components/accordionlistitem/README.md +23 -0
- package/src/components/actionbottombar/MActionBottomBar.spec.ts +52 -0
- package/src/components/actionbottombar/MActionBottomBar.stories.ts +162 -0
- package/src/components/actionbottombar/MActionBottomBar.vue +45 -0
- package/src/components/actionbottombar/README.md +31 -0
- package/src/components/actionlistbox/MActionListbox.spec.ts +134 -0
- package/src/components/actionlistbox/MActionListbox.stories.ts +74 -0
- package/src/components/actionlistbox/MActionListbox.vue +89 -0
- package/src/components/actionlistbox/README.md +25 -0
- package/src/components/avatar/MAvatar.stories.ts +1 -1
- package/src/components/breadcrumb/README.md +14 -0
- package/src/components/builtinmenu/MBuiltInMenu.spec.ts +111 -0
- package/src/components/builtinmenu/MBuiltInMenu.stories.ts +59 -0
- package/src/components/builtinmenu/MBuiltInMenu.vue +110 -0
- package/src/components/builtinmenu/README.md +32 -0
- package/src/components/button/MButton.spec.ts +1 -1
- package/src/components/button/MButton.stories.ts +165 -5
- package/src/components/button/README.md +33 -1
- package/src/components/callout/MCallout.spec.ts +7 -6
- package/src/components/callout/MCallout.stories.ts +1 -2
- package/src/components/carousel/MCarousel.spec.ts +1 -2
- package/src/components/carousel/MCarousel.stories.ts +2 -1
- package/src/components/carousel/MCarousel.vue +1 -2
- package/src/components/carousel/README.md +14 -0
- package/src/components/checkbox/README.md +14 -0
- package/src/components/checkboxgroup/README.md +14 -0
- package/src/components/checklistmenu/MCheckListMenu.spec.ts +77 -0
- package/src/components/checklistmenu/MCheckListMenu.stories.ts +47 -0
- package/src/components/checklistmenu/MCheckListMenu.vue +61 -0
- package/src/components/checklistmenu/README.md +32 -0
- package/src/components/circularprogressbar/README.md +15 -1
- package/src/components/datepicker/MDatepicker.vue +1 -1
- package/src/components/divider/README.md +22 -0
- package/src/components/drawer/MDrawer.vue +1 -2
- package/src/components/drawer/README.md +16 -0
- package/src/components/field/README.md +14 -0
- package/src/components/fileuploader/MFileUploader.spec.ts +304 -0
- package/src/components/fileuploader/MFileUploader.stories.ts +123 -0
- package/src/components/fileuploader/MFileUploader.vue +314 -0
- package/src/components/fileuploader/README.md +58 -0
- package/src/components/fileuploaderitem/MFileUploaderItem.spec.ts +91 -0
- package/src/components/fileuploaderitem/MFileUploaderItem.vue +180 -0
- package/src/components/fileuploaderitem/README.md +58 -0
- package/src/components/flag/README.md +1 -1
- package/src/components/iconbutton/MIconButton.spec.ts +1 -1
- package/src/components/iconbutton/MIconButton.stories.ts +116 -7
- package/src/components/iconbutton/README.md +25 -1
- package/src/components/kpiitem/MKpiItem.vue +5 -3
- package/src/components/linearprogressbarbuffer/README.md +14 -0
- package/src/components/link/MLink.stories.ts +1 -2
- package/src/components/link/README.md +14 -0
- package/src/components/loader/README.md +20 -0
- package/src/components/loadingoverlay/README.md +14 -0
- package/src/components/modal/MModal.stories.ts +1 -2
- package/src/components/modal/MModal.vue +1 -1
- package/src/components/modal/README.md +16 -0
- package/src/components/numberbadge/README.md +17 -1
- package/src/components/overlay/README.md +16 -0
- package/src/components/pagination/MPagination.vue +1 -2
- package/src/components/pagination/README.md +18 -0
- package/src/components/passwordinput/MPasswordInput.vue +1 -1
- package/src/components/passwordinput/README.md +14 -0
- package/src/components/phonenumber/MPhoneNumber.spec.ts +7 -6
- package/src/components/phonenumber/MPhoneNumber.vue +1 -1
- package/src/components/quantityselector/MQuantitySelector.vue +1 -2
- package/src/components/radio/README.md +14 -0
- package/src/components/radiogroup/README.md +14 -0
- package/src/components/select/README.md +14 -0
- package/src/components/starrating/MStarRating.spec.ts +1 -2
- package/src/components/starrating/MStarRating.vue +1 -3
- package/src/components/statusbadge/README.md +14 -0
- package/src/components/statusdot/README.md +14 -0
- package/src/components/statusmessage/MStatusMessage.spec.ts +6 -4
- package/src/components/statusmessage/MStatusMessage.vue +6 -4
- package/src/components/statusmessage/README.md +14 -0
- package/src/components/statusnotification/MStatusNotification.spec.ts +6 -4
- package/src/components/statusnotification/MStatusNotification.stories.ts +1 -1
- package/src/components/statusnotification/MStatusNotification.vue +7 -5
- package/src/components/statusnotification/README.md +14 -0
- package/src/components/stepperbottombar/MStepperBottomBar.spec.ts +134 -0
- package/src/components/stepperbottombar/MStepperBottomBar.stories.ts +72 -0
- package/src/components/stepperbottombar/MStepperBottomBar.vue +131 -0
- package/src/components/stepperbottombar/README.md +40 -0
- package/src/components/steppercompact/README.md +14 -0
- package/src/components/stepperinline/MStepperInline.spec.ts +78 -0
- package/src/components/stepperinline/MStepperInline.stories.ts +49 -0
- package/src/components/stepperinline/MStepperInline.vue +93 -0
- package/src/components/stepperinline/README.md +11 -0
- package/src/components/tabs/MTabs.stories.ts +1 -1
- package/src/components/tabs/README.md +16 -0
- package/src/components/tag/MTag.vue +1 -1
- package/src/components/tag/README.md +14 -0
- package/src/components/textinput/MTextInput.spec.ts +1 -1
- package/src/components/textinput/MTextInput.stories.ts +1 -1
- package/src/components/textinput/MTextInput.vue +1 -1
- package/src/components/toaster/MToaster.spec.ts +6 -4
- package/src/components/toaster/MToaster.vue +7 -5
- package/src/components/toaster/README.md +16 -0
- package/src/components/toggle/README.md +14 -0
- package/src/components/togglegroup/README.md +14 -0
- package/src/main.ts +8 -0
- package/src/components/Introduction.mdx +0 -100
- package/src/components/Support.mdx +0 -18
- package/src/components/usingIcons.mdx +0 -35
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -22,44 +22,69 @@ import { VNodeProps } from 'vue';
|
|
|
22
22
|
import { WatchOptions } from 'vue';
|
|
23
23
|
import { WatchStopHandle } from 'vue';
|
|
24
24
|
|
|
25
|
-
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}
|
|
26
|
-
|
|
27
|
-
},
|
|
25
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
26
|
+
"update:modelValue": (value: string[]) => any;
|
|
27
|
+
}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
29
|
+
}>, {
|
|
30
|
+
appearance: "standard" | "ghost";
|
|
31
|
+
behavior: "multiple" | "single";
|
|
32
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
28
33
|
|
|
29
|
-
declare const __VLS_component_10: DefineComponent<
|
|
30
|
-
|
|
31
|
-
|
|
34
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
35
|
+
|
|
36
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
|
|
37
|
+
|
|
38
|
+
declare const __VLS_component_12: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
39
|
+
"update:modelValue": (v: NormalizedFile[]) => any;
|
|
40
|
+
validation: (validationState: FilesValidationState) => any;
|
|
41
|
+
}, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
|
|
42
|
+
"onUpdate:modelValue"?: ((v: NormalizedFile[]) => any) | undefined;
|
|
43
|
+
onValidation?: ((validationState: FilesValidationState) => any) | undefined;
|
|
44
|
+
}>, {
|
|
45
|
+
title: string;
|
|
46
|
+
hasDragDrop: boolean;
|
|
47
|
+
showFilesList: boolean;
|
|
48
|
+
subtitle: string;
|
|
49
|
+
uploadButtonLabel: string;
|
|
50
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
51
|
+
fileInput: HTMLInputElement;
|
|
52
|
+
}, HTMLDivElement>;
|
|
53
|
+
|
|
54
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
|
|
32
55
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
56
|
+
type: "button" | "reset" | "submit";
|
|
57
|
+
size: "s" | "m" | "l";
|
|
33
58
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
34
59
|
|
|
35
|
-
declare const
|
|
60
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
|
|
61
|
+
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
36
62
|
size: "s" | "m";
|
|
37
63
|
iconPosition: "left" | "right";
|
|
38
|
-
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
39
64
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
40
65
|
|
|
41
|
-
declare const
|
|
66
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
42
67
|
"update:open": (value: boolean) => any;
|
|
43
|
-
}, string, PublicProps, Readonly<
|
|
68
|
+
}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
|
|
44
69
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
45
70
|
}>, {
|
|
46
71
|
scroll: boolean;
|
|
47
72
|
closable: boolean;
|
|
48
73
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
74
|
|
|
50
|
-
declare const
|
|
75
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
51
76
|
|
|
52
|
-
declare const
|
|
77
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
53
78
|
close: () => any;
|
|
54
|
-
}, string, PublicProps, Readonly<
|
|
79
|
+
}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
|
|
55
80
|
onClose?: (() => any) | undefined;
|
|
56
81
|
}>, {
|
|
57
82
|
status: "info" | "success" | "warning" | "error";
|
|
58
83
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
59
84
|
|
|
60
|
-
declare const
|
|
85
|
+
declare const __VLS_component_18: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
61
86
|
"update:modelValue": (value: string | number) => any;
|
|
62
|
-
}, string, PublicProps, Readonly<
|
|
87
|
+
}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
|
|
63
88
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
64
89
|
}>, {
|
|
65
90
|
size: "s" | "m";
|
|
@@ -67,49 +92,55 @@ clearLabel: string;
|
|
|
67
92
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
68
93
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
69
94
|
|
|
70
|
-
declare const
|
|
95
|
+
declare const __VLS_component_19: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
71
96
|
"update:open": (value: boolean) => any;
|
|
72
|
-
}, string, PublicProps, Readonly<
|
|
97
|
+
}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
|
|
73
98
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
74
99
|
}>, {
|
|
75
100
|
status: "info" | "success" | "warning" | "error";
|
|
76
101
|
closable: boolean;
|
|
77
102
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
78
103
|
|
|
79
|
-
declare const
|
|
104
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
105
|
+
|
|
106
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
|
|
80
107
|
position: "top" | "bottom" | "left" | "right";
|
|
81
108
|
pointer: boolean;
|
|
82
109
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
83
110
|
|
|
84
|
-
declare const
|
|
111
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
|
|
85
112
|
size: "s" | "m" | "l";
|
|
86
|
-
|
|
113
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
114
|
+
|
|
115
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
|
|
87
116
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
117
|
+
type: "button" | "reset" | "submit";
|
|
118
|
+
size: "s" | "m" | "l";
|
|
88
119
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
89
120
|
|
|
90
|
-
declare const
|
|
121
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
|
|
91
122
|
appearance: "standard" | "accent" | "tips" | "inverse";
|
|
92
123
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
93
124
|
|
|
94
|
-
declare const
|
|
125
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
95
126
|
previousButtonAriaLabel: string;
|
|
96
127
|
nextButtonAriaLabel: string;
|
|
97
128
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
98
129
|
contentContainer: HTMLDivElement;
|
|
99
130
|
}, HTMLDivElement>;
|
|
100
131
|
|
|
101
|
-
declare const
|
|
132
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
102
133
|
|
|
103
|
-
declare const
|
|
104
|
-
size: "s" | "m" | "l";
|
|
134
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
|
|
105
135
|
appearance: "primary" | "secondary" | "tertiary" | "inverse";
|
|
106
136
|
orientation: "vertical" | "horizontal";
|
|
137
|
+
size: "s" | "m" | "l";
|
|
107
138
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
108
139
|
|
|
109
|
-
declare const
|
|
140
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
110
141
|
back: () => any;
|
|
111
142
|
"update:open": (value: boolean) => any;
|
|
112
|
-
}, string, PublicProps, Readonly<
|
|
143
|
+
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
113
144
|
onBack?: (() => any) | undefined;
|
|
114
145
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
115
146
|
}>, {
|
|
@@ -118,24 +149,147 @@ scroll: boolean;
|
|
|
118
149
|
titleRef: HTMLHeadingElement;
|
|
119
150
|
}, any>;
|
|
120
151
|
|
|
121
|
-
|
|
152
|
+
/**
|
|
153
|
+
* An Accordion List is a component that organizes content into collapsible sections, allowing users to show or hide related information within a vertically stacked layout. This structure helps optimize space and improve readability by displaying only relevant content when needed. Accordion Lists are commonly used in FAQs, settings menus, and structured content navigation to enhance user experience and reduce visual clutter.
|
|
154
|
+
*/
|
|
155
|
+
declare type __VLS_Props = {
|
|
156
|
+
/**
|
|
157
|
+
* Defines the visual appearance of the button.
|
|
158
|
+
*/
|
|
159
|
+
appearance?: 'standard' | 'ghost';
|
|
160
|
+
/**
|
|
161
|
+
* Component behavior: `multiple` allows all items to be open simultaneously, `single` ensures only one item is open at a time. For native HTML implementation, the `single` behavior uses the HTML5 `name` attribute on `<details>` elements for browser-native exclusive behavior..
|
|
162
|
+
*/
|
|
163
|
+
behavior?: 'multiple' | 'single';
|
|
164
|
+
/**
|
|
165
|
+
* IDs of the Accordion items that are currently open. Updating this array controls which sections are expanded.
|
|
166
|
+
*/
|
|
167
|
+
modelValue?: string[];
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
/**
|
|
171
|
+
* A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options.
|
|
172
|
+
*/
|
|
173
|
+
declare type __VLS_Props_10 = {
|
|
174
|
+
/**
|
|
175
|
+
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
176
|
+
*/
|
|
177
|
+
id: string;
|
|
178
|
+
/**
|
|
179
|
+
* The name attribute for the checkbox element, typically used for form submission.
|
|
180
|
+
*/
|
|
181
|
+
name?: string;
|
|
182
|
+
/**
|
|
183
|
+
* The text label displayed next to the checkbox.
|
|
184
|
+
*/
|
|
185
|
+
label?: string;
|
|
186
|
+
/**
|
|
187
|
+
* The checkbox's checked state, bound via v-model.
|
|
188
|
+
*/
|
|
189
|
+
modelValue?: boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Sets the checkbox to an indeterminate state (partially selected).
|
|
192
|
+
*/
|
|
193
|
+
indeterminate?: boolean;
|
|
194
|
+
/**
|
|
195
|
+
* If `true`, applies an invalid state to the checkbox.
|
|
196
|
+
*/
|
|
197
|
+
isInvalid?: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* If `true`, disables the checkbox, making it non-interactive.
|
|
200
|
+
*/
|
|
201
|
+
disabled?: boolean;
|
|
202
|
+
/**
|
|
203
|
+
* If `true`, indent the checkbox.
|
|
204
|
+
*/
|
|
205
|
+
indented?: boolean;
|
|
206
|
+
};
|
|
207
|
+
|
|
208
|
+
/**
|
|
209
|
+
* A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options. <br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
210
|
+
*/
|
|
211
|
+
declare type __VLS_Props_11 = {
|
|
212
|
+
/**
|
|
213
|
+
* The name attribute for the checkbox element, typically used for form submission.
|
|
214
|
+
*/
|
|
215
|
+
name: string;
|
|
216
|
+
/**
|
|
217
|
+
* Property used to manage the values checked by v-model
|
|
218
|
+
* (Do not use directly)
|
|
219
|
+
*/
|
|
220
|
+
modelValue?: Array<string>;
|
|
221
|
+
/**
|
|
222
|
+
* list of properties of each checkbox button of the checkbox group
|
|
223
|
+
*/
|
|
224
|
+
options: Array<{
|
|
225
|
+
id: string;
|
|
226
|
+
label: string;
|
|
227
|
+
value: string;
|
|
228
|
+
disabled?: boolean;
|
|
229
|
+
isInvalid?: boolean;
|
|
230
|
+
indented?: boolean;
|
|
231
|
+
}>;
|
|
232
|
+
/**
|
|
233
|
+
* If `true`, make the form element of the group inline.
|
|
234
|
+
*/
|
|
235
|
+
inline?: boolean;
|
|
236
|
+
};
|
|
122
237
|
|
|
123
|
-
declare
|
|
238
|
+
declare type __VLS_Props_12 = {
|
|
239
|
+
/**
|
|
240
|
+
* Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
|
|
241
|
+
*/
|
|
242
|
+
modelValue?: number;
|
|
243
|
+
/**
|
|
244
|
+
* Defines the menu items, each of which sets a checked state and act as a button, link, or router-link.
|
|
245
|
+
*/
|
|
246
|
+
items: CheckListMenuItem[];
|
|
247
|
+
/**
|
|
248
|
+
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
249
|
+
*/
|
|
250
|
+
outlined?: boolean;
|
|
251
|
+
};
|
|
124
252
|
|
|
125
253
|
/**
|
|
126
|
-
*
|
|
254
|
+
* A circular progress bar visually represents progress toward a goal or completion of a process using a circular shape. It is commonly used to indicate task completion or performance metrics. The progress is displayed as a partially filled ring, often accompanied by a percentage or status indicator. Circular Progress Bars are useful for providing users with real-time feedback on ongoing actions without taking up significant screen space.
|
|
127
255
|
*/
|
|
128
|
-
declare type
|
|
256
|
+
declare type __VLS_Props_13 = {
|
|
129
257
|
/**
|
|
130
|
-
*
|
|
258
|
+
* Sets the size of the progress bar.
|
|
131
259
|
*/
|
|
132
260
|
size?: 's' | 'm' | 'l';
|
|
261
|
+
/**
|
|
262
|
+
* The current value of the progress bar.
|
|
263
|
+
*/
|
|
264
|
+
value?: number;
|
|
265
|
+
/**
|
|
266
|
+
* Shows either a percentage or custom content.
|
|
267
|
+
*/
|
|
268
|
+
type?: 'percentage' | 'content';
|
|
269
|
+
/**
|
|
270
|
+
* Main content shown when `type` is `'content'`.
|
|
271
|
+
*/
|
|
272
|
+
contentValue?: string;
|
|
273
|
+
/**
|
|
274
|
+
* Additional text shown to define the `contentValue`.
|
|
275
|
+
*/
|
|
276
|
+
additionalInfo?: string;
|
|
277
|
+
};
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* The Container component is designed to wrap your page or section content, typically grids or other layout elements. By default, it centers the content with a maximum width to ensure consistent alignment and spacing.
|
|
281
|
+
*/
|
|
282
|
+
declare type __VLS_Props_14 = {
|
|
283
|
+
/**
|
|
284
|
+
* If `true`, the container will take the full width.
|
|
285
|
+
*/
|
|
286
|
+
fluid?: boolean;
|
|
133
287
|
};
|
|
134
288
|
|
|
135
289
|
/**
|
|
136
290
|
* A date picker is an input component that allows users to select a date from a calendar interface or manually enter a date value. It enhances usability by providing structured date selection, reducing input errors, and ensuring format consistency. Date Pickers are commonly used in forms, booking systems, scheduling tools, and data filtering interfaces to facilitate accurate date entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
137
291
|
*/
|
|
138
|
-
declare type
|
|
292
|
+
declare type __VLS_Props_15 = {
|
|
139
293
|
/**
|
|
140
294
|
* A unique identifier for the datepicker element, used to associate the label with the form element.
|
|
141
295
|
*/
|
|
@@ -177,7 +331,7 @@ declare type __VLS_Props_10 = {
|
|
|
177
331
|
/**
|
|
178
332
|
* A divider is a visual element used to separate content or sections within an interface. It helps improve readability and organization by creating clear distinctions between groups of information. Dividers can be thin lines, thick separators, or even styled with spacing variations, adapting to different layouts. They are commonly used in menus, lists, forms, and content blocks to create a structured visual hierarchy.
|
|
179
333
|
*/
|
|
180
|
-
declare type
|
|
334
|
+
declare type __VLS_Props_16 = {
|
|
181
335
|
/**
|
|
182
336
|
* Determines the orientation of the divider.
|
|
183
337
|
*/
|
|
@@ -195,7 +349,7 @@ declare type __VLS_Props_11 = {
|
|
|
195
349
|
/**
|
|
196
350
|
* A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
|
|
197
351
|
*/
|
|
198
|
-
declare type
|
|
352
|
+
declare type __VLS_Props_17 = {
|
|
199
353
|
/**
|
|
200
354
|
* If `true`, display the drawer.
|
|
201
355
|
*/
|
|
@@ -233,7 +387,7 @@ declare type __VLS_Props_12 = {
|
|
|
233
387
|
/**
|
|
234
388
|
* A field label is a text element that identifies the purpose of an input field, providing users with clear guidance on what information to enter. It is typically placed above the input field and may include indicators for required or optional fields. Field Labels improve form usability, accessibility, and data entry accuracy by ensuring users understand the expected input.
|
|
235
389
|
*/
|
|
236
|
-
declare type
|
|
390
|
+
declare type __VLS_Props_18 = {
|
|
237
391
|
/**
|
|
238
392
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
239
393
|
*/
|
|
@@ -279,7 +433,7 @@ declare type __VLS_Props_13 = {
|
|
|
279
433
|
/**
|
|
280
434
|
* This component creates a structured form field for group field such as Radio Group, Checkbox Group or Toggle Group with a label, optional help text, error and validation message handling.
|
|
281
435
|
*/
|
|
282
|
-
declare type
|
|
436
|
+
declare type __VLS_Props_19 = {
|
|
283
437
|
/**
|
|
284
438
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
285
439
|
*/
|
|
@@ -310,10 +464,20 @@ declare type __VLS_Props_14 = {
|
|
|
310
464
|
message?: string;
|
|
311
465
|
};
|
|
312
466
|
|
|
467
|
+
/**
|
|
468
|
+
* An action bottom bar is a fixed element positioned at the bottom of the screen or section, providing persistent access to key actions. It is commonly used for confirmations, validations, warnings, or bulk actions in forms, editing workflows, or data management. This component ensures that primary and secondary actions remain visible and accessible, even when scrolling.
|
|
469
|
+
*/
|
|
470
|
+
declare type __VLS_Props_2 = {
|
|
471
|
+
/**
|
|
472
|
+
* If `true`, adds a shadow to the action bottom bar.
|
|
473
|
+
*/
|
|
474
|
+
shadow?: boolean;
|
|
475
|
+
};
|
|
476
|
+
|
|
313
477
|
/**
|
|
314
478
|
* A flag is used to display meta-information about a product or service, acting as a visual indicator of the main category of content. It is typically placed at the top of an element to ensure immediate visibility.
|
|
315
479
|
*/
|
|
316
|
-
declare type
|
|
480
|
+
declare type __VLS_Props_20 = {
|
|
317
481
|
/**
|
|
318
482
|
* Label of the Flag.
|
|
319
483
|
*/
|
|
@@ -327,7 +491,7 @@ declare type __VLS_Props_15 = {
|
|
|
327
491
|
/**
|
|
328
492
|
* Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
|
|
329
493
|
*/
|
|
330
|
-
declare type
|
|
494
|
+
declare type __VLS_Props_21 = {
|
|
331
495
|
/**
|
|
332
496
|
* Defines the visual style of the icon button.
|
|
333
497
|
*/
|
|
@@ -357,7 +521,7 @@ declare type __VLS_Props_16 = {
|
|
|
357
521
|
/**
|
|
358
522
|
* A linear progress bar (Buffer) visually represents the progress of a task along a horizontal track, often indicating both current progress and a secondary buffered state. This type of progress bar is commonly used for loading processes, file uploads, or streaming indicators, where part of the task is completed while another portion is preloaded or buffered. It provides users with real-time feedback on task advancement.
|
|
359
523
|
*/
|
|
360
|
-
declare type
|
|
524
|
+
declare type __VLS_Props_22 = {
|
|
361
525
|
/**
|
|
362
526
|
* Allows to define the progress bar size.
|
|
363
527
|
*/
|
|
@@ -371,7 +535,7 @@ declare type __VLS_Props_17 = {
|
|
|
371
535
|
/**
|
|
372
536
|
* A linear progress bar (Percentage) visually represents the completion of a task along a horizontal track, displaying the exact progress in percentage within the bar. It is commonly used for file uploads, installations, form completion, or any process requiring user awareness of progress. The percentage label provides clear and immediate feedback, helping users track progress with precision.
|
|
373
537
|
*/
|
|
374
|
-
declare type
|
|
538
|
+
declare type __VLS_Props_23 = {
|
|
375
539
|
/**
|
|
376
540
|
* The current value of the progress bar.
|
|
377
541
|
*/
|
|
@@ -381,7 +545,7 @@ declare type __VLS_Props_18 = {
|
|
|
381
545
|
/**
|
|
382
546
|
* A link is an interactive text element used to navigate between pages, sections, or external resources. It is typically underlined and styled to indicate its clickable nature. Links can be standalone or embedded within text, and they may include icons to reinforce their purpose. They are essential for navigation and content referencing in web and application interfaces.
|
|
383
547
|
*/
|
|
384
|
-
declare type
|
|
548
|
+
declare type __VLS_Props_24 = {
|
|
385
549
|
/**
|
|
386
550
|
* Position of the icon relative to the text.
|
|
387
551
|
*/
|
|
@@ -412,37 +576,10 @@ declare type __VLS_Props_19 = {
|
|
|
412
576
|
router?: boolean;
|
|
413
577
|
};
|
|
414
578
|
|
|
415
|
-
/**
|
|
416
|
-
* A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.
|
|
417
|
-
*/
|
|
418
|
-
declare type __VLS_Props_2 = {
|
|
419
|
-
/**
|
|
420
|
-
* Allows to define the breadcrumb appearance.
|
|
421
|
-
*/
|
|
422
|
-
appearance?: 'standard' | 'inverse';
|
|
423
|
-
/**
|
|
424
|
-
* Links of the breadcrumb.
|
|
425
|
-
*/
|
|
426
|
-
links: Array<{
|
|
427
|
-
/**
|
|
428
|
-
* The label displayed for the link.
|
|
429
|
-
*/
|
|
430
|
-
label: string;
|
|
431
|
-
/**
|
|
432
|
-
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
433
|
-
*/
|
|
434
|
-
href: string;
|
|
435
|
-
/**
|
|
436
|
-
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
437
|
-
*/
|
|
438
|
-
router?: boolean;
|
|
439
|
-
}>;
|
|
440
|
-
};
|
|
441
|
-
|
|
442
579
|
/**
|
|
443
580
|
* A loader is a visual indicator used to inform users that a process is in progress, typically during data fetching, page loading, or background operations. It provides feedback that the system is working, helping to manage user expectations and reduce perceived wait time.
|
|
444
581
|
*/
|
|
445
|
-
declare type
|
|
582
|
+
declare type __VLS_Props_25 = {
|
|
446
583
|
/**
|
|
447
584
|
* Specifies the visual appearance of the loader.
|
|
448
585
|
*/
|
|
@@ -460,7 +597,7 @@ declare type __VLS_Props_20 = {
|
|
|
460
597
|
/**
|
|
461
598
|
* A loading overlay is a full-screen or container-level layer that indicates a process is in progress, preventing user interaction until the task is completed. It includes a progress indicator, and a message to inform users about the loading state. Loading Overlays are commonly used in data-heavy applications, form submissions, and page transitions to enhance user experience by managing wait times effectively.
|
|
462
599
|
*/
|
|
463
|
-
declare type
|
|
600
|
+
declare type __VLS_Props_26 = {
|
|
464
601
|
/**
|
|
465
602
|
* Controls the visibility of the loading overlay.
|
|
466
603
|
*/
|
|
@@ -474,7 +611,7 @@ declare type __VLS_Props_21 = {
|
|
|
474
611
|
/**
|
|
475
612
|
* A modal is a dialog window that appears on top of the main content, requiring user interaction before returning to the main interface. It is used to focus attention on a specific task, provide important information, or request confirmation for an action. Modals typically include a title, description, and primary/secondary actions and should be used for single, focused tasks to avoid disrupting the user experience.
|
|
476
613
|
*/
|
|
477
|
-
declare type
|
|
614
|
+
declare type __VLS_Props_27 = {
|
|
478
615
|
/**
|
|
479
616
|
* if `true`, display the modal.
|
|
480
617
|
*/
|
|
@@ -504,7 +641,7 @@ declare type __VLS_Props_22 = {
|
|
|
504
641
|
/**
|
|
505
642
|
* A Number Badge represents a numeric count, often used to indicate notifications, updates, or items requiring attention. Its distinct appearance makes it easy to spot changes at a glance, ensuring users stay informed without breaking their workflow. Badges are commonly attached to icons, buttons, or tabs to provide contextual awareness.
|
|
506
643
|
*/
|
|
507
|
-
declare type
|
|
644
|
+
declare type __VLS_Props_28 = {
|
|
508
645
|
/**
|
|
509
646
|
* Content of the badge.
|
|
510
647
|
*/
|
|
@@ -522,7 +659,7 @@ declare type __VLS_Props_23 = {
|
|
|
522
659
|
/**
|
|
523
660
|
* An overlay is a semi-transparent layer that appears on top of the main content, typically used to dim the background and focus user attention on a specific element. It is often combined with modals, popovers, or loading states to create a visual separation between the foreground and background. Overlays help prevent unintended interactions while keeping the primary content accessible.
|
|
524
661
|
*/
|
|
525
|
-
declare type
|
|
662
|
+
declare type __VLS_Props_29 = {
|
|
526
663
|
/**
|
|
527
664
|
* Controls the visibility of the overlay.
|
|
528
665
|
*/
|
|
@@ -533,10 +670,20 @@ declare type __VLS_Props_24 = {
|
|
|
533
670
|
dialogLabel?: string;
|
|
534
671
|
};
|
|
535
672
|
|
|
673
|
+
/**
|
|
674
|
+
* An avatar is a graphical representation of a user, entity, or group, commonly displayed as an image, initials, or an icon. It helps identify individuals or accounts in profiles, comments, chat interfaces, and user lists. Avatars can be customized with different styles, sizes, and fallback options (such as initials or placeholders) to ensure consistency and recognition across interfaces. When multiple users are represented, Avatar groups provide a compact way to display them collectively.
|
|
675
|
+
*/
|
|
676
|
+
declare type __VLS_Props_3 = {
|
|
677
|
+
/**
|
|
678
|
+
* Allows to define the avatar size.
|
|
679
|
+
*/
|
|
680
|
+
size?: 's' | 'm' | 'l';
|
|
681
|
+
};
|
|
682
|
+
|
|
536
683
|
/**
|
|
537
684
|
* Pagination is a navigation component that allows users to browse through large sets of content by dividing it into discrete pages. It typically includes previous and next buttons, numeric page selectors, or dropdowns to jump between pages efficiently. Pagination improves usability and performance in content-heavy applications such as tables, search results, and articles by preventing long scrolls and reducing page load times.
|
|
538
685
|
*/
|
|
539
|
-
declare type
|
|
686
|
+
declare type __VLS_Props_30 = {
|
|
540
687
|
/**
|
|
541
688
|
* A unique identifier for the pagination.
|
|
542
689
|
*/
|
|
@@ -566,7 +713,7 @@ declare type __VLS_Props_25 = {
|
|
|
566
713
|
/**
|
|
567
714
|
* A password input is a specialized input field used to securely enter and manage passwords. It typically masks the characters entered to protect sensitive information from being seen. It includes a toggle button to show or hide the password, improving usability while maintaining security. Password inputs are commonly used in login forms, account creation, and authentication flows.
|
|
568
715
|
*/
|
|
569
|
-
declare type
|
|
716
|
+
declare type __VLS_Props_31 = {
|
|
570
717
|
/**
|
|
571
718
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
572
719
|
*/
|
|
@@ -615,7 +762,7 @@ declare type __VLS_Props_26 = {
|
|
|
615
762
|
/**
|
|
616
763
|
* A phone number input is a specialized input field designed to capture and validate phone numbers, ensuring correct formatting based on country-specific dialing codes. It often includes a country selector that automatically adjusts the international dialing code. This component improves user experience by standardizing phone number entries, reducing errors, and facilitating global compatibility. It is commonly used in registration forms, authentication flows, and contact information fields.
|
|
617
764
|
*/
|
|
618
|
-
declare type
|
|
765
|
+
declare type __VLS_Props_32 = {
|
|
619
766
|
/**
|
|
620
767
|
* A unique identifier for the phone number input element, used to associate the label with the form element.
|
|
621
768
|
*/
|
|
@@ -669,7 +816,7 @@ declare type __VLS_Props_27 = {
|
|
|
669
816
|
/**
|
|
670
817
|
* A pincode input is a specialized input field used to enter short numeric codes, such as verification codes, security PINs, or authentication tokens. It typically separates each digit into individual fields to improve readability and ease of entry. This component is commonly used in two-factor authentication (2FA), password recovery, and secure access flows, ensuring a structured and user-friendly experience.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
671
818
|
*/
|
|
672
|
-
declare type
|
|
819
|
+
declare type __VLS_Props_33 = {
|
|
673
820
|
/**
|
|
674
821
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
675
822
|
*/
|
|
@@ -703,7 +850,7 @@ declare type __VLS_Props_28 = {
|
|
|
703
850
|
/**
|
|
704
851
|
* A quantity selector is an input component that allows users to increment or decrement a numeric value, typically using plus (+) and minus (−) buttons. It provides a simple and efficient way to adjust quantities without manual typing, ensuring controlled input. This component is commonly used in e-commerce, inventory management, and settings where users need to specify amounts.
|
|
705
852
|
*/
|
|
706
|
-
declare type
|
|
853
|
+
declare type __VLS_Props_34 = {
|
|
707
854
|
/**
|
|
708
855
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
709
856
|
*/
|
|
@@ -755,63 +902,25 @@ declare type __VLS_Props_29 = {
|
|
|
755
902
|
};
|
|
756
903
|
|
|
757
904
|
/**
|
|
758
|
-
*
|
|
905
|
+
* A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.
|
|
759
906
|
*/
|
|
760
|
-
declare type
|
|
907
|
+
declare type __VLS_Props_35 = {
|
|
761
908
|
/**
|
|
762
|
-
*
|
|
909
|
+
* A unique identifier for the radio, used to associate the label with the form element.
|
|
763
910
|
*/
|
|
764
|
-
|
|
911
|
+
id: string;
|
|
765
912
|
/**
|
|
766
|
-
*
|
|
913
|
+
* The name attribute for the radio element, typically used for form submission.
|
|
767
914
|
*/
|
|
768
|
-
|
|
915
|
+
name?: string;
|
|
769
916
|
/**
|
|
770
|
-
*
|
|
917
|
+
* The text label displayed next to the radio.
|
|
771
918
|
*/
|
|
772
|
-
|
|
919
|
+
label?: string;
|
|
773
920
|
/**
|
|
774
|
-
*
|
|
921
|
+
* The radio's checked state, bound via v-model.
|
|
775
922
|
*/
|
|
776
|
-
|
|
777
|
-
/**
|
|
778
|
-
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
779
|
-
*/
|
|
780
|
-
outlined?: boolean;
|
|
781
|
-
/**
|
|
782
|
-
* Controls the positioning of an icon in the button.
|
|
783
|
-
*/
|
|
784
|
-
iconPosition?: 'left' | 'right' | 'only';
|
|
785
|
-
/**
|
|
786
|
-
* Specifies the button's HTML `type` attribute.
|
|
787
|
-
*/
|
|
788
|
-
type?: 'button' | 'reset' | 'submit';
|
|
789
|
-
/**
|
|
790
|
-
* If `true`, a loading state is displayed.
|
|
791
|
-
*/
|
|
792
|
-
isLoading?: boolean;
|
|
793
|
-
};
|
|
794
|
-
|
|
795
|
-
/**
|
|
796
|
-
* A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.
|
|
797
|
-
*/
|
|
798
|
-
declare type __VLS_Props_30 = {
|
|
799
|
-
/**
|
|
800
|
-
* A unique identifier for the radio, used to associate the label with the form element.
|
|
801
|
-
*/
|
|
802
|
-
id: string;
|
|
803
|
-
/**
|
|
804
|
-
* The name attribute for the radio element, typically used for form submission.
|
|
805
|
-
*/
|
|
806
|
-
name?: string;
|
|
807
|
-
/**
|
|
808
|
-
* The text label displayed next to the radio.
|
|
809
|
-
*/
|
|
810
|
-
label?: string;
|
|
811
|
-
/**
|
|
812
|
-
* The radio's checked state, bound via v-model.
|
|
813
|
-
*/
|
|
814
|
-
modelValue?: boolean;
|
|
923
|
+
modelValue?: boolean;
|
|
815
924
|
/**
|
|
816
925
|
* If `true`, applies an invalid state to the radio.
|
|
817
926
|
*/
|
|
@@ -825,7 +934,7 @@ declare type __VLS_Props_30 = {
|
|
|
825
934
|
/**
|
|
826
935
|
* A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#radio-group).
|
|
827
936
|
*/
|
|
828
|
-
declare type
|
|
937
|
+
declare type __VLS_Props_36 = {
|
|
829
938
|
/**
|
|
830
939
|
* The name attribute for the radio element, typically used for form submission.
|
|
831
940
|
*/
|
|
@@ -857,7 +966,7 @@ declare type __VLS_Props_31 = {
|
|
|
857
966
|
/**
|
|
858
967
|
* A Segmented Control allows users to switch between multiple options or views within a single container. It provides a compact and efficient way to toggle between sections without requiring a dropdown or separate navigation. Segmented Controls are commonly used in filters, tabbed navigation, and content selection to enhance user interaction and accessibility.
|
|
859
968
|
*/
|
|
860
|
-
declare type
|
|
969
|
+
declare type __VLS_Props_37 = {
|
|
861
970
|
/**
|
|
862
971
|
* The selected segment index, bound via v-model.
|
|
863
972
|
*/
|
|
@@ -884,7 +993,7 @@ declare type __VLS_Props_32 = {
|
|
|
884
993
|
/**
|
|
885
994
|
* A select component allows users to choose a single option from a predefined list within a native dropdown menu. It helps simplify input by displaying only relevant choices, reducing the need for manual text entry. Select components are commonly used in forms, settings, and filters where structured selection is required.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#select).
|
|
886
995
|
*/
|
|
887
|
-
declare type
|
|
996
|
+
declare type __VLS_Props_38 = {
|
|
888
997
|
/**
|
|
889
998
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
890
999
|
*/
|
|
@@ -932,7 +1041,7 @@ declare type __VLS_Props_33 = {
|
|
|
932
1041
|
/**
|
|
933
1042
|
* A Star rating visually represents a score or evaluation and can be used to display a rating or allow users to rate an item, such as a product or service. It serves two main purposes: collecting user feedback by enabling individuals to express their experience and providing social proof by displaying ratings from other users to assist decision-making. Rating Stars are commonly found in e-commerce, review systems, and feedback interfaces, offering a quick and intuitive way to assess quality or satisfaction.
|
|
934
1043
|
*/
|
|
935
|
-
declare type
|
|
1044
|
+
declare type __VLS_Props_39 = {
|
|
936
1045
|
/**
|
|
937
1046
|
* Determines whether the rating is interactive or read-only.
|
|
938
1047
|
* When true, all user interactions (click, hover, keyboard) are disabled.
|
|
@@ -976,10 +1085,45 @@ declare type __VLS_Props_34 = {
|
|
|
976
1085
|
router?: boolean;
|
|
977
1086
|
};
|
|
978
1087
|
|
|
1088
|
+
/**
|
|
1089
|
+
* An action list is a contextual menu that presents a list of available actions related to a specific element or interface area. It allows users to quickly access functions such as editing, sharing, deleting, or navigating to sub-actions. Action Lists are commonly triggered by buttons, icons (e.g., three-dot menus), or right-click interactions, ensuring a clean and efficient UI.
|
|
1090
|
+
*/
|
|
1091
|
+
declare type __VLS_Props_4 = {
|
|
1092
|
+
/**
|
|
1093
|
+
* title displayed in mobile version.
|
|
1094
|
+
*/
|
|
1095
|
+
title?: string;
|
|
1096
|
+
/**
|
|
1097
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each item.
|
|
1098
|
+
*/
|
|
1099
|
+
items: Array<{
|
|
1100
|
+
/**
|
|
1101
|
+
* The icon displayed for the item from Mozaic-icon-vue.
|
|
1102
|
+
*/
|
|
1103
|
+
icon?: Component;
|
|
1104
|
+
/**
|
|
1105
|
+
* The label displayed for the item.
|
|
1106
|
+
*/
|
|
1107
|
+
label: string;
|
|
1108
|
+
/**
|
|
1109
|
+
* If `true`, the item will be disabled.
|
|
1110
|
+
*/
|
|
1111
|
+
disabled?: boolean;
|
|
1112
|
+
/**
|
|
1113
|
+
* Allows to define the item appearance.
|
|
1114
|
+
*/
|
|
1115
|
+
appearance?: 'standard' | 'danger';
|
|
1116
|
+
/**
|
|
1117
|
+
* Add a divider on top of the item.
|
|
1118
|
+
*/
|
|
1119
|
+
divider?: boolean;
|
|
1120
|
+
}>;
|
|
1121
|
+
};
|
|
1122
|
+
|
|
979
1123
|
/**
|
|
980
1124
|
* A Status Badge is used to indicate the current status of an element, providing a clear and concise visual cue. The status can change dynamically based on updates, events, or conditions within the system. Status Badges help users quickly identify the state of an item, such as an order status, system health, or process completion. They are often color-coded to enhance readability and recognition.
|
|
981
1125
|
*/
|
|
982
|
-
declare type
|
|
1126
|
+
declare type __VLS_Props_40 = {
|
|
983
1127
|
/**
|
|
984
1128
|
* Content of the status badge
|
|
985
1129
|
*/
|
|
@@ -993,7 +1137,7 @@ declare type __VLS_Props_35 = {
|
|
|
993
1137
|
/**
|
|
994
1138
|
* A Status dot is a small visual indicator used to represent the state or condition of an element. It is often color-coded to convey different statuses at a glance, such as availability, activity, or urgency. Status Dots are commonly found in user presence indicators, system statuses, or process tracking to provide quick, unobtrusive feedback.
|
|
995
1139
|
*/
|
|
996
|
-
declare type
|
|
1140
|
+
declare type __VLS_Props_41 = {
|
|
997
1141
|
/**
|
|
998
1142
|
* Allows to define the status dot type.
|
|
999
1143
|
*/
|
|
@@ -1007,7 +1151,7 @@ declare type __VLS_Props_36 = {
|
|
|
1007
1151
|
/**
|
|
1008
1152
|
* A Status Message is a compact component that combines an icon and concise text to communicate system states or user feedback in limited interface space. The icon and message work together as a unified structure to provide clear, immediate understanding of the current status. Status Messages are designed for contexts where space is constrained but clear communication is essential, offering quick recognition through color-coded icons paired with brief, actionable text.
|
|
1009
1153
|
*/
|
|
1010
|
-
declare type
|
|
1154
|
+
declare type __VLS_Props_42 = {
|
|
1011
1155
|
/**
|
|
1012
1156
|
* Allows to define the status message style.
|
|
1013
1157
|
*/
|
|
@@ -1021,7 +1165,7 @@ declare type __VLS_Props_37 = {
|
|
|
1021
1165
|
/**
|
|
1022
1166
|
* A Status Notification is used to draw the user’s attention to important information that needs to be acknowledged. It often provides feedback on a process, highlights a status update, or alerts users about an issue. Notifications are typically triggered by user actions or system events and are designed to be easily noticeable while maintaining a non-intrusive experience.
|
|
1023
1167
|
*/
|
|
1024
|
-
declare type
|
|
1168
|
+
declare type __VLS_Props_43 = {
|
|
1025
1169
|
/**
|
|
1026
1170
|
* Title of the status notification.
|
|
1027
1171
|
*/
|
|
@@ -1043,7 +1187,7 @@ declare type __VLS_Props_38 = {
|
|
|
1043
1187
|
/**
|
|
1044
1188
|
* A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
|
|
1045
1189
|
*/
|
|
1046
|
-
declare type
|
|
1190
|
+
declare type __VLS_Props_44 = {
|
|
1047
1191
|
/**
|
|
1048
1192
|
* Current step of the stepper compact.
|
|
1049
1193
|
*/
|
|
@@ -1063,27 +1207,66 @@ declare type __VLS_Props_39 = {
|
|
|
1063
1207
|
};
|
|
1064
1208
|
|
|
1065
1209
|
/**
|
|
1066
|
-
* A
|
|
1210
|
+
* A stepper bottom bar is a persistent navigation component used to guide users through a multi-step process. It typically includes “Previous” and “Next” buttons, along with optional actions such as “Cancel” or “Validate”, ensuring a structured flow. This component is commonly used in forms, onboarding sequences, and checkout processes, improving usability by keeping navigation actions always accessible.
|
|
1067
1211
|
*/
|
|
1068
|
-
declare type
|
|
1212
|
+
declare type __VLS_Props_45 = {
|
|
1069
1213
|
/**
|
|
1070
|
-
*
|
|
1214
|
+
* Current step of the stepper compact.
|
|
1071
1215
|
*/
|
|
1072
|
-
|
|
1216
|
+
modelValue?: number;
|
|
1073
1217
|
/**
|
|
1074
|
-
*
|
|
1218
|
+
* Total number of steps of the stepper compact.
|
|
1075
1219
|
*/
|
|
1076
|
-
|
|
1220
|
+
steps?: number;
|
|
1077
1221
|
/**
|
|
1078
|
-
*
|
|
1222
|
+
* If `true`, display the cancel button.
|
|
1079
1223
|
*/
|
|
1080
|
-
|
|
1224
|
+
cancel?: boolean;
|
|
1225
|
+
/**
|
|
1226
|
+
* Label for the cancel button.
|
|
1227
|
+
*/
|
|
1228
|
+
cancelLabel?: string;
|
|
1229
|
+
/**
|
|
1230
|
+
* Label for the previous button.
|
|
1231
|
+
*/
|
|
1232
|
+
previousLabel?: string;
|
|
1233
|
+
/**
|
|
1234
|
+
* Label for the next button.
|
|
1235
|
+
*/
|
|
1236
|
+
nextLabel?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* Label for the validate button.
|
|
1239
|
+
*/
|
|
1240
|
+
validateLabel?: string;
|
|
1241
|
+
};
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
|
|
1245
|
+
*/
|
|
1246
|
+
declare type __VLS_Props_46 = {
|
|
1247
|
+
/**
|
|
1248
|
+
* Current step of the stepper compact.
|
|
1249
|
+
*/
|
|
1250
|
+
currentStep?: number;
|
|
1251
|
+
/**
|
|
1252
|
+
* Steps of the stepper inline.
|
|
1253
|
+
*/
|
|
1254
|
+
steps?: Array<{
|
|
1255
|
+
/**
|
|
1256
|
+
* Label of the step.
|
|
1257
|
+
*/
|
|
1258
|
+
label: string;
|
|
1259
|
+
/**
|
|
1260
|
+
* Optional additional information under the label.
|
|
1261
|
+
*/
|
|
1262
|
+
additionalInfo?: string;
|
|
1263
|
+
}>;
|
|
1081
1264
|
};
|
|
1082
1265
|
|
|
1083
1266
|
/**
|
|
1084
1267
|
* Tabs are a navigation component that allows users to switch between different sections within the same context. They help organize content efficiently by displaying only one section at a time, reducing clutter and improving accessibility. Tabs can include icons, labels, and notification badges to provide additional context. They are commonly used in dashboards, product management, and settings interfaces.
|
|
1085
1268
|
*/
|
|
1086
|
-
declare type
|
|
1269
|
+
declare type __VLS_Props_47 = {
|
|
1087
1270
|
/**
|
|
1088
1271
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
1089
1272
|
*/
|
|
@@ -1126,7 +1309,7 @@ declare type __VLS_Props_40 = {
|
|
|
1126
1309
|
/**
|
|
1127
1310
|
* A Tag is a UI element used to filter data, categorize, select or deselect an option. It can appear standalone, in a group, or embedded within other components. Depending on its use, a tag can be interactive (clickable, removable, selectable) or static (serving as a visual indicator).
|
|
1128
1311
|
*/
|
|
1129
|
-
declare type
|
|
1312
|
+
declare type __VLS_Props_48 = {
|
|
1130
1313
|
/**
|
|
1131
1314
|
* Defines the behavior and layout of the tag.
|
|
1132
1315
|
*/
|
|
@@ -1168,7 +1351,7 @@ declare type __VLS_Props_41 = {
|
|
|
1168
1351
|
/**
|
|
1169
1352
|
* A text area is an input designed for multi-line text entry, allowing users to input longer content compared to a standard text input. It is commonly used for comments, feedback, descriptions, and messaging. Text areas can be resizable or fixed in height, depending on the context, and often include placeholder text, character limits, and validation messages to guide users.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#textarea).
|
|
1170
1353
|
*/
|
|
1171
|
-
declare type
|
|
1354
|
+
declare type __VLS_Props_49 = {
|
|
1172
1355
|
/**
|
|
1173
1356
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
1174
1357
|
*/
|
|
@@ -1211,10 +1394,37 @@ declare type __VLS_Props_42 = {
|
|
|
1211
1394
|
readonly?: boolean;
|
|
1212
1395
|
};
|
|
1213
1396
|
|
|
1397
|
+
/**
|
|
1398
|
+
* A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.
|
|
1399
|
+
*/
|
|
1400
|
+
declare type __VLS_Props_5 = {
|
|
1401
|
+
/**
|
|
1402
|
+
* Allows to define the breadcrumb appearance.
|
|
1403
|
+
*/
|
|
1404
|
+
appearance?: 'standard' | 'inverse';
|
|
1405
|
+
/**
|
|
1406
|
+
* Links of the breadcrumb.
|
|
1407
|
+
*/
|
|
1408
|
+
links: Array<{
|
|
1409
|
+
/**
|
|
1410
|
+
* The label displayed for the link.
|
|
1411
|
+
*/
|
|
1412
|
+
label: string;
|
|
1413
|
+
/**
|
|
1414
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
1415
|
+
*/
|
|
1416
|
+
href: string;
|
|
1417
|
+
/**
|
|
1418
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
1419
|
+
*/
|
|
1420
|
+
router?: boolean;
|
|
1421
|
+
}>;
|
|
1422
|
+
};
|
|
1423
|
+
|
|
1214
1424
|
/**
|
|
1215
1425
|
* A text input is a single-line input that allows users to enter and edit short text-based content. It is commonly used for names, email addresses, search queries, and form entries. Text Inputs often include placeholders, validation rules, and assistive text to guide users and ensure accurate data entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
1216
1426
|
*/
|
|
1217
|
-
declare type
|
|
1427
|
+
declare type __VLS_Props_50 = {
|
|
1218
1428
|
/**
|
|
1219
1429
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
1220
1430
|
*/
|
|
@@ -1264,7 +1474,7 @@ declare type __VLS_Props_43 = {
|
|
|
1264
1474
|
/**
|
|
1265
1475
|
* A toaster is a temporary notification that appears briefly on the screen to provide feedback or updates without interrupting the user’s workflow. It is commonly used for success messages, warnings, errors, or informational updates. Toasters can disappear automatically after a few seconds, be dismissed manually via a close button, or be removed when the user performs a relevant action. They typically include an icon, a short message, and an optional close button for better usability.
|
|
1266
1476
|
*/
|
|
1267
|
-
declare type
|
|
1477
|
+
declare type __VLS_Props_51 = {
|
|
1268
1478
|
/**
|
|
1269
1479
|
* If `true`, display the Toaster.
|
|
1270
1480
|
*/
|
|
@@ -1298,7 +1508,7 @@ declare type __VLS_Props_44 = {
|
|
|
1298
1508
|
/**
|
|
1299
1509
|
* A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.
|
|
1300
1510
|
*/
|
|
1301
|
-
declare type
|
|
1511
|
+
declare type __VLS_Props_52 = {
|
|
1302
1512
|
/**
|
|
1303
1513
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1304
1514
|
*/
|
|
@@ -1328,7 +1538,7 @@ declare type __VLS_Props_45 = {
|
|
|
1328
1538
|
/**
|
|
1329
1539
|
* A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).
|
|
1330
1540
|
*/
|
|
1331
|
-
declare type
|
|
1541
|
+
declare type __VLS_Props_53 = {
|
|
1332
1542
|
/**
|
|
1333
1543
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1334
1544
|
*/
|
|
@@ -1357,7 +1567,7 @@ declare type __VLS_Props_46 = {
|
|
|
1357
1567
|
/**
|
|
1358
1568
|
* A tooltip is a small, contextual message that appears when users hover over, focus on, or tap an element, providing additional information or guidance without cluttering the interface. Tooltips are commonly used to explain icons, abbreviations, or complex actions. They typically disappear automatically when the user moves away from the trigger element.
|
|
1359
1569
|
*/
|
|
1360
|
-
declare type
|
|
1570
|
+
declare type __VLS_Props_54 = {
|
|
1361
1571
|
/**
|
|
1362
1572
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1363
1573
|
*/
|
|
@@ -1376,146 +1586,190 @@ declare type __VLS_Props_47 = {
|
|
|
1376
1586
|
pointer?: boolean;
|
|
1377
1587
|
};
|
|
1378
1588
|
|
|
1379
|
-
|
|
1380
|
-
* A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
|
|
1381
|
-
*/
|
|
1382
|
-
declare type __VLS_Props_5 = {
|
|
1589
|
+
declare type __VLS_Props_6 = {
|
|
1383
1590
|
/**
|
|
1384
|
-
*
|
|
1591
|
+
* Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
|
|
1385
1592
|
*/
|
|
1386
|
-
|
|
1593
|
+
modelValue?: number;
|
|
1387
1594
|
/**
|
|
1388
|
-
*
|
|
1595
|
+
* Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
|
|
1389
1596
|
*/
|
|
1390
|
-
|
|
1597
|
+
items: MenuItem[];
|
|
1598
|
+
/**
|
|
1599
|
+
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
1600
|
+
*/
|
|
1601
|
+
outlined?: boolean;
|
|
1391
1602
|
};
|
|
1392
1603
|
|
|
1393
1604
|
/**
|
|
1394
|
-
*
|
|
1605
|
+
* Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
|
|
1395
1606
|
*/
|
|
1396
|
-
declare type
|
|
1397
|
-
/**
|
|
1398
|
-
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
1399
|
-
*/
|
|
1400
|
-
id: string;
|
|
1401
|
-
/**
|
|
1402
|
-
* The name attribute for the checkbox element, typically used for form submission.
|
|
1403
|
-
*/
|
|
1404
|
-
name?: string;
|
|
1405
|
-
/**
|
|
1406
|
-
* The text label displayed next to the checkbox.
|
|
1407
|
-
*/
|
|
1408
|
-
label?: string;
|
|
1409
|
-
/**
|
|
1410
|
-
* The checkbox's checked state, bound via v-model.
|
|
1411
|
-
*/
|
|
1412
|
-
modelValue?: boolean;
|
|
1607
|
+
declare type __VLS_Props_7 = {
|
|
1413
1608
|
/**
|
|
1414
|
-
*
|
|
1609
|
+
* Defines the visual style of the button.
|
|
1415
1610
|
*/
|
|
1416
|
-
|
|
1611
|
+
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
1417
1612
|
/**
|
|
1418
|
-
*
|
|
1613
|
+
* Determines the size of the button.
|
|
1419
1614
|
*/
|
|
1420
|
-
|
|
1615
|
+
size?: 's' | 'm' | 'l';
|
|
1421
1616
|
/**
|
|
1422
|
-
* If `true`, disables the
|
|
1617
|
+
* If `true`, disables the button, making it non-interactive.
|
|
1423
1618
|
*/
|
|
1424
1619
|
disabled?: boolean;
|
|
1425
1620
|
/**
|
|
1426
|
-
* If `true`,
|
|
1621
|
+
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
1427
1622
|
*/
|
|
1428
|
-
|
|
1429
|
-
};
|
|
1430
|
-
|
|
1431
|
-
/**
|
|
1432
|
-
* A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options. <br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
|
|
1433
|
-
*/
|
|
1434
|
-
declare type __VLS_Props_7 = {
|
|
1623
|
+
ghost?: boolean;
|
|
1435
1624
|
/**
|
|
1436
|
-
*
|
|
1625
|
+
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
1437
1626
|
*/
|
|
1438
|
-
|
|
1627
|
+
outlined?: boolean;
|
|
1439
1628
|
/**
|
|
1440
|
-
*
|
|
1441
|
-
* (Do not use directly)
|
|
1629
|
+
* Controls the positioning of an icon in the button.
|
|
1442
1630
|
*/
|
|
1443
|
-
|
|
1631
|
+
iconPosition?: 'left' | 'right' | 'only';
|
|
1444
1632
|
/**
|
|
1445
|
-
*
|
|
1633
|
+
* Specifies the button's HTML `type` attribute.
|
|
1446
1634
|
*/
|
|
1447
|
-
|
|
1448
|
-
id: string;
|
|
1449
|
-
label: string;
|
|
1450
|
-
value: string;
|
|
1451
|
-
disabled?: boolean;
|
|
1452
|
-
isInvalid?: boolean;
|
|
1453
|
-
indented?: boolean;
|
|
1454
|
-
}>;
|
|
1635
|
+
type?: 'button' | 'reset' | 'submit';
|
|
1455
1636
|
/**
|
|
1456
|
-
* If `true`,
|
|
1637
|
+
* If `true`, a loading state is displayed.
|
|
1457
1638
|
*/
|
|
1458
|
-
|
|
1639
|
+
isLoading?: boolean;
|
|
1459
1640
|
};
|
|
1460
1641
|
|
|
1461
1642
|
/**
|
|
1462
|
-
* A
|
|
1643
|
+
* A callout is used to highlight additional information that can assist users with tips, extra details, or helpful guidance, without signaling a critical status or alert. Unlike notifications, callouts are not triggered by user actions and do not correspond to specific system states. They are designed to enhance the user experience by providing contextually relevant information that supports comprehension and usability.
|
|
1463
1644
|
*/
|
|
1464
1645
|
declare type __VLS_Props_8 = {
|
|
1465
1646
|
/**
|
|
1466
|
-
*
|
|
1467
|
-
*/
|
|
1468
|
-
size?: 's' | 'm' | 'l';
|
|
1469
|
-
/**
|
|
1470
|
-
* The current value of the progress bar.
|
|
1471
|
-
*/
|
|
1472
|
-
value?: number;
|
|
1473
|
-
/**
|
|
1474
|
-
* Shows either a percentage or custom content.
|
|
1647
|
+
* Title of the callout.
|
|
1475
1648
|
*/
|
|
1476
|
-
|
|
1649
|
+
title: string;
|
|
1477
1650
|
/**
|
|
1478
|
-
*
|
|
1651
|
+
* Description of the callout.
|
|
1479
1652
|
*/
|
|
1480
|
-
|
|
1653
|
+
description: string;
|
|
1481
1654
|
/**
|
|
1482
|
-
*
|
|
1655
|
+
* Allows to define the callout appearance.
|
|
1483
1656
|
*/
|
|
1484
|
-
|
|
1657
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1485
1658
|
};
|
|
1486
1659
|
|
|
1487
1660
|
/**
|
|
1488
|
-
*
|
|
1661
|
+
* A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
|
|
1489
1662
|
*/
|
|
1490
1663
|
declare type __VLS_Props_9 = {
|
|
1491
1664
|
/**
|
|
1492
|
-
*
|
|
1665
|
+
* Aria label for the previous button.
|
|
1493
1666
|
*/
|
|
1494
|
-
|
|
1667
|
+
previousButtonAriaLabel?: string;
|
|
1668
|
+
/**
|
|
1669
|
+
* Aria label for the next button.
|
|
1670
|
+
*/
|
|
1671
|
+
nextButtonAriaLabel?: string;
|
|
1495
1672
|
};
|
|
1496
1673
|
|
|
1497
1674
|
declare type __VLS_PublicProps = {
|
|
1498
1675
|
modelValue: number;
|
|
1499
|
-
} &
|
|
1676
|
+
} & __VLS_Props_39;
|
|
1677
|
+
|
|
1678
|
+
declare function __VLS_template(): {
|
|
1679
|
+
attrs: Partial<{}>;
|
|
1680
|
+
slots: Readonly<{
|
|
1681
|
+
/**
|
|
1682
|
+
* Use this slot to display accordion items.
|
|
1683
|
+
*/
|
|
1684
|
+
default: VNode;
|
|
1685
|
+
}> & {
|
|
1686
|
+
/**
|
|
1687
|
+
* Use this slot to display accordion items.
|
|
1688
|
+
*/
|
|
1689
|
+
default: VNode;
|
|
1690
|
+
};
|
|
1691
|
+
refs: {};
|
|
1692
|
+
rootEl: HTMLDivElement;
|
|
1693
|
+
};
|
|
1694
|
+
|
|
1695
|
+
declare function __VLS_template_10(): {
|
|
1696
|
+
attrs: Partial<{}>;
|
|
1697
|
+
slots: Readonly<{
|
|
1698
|
+
/**
|
|
1699
|
+
* Use this slot to insert the form element of your choice
|
|
1700
|
+
*/
|
|
1701
|
+
default: VNode;
|
|
1702
|
+
}> & {
|
|
1703
|
+
/**
|
|
1704
|
+
* Use this slot to insert the form element of your choice
|
|
1705
|
+
*/
|
|
1706
|
+
default: VNode;
|
|
1707
|
+
};
|
|
1708
|
+
refs: {};
|
|
1709
|
+
rootEl: HTMLDivElement;
|
|
1710
|
+
};
|
|
1500
1711
|
|
|
1501
|
-
declare function
|
|
1712
|
+
declare function __VLS_template_11(): {
|
|
1502
1713
|
attrs: Partial<{}>;
|
|
1503
1714
|
slots: Readonly<{
|
|
1504
1715
|
/**
|
|
1505
|
-
* Use this slot to insert the
|
|
1716
|
+
* Use this slot to insert the form element of your choice
|
|
1506
1717
|
*/
|
|
1507
1718
|
default: VNode;
|
|
1508
1719
|
}> & {
|
|
1509
1720
|
/**
|
|
1510
|
-
* Use this slot to insert the
|
|
1721
|
+
* Use this slot to insert the form element of your choice
|
|
1511
1722
|
*/
|
|
1512
1723
|
default: VNode;
|
|
1513
1724
|
};
|
|
1514
1725
|
refs: {};
|
|
1515
|
-
rootEl:
|
|
1726
|
+
rootEl: HTMLFieldSetElement;
|
|
1516
1727
|
};
|
|
1517
1728
|
|
|
1518
|
-
declare function
|
|
1729
|
+
declare function __VLS_template_12(): {
|
|
1730
|
+
attrs: Partial<{}>;
|
|
1731
|
+
slots: Readonly<{
|
|
1732
|
+
/**
|
|
1733
|
+
* Slot for customizing the file name display.
|
|
1734
|
+
* Receives `NormalizedFile` as slot props.
|
|
1735
|
+
*/
|
|
1736
|
+
name: VNode;
|
|
1737
|
+
/**
|
|
1738
|
+
* Slot for displaying additional file information.
|
|
1739
|
+
* Receives `NormalizedFile` as slot props.
|
|
1740
|
+
*/
|
|
1741
|
+
information: VNode;
|
|
1742
|
+
/**
|
|
1743
|
+
* Slot for providing a custom error message display.
|
|
1744
|
+
* Receives:
|
|
1745
|
+
* `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
|
|
1746
|
+
*/
|
|
1747
|
+
errorMessage: VNode;
|
|
1748
|
+
}> & {
|
|
1749
|
+
/**
|
|
1750
|
+
* Slot for customizing the file name display.
|
|
1751
|
+
* Receives `NormalizedFile` as slot props.
|
|
1752
|
+
*/
|
|
1753
|
+
name: VNode;
|
|
1754
|
+
/**
|
|
1755
|
+
* Slot for displaying additional file information.
|
|
1756
|
+
* Receives `NormalizedFile` as slot props.
|
|
1757
|
+
*/
|
|
1758
|
+
information: VNode;
|
|
1759
|
+
/**
|
|
1760
|
+
* Slot for providing a custom error message display.
|
|
1761
|
+
* Receives:
|
|
1762
|
+
* `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
|
|
1763
|
+
*/
|
|
1764
|
+
errorMessage: VNode;
|
|
1765
|
+
};
|
|
1766
|
+
refs: {
|
|
1767
|
+
fileInput: HTMLInputElement;
|
|
1768
|
+
};
|
|
1769
|
+
rootEl: HTMLDivElement;
|
|
1770
|
+
};
|
|
1771
|
+
|
|
1772
|
+
declare function __VLS_template_13(): {
|
|
1519
1773
|
attrs: Partial<{}>;
|
|
1520
1774
|
slots: Readonly<{
|
|
1521
1775
|
/**
|
|
@@ -1532,7 +1786,7 @@ declare function __VLS_template_10(): {
|
|
|
1532
1786
|
rootEl: HTMLButtonElement;
|
|
1533
1787
|
};
|
|
1534
1788
|
|
|
1535
|
-
declare function
|
|
1789
|
+
declare function __VLS_template_14(): {
|
|
1536
1790
|
attrs: Partial<{}>;
|
|
1537
1791
|
slots: Readonly<{
|
|
1538
1792
|
/**
|
|
@@ -1557,7 +1811,7 @@ declare function __VLS_template_11(): {
|
|
|
1557
1811
|
rootEl: any;
|
|
1558
1812
|
};
|
|
1559
1813
|
|
|
1560
|
-
declare function
|
|
1814
|
+
declare function __VLS_template_15(): {
|
|
1561
1815
|
attrs: Partial<{}>;
|
|
1562
1816
|
slots: Readonly<{
|
|
1563
1817
|
/**
|
|
@@ -1598,7 +1852,7 @@ declare function __VLS_template_12(): {
|
|
|
1598
1852
|
rootEl: any;
|
|
1599
1853
|
};
|
|
1600
1854
|
|
|
1601
|
-
declare function
|
|
1855
|
+
declare function __VLS_template_16(): {
|
|
1602
1856
|
attrs: Partial<{}>;
|
|
1603
1857
|
slots: Readonly<{
|
|
1604
1858
|
/**
|
|
@@ -1615,7 +1869,7 @@ declare function __VLS_template_13(): {
|
|
|
1615
1869
|
rootEl: HTMLDivElement;
|
|
1616
1870
|
};
|
|
1617
1871
|
|
|
1618
|
-
declare function
|
|
1872
|
+
declare function __VLS_template_17(): {
|
|
1619
1873
|
attrs: Partial<{}>;
|
|
1620
1874
|
slots: Readonly<{
|
|
1621
1875
|
/**
|
|
@@ -1632,7 +1886,7 @@ declare function __VLS_template_14(): {
|
|
|
1632
1886
|
rootEl: HTMLElement;
|
|
1633
1887
|
};
|
|
1634
1888
|
|
|
1635
|
-
declare function
|
|
1889
|
+
declare function __VLS_template_18(): {
|
|
1636
1890
|
attrs: Partial<{}>;
|
|
1637
1891
|
slots: Readonly<{
|
|
1638
1892
|
/**
|
|
@@ -1649,7 +1903,7 @@ declare function __VLS_template_15(): {
|
|
|
1649
1903
|
rootEl: any;
|
|
1650
1904
|
};
|
|
1651
1905
|
|
|
1652
|
-
declare function
|
|
1906
|
+
declare function __VLS_template_19(): {
|
|
1653
1907
|
attrs: Partial<{}>;
|
|
1654
1908
|
slots: Readonly<{
|
|
1655
1909
|
/**
|
|
@@ -1666,7 +1920,32 @@ declare function __VLS_template_16(): {
|
|
|
1666
1920
|
rootEl: HTMLElement;
|
|
1667
1921
|
};
|
|
1668
1922
|
|
|
1669
|
-
declare function
|
|
1923
|
+
declare function __VLS_template_2(): {
|
|
1924
|
+
attrs: Partial<{}>;
|
|
1925
|
+
slots: Readonly<{
|
|
1926
|
+
/**
|
|
1927
|
+
* The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
|
|
1928
|
+
*/
|
|
1929
|
+
left: VNode[];
|
|
1930
|
+
/**
|
|
1931
|
+
* Use this slot to insert buttons of the action bottom bar.
|
|
1932
|
+
*/
|
|
1933
|
+
right?: VNode[];
|
|
1934
|
+
}> & {
|
|
1935
|
+
/**
|
|
1936
|
+
* The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
|
|
1937
|
+
*/
|
|
1938
|
+
left: VNode[];
|
|
1939
|
+
/**
|
|
1940
|
+
* Use this slot to insert buttons of the action bottom bar.
|
|
1941
|
+
*/
|
|
1942
|
+
right?: VNode[];
|
|
1943
|
+
};
|
|
1944
|
+
refs: {};
|
|
1945
|
+
rootEl: HTMLDivElement;
|
|
1946
|
+
};
|
|
1947
|
+
|
|
1948
|
+
declare function __VLS_template_20(): {
|
|
1670
1949
|
attrs: Partial<{}>;
|
|
1671
1950
|
slots: Readonly<{
|
|
1672
1951
|
/**
|
|
@@ -1683,7 +1962,24 @@ declare function __VLS_template_17(): {
|
|
|
1683
1962
|
rootEl: HTMLDivElement;
|
|
1684
1963
|
};
|
|
1685
1964
|
|
|
1686
|
-
declare function
|
|
1965
|
+
declare function __VLS_template_3(): {
|
|
1966
|
+
attrs: Partial<{}>;
|
|
1967
|
+
slots: Readonly<{
|
|
1968
|
+
/**
|
|
1969
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
1970
|
+
*/
|
|
1971
|
+
default: VNode;
|
|
1972
|
+
}> & {
|
|
1973
|
+
/**
|
|
1974
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
1975
|
+
*/
|
|
1976
|
+
default: VNode;
|
|
1977
|
+
};
|
|
1978
|
+
refs: {};
|
|
1979
|
+
rootEl: HTMLSpanElement;
|
|
1980
|
+
};
|
|
1981
|
+
|
|
1982
|
+
declare function __VLS_template_4(): {
|
|
1687
1983
|
attrs: Partial<{}>;
|
|
1688
1984
|
slots: Readonly<{
|
|
1689
1985
|
/**
|
|
@@ -1708,7 +2004,7 @@ declare function __VLS_template_2(): {
|
|
|
1708
2004
|
rootEl: HTMLButtonElement;
|
|
1709
2005
|
};
|
|
1710
2006
|
|
|
1711
|
-
declare function
|
|
2007
|
+
declare function __VLS_template_5(): {
|
|
1712
2008
|
attrs: Partial<{}>;
|
|
1713
2009
|
slots: Readonly<{
|
|
1714
2010
|
/**
|
|
@@ -1733,7 +2029,7 @@ declare function __VLS_template_3(): {
|
|
|
1733
2029
|
rootEl: HTMLElement;
|
|
1734
2030
|
};
|
|
1735
2031
|
|
|
1736
|
-
declare function
|
|
2032
|
+
declare function __VLS_template_6(): {
|
|
1737
2033
|
attrs: Partial<{}>;
|
|
1738
2034
|
slots: Readonly<{
|
|
1739
2035
|
/**
|
|
@@ -1760,7 +2056,7 @@ declare function __VLS_template_4(): {
|
|
|
1760
2056
|
rootEl: HTMLDivElement;
|
|
1761
2057
|
};
|
|
1762
2058
|
|
|
1763
|
-
declare function
|
|
2059
|
+
declare function __VLS_template_7(): {
|
|
1764
2060
|
attrs: Partial<{}>;
|
|
1765
2061
|
slots: Readonly<{
|
|
1766
2062
|
/**
|
|
@@ -1777,7 +2073,7 @@ declare function __VLS_template_5(): {
|
|
|
1777
2073
|
rootEl: HTMLDivElement;
|
|
1778
2074
|
};
|
|
1779
2075
|
|
|
1780
|
-
declare function
|
|
2076
|
+
declare function __VLS_template_8(): {
|
|
1781
2077
|
attrs: Partial<{}>;
|
|
1782
2078
|
slots: Readonly<{
|
|
1783
2079
|
/**
|
|
@@ -1794,7 +2090,7 @@ declare function __VLS_template_6(): {
|
|
|
1794
2090
|
rootEl: HTMLDivElement;
|
|
1795
2091
|
};
|
|
1796
2092
|
|
|
1797
|
-
declare function
|
|
2093
|
+
declare function __VLS_template_9(): {
|
|
1798
2094
|
attrs: Partial<{}>;
|
|
1799
2095
|
slots: Readonly<{
|
|
1800
2096
|
/**
|
|
@@ -1821,40 +2117,6 @@ declare function __VLS_template_7(): {
|
|
|
1821
2117
|
rootEl: any;
|
|
1822
2118
|
};
|
|
1823
2119
|
|
|
1824
|
-
declare function __VLS_template_8(): {
|
|
1825
|
-
attrs: Partial<{}>;
|
|
1826
|
-
slots: Readonly<{
|
|
1827
|
-
/**
|
|
1828
|
-
* Use this slot to insert the form element of your choice
|
|
1829
|
-
*/
|
|
1830
|
-
default: VNode;
|
|
1831
|
-
}> & {
|
|
1832
|
-
/**
|
|
1833
|
-
* Use this slot to insert the form element of your choice
|
|
1834
|
-
*/
|
|
1835
|
-
default: VNode;
|
|
1836
|
-
};
|
|
1837
|
-
refs: {};
|
|
1838
|
-
rootEl: HTMLDivElement;
|
|
1839
|
-
};
|
|
1840
|
-
|
|
1841
|
-
declare function __VLS_template_9(): {
|
|
1842
|
-
attrs: Partial<{}>;
|
|
1843
|
-
slots: Readonly<{
|
|
1844
|
-
/**
|
|
1845
|
-
* Use this slot to insert the form element of your choice
|
|
1846
|
-
*/
|
|
1847
|
-
default: VNode;
|
|
1848
|
-
}> & {
|
|
1849
|
-
/**
|
|
1850
|
-
* Use this slot to insert the form element of your choice
|
|
1851
|
-
*/
|
|
1852
|
-
default: VNode;
|
|
1853
|
-
};
|
|
1854
|
-
refs: {};
|
|
1855
|
-
rootEl: HTMLFieldSetElement;
|
|
1856
|
-
};
|
|
1857
|
-
|
|
1858
2120
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1859
2121
|
|
|
1860
2122
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
@@ -1873,8 +2135,14 @@ declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
|
1873
2135
|
|
|
1874
2136
|
declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
|
|
1875
2137
|
|
|
2138
|
+
declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
|
|
2139
|
+
|
|
2140
|
+
declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
|
|
2141
|
+
|
|
1876
2142
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
1877
2143
|
|
|
2144
|
+
declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
2145
|
+
|
|
1878
2146
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
1879
2147
|
|
|
1880
2148
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
@@ -1943,12 +2211,30 @@ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
|
|
|
1943
2211
|
};
|
|
1944
2212
|
};
|
|
1945
2213
|
|
|
2214
|
+
declare type __VLS_WithTemplateSlots_18<T, S> = T & {
|
|
2215
|
+
new (): {
|
|
2216
|
+
$slots: S;
|
|
2217
|
+
};
|
|
2218
|
+
};
|
|
2219
|
+
|
|
2220
|
+
declare type __VLS_WithTemplateSlots_19<T, S> = T & {
|
|
2221
|
+
new (): {
|
|
2222
|
+
$slots: S;
|
|
2223
|
+
};
|
|
2224
|
+
};
|
|
2225
|
+
|
|
1946
2226
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
1947
2227
|
new (): {
|
|
1948
2228
|
$slots: S;
|
|
1949
2229
|
};
|
|
1950
2230
|
};
|
|
1951
2231
|
|
|
2232
|
+
declare type __VLS_WithTemplateSlots_20<T, S> = T & {
|
|
2233
|
+
new (): {
|
|
2234
|
+
$slots: S;
|
|
2235
|
+
};
|
|
2236
|
+
};
|
|
2237
|
+
|
|
1952
2238
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
1953
2239
|
new (): {
|
|
1954
2240
|
$slots: S;
|
|
@@ -1991,91 +2277,205 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
|
|
|
1991
2277
|
};
|
|
1992
2278
|
};
|
|
1993
2279
|
|
|
1994
|
-
|
|
2280
|
+
/**
|
|
2281
|
+
* A check-list menu is a structured vertical list where each item represents a distinct section of content. It enables users to navigate through and validate different parts of an interface in any order. Unlike linear steppers, this component offers flexibility by allowing non-sequential completion, making it ideal for user profile setup, application settings, or flexible onboarding processes where users can choose their own path through the experience.
|
|
2282
|
+
*/
|
|
2283
|
+
declare type CheckListMenuItem = Omit<MenuItem, 'icon'> & {
|
|
2284
|
+
checked: boolean;
|
|
2285
|
+
};
|
|
2286
|
+
|
|
2287
|
+
declare type FilesValidationState = Record<string, {
|
|
2288
|
+
size: boolean;
|
|
2289
|
+
extension: boolean;
|
|
2290
|
+
customValidation: boolean;
|
|
2291
|
+
}>;
|
|
2292
|
+
|
|
2293
|
+
/**
|
|
2294
|
+
* A file uploader allows users to upload one or multiple files by either dragging and dropping files into a dedicated area or selecting them manually through their local folders. It provides real-time feedback on upload progress and file status, including file name, size, and success or error indicators. File uploaders are commonly used in forms, content management systems, and document submission processes to facilitate seamless file handling.
|
|
2295
|
+
*/
|
|
2296
|
+
declare type FileUploaderProps = {
|
|
2297
|
+
/**
|
|
2298
|
+
* Model binding for the selected files (`NormalizedFile`)
|
|
2299
|
+
*/
|
|
2300
|
+
modelValue: NormalizedFile[];
|
|
2301
|
+
/**
|
|
2302
|
+
* File types allowed by the uploader.
|
|
2303
|
+
*/
|
|
2304
|
+
accept?: HTMLInputElement['accept'];
|
|
2305
|
+
/**
|
|
2306
|
+
* Enables selecting multiple files at once.
|
|
2307
|
+
*/
|
|
2308
|
+
multiple?: boolean;
|
|
2309
|
+
/**
|
|
2310
|
+
* File extensions to validate.
|
|
2311
|
+
*/
|
|
2312
|
+
allowedExtensions?: string[];
|
|
2313
|
+
/**
|
|
2314
|
+
* Maximum file size allowed (in bytes).
|
|
2315
|
+
*/
|
|
2316
|
+
maxSize?: number;
|
|
2317
|
+
/**
|
|
2318
|
+
* Custom validation rules applied to each file.
|
|
2319
|
+
*/
|
|
2320
|
+
rules?: ((file: NormalizedFile) => boolean)[];
|
|
2321
|
+
/**
|
|
2322
|
+
* Layout format of the item.
|
|
2323
|
+
*/
|
|
2324
|
+
format?: 'inline' | 'stacked';
|
|
2325
|
+
/**
|
|
2326
|
+
* Custom error message for the file.
|
|
2327
|
+
*/
|
|
2328
|
+
errorMessage?: string;
|
|
2329
|
+
/**
|
|
2330
|
+
* Label for the delete button.
|
|
2331
|
+
*/
|
|
2332
|
+
deleteButtonLabel?: string;
|
|
2333
|
+
/**
|
|
2334
|
+
* Optional informational text displayed under the file name.
|
|
2335
|
+
*/
|
|
2336
|
+
information?: string;
|
|
2337
|
+
/**
|
|
2338
|
+
* Enables drag & drop functionality.
|
|
2339
|
+
*/
|
|
2340
|
+
hasDragDrop?: boolean;
|
|
2341
|
+
/**
|
|
2342
|
+
* Controls the display of the uploaded files list.
|
|
2343
|
+
*/
|
|
2344
|
+
showFilesList?: boolean;
|
|
2345
|
+
/**
|
|
2346
|
+
* Disables the whole component.
|
|
2347
|
+
*/
|
|
2348
|
+
disabled?: boolean;
|
|
2349
|
+
/**
|
|
2350
|
+
* Main drag & drop title.
|
|
2351
|
+
*/
|
|
2352
|
+
title?: string;
|
|
2353
|
+
/**
|
|
2354
|
+
* Subtitle used in the drag & drop area.
|
|
2355
|
+
*/
|
|
2356
|
+
subtitle?: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* Label of the upload button.
|
|
2359
|
+
*/
|
|
2360
|
+
uploadButtonLabel?: string;
|
|
2361
|
+
};
|
|
2362
|
+
|
|
2363
|
+
export declare const MAccordionList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1995
2364
|
|
|
1996
|
-
export declare const
|
|
2365
|
+
export declare const MActionBottomBar: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
1997
2366
|
|
|
1998
|
-
export declare const
|
|
2367
|
+
export declare const MActionListbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1999
2368
|
|
|
2000
|
-
export declare const
|
|
2369
|
+
export declare const MAvatar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
2001
2370
|
|
|
2002
|
-
export declare const
|
|
2371
|
+
export declare const MBreadcrumb: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2003
2372
|
|
|
2004
|
-
export declare const
|
|
2005
|
-
"update:modelValue": (value:
|
|
2373
|
+
export declare const MBuiltInMenu: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2374
|
+
"update:modelValue": (value: number) => any;
|
|
2006
2375
|
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
2376
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2377
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2378
|
+
|
|
2379
|
+
export declare const MButton: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
2380
|
+
|
|
2381
|
+
export declare const MCallout: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
2382
|
+
|
|
2383
|
+
export declare const MCarousel: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
2384
|
+
|
|
2385
|
+
export declare const MCheckbox: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2386
|
+
"update:modelValue": (value: boolean) => any;
|
|
2387
|
+
}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
|
|
2007
2388
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2008
2389
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2009
2390
|
|
|
2010
|
-
export declare const MCheckboxGroup: DefineComponent<
|
|
2391
|
+
export declare const MCheckboxGroup: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2011
2392
|
"update:modelValue": (value: string[]) => any;
|
|
2012
|
-
}, string, PublicProps, Readonly<
|
|
2393
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
2013
2394
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2014
2395
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2015
2396
|
|
|
2016
|
-
export declare const
|
|
2397
|
+
export declare const MCheckListMenu: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2398
|
+
"update:modelValue": (value: number) => any;
|
|
2399
|
+
}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
|
|
2400
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2401
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2402
|
+
|
|
2403
|
+
export declare const MCircularProgressbar: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
|
|
2017
2404
|
type: "percentage" | "content";
|
|
2018
2405
|
value: number;
|
|
2019
2406
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2020
2407
|
|
|
2021
|
-
export declare const MContainer:
|
|
2408
|
+
export declare const MContainer: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2022
2409
|
|
|
2023
|
-
export declare const MDatepicker: DefineComponent<
|
|
2410
|
+
export declare const MDatepicker: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2024
2411
|
"update:modelValue": (value: string | number) => any;
|
|
2025
|
-
}, string, PublicProps, Readonly<
|
|
2412
|
+
}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
|
|
2026
2413
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2027
2414
|
}>, {
|
|
2028
2415
|
size: "s" | "m";
|
|
2029
2416
|
clearLabel: string;
|
|
2030
2417
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2031
2418
|
|
|
2032
|
-
export declare const MDivider:
|
|
2419
|
+
export declare const MDivider: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
2420
|
+
|
|
2421
|
+
export declare const MDrawer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
2422
|
+
|
|
2423
|
+
/**
|
|
2424
|
+
* A built-in menu is a structured list of navigational or interactive options, typically displayed as a vertical stack. It allows users to browse categories, access settings, or navigate through different sections of an interface.
|
|
2425
|
+
*/
|
|
2426
|
+
declare type MenuItem = {
|
|
2427
|
+
label: string;
|
|
2428
|
+
icon?: Component;
|
|
2429
|
+
href?: string;
|
|
2430
|
+
to?: string;
|
|
2431
|
+
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
2432
|
+
};
|
|
2033
2433
|
|
|
2034
|
-
export declare const
|
|
2434
|
+
export declare const MField: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2035
2435
|
|
|
2036
|
-
export declare const
|
|
2436
|
+
export declare const MFieldGroup: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
2037
2437
|
|
|
2038
|
-
export declare const
|
|
2438
|
+
export declare const MFileUploader: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
2039
2439
|
|
|
2040
|
-
export declare const MFlag: DefineComponent<
|
|
2440
|
+
export declare const MFlag: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2041
2441
|
|
|
2042
|
-
export declare const MIconButton:
|
|
2442
|
+
export declare const MIconButton: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
2043
2443
|
|
|
2044
|
-
export declare const MLinearProgressbarBuffer: DefineComponent<
|
|
2444
|
+
export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
|
|
2045
2445
|
value: number;
|
|
2046
2446
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2047
2447
|
|
|
2048
|
-
export declare const MLinearProgressbarPercentage: DefineComponent<
|
|
2448
|
+
export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
2049
2449
|
value: number;
|
|
2050
2450
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2051
2451
|
|
|
2052
|
-
export declare const MLink:
|
|
2452
|
+
export declare const MLink: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2053
2453
|
|
|
2054
|
-
export declare const MLoader: DefineComponent<
|
|
2055
|
-
size: "xs" | "s" | "m" | "l";
|
|
2454
|
+
export declare const MLoader: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
|
|
2056
2455
|
appearance: "standard" | "accent" | "inverse";
|
|
2456
|
+
size: "xs" | "s" | "m" | "l";
|
|
2057
2457
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2058
2458
|
|
|
2059
|
-
export declare const MLoadingOverlay: DefineComponent<
|
|
2459
|
+
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2060
2460
|
|
|
2061
|
-
export declare const MModal:
|
|
2461
|
+
export declare const MModal: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2062
2462
|
|
|
2063
|
-
export declare const MNumberBadge: DefineComponent<
|
|
2064
|
-
size: "s" | "m";
|
|
2463
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
|
|
2065
2464
|
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
2465
|
+
size: "s" | "m";
|
|
2066
2466
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2067
2467
|
|
|
2068
|
-
export declare const MOverlay:
|
|
2468
|
+
export declare const MOverlay: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2069
2469
|
|
|
2070
|
-
export declare const MPagination: DefineComponent<
|
|
2470
|
+
export declare const MPagination: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2071
2471
|
"update:modelValue": (value: number) => any;
|
|
2072
|
-
}, string, PublicProps, Readonly<
|
|
2472
|
+
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
2073
2473
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2074
2474
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2075
2475
|
|
|
2076
|
-
export declare const MPasswordInput: DefineComponent<
|
|
2476
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2077
2477
|
"update:modelValue": (value: string | number) => any;
|
|
2078
|
-
}, string, PublicProps, Readonly<
|
|
2478
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
2079
2479
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2080
2480
|
}>, {
|
|
2081
2481
|
clearLabel: string;
|
|
@@ -2121,9 +2521,9 @@ iconPosition?: "left" | "right" | "only";
|
|
|
2121
2521
|
type?: "button" | "reset" | "submit";
|
|
2122
2522
|
isLoading?: boolean;
|
|
2123
2523
|
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2124
|
-
size: "s" | "m" | "l";
|
|
2125
|
-
type: "button" | "reset" | "submit";
|
|
2126
2524
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
2525
|
+
type: "button" | "reset" | "submit";
|
|
2526
|
+
size: "s" | "m" | "l";
|
|
2127
2527
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
2128
2528
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2129
2529
|
created?: (() => void) | (() => void)[];
|
|
@@ -2145,9 +2545,9 @@ $forceUpdate: () => void;
|
|
|
2145
2545
|
$nextTick: nextTick;
|
|
2146
2546
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
|
|
2147
2547
|
} & Readonly<{
|
|
2148
|
-
size: "s" | "m" | "l";
|
|
2149
|
-
type: "button" | "reset" | "submit";
|
|
2150
2548
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
2549
|
+
type: "button" | "reset" | "submit";
|
|
2550
|
+
size: "s" | "m" | "l";
|
|
2151
2551
|
}> & Omit<Readonly<{
|
|
2152
2552
|
appearance?: "standard" | "accent" | "danger" | "inverse";
|
|
2153
2553
|
size?: "s" | "m" | "l";
|
|
@@ -2157,7 +2557,7 @@ outlined?: boolean;
|
|
|
2157
2557
|
iconPosition?: "left" | "right" | "only";
|
|
2158
2558
|
type?: "button" | "reset" | "submit";
|
|
2159
2559
|
isLoading?: boolean;
|
|
2160
|
-
}> & Readonly<{}>, "
|
|
2560
|
+
}> & Readonly<{}>, "appearance" | "type" | "size"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
2161
2561
|
$slots: Readonly<{
|
|
2162
2562
|
default: string;
|
|
2163
2563
|
icon?: VNode;
|
|
@@ -2168,68 +2568,68 @@ icon?: VNode;
|
|
|
2168
2568
|
}) | null;
|
|
2169
2569
|
}, any>;
|
|
2170
2570
|
|
|
2171
|
-
export declare const MPhoneNumber: DefineComponent<
|
|
2571
|
+
export declare const MPhoneNumber: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2172
2572
|
"update:modelValue": (value: string) => any;
|
|
2173
2573
|
valid: (isValid: boolean) => any;
|
|
2174
|
-
}, string, PublicProps, Readonly<
|
|
2574
|
+
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
2175
2575
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2176
2576
|
onValid?: ((isValid: boolean) => any) | undefined;
|
|
2177
2577
|
}>, {
|
|
2178
|
-
size: "s" | "m";
|
|
2179
2578
|
modelValue: string;
|
|
2579
|
+
size: "s" | "m";
|
|
2180
2580
|
defaultCountry: CountryCode;
|
|
2181
2581
|
prefix: boolean;
|
|
2182
2582
|
flag: boolean;
|
|
2183
2583
|
locale: string;
|
|
2184
2584
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2185
2585
|
|
|
2186
|
-
export declare const MPincode: DefineComponent<
|
|
2586
|
+
export declare const MPincode: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2187
2587
|
"update:modelValue": (value: string) => any;
|
|
2188
|
-
}, string, PublicProps, Readonly<
|
|
2588
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
2189
2589
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2190
2590
|
}>, {
|
|
2191
2591
|
length: 4 | 5 | 6;
|
|
2192
2592
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2193
2593
|
|
|
2194
|
-
export declare const MQuantitySelector: DefineComponent<
|
|
2594
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2195
2595
|
"update:modelValue": (value: number) => any;
|
|
2196
|
-
}, string, PublicProps, Readonly<
|
|
2596
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
2197
2597
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2198
2598
|
}>, {
|
|
2199
|
-
size: "s" | "m";
|
|
2200
|
-
name: string;
|
|
2201
2599
|
modelValue: number;
|
|
2600
|
+
size: "s" | "m";
|
|
2202
2601
|
step: number;
|
|
2602
|
+
name: string;
|
|
2203
2603
|
min: number;
|
|
2204
2604
|
max: number;
|
|
2205
2605
|
incrementlabel: string;
|
|
2206
2606
|
decrementLabel: string;
|
|
2207
2607
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2208
2608
|
|
|
2209
|
-
export declare const MRadio: DefineComponent<
|
|
2609
|
+
export declare const MRadio: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2210
2610
|
"update:modelValue": (value: boolean) => any;
|
|
2211
|
-
}, string, PublicProps, Readonly<
|
|
2611
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
2212
2612
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2213
2613
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2214
2614
|
|
|
2215
|
-
export declare const MRadioGroup: DefineComponent<
|
|
2615
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2216
2616
|
"update:modelValue": (value: string) => any;
|
|
2217
|
-
}, string, PublicProps, Readonly<
|
|
2617
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
2218
2618
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2219
2619
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2220
2620
|
|
|
2221
|
-
export declare const MSegmentedControl: DefineComponent<
|
|
2621
|
+
export declare const MSegmentedControl: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2222
2622
|
"update:modelValue": (value: number) => any;
|
|
2223
|
-
}, string, PublicProps, Readonly<
|
|
2623
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
2224
2624
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2225
2625
|
}>, {
|
|
2226
|
-
size: "s" | "m";
|
|
2227
2626
|
modelValue: number;
|
|
2627
|
+
size: "s" | "m";
|
|
2228
2628
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2229
2629
|
|
|
2230
|
-
export declare const MSelect: DefineComponent<
|
|
2630
|
+
export declare const MSelect: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2231
2631
|
"update:modelValue": (value: string | number) => any;
|
|
2232
|
-
}, string, PublicProps, Readonly<
|
|
2632
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
2233
2633
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2234
2634
|
}>, {
|
|
2235
2635
|
size: "s" | "m";
|
|
@@ -2240,34 +2640,66 @@ export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
2240
2640
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
2241
2641
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2242
2642
|
}>, {
|
|
2243
|
-
size: "s" | "m" | "l";
|
|
2244
2643
|
appearance: "standard" | "accent";
|
|
2644
|
+
size: "s" | "m" | "l";
|
|
2245
2645
|
readonly: boolean;
|
|
2246
2646
|
compact: boolean;
|
|
2247
2647
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2248
2648
|
|
|
2249
|
-
export declare const MStatusBadge: DefineComponent<
|
|
2649
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{}>, {
|
|
2250
2650
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2251
2651
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2252
2652
|
|
|
2253
|
-
export declare const MStatusDot: DefineComponent<
|
|
2653
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{}>, {
|
|
2254
2654
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2255
2655
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2256
2656
|
|
|
2257
|
-
export declare const MStatusMessage: DefineComponent<
|
|
2657
|
+
export declare const MStatusMessage: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
|
|
2258
2658
|
status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
|
|
2259
2659
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2260
2660
|
|
|
2261
|
-
export declare const MStatusNotification:
|
|
2661
|
+
export declare const MStatusNotification: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
2262
2662
|
|
|
2263
|
-
export declare const
|
|
2663
|
+
export declare const MStepperBottomBar: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2664
|
+
"update:modelValue": (value: number) => any;
|
|
2665
|
+
cancel: () => any;
|
|
2666
|
+
validate: () => any;
|
|
2667
|
+
}, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
|
|
2668
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2669
|
+
onCancel?: (() => any) | undefined;
|
|
2670
|
+
onValidate?: (() => any) | undefined;
|
|
2671
|
+
}>, {
|
|
2672
|
+
modelValue: number;
|
|
2673
|
+
steps: number;
|
|
2674
|
+
cancel: boolean;
|
|
2675
|
+
cancelLabel: string;
|
|
2676
|
+
previousLabel: string;
|
|
2677
|
+
nextLabel: string;
|
|
2678
|
+
validateLabel: string;
|
|
2679
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2680
|
+
|
|
2681
|
+
export declare const MStepperCompact: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{}>, {
|
|
2264
2682
|
value: number;
|
|
2265
2683
|
maxSteps: number;
|
|
2266
2684
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2267
2685
|
|
|
2268
|
-
export declare const
|
|
2686
|
+
export declare const MStepperInline: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {
|
|
2687
|
+
steps: Array<{
|
|
2688
|
+
/**
|
|
2689
|
+
* Label of the step.
|
|
2690
|
+
*/
|
|
2691
|
+
label: string;
|
|
2692
|
+
/**
|
|
2693
|
+
* Optional additional information under the label.
|
|
2694
|
+
*/
|
|
2695
|
+
additionalInfo?: string;
|
|
2696
|
+
}>;
|
|
2697
|
+
currentStep: number;
|
|
2698
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2699
|
+
|
|
2700
|
+
export declare const MTabs: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2269
2701
|
"update:modelValue": (value: number) => any;
|
|
2270
|
-
}, string, PublicProps, Readonly<
|
|
2702
|
+
}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
|
|
2271
2703
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2272
2704
|
}>, {
|
|
2273
2705
|
modelValue: number;
|
|
@@ -2276,10 +2708,10 @@ divider: boolean;
|
|
|
2276
2708
|
tab: HTMLButtonElement;
|
|
2277
2709
|
}, HTMLElement>;
|
|
2278
2710
|
|
|
2279
|
-
export declare const MTag: DefineComponent<
|
|
2711
|
+
export declare const MTag: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2280
2712
|
"update:modelValue": (value: boolean) => any;
|
|
2281
2713
|
"remove-tag": (id: string) => any;
|
|
2282
|
-
}, string, PublicProps, Readonly<
|
|
2714
|
+
}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
|
|
2283
2715
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2284
2716
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
2285
2717
|
}>, {
|
|
@@ -2288,32 +2720,38 @@ contextualisedNumber: number;
|
|
|
2288
2720
|
removableLabel: string;
|
|
2289
2721
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2290
2722
|
|
|
2291
|
-
export declare const MTextArea: DefineComponent<
|
|
2723
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2292
2724
|
"update:modelValue": (value: string | number) => any;
|
|
2293
|
-
}, string, PublicProps, Readonly<
|
|
2725
|
+
}, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
|
|
2294
2726
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2295
2727
|
}>, {
|
|
2296
2728
|
rows: number;
|
|
2297
2729
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2298
2730
|
|
|
2299
|
-
export declare const MTextInput:
|
|
2731
|
+
export declare const MTextInput: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
2300
2732
|
|
|
2301
|
-
export declare const MToaster:
|
|
2733
|
+
export declare const MToaster: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2302
2734
|
|
|
2303
|
-
export declare const MToggle: DefineComponent<
|
|
2735
|
+
export declare const MToggle: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2304
2736
|
"update:modelValue": (value: boolean) => any;
|
|
2305
|
-
}, string, PublicProps, Readonly<
|
|
2737
|
+
}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{
|
|
2306
2738
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2307
2739
|
}>, {
|
|
2308
2740
|
size: "s" | "m";
|
|
2309
2741
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2310
2742
|
|
|
2311
|
-
export declare const MToggleGroup: DefineComponent<
|
|
2743
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2312
2744
|
"update:modelValue": (value: string[]) => any;
|
|
2313
|
-
}, string, PublicProps, Readonly<
|
|
2745
|
+
}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
|
|
2314
2746
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2315
2747
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2316
2748
|
|
|
2317
|
-
export declare const MTooltip:
|
|
2749
|
+
export declare const MTooltip: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
2750
|
+
|
|
2751
|
+
declare type NormalizedFile = {
|
|
2752
|
+
name: string;
|
|
2753
|
+
size?: number;
|
|
2754
|
+
type?: HTMLInputElement['accept'];
|
|
2755
|
+
};
|
|
2318
2756
|
|
|
2319
2757
|
export { }
|