@mozaic-ds/vue 2.12.0 → 2.13.1
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 +816 -385
- package/dist/mozaic-vue.js +2953 -2446
- 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.stories.ts +2 -1
- package/src/components/builtinmenu/MBuiltInMenu.vue +1 -1
- package/src/components/builtinmenu/README.md +14 -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 +1 -1
- package/src/components/checklistmenu/MCheckListMenu.stories.ts +1 -0
- package/src/components/checklistmenu/MCheckListMenu.vue +1 -1
- package/src/components/checklistmenu/README.md +14 -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.vue +1 -2
- 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 +7 -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,81 @@ 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<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}
|
|
30
|
-
|
|
31
|
-
|
|
34
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
35
|
+
back: () => any;
|
|
36
|
+
"update:open": (value: boolean) => any;
|
|
37
|
+
}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
|
|
38
|
+
onBack?: (() => any) | undefined;
|
|
39
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
40
|
+
}>, {
|
|
41
|
+
scroll: boolean;
|
|
42
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
43
|
+
titleRef: HTMLHeadingElement;
|
|
44
|
+
}, any>;
|
|
45
|
+
|
|
46
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
47
|
+
|
|
48
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
|
|
49
|
+
|
|
50
|
+
declare const __VLS_component_13: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
51
|
+
"update:modelValue": (v: NormalizedFile[]) => any;
|
|
52
|
+
validation: (validationState: FilesValidationState) => any;
|
|
53
|
+
}, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
|
|
54
|
+
"onUpdate:modelValue"?: ((v: NormalizedFile[]) => any) | undefined;
|
|
55
|
+
onValidation?: ((validationState: FilesValidationState) => any) | undefined;
|
|
56
|
+
}>, {
|
|
57
|
+
title: string;
|
|
58
|
+
subtitle: string;
|
|
59
|
+
hasDragDrop: boolean;
|
|
60
|
+
showFilesList: boolean;
|
|
61
|
+
uploadButtonLabel: string;
|
|
62
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
63
|
+
fileInput: HTMLInputElement;
|
|
64
|
+
}, HTMLDivElement>;
|
|
65
|
+
|
|
66
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
|
|
32
67
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
68
|
+
type: "button" | "reset" | "submit";
|
|
69
|
+
size: "s" | "m" | "l";
|
|
33
70
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
34
71
|
|
|
35
|
-
declare const
|
|
72
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
|
|
73
|
+
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
36
74
|
size: "s" | "m";
|
|
37
75
|
iconPosition: "left" | "right";
|
|
38
|
-
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
39
76
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
40
77
|
|
|
41
|
-
declare const
|
|
78
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
42
79
|
"update:open": (value: boolean) => any;
|
|
43
|
-
}, string, PublicProps, Readonly<
|
|
80
|
+
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
44
81
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
45
82
|
}>, {
|
|
46
83
|
scroll: boolean;
|
|
47
84
|
closable: boolean;
|
|
48
85
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
86
|
|
|
50
|
-
declare const
|
|
87
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
51
88
|
|
|
52
|
-
declare const
|
|
89
|
+
declare const __VLS_component_18: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
53
90
|
close: () => any;
|
|
54
|
-
}, string, PublicProps, Readonly<
|
|
91
|
+
}, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
|
|
55
92
|
onClose?: (() => any) | undefined;
|
|
56
93
|
}>, {
|
|
57
94
|
status: "info" | "success" | "warning" | "error";
|
|
58
95
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
59
96
|
|
|
60
|
-
declare const
|
|
97
|
+
declare const __VLS_component_19: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
61
98
|
"update:modelValue": (value: string | number) => any;
|
|
62
|
-
}, string, PublicProps, Readonly<
|
|
99
|
+
}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{
|
|
63
100
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
64
101
|
}>, {
|
|
65
102
|
size: "s" | "m";
|
|
@@ -67,75 +104,172 @@ clearLabel: string;
|
|
|
67
104
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
68
105
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
69
106
|
|
|
70
|
-
declare const
|
|
107
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
108
|
+
|
|
109
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
71
110
|
"update:open": (value: boolean) => any;
|
|
72
|
-
}, string, PublicProps, Readonly<
|
|
111
|
+
}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
|
|
73
112
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
74
113
|
}>, {
|
|
75
114
|
status: "info" | "success" | "warning" | "error";
|
|
76
115
|
closable: boolean;
|
|
77
116
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
78
117
|
|
|
79
|
-
declare const
|
|
118
|
+
declare const __VLS_component_21: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{}>, {
|
|
80
119
|
position: "top" | "bottom" | "left" | "right";
|
|
81
120
|
pointer: boolean;
|
|
82
121
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
83
122
|
|
|
84
|
-
declare const
|
|
123
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
124
|
+
|
|
125
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
|
|
85
126
|
size: "s" | "m" | "l";
|
|
86
|
-
|
|
127
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
128
|
+
|
|
129
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
|
|
87
130
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
131
|
+
type: "button" | "reset" | "submit";
|
|
132
|
+
size: "s" | "m" | "l";
|
|
88
133
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
89
134
|
|
|
90
|
-
declare const
|
|
135
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
91
136
|
appearance: "standard" | "accent" | "tips" | "inverse";
|
|
92
137
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
93
138
|
|
|
94
|
-
declare const
|
|
139
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
95
140
|
previousButtonAriaLabel: string;
|
|
96
141
|
nextButtonAriaLabel: string;
|
|
97
142
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
98
143
|
contentContainer: HTMLDivElement;
|
|
99
144
|
}, HTMLDivElement>;
|
|
100
145
|
|
|
101
|
-
declare const
|
|
146
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
102
147
|
|
|
103
|
-
declare const
|
|
104
|
-
size: "s" | "m" | "l";
|
|
148
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
105
149
|
appearance: "primary" | "secondary" | "tertiary" | "inverse";
|
|
150
|
+
size: "s" | "m" | "l";
|
|
106
151
|
orientation: "vertical" | "horizontal";
|
|
107
152
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
108
153
|
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
154
|
+
/**
|
|
155
|
+
* 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.
|
|
156
|
+
*/
|
|
157
|
+
declare type __VLS_Props = {
|
|
158
|
+
/**
|
|
159
|
+
* Defines the visual appearance of the button.
|
|
160
|
+
*/
|
|
161
|
+
appearance?: 'standard' | 'ghost';
|
|
162
|
+
/**
|
|
163
|
+
* 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..
|
|
164
|
+
*/
|
|
165
|
+
behavior?: 'multiple' | 'single';
|
|
166
|
+
/**
|
|
167
|
+
* IDs of the Accordion items that are currently open. Updating this array controls which sections are expanded.
|
|
168
|
+
*/
|
|
169
|
+
modelValue?: string[];
|
|
170
|
+
};
|
|
120
171
|
|
|
121
|
-
|
|
172
|
+
/**
|
|
173
|
+
* 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.
|
|
174
|
+
*/
|
|
175
|
+
declare type __VLS_Props_10 = {
|
|
176
|
+
/**
|
|
177
|
+
* Aria label for the previous button.
|
|
178
|
+
*/
|
|
179
|
+
previousButtonAriaLabel?: string;
|
|
180
|
+
/**
|
|
181
|
+
* Aria label for the next button.
|
|
182
|
+
*/
|
|
183
|
+
nextButtonAriaLabel?: string;
|
|
184
|
+
};
|
|
122
185
|
|
|
123
|
-
|
|
186
|
+
/**
|
|
187
|
+
* 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.
|
|
188
|
+
*/
|
|
189
|
+
declare type __VLS_Props_11 = {
|
|
190
|
+
/**
|
|
191
|
+
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
192
|
+
*/
|
|
193
|
+
id: string;
|
|
194
|
+
/**
|
|
195
|
+
* The name attribute for the checkbox element, typically used for form submission.
|
|
196
|
+
*/
|
|
197
|
+
name?: string;
|
|
198
|
+
/**
|
|
199
|
+
* The text label displayed next to the checkbox.
|
|
200
|
+
*/
|
|
201
|
+
label?: string;
|
|
202
|
+
/**
|
|
203
|
+
* The checkbox's checked state, bound via v-model.
|
|
204
|
+
*/
|
|
205
|
+
modelValue?: boolean;
|
|
206
|
+
/**
|
|
207
|
+
* Sets the checkbox to an indeterminate state (partially selected).
|
|
208
|
+
*/
|
|
209
|
+
indeterminate?: boolean;
|
|
210
|
+
/**
|
|
211
|
+
* If `true`, applies an invalid state to the checkbox.
|
|
212
|
+
*/
|
|
213
|
+
isInvalid?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* If `true`, disables the checkbox, making it non-interactive.
|
|
216
|
+
*/
|
|
217
|
+
disabled?: boolean;
|
|
218
|
+
/**
|
|
219
|
+
* If `true`, indent the checkbox.
|
|
220
|
+
*/
|
|
221
|
+
indented?: boolean;
|
|
222
|
+
};
|
|
124
223
|
|
|
125
224
|
/**
|
|
126
|
-
*
|
|
225
|
+
* 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).
|
|
127
226
|
*/
|
|
128
|
-
declare type
|
|
227
|
+
declare type __VLS_Props_12 = {
|
|
129
228
|
/**
|
|
130
|
-
*
|
|
229
|
+
* The name attribute for the checkbox element, typically used for form submission.
|
|
131
230
|
*/
|
|
132
|
-
|
|
231
|
+
name: string;
|
|
232
|
+
/**
|
|
233
|
+
* Property used to manage the values checked by v-model
|
|
234
|
+
* (Do not use directly)
|
|
235
|
+
*/
|
|
236
|
+
modelValue?: Array<string>;
|
|
237
|
+
/**
|
|
238
|
+
* list of properties of each checkbox button of the checkbox group
|
|
239
|
+
*/
|
|
240
|
+
options: Array<{
|
|
241
|
+
id: string;
|
|
242
|
+
label: string;
|
|
243
|
+
value: string;
|
|
244
|
+
disabled?: boolean;
|
|
245
|
+
isInvalid?: boolean;
|
|
246
|
+
indented?: boolean;
|
|
247
|
+
}>;
|
|
248
|
+
/**
|
|
249
|
+
* If `true`, make the form element of the group inline.
|
|
250
|
+
*/
|
|
251
|
+
inline?: boolean;
|
|
252
|
+
};
|
|
253
|
+
|
|
254
|
+
declare type __VLS_Props_13 = {
|
|
255
|
+
/**
|
|
256
|
+
* 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.
|
|
257
|
+
*/
|
|
258
|
+
modelValue?: number;
|
|
259
|
+
/**
|
|
260
|
+
* Defines the menu items, each of which sets a checked state and act as a button, link, or router-link.
|
|
261
|
+
*/
|
|
262
|
+
items: CheckListMenuItem[];
|
|
263
|
+
/**
|
|
264
|
+
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
265
|
+
*/
|
|
266
|
+
outlined?: boolean;
|
|
133
267
|
};
|
|
134
268
|
|
|
135
269
|
/**
|
|
136
270
|
* 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.
|
|
137
271
|
*/
|
|
138
|
-
declare type
|
|
272
|
+
declare type __VLS_Props_14 = {
|
|
139
273
|
/**
|
|
140
274
|
* Sets the size of the progress bar.
|
|
141
275
|
*/
|
|
@@ -161,7 +295,7 @@ declare type __VLS_Props_10 = {
|
|
|
161
295
|
/**
|
|
162
296
|
* 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.
|
|
163
297
|
*/
|
|
164
|
-
declare type
|
|
298
|
+
declare type __VLS_Props_15 = {
|
|
165
299
|
/**
|
|
166
300
|
* If `true`, the container will take the full width.
|
|
167
301
|
*/
|
|
@@ -171,7 +305,7 @@ declare type __VLS_Props_11 = {
|
|
|
171
305
|
/**
|
|
172
306
|
* 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).
|
|
173
307
|
*/
|
|
174
|
-
declare type
|
|
308
|
+
declare type __VLS_Props_16 = {
|
|
175
309
|
/**
|
|
176
310
|
* A unique identifier for the datepicker element, used to associate the label with the form element.
|
|
177
311
|
*/
|
|
@@ -213,7 +347,7 @@ declare type __VLS_Props_12 = {
|
|
|
213
347
|
/**
|
|
214
348
|
* 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.
|
|
215
349
|
*/
|
|
216
|
-
declare type
|
|
350
|
+
declare type __VLS_Props_17 = {
|
|
217
351
|
/**
|
|
218
352
|
* Determines the orientation of the divider.
|
|
219
353
|
*/
|
|
@@ -231,7 +365,7 @@ declare type __VLS_Props_13 = {
|
|
|
231
365
|
/**
|
|
232
366
|
* 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.
|
|
233
367
|
*/
|
|
234
|
-
declare type
|
|
368
|
+
declare type __VLS_Props_18 = {
|
|
235
369
|
/**
|
|
236
370
|
* If `true`, display the drawer.
|
|
237
371
|
*/
|
|
@@ -269,7 +403,7 @@ declare type __VLS_Props_14 = {
|
|
|
269
403
|
/**
|
|
270
404
|
* 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.
|
|
271
405
|
*/
|
|
272
|
-
declare type
|
|
406
|
+
declare type __VLS_Props_19 = {
|
|
273
407
|
/**
|
|
274
408
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
275
409
|
*/
|
|
@@ -312,10 +446,36 @@ declare type __VLS_Props_15 = {
|
|
|
312
446
|
message?: string;
|
|
313
447
|
};
|
|
314
448
|
|
|
449
|
+
declare type __VLS_Props_2 = {
|
|
450
|
+
/**
|
|
451
|
+
* A unique identifier for the accordion item.
|
|
452
|
+
* It links the trigger button (`aria-controls`) to its associated content (`aria-labelledby`),
|
|
453
|
+
* ensuring accessibility and tracking the open/closed state.
|
|
454
|
+
* If no ID is provided, a unique one is generated automatically.
|
|
455
|
+
*/
|
|
456
|
+
id: string;
|
|
457
|
+
/**
|
|
458
|
+
* The main heading of the accordion item. This is the primary text visible to users in the collapsed state and acts as the trigger for expanding or collapsing the content.
|
|
459
|
+
*/
|
|
460
|
+
title: string;
|
|
461
|
+
/**
|
|
462
|
+
* An optional secondary heading displayed below the title. It provides additional context or detail about the content of the accordion item.
|
|
463
|
+
*/
|
|
464
|
+
subtitle?: string;
|
|
465
|
+
/**
|
|
466
|
+
* The main content of the accordion item. This is the information revealed when the accordion is expanded, typically containing text, HTML, or other elements.
|
|
467
|
+
*/
|
|
468
|
+
content?: string;
|
|
469
|
+
/**
|
|
470
|
+
* Icon component to display before the item title.
|
|
471
|
+
*/
|
|
472
|
+
icon?: Component;
|
|
473
|
+
};
|
|
474
|
+
|
|
315
475
|
/**
|
|
316
476
|
* 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.
|
|
317
477
|
*/
|
|
318
|
-
declare type
|
|
478
|
+
declare type __VLS_Props_20 = {
|
|
319
479
|
/**
|
|
320
480
|
* A unique identifier for the form field, used to associate the label with the form element.
|
|
321
481
|
*/
|
|
@@ -349,7 +509,7 @@ declare type __VLS_Props_16 = {
|
|
|
349
509
|
/**
|
|
350
510
|
* 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.
|
|
351
511
|
*/
|
|
352
|
-
declare type
|
|
512
|
+
declare type __VLS_Props_21 = {
|
|
353
513
|
/**
|
|
354
514
|
* Label of the Flag.
|
|
355
515
|
*/
|
|
@@ -363,7 +523,7 @@ declare type __VLS_Props_17 = {
|
|
|
363
523
|
/**
|
|
364
524
|
* 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.
|
|
365
525
|
*/
|
|
366
|
-
declare type
|
|
526
|
+
declare type __VLS_Props_22 = {
|
|
367
527
|
/**
|
|
368
528
|
* Defines the visual style of the icon button.
|
|
369
529
|
*/
|
|
@@ -391,50 +551,53 @@ declare type __VLS_Props_18 = {
|
|
|
391
551
|
};
|
|
392
552
|
|
|
393
553
|
/**
|
|
394
|
-
* A
|
|
554
|
+
* A KPI Item is used to display Key Performance Indicators (KPIs) within an interface, providing a quick and clear visualization of essential data. It often includes contextual elements such as labels, trends, or status indicators to help users interpret the information at a glance. KPI Items are commonly used in dashboards, reports, and analytics tools to highlight critical metrics and facilitate data-driven decision-making.
|
|
395
555
|
*/
|
|
396
|
-
declare type
|
|
556
|
+
declare type __VLS_Props_23 = {
|
|
397
557
|
/**
|
|
398
|
-
*
|
|
558
|
+
* The current value of the kpi item.
|
|
399
559
|
*/
|
|
400
|
-
|
|
560
|
+
value: string;
|
|
401
561
|
/**
|
|
402
|
-
*
|
|
562
|
+
* Defines the evolution of the kpi.
|
|
403
563
|
*/
|
|
404
|
-
|
|
564
|
+
trend?: 'increasing' | 'decreasing' | 'stable';
|
|
565
|
+
/**
|
|
566
|
+
* Label of the kpi item.
|
|
567
|
+
*/
|
|
568
|
+
label?: string;
|
|
569
|
+
/**
|
|
570
|
+
* Allows to define the kpi item status.
|
|
571
|
+
*/
|
|
572
|
+
status?: 'info' | 'warning' | 'error' | 'success' | 'neutral';
|
|
573
|
+
/**
|
|
574
|
+
* The evolution information defining the kpi.
|
|
575
|
+
*/
|
|
576
|
+
information?: string;
|
|
577
|
+
/**
|
|
578
|
+
* Allows to define the kpi item size.
|
|
579
|
+
*/
|
|
580
|
+
size?: 's' | 'm' | 'l';
|
|
405
581
|
};
|
|
406
582
|
|
|
407
583
|
/**
|
|
408
|
-
* A
|
|
584
|
+
* 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.
|
|
409
585
|
*/
|
|
410
|
-
declare type
|
|
586
|
+
declare type __VLS_Props_24 = {
|
|
411
587
|
/**
|
|
412
|
-
* Allows to define the
|
|
588
|
+
* Allows to define the progress bar size.
|
|
413
589
|
*/
|
|
414
|
-
|
|
590
|
+
size?: 's' | 'm' | 'l';
|
|
415
591
|
/**
|
|
416
|
-
*
|
|
592
|
+
* The current value of the progress bar.
|
|
417
593
|
*/
|
|
418
|
-
|
|
419
|
-
/**
|
|
420
|
-
* The label displayed for the link.
|
|
421
|
-
*/
|
|
422
|
-
label: string;
|
|
423
|
-
/**
|
|
424
|
-
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
425
|
-
*/
|
|
426
|
-
href: string;
|
|
427
|
-
/**
|
|
428
|
-
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
429
|
-
*/
|
|
430
|
-
router?: boolean;
|
|
431
|
-
}>;
|
|
594
|
+
value?: number;
|
|
432
595
|
};
|
|
433
596
|
|
|
434
597
|
/**
|
|
435
598
|
* 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.
|
|
436
599
|
*/
|
|
437
|
-
declare type
|
|
600
|
+
declare type __VLS_Props_25 = {
|
|
438
601
|
/**
|
|
439
602
|
* The current value of the progress bar.
|
|
440
603
|
*/
|
|
@@ -444,7 +607,7 @@ declare type __VLS_Props_20 = {
|
|
|
444
607
|
/**
|
|
445
608
|
* 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.
|
|
446
609
|
*/
|
|
447
|
-
declare type
|
|
610
|
+
declare type __VLS_Props_26 = {
|
|
448
611
|
/**
|
|
449
612
|
* Position of the icon relative to the text.
|
|
450
613
|
*/
|
|
@@ -478,7 +641,7 @@ declare type __VLS_Props_21 = {
|
|
|
478
641
|
/**
|
|
479
642
|
* 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.
|
|
480
643
|
*/
|
|
481
|
-
declare type
|
|
644
|
+
declare type __VLS_Props_27 = {
|
|
482
645
|
/**
|
|
483
646
|
* Specifies the visual appearance of the loader.
|
|
484
647
|
*/
|
|
@@ -496,7 +659,7 @@ declare type __VLS_Props_22 = {
|
|
|
496
659
|
/**
|
|
497
660
|
* 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.
|
|
498
661
|
*/
|
|
499
|
-
declare type
|
|
662
|
+
declare type __VLS_Props_28 = {
|
|
500
663
|
/**
|
|
501
664
|
* Controls the visibility of the loading overlay.
|
|
502
665
|
*/
|
|
@@ -510,7 +673,7 @@ declare type __VLS_Props_23 = {
|
|
|
510
673
|
/**
|
|
511
674
|
* 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.
|
|
512
675
|
*/
|
|
513
|
-
declare type
|
|
676
|
+
declare type __VLS_Props_29 = {
|
|
514
677
|
/**
|
|
515
678
|
* if `true`, display the modal.
|
|
516
679
|
*/
|
|
@@ -537,10 +700,20 @@ declare type __VLS_Props_24 = {
|
|
|
537
700
|
closeOnOverlay?: boolean;
|
|
538
701
|
};
|
|
539
702
|
|
|
703
|
+
/**
|
|
704
|
+
* 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.
|
|
705
|
+
*/
|
|
706
|
+
declare type __VLS_Props_3 = {
|
|
707
|
+
/**
|
|
708
|
+
* If `true`, adds a shadow to the action bottom bar.
|
|
709
|
+
*/
|
|
710
|
+
shadow?: boolean;
|
|
711
|
+
};
|
|
712
|
+
|
|
540
713
|
/**
|
|
541
714
|
* 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.
|
|
542
715
|
*/
|
|
543
|
-
declare type
|
|
716
|
+
declare type __VLS_Props_30 = {
|
|
544
717
|
/**
|
|
545
718
|
* Content of the badge.
|
|
546
719
|
*/
|
|
@@ -558,7 +731,7 @@ declare type __VLS_Props_25 = {
|
|
|
558
731
|
/**
|
|
559
732
|
* 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.
|
|
560
733
|
*/
|
|
561
|
-
declare type
|
|
734
|
+
declare type __VLS_Props_31 = {
|
|
562
735
|
/**
|
|
563
736
|
* Controls the visibility of the overlay.
|
|
564
737
|
*/
|
|
@@ -572,7 +745,7 @@ declare type __VLS_Props_26 = {
|
|
|
572
745
|
/**
|
|
573
746
|
* 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.
|
|
574
747
|
*/
|
|
575
|
-
declare type
|
|
748
|
+
declare type __VLS_Props_32 = {
|
|
576
749
|
/**
|
|
577
750
|
* A unique identifier for the pagination.
|
|
578
751
|
*/
|
|
@@ -602,7 +775,7 @@ declare type __VLS_Props_27 = {
|
|
|
602
775
|
/**
|
|
603
776
|
* 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.
|
|
604
777
|
*/
|
|
605
|
-
declare type
|
|
778
|
+
declare type __VLS_Props_33 = {
|
|
606
779
|
/**
|
|
607
780
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
608
781
|
*/
|
|
@@ -651,7 +824,7 @@ declare type __VLS_Props_28 = {
|
|
|
651
824
|
/**
|
|
652
825
|
* 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.
|
|
653
826
|
*/
|
|
654
|
-
declare type
|
|
827
|
+
declare type __VLS_Props_34 = {
|
|
655
828
|
/**
|
|
656
829
|
* A unique identifier for the phone number input element, used to associate the label with the form element.
|
|
657
830
|
*/
|
|
@@ -702,25 +875,10 @@ declare type __VLS_Props_29 = {
|
|
|
702
875
|
countryCodes?: CountryCode[];
|
|
703
876
|
};
|
|
704
877
|
|
|
705
|
-
declare type __VLS_Props_3 = {
|
|
706
|
-
/**
|
|
707
|
-
* 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.
|
|
708
|
-
*/
|
|
709
|
-
modelValue?: number;
|
|
710
|
-
/**
|
|
711
|
-
* Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
|
|
712
|
-
*/
|
|
713
|
-
items: MenuItem[];
|
|
714
|
-
/**
|
|
715
|
-
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
716
|
-
*/
|
|
717
|
-
outlined?: boolean;
|
|
718
|
-
};
|
|
719
|
-
|
|
720
878
|
/**
|
|
721
879
|
* 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).
|
|
722
880
|
*/
|
|
723
|
-
declare type
|
|
881
|
+
declare type __VLS_Props_35 = {
|
|
724
882
|
/**
|
|
725
883
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
726
884
|
*/
|
|
@@ -754,7 +912,7 @@ declare type __VLS_Props_30 = {
|
|
|
754
912
|
/**
|
|
755
913
|
* 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.
|
|
756
914
|
*/
|
|
757
|
-
declare type
|
|
915
|
+
declare type __VLS_Props_36 = {
|
|
758
916
|
/**
|
|
759
917
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
760
918
|
*/
|
|
@@ -808,7 +966,7 @@ declare type __VLS_Props_31 = {
|
|
|
808
966
|
/**
|
|
809
967
|
* 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.
|
|
810
968
|
*/
|
|
811
|
-
declare type
|
|
969
|
+
declare type __VLS_Props_37 = {
|
|
812
970
|
/**
|
|
813
971
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
814
972
|
*/
|
|
@@ -838,7 +996,7 @@ declare type __VLS_Props_32 = {
|
|
|
838
996
|
/**
|
|
839
997
|
* 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).
|
|
840
998
|
*/
|
|
841
|
-
declare type
|
|
999
|
+
declare type __VLS_Props_38 = {
|
|
842
1000
|
/**
|
|
843
1001
|
* The name attribute for the radio element, typically used for form submission.
|
|
844
1002
|
*/
|
|
@@ -870,7 +1028,7 @@ declare type __VLS_Props_33 = {
|
|
|
870
1028
|
/**
|
|
871
1029
|
* 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.
|
|
872
1030
|
*/
|
|
873
|
-
declare type
|
|
1031
|
+
declare type __VLS_Props_39 = {
|
|
874
1032
|
/**
|
|
875
1033
|
* The selected segment index, bound via v-model.
|
|
876
1034
|
*/
|
|
@@ -894,10 +1052,45 @@ declare type __VLS_Props_34 = {
|
|
|
894
1052
|
}>;
|
|
895
1053
|
};
|
|
896
1054
|
|
|
1055
|
+
/**
|
|
1056
|
+
* 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.
|
|
1057
|
+
*/
|
|
1058
|
+
declare type __VLS_Props_4 = {
|
|
1059
|
+
/**
|
|
1060
|
+
* title displayed in mobile version.
|
|
1061
|
+
*/
|
|
1062
|
+
title?: string;
|
|
1063
|
+
/**
|
|
1064
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each item.
|
|
1065
|
+
*/
|
|
1066
|
+
items: Array<{
|
|
1067
|
+
/**
|
|
1068
|
+
* The icon displayed for the item from Mozaic-icon-vue.
|
|
1069
|
+
*/
|
|
1070
|
+
icon?: Component;
|
|
1071
|
+
/**
|
|
1072
|
+
* The label displayed for the item.
|
|
1073
|
+
*/
|
|
1074
|
+
label: string;
|
|
1075
|
+
/**
|
|
1076
|
+
* If `true`, the item will be disabled.
|
|
1077
|
+
*/
|
|
1078
|
+
disabled?: boolean;
|
|
1079
|
+
/**
|
|
1080
|
+
* Allows to define the item appearance.
|
|
1081
|
+
*/
|
|
1082
|
+
appearance?: 'standard' | 'danger';
|
|
1083
|
+
/**
|
|
1084
|
+
* Add a divider on top of the item.
|
|
1085
|
+
*/
|
|
1086
|
+
divider?: boolean;
|
|
1087
|
+
}>;
|
|
1088
|
+
};
|
|
1089
|
+
|
|
897
1090
|
/**
|
|
898
1091
|
* 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).
|
|
899
1092
|
*/
|
|
900
|
-
declare type
|
|
1093
|
+
declare type __VLS_Props_40 = {
|
|
901
1094
|
/**
|
|
902
1095
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
903
1096
|
*/
|
|
@@ -945,7 +1138,7 @@ declare type __VLS_Props_35 = {
|
|
|
945
1138
|
/**
|
|
946
1139
|
* 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.
|
|
947
1140
|
*/
|
|
948
|
-
declare type
|
|
1141
|
+
declare type __VLS_Props_41 = {
|
|
949
1142
|
/**
|
|
950
1143
|
* Determines whether the rating is interactive or read-only.
|
|
951
1144
|
* When true, all user interactions (click, hover, keyboard) are disabled.
|
|
@@ -992,7 +1185,7 @@ declare type __VLS_Props_36 = {
|
|
|
992
1185
|
/**
|
|
993
1186
|
* 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.
|
|
994
1187
|
*/
|
|
995
|
-
declare type
|
|
1188
|
+
declare type __VLS_Props_42 = {
|
|
996
1189
|
/**
|
|
997
1190
|
* Content of the status badge
|
|
998
1191
|
*/
|
|
@@ -1006,7 +1199,7 @@ declare type __VLS_Props_37 = {
|
|
|
1006
1199
|
/**
|
|
1007
1200
|
* 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.
|
|
1008
1201
|
*/
|
|
1009
|
-
declare type
|
|
1202
|
+
declare type __VLS_Props_43 = {
|
|
1010
1203
|
/**
|
|
1011
1204
|
* Allows to define the status dot type.
|
|
1012
1205
|
*/
|
|
@@ -1020,7 +1213,7 @@ declare type __VLS_Props_38 = {
|
|
|
1020
1213
|
/**
|
|
1021
1214
|
* 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.
|
|
1022
1215
|
*/
|
|
1023
|
-
declare type
|
|
1216
|
+
declare type __VLS_Props_44 = {
|
|
1024
1217
|
/**
|
|
1025
1218
|
* Allows to define the status message style.
|
|
1026
1219
|
*/
|
|
@@ -1032,69 +1225,65 @@ declare type __VLS_Props_39 = {
|
|
|
1032
1225
|
};
|
|
1033
1226
|
|
|
1034
1227
|
/**
|
|
1035
|
-
*
|
|
1228
|
+
* 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.
|
|
1036
1229
|
*/
|
|
1037
|
-
declare type
|
|
1038
|
-
/**
|
|
1039
|
-
* Defines the visual style of the button.
|
|
1040
|
-
*/
|
|
1041
|
-
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
1230
|
+
declare type __VLS_Props_45 = {
|
|
1042
1231
|
/**
|
|
1043
|
-
*
|
|
1232
|
+
* Title of the status notification.
|
|
1044
1233
|
*/
|
|
1045
|
-
|
|
1234
|
+
title: string;
|
|
1046
1235
|
/**
|
|
1047
|
-
*
|
|
1236
|
+
* Description of the status notification.
|
|
1048
1237
|
*/
|
|
1049
|
-
|
|
1238
|
+
description: string;
|
|
1050
1239
|
/**
|
|
1051
|
-
*
|
|
1240
|
+
* Allows to define the status notification type.
|
|
1052
1241
|
*/
|
|
1053
|
-
|
|
1242
|
+
status?: 'info' | 'success' | 'warning' | 'error';
|
|
1054
1243
|
/**
|
|
1055
|
-
*
|
|
1244
|
+
* if `true`, display the close button.
|
|
1056
1245
|
*/
|
|
1057
|
-
|
|
1246
|
+
closable?: boolean;
|
|
1247
|
+
};
|
|
1248
|
+
|
|
1249
|
+
/**
|
|
1250
|
+
* 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.
|
|
1251
|
+
*/
|
|
1252
|
+
declare type __VLS_Props_46 = {
|
|
1058
1253
|
/**
|
|
1059
|
-
*
|
|
1254
|
+
* Current step of the stepper compact.
|
|
1060
1255
|
*/
|
|
1061
|
-
|
|
1256
|
+
modelValue?: number;
|
|
1062
1257
|
/**
|
|
1063
|
-
*
|
|
1258
|
+
* Total number of steps of the stepper compact.
|
|
1064
1259
|
*/
|
|
1065
|
-
|
|
1260
|
+
steps?: number;
|
|
1066
1261
|
/**
|
|
1067
|
-
* If `true`,
|
|
1262
|
+
* If `true`, display the cancel button.
|
|
1068
1263
|
*/
|
|
1069
|
-
|
|
1070
|
-
};
|
|
1071
|
-
|
|
1072
|
-
/**
|
|
1073
|
-
* 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.
|
|
1074
|
-
*/
|
|
1075
|
-
declare type __VLS_Props_40 = {
|
|
1264
|
+
cancel?: boolean;
|
|
1076
1265
|
/**
|
|
1077
|
-
*
|
|
1266
|
+
* Label for the cancel button.
|
|
1078
1267
|
*/
|
|
1079
|
-
|
|
1268
|
+
cancelLabel?: string;
|
|
1080
1269
|
/**
|
|
1081
|
-
*
|
|
1270
|
+
* Label for the previous button.
|
|
1082
1271
|
*/
|
|
1083
|
-
|
|
1272
|
+
previousLabel?: string;
|
|
1084
1273
|
/**
|
|
1085
|
-
*
|
|
1274
|
+
* Label for the next button.
|
|
1086
1275
|
*/
|
|
1087
|
-
|
|
1276
|
+
nextLabel?: string;
|
|
1088
1277
|
/**
|
|
1089
|
-
*
|
|
1278
|
+
* Label for the validate button.
|
|
1090
1279
|
*/
|
|
1091
|
-
|
|
1280
|
+
validateLabel?: string;
|
|
1092
1281
|
};
|
|
1093
1282
|
|
|
1094
1283
|
/**
|
|
1095
1284
|
* 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.
|
|
1096
1285
|
*/
|
|
1097
|
-
declare type
|
|
1286
|
+
declare type __VLS_Props_47 = {
|
|
1098
1287
|
/**
|
|
1099
1288
|
* Current step of the stepper compact.
|
|
1100
1289
|
*/
|
|
@@ -1116,7 +1305,7 @@ declare type __VLS_Props_41 = {
|
|
|
1116
1305
|
/**
|
|
1117
1306
|
* 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.
|
|
1118
1307
|
*/
|
|
1119
|
-
declare type
|
|
1308
|
+
declare type __VLS_Props_48 = {
|
|
1120
1309
|
/**
|
|
1121
1310
|
* Current step of the stepper compact.
|
|
1122
1311
|
*/
|
|
@@ -1139,7 +1328,7 @@ declare type __VLS_Props_42 = {
|
|
|
1139
1328
|
/**
|
|
1140
1329
|
* 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.
|
|
1141
1330
|
*/
|
|
1142
|
-
declare type
|
|
1331
|
+
declare type __VLS_Props_49 = {
|
|
1143
1332
|
/**
|
|
1144
1333
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
1145
1334
|
*/
|
|
@@ -1179,10 +1368,20 @@ declare type __VLS_Props_43 = {
|
|
|
1179
1368
|
}>;
|
|
1180
1369
|
};
|
|
1181
1370
|
|
|
1371
|
+
/**
|
|
1372
|
+
* 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.
|
|
1373
|
+
*/
|
|
1374
|
+
declare type __VLS_Props_5 = {
|
|
1375
|
+
/**
|
|
1376
|
+
* Allows to define the avatar size.
|
|
1377
|
+
*/
|
|
1378
|
+
size?: 's' | 'm' | 'l';
|
|
1379
|
+
};
|
|
1380
|
+
|
|
1182
1381
|
/**
|
|
1183
1382
|
* 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).
|
|
1184
1383
|
*/
|
|
1185
|
-
declare type
|
|
1384
|
+
declare type __VLS_Props_50 = {
|
|
1186
1385
|
/**
|
|
1187
1386
|
* Defines the behavior and layout of the tag.
|
|
1188
1387
|
*/
|
|
@@ -1224,7 +1423,7 @@ declare type __VLS_Props_44 = {
|
|
|
1224
1423
|
/**
|
|
1225
1424
|
* 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).
|
|
1226
1425
|
*/
|
|
1227
|
-
declare type
|
|
1426
|
+
declare type __VLS_Props_51 = {
|
|
1228
1427
|
/**
|
|
1229
1428
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
1230
1429
|
*/
|
|
@@ -1270,7 +1469,7 @@ declare type __VLS_Props_45 = {
|
|
|
1270
1469
|
/**
|
|
1271
1470
|
* 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).
|
|
1272
1471
|
*/
|
|
1273
|
-
declare type
|
|
1472
|
+
declare type __VLS_Props_52 = {
|
|
1274
1473
|
/**
|
|
1275
1474
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
1276
1475
|
*/
|
|
@@ -1320,7 +1519,7 @@ declare type __VLS_Props_46 = {
|
|
|
1320
1519
|
/**
|
|
1321
1520
|
* 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.
|
|
1322
1521
|
*/
|
|
1323
|
-
declare type
|
|
1522
|
+
declare type __VLS_Props_53 = {
|
|
1324
1523
|
/**
|
|
1325
1524
|
* If `true`, display the Toaster.
|
|
1326
1525
|
*/
|
|
@@ -1354,7 +1553,7 @@ declare type __VLS_Props_47 = {
|
|
|
1354
1553
|
/**
|
|
1355
1554
|
* 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.
|
|
1356
1555
|
*/
|
|
1357
|
-
declare type
|
|
1556
|
+
declare type __VLS_Props_54 = {
|
|
1358
1557
|
/**
|
|
1359
1558
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1360
1559
|
*/
|
|
@@ -1384,7 +1583,7 @@ declare type __VLS_Props_48 = {
|
|
|
1384
1583
|
/**
|
|
1385
1584
|
* 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).
|
|
1386
1585
|
*/
|
|
1387
|
-
declare type
|
|
1586
|
+
declare type __VLS_Props_55 = {
|
|
1388
1587
|
/**
|
|
1389
1588
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1390
1589
|
*/
|
|
@@ -1410,28 +1609,10 @@ declare type __VLS_Props_49 = {
|
|
|
1410
1609
|
inline?: boolean;
|
|
1411
1610
|
};
|
|
1412
1611
|
|
|
1413
|
-
/**
|
|
1414
|
-
* 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.
|
|
1415
|
-
*/
|
|
1416
|
-
declare type __VLS_Props_5 = {
|
|
1417
|
-
/**
|
|
1418
|
-
* Title of the callout.
|
|
1419
|
-
*/
|
|
1420
|
-
title: string;
|
|
1421
|
-
/**
|
|
1422
|
-
* Description of the callout.
|
|
1423
|
-
*/
|
|
1424
|
-
description: string;
|
|
1425
|
-
/**
|
|
1426
|
-
* Allows to define the callout appearance.
|
|
1427
|
-
*/
|
|
1428
|
-
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1429
|
-
};
|
|
1430
|
-
|
|
1431
1612
|
/**
|
|
1432
1613
|
* 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.
|
|
1433
1614
|
*/
|
|
1434
|
-
declare type
|
|
1615
|
+
declare type __VLS_Props_56 = {
|
|
1435
1616
|
/**
|
|
1436
1617
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1437
1618
|
*/
|
|
@@ -1451,124 +1632,229 @@ declare type __VLS_Props_50 = {
|
|
|
1451
1632
|
};
|
|
1452
1633
|
|
|
1453
1634
|
/**
|
|
1454
|
-
* A
|
|
1635
|
+
* 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.
|
|
1455
1636
|
*/
|
|
1456
1637
|
declare type __VLS_Props_6 = {
|
|
1457
1638
|
/**
|
|
1458
|
-
*
|
|
1639
|
+
* Allows to define the breadcrumb appearance.
|
|
1459
1640
|
*/
|
|
1460
|
-
|
|
1641
|
+
appearance?: 'standard' | 'inverse';
|
|
1461
1642
|
/**
|
|
1462
|
-
*
|
|
1643
|
+
* Links of the breadcrumb.
|
|
1463
1644
|
*/
|
|
1464
|
-
|
|
1645
|
+
links: Array<{
|
|
1646
|
+
/**
|
|
1647
|
+
* The label displayed for the link.
|
|
1648
|
+
*/
|
|
1649
|
+
label: string;
|
|
1650
|
+
/**
|
|
1651
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
1652
|
+
*/
|
|
1653
|
+
href: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
1656
|
+
*/
|
|
1657
|
+
router?: boolean;
|
|
1658
|
+
}>;
|
|
1465
1659
|
};
|
|
1466
1660
|
|
|
1467
|
-
/**
|
|
1468
|
-
* 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.
|
|
1469
|
-
*/
|
|
1470
1661
|
declare type __VLS_Props_7 = {
|
|
1471
1662
|
/**
|
|
1472
|
-
*
|
|
1473
|
-
*/
|
|
1474
|
-
id: string;
|
|
1475
|
-
/**
|
|
1476
|
-
* The name attribute for the checkbox element, typically used for form submission.
|
|
1663
|
+
* 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.
|
|
1477
1664
|
*/
|
|
1478
|
-
|
|
1665
|
+
modelValue?: number;
|
|
1479
1666
|
/**
|
|
1480
|
-
*
|
|
1667
|
+
* Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
|
|
1481
1668
|
*/
|
|
1482
|
-
|
|
1669
|
+
items: MenuItem[];
|
|
1483
1670
|
/**
|
|
1484
|
-
*
|
|
1671
|
+
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
1485
1672
|
*/
|
|
1486
|
-
|
|
1673
|
+
outlined?: boolean;
|
|
1674
|
+
};
|
|
1675
|
+
|
|
1676
|
+
/**
|
|
1677
|
+
* 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.
|
|
1678
|
+
*/
|
|
1679
|
+
declare type __VLS_Props_8 = {
|
|
1487
1680
|
/**
|
|
1488
|
-
*
|
|
1681
|
+
* Defines the visual style of the button.
|
|
1489
1682
|
*/
|
|
1490
|
-
|
|
1683
|
+
appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
|
|
1491
1684
|
/**
|
|
1492
|
-
*
|
|
1685
|
+
* Determines the size of the button.
|
|
1493
1686
|
*/
|
|
1494
|
-
|
|
1687
|
+
size?: 's' | 'm' | 'l';
|
|
1495
1688
|
/**
|
|
1496
|
-
* If `true`, disables the
|
|
1689
|
+
* If `true`, disables the button, making it non-interactive.
|
|
1497
1690
|
*/
|
|
1498
1691
|
disabled?: boolean;
|
|
1499
1692
|
/**
|
|
1500
|
-
* If `true`,
|
|
1693
|
+
* If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
|
|
1501
1694
|
*/
|
|
1502
|
-
|
|
1503
|
-
};
|
|
1504
|
-
|
|
1505
|
-
/**
|
|
1506
|
-
* 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).
|
|
1507
|
-
*/
|
|
1508
|
-
declare type __VLS_Props_8 = {
|
|
1695
|
+
ghost?: boolean;
|
|
1509
1696
|
/**
|
|
1510
|
-
*
|
|
1697
|
+
* If `true`, the button gets an outlined style, usually with just the border and no solid background.
|
|
1511
1698
|
*/
|
|
1512
|
-
|
|
1699
|
+
outlined?: boolean;
|
|
1513
1700
|
/**
|
|
1514
|
-
*
|
|
1515
|
-
* (Do not use directly)
|
|
1701
|
+
* Controls the positioning of an icon in the button.
|
|
1516
1702
|
*/
|
|
1517
|
-
|
|
1703
|
+
iconPosition?: 'left' | 'right' | 'only';
|
|
1518
1704
|
/**
|
|
1519
|
-
*
|
|
1705
|
+
* Specifies the button's HTML `type` attribute.
|
|
1520
1706
|
*/
|
|
1521
|
-
|
|
1522
|
-
id: string;
|
|
1523
|
-
label: string;
|
|
1524
|
-
value: string;
|
|
1525
|
-
disabled?: boolean;
|
|
1526
|
-
isInvalid?: boolean;
|
|
1527
|
-
indented?: boolean;
|
|
1528
|
-
}>;
|
|
1707
|
+
type?: 'button' | 'reset' | 'submit';
|
|
1529
1708
|
/**
|
|
1530
|
-
* If `true`,
|
|
1709
|
+
* If `true`, a loading state is displayed.
|
|
1531
1710
|
*/
|
|
1532
|
-
|
|
1711
|
+
isLoading?: boolean;
|
|
1533
1712
|
};
|
|
1534
1713
|
|
|
1714
|
+
/**
|
|
1715
|
+
* 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.
|
|
1716
|
+
*/
|
|
1535
1717
|
declare type __VLS_Props_9 = {
|
|
1536
1718
|
/**
|
|
1537
|
-
*
|
|
1719
|
+
* Title of the callout.
|
|
1538
1720
|
*/
|
|
1539
|
-
|
|
1721
|
+
title: string;
|
|
1540
1722
|
/**
|
|
1541
|
-
*
|
|
1723
|
+
* Description of the callout.
|
|
1542
1724
|
*/
|
|
1543
|
-
|
|
1725
|
+
description: string;
|
|
1544
1726
|
/**
|
|
1545
|
-
*
|
|
1727
|
+
* Allows to define the callout appearance.
|
|
1546
1728
|
*/
|
|
1547
|
-
|
|
1729
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1548
1730
|
};
|
|
1549
1731
|
|
|
1550
1732
|
declare type __VLS_PublicProps = {
|
|
1551
1733
|
modelValue: number;
|
|
1552
|
-
} &
|
|
1734
|
+
} & __VLS_Props_41;
|
|
1553
1735
|
|
|
1554
1736
|
declare function __VLS_template(): {
|
|
1555
1737
|
attrs: Partial<{}>;
|
|
1556
1738
|
slots: Readonly<{
|
|
1557
1739
|
/**
|
|
1558
|
-
* Use this slot to
|
|
1740
|
+
* Use this slot to display accordion items.
|
|
1559
1741
|
*/
|
|
1560
1742
|
default: VNode;
|
|
1561
1743
|
}> & {
|
|
1562
1744
|
/**
|
|
1563
|
-
* Use this slot to
|
|
1745
|
+
* Use this slot to display accordion items.
|
|
1564
1746
|
*/
|
|
1565
1747
|
default: VNode;
|
|
1566
1748
|
};
|
|
1567
1749
|
refs: {};
|
|
1568
|
-
rootEl:
|
|
1750
|
+
rootEl: HTMLDivElement;
|
|
1751
|
+
};
|
|
1752
|
+
|
|
1753
|
+
declare function __VLS_template_10(): {
|
|
1754
|
+
attrs: Partial<{}>;
|
|
1755
|
+
slots: Readonly<{
|
|
1756
|
+
/**
|
|
1757
|
+
* Use this slot to insert the content of the drawer
|
|
1758
|
+
*/
|
|
1759
|
+
default?: VNode;
|
|
1760
|
+
/**
|
|
1761
|
+
* Use this slot to insert buttons in the footer
|
|
1762
|
+
*/
|
|
1763
|
+
footer?: VNode;
|
|
1764
|
+
}> & {
|
|
1765
|
+
/**
|
|
1766
|
+
* Use this slot to insert the content of the drawer
|
|
1767
|
+
*/
|
|
1768
|
+
default?: VNode;
|
|
1769
|
+
/**
|
|
1770
|
+
* Use this slot to insert buttons in the footer
|
|
1771
|
+
*/
|
|
1772
|
+
footer?: VNode;
|
|
1773
|
+
};
|
|
1774
|
+
refs: {
|
|
1775
|
+
titleRef: HTMLHeadingElement;
|
|
1776
|
+
};
|
|
1777
|
+
rootEl: any;
|
|
1778
|
+
};
|
|
1779
|
+
|
|
1780
|
+
declare function __VLS_template_11(): {
|
|
1781
|
+
attrs: Partial<{}>;
|
|
1782
|
+
slots: Readonly<{
|
|
1783
|
+
/**
|
|
1784
|
+
* Use this slot to insert the form element of your choice
|
|
1785
|
+
*/
|
|
1786
|
+
default: VNode;
|
|
1787
|
+
}> & {
|
|
1788
|
+
/**
|
|
1789
|
+
* Use this slot to insert the form element of your choice
|
|
1790
|
+
*/
|
|
1791
|
+
default: VNode;
|
|
1792
|
+
};
|
|
1793
|
+
refs: {};
|
|
1794
|
+
rootEl: HTMLDivElement;
|
|
1795
|
+
};
|
|
1796
|
+
|
|
1797
|
+
declare function __VLS_template_12(): {
|
|
1798
|
+
attrs: Partial<{}>;
|
|
1799
|
+
slots: Readonly<{
|
|
1800
|
+
/**
|
|
1801
|
+
* Use this slot to insert the form element of your choice
|
|
1802
|
+
*/
|
|
1803
|
+
default: VNode;
|
|
1804
|
+
}> & {
|
|
1805
|
+
/**
|
|
1806
|
+
* Use this slot to insert the form element of your choice
|
|
1807
|
+
*/
|
|
1808
|
+
default: VNode;
|
|
1809
|
+
};
|
|
1810
|
+
refs: {};
|
|
1811
|
+
rootEl: HTMLFieldSetElement;
|
|
1812
|
+
};
|
|
1813
|
+
|
|
1814
|
+
declare function __VLS_template_13(): {
|
|
1815
|
+
attrs: Partial<{}>;
|
|
1816
|
+
slots: Readonly<{
|
|
1817
|
+
/**
|
|
1818
|
+
* Slot for customizing the file name display.
|
|
1819
|
+
* Receives `NormalizedFile` as slot props.
|
|
1820
|
+
*/
|
|
1821
|
+
name: VNode;
|
|
1822
|
+
/**
|
|
1823
|
+
* Slot for displaying additional file information.
|
|
1824
|
+
* Receives `NormalizedFile` as slot props.
|
|
1825
|
+
*/
|
|
1826
|
+
information: VNode;
|
|
1827
|
+
/**
|
|
1828
|
+
* Slot for providing a custom error message display.
|
|
1829
|
+
* Receives:
|
|
1830
|
+
* `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
|
|
1831
|
+
*/
|
|
1832
|
+
errorMessage: VNode;
|
|
1833
|
+
}> & {
|
|
1834
|
+
/**
|
|
1835
|
+
* Slot for customizing the file name display.
|
|
1836
|
+
* Receives `NormalizedFile` as slot props.
|
|
1837
|
+
*/
|
|
1838
|
+
name: VNode;
|
|
1839
|
+
/**
|
|
1840
|
+
* Slot for displaying additional file information.
|
|
1841
|
+
* Receives `NormalizedFile` as slot props.
|
|
1842
|
+
*/
|
|
1843
|
+
information: VNode;
|
|
1844
|
+
/**
|
|
1845
|
+
* Slot for providing a custom error message display.
|
|
1846
|
+
* Receives:
|
|
1847
|
+
* `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
|
|
1848
|
+
*/
|
|
1849
|
+
errorMessage: VNode;
|
|
1850
|
+
};
|
|
1851
|
+
refs: {
|
|
1852
|
+
fileInput: HTMLInputElement;
|
|
1853
|
+
};
|
|
1854
|
+
rootEl: HTMLDivElement;
|
|
1569
1855
|
};
|
|
1570
1856
|
|
|
1571
|
-
declare function
|
|
1857
|
+
declare function __VLS_template_14(): {
|
|
1572
1858
|
attrs: Partial<{}>;
|
|
1573
1859
|
slots: Readonly<{
|
|
1574
1860
|
/**
|
|
@@ -1585,7 +1871,7 @@ declare function __VLS_template_10(): {
|
|
|
1585
1871
|
rootEl: HTMLButtonElement;
|
|
1586
1872
|
};
|
|
1587
1873
|
|
|
1588
|
-
declare function
|
|
1874
|
+
declare function __VLS_template_15(): {
|
|
1589
1875
|
attrs: Partial<{}>;
|
|
1590
1876
|
slots: Readonly<{
|
|
1591
1877
|
/**
|
|
@@ -1610,7 +1896,7 @@ declare function __VLS_template_11(): {
|
|
|
1610
1896
|
rootEl: any;
|
|
1611
1897
|
};
|
|
1612
1898
|
|
|
1613
|
-
declare function
|
|
1899
|
+
declare function __VLS_template_16(): {
|
|
1614
1900
|
attrs: Partial<{}>;
|
|
1615
1901
|
slots: Readonly<{
|
|
1616
1902
|
/**
|
|
@@ -1651,7 +1937,7 @@ declare function __VLS_template_12(): {
|
|
|
1651
1937
|
rootEl: any;
|
|
1652
1938
|
};
|
|
1653
1939
|
|
|
1654
|
-
declare function
|
|
1940
|
+
declare function __VLS_template_17(): {
|
|
1655
1941
|
attrs: Partial<{}>;
|
|
1656
1942
|
slots: Readonly<{
|
|
1657
1943
|
/**
|
|
@@ -1668,7 +1954,7 @@ declare function __VLS_template_13(): {
|
|
|
1668
1954
|
rootEl: HTMLDivElement;
|
|
1669
1955
|
};
|
|
1670
1956
|
|
|
1671
|
-
declare function
|
|
1957
|
+
declare function __VLS_template_18(): {
|
|
1672
1958
|
attrs: Partial<{}>;
|
|
1673
1959
|
slots: Readonly<{
|
|
1674
1960
|
/**
|
|
@@ -1685,7 +1971,7 @@ declare function __VLS_template_14(): {
|
|
|
1685
1971
|
rootEl: HTMLElement;
|
|
1686
1972
|
};
|
|
1687
1973
|
|
|
1688
|
-
declare function
|
|
1974
|
+
declare function __VLS_template_19(): {
|
|
1689
1975
|
attrs: Partial<{}>;
|
|
1690
1976
|
slots: Readonly<{
|
|
1691
1977
|
/**
|
|
@@ -1702,7 +1988,24 @@ declare function __VLS_template_15(): {
|
|
|
1702
1988
|
rootEl: any;
|
|
1703
1989
|
};
|
|
1704
1990
|
|
|
1705
|
-
declare function
|
|
1991
|
+
declare function __VLS_template_2(): {
|
|
1992
|
+
attrs: Partial<{}>;
|
|
1993
|
+
slots: Readonly<{
|
|
1994
|
+
/**
|
|
1995
|
+
* Use this slot to display custom content.
|
|
1996
|
+
*/
|
|
1997
|
+
default: VNode;
|
|
1998
|
+
}> & {
|
|
1999
|
+
/**
|
|
2000
|
+
* Use this slot to display custom content.
|
|
2001
|
+
*/
|
|
2002
|
+
default: VNode;
|
|
2003
|
+
};
|
|
2004
|
+
refs: {};
|
|
2005
|
+
rootEl: HTMLDivElement;
|
|
2006
|
+
};
|
|
2007
|
+
|
|
2008
|
+
declare function __VLS_template_20(): {
|
|
1706
2009
|
attrs: Partial<{}>;
|
|
1707
2010
|
slots: Readonly<{
|
|
1708
2011
|
/**
|
|
@@ -1719,7 +2022,7 @@ declare function __VLS_template_16(): {
|
|
|
1719
2022
|
rootEl: HTMLElement;
|
|
1720
2023
|
};
|
|
1721
2024
|
|
|
1722
|
-
declare function
|
|
2025
|
+
declare function __VLS_template_21(): {
|
|
1723
2026
|
attrs: Partial<{}>;
|
|
1724
2027
|
slots: Readonly<{
|
|
1725
2028
|
/**
|
|
@@ -1736,7 +2039,49 @@ declare function __VLS_template_17(): {
|
|
|
1736
2039
|
rootEl: HTMLDivElement;
|
|
1737
2040
|
};
|
|
1738
2041
|
|
|
1739
|
-
declare function
|
|
2042
|
+
declare function __VLS_template_3(): {
|
|
2043
|
+
attrs: Partial<{}>;
|
|
2044
|
+
slots: Readonly<{
|
|
2045
|
+
/**
|
|
2046
|
+
* The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
|
|
2047
|
+
*/
|
|
2048
|
+
left: VNode[];
|
|
2049
|
+
/**
|
|
2050
|
+
* Use this slot to insert buttons of the action bottom bar.
|
|
2051
|
+
*/
|
|
2052
|
+
right?: VNode[];
|
|
2053
|
+
}> & {
|
|
2054
|
+
/**
|
|
2055
|
+
* The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
|
|
2056
|
+
*/
|
|
2057
|
+
left: VNode[];
|
|
2058
|
+
/**
|
|
2059
|
+
* Use this slot to insert buttons of the action bottom bar.
|
|
2060
|
+
*/
|
|
2061
|
+
right?: VNode[];
|
|
2062
|
+
};
|
|
2063
|
+
refs: {};
|
|
2064
|
+
rootEl: HTMLDivElement;
|
|
2065
|
+
};
|
|
2066
|
+
|
|
2067
|
+
declare function __VLS_template_4(): {
|
|
2068
|
+
attrs: Partial<{}>;
|
|
2069
|
+
slots: Readonly<{
|
|
2070
|
+
/**
|
|
2071
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
2072
|
+
*/
|
|
2073
|
+
default: VNode;
|
|
2074
|
+
}> & {
|
|
2075
|
+
/**
|
|
2076
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
2077
|
+
*/
|
|
2078
|
+
default: VNode;
|
|
2079
|
+
};
|
|
2080
|
+
refs: {};
|
|
2081
|
+
rootEl: HTMLSpanElement;
|
|
2082
|
+
};
|
|
2083
|
+
|
|
2084
|
+
declare function __VLS_template_5(): {
|
|
1740
2085
|
attrs: Partial<{}>;
|
|
1741
2086
|
slots: Readonly<{
|
|
1742
2087
|
/**
|
|
@@ -1761,7 +2106,7 @@ declare function __VLS_template_2(): {
|
|
|
1761
2106
|
rootEl: HTMLButtonElement;
|
|
1762
2107
|
};
|
|
1763
2108
|
|
|
1764
|
-
declare function
|
|
2109
|
+
declare function __VLS_template_6(): {
|
|
1765
2110
|
attrs: Partial<{}>;
|
|
1766
2111
|
slots: Readonly<{
|
|
1767
2112
|
/**
|
|
@@ -1786,7 +2131,7 @@ declare function __VLS_template_3(): {
|
|
|
1786
2131
|
rootEl: HTMLElement;
|
|
1787
2132
|
};
|
|
1788
2133
|
|
|
1789
|
-
declare function
|
|
2134
|
+
declare function __VLS_template_7(): {
|
|
1790
2135
|
attrs: Partial<{}>;
|
|
1791
2136
|
slots: Readonly<{
|
|
1792
2137
|
/**
|
|
@@ -1813,7 +2158,7 @@ declare function __VLS_template_4(): {
|
|
|
1813
2158
|
rootEl: HTMLDivElement;
|
|
1814
2159
|
};
|
|
1815
2160
|
|
|
1816
|
-
declare function
|
|
2161
|
+
declare function __VLS_template_8(): {
|
|
1817
2162
|
attrs: Partial<{}>;
|
|
1818
2163
|
slots: Readonly<{
|
|
1819
2164
|
/**
|
|
@@ -1830,7 +2175,7 @@ declare function __VLS_template_5(): {
|
|
|
1830
2175
|
rootEl: HTMLDivElement;
|
|
1831
2176
|
};
|
|
1832
2177
|
|
|
1833
|
-
declare function
|
|
2178
|
+
declare function __VLS_template_9(): {
|
|
1834
2179
|
attrs: Partial<{}>;
|
|
1835
2180
|
slots: Readonly<{
|
|
1836
2181
|
/**
|
|
@@ -1847,67 +2192,6 @@ declare function __VLS_template_6(): {
|
|
|
1847
2192
|
rootEl: HTMLDivElement;
|
|
1848
2193
|
};
|
|
1849
2194
|
|
|
1850
|
-
declare function __VLS_template_7(): {
|
|
1851
|
-
attrs: Partial<{}>;
|
|
1852
|
-
slots: Readonly<{
|
|
1853
|
-
/**
|
|
1854
|
-
* Use this slot to insert the content of the drawer
|
|
1855
|
-
*/
|
|
1856
|
-
default?: VNode;
|
|
1857
|
-
/**
|
|
1858
|
-
* Use this slot to insert buttons in the footer
|
|
1859
|
-
*/
|
|
1860
|
-
footer?: VNode;
|
|
1861
|
-
}> & {
|
|
1862
|
-
/**
|
|
1863
|
-
* Use this slot to insert the content of the drawer
|
|
1864
|
-
*/
|
|
1865
|
-
default?: VNode;
|
|
1866
|
-
/**
|
|
1867
|
-
* Use this slot to insert buttons in the footer
|
|
1868
|
-
*/
|
|
1869
|
-
footer?: VNode;
|
|
1870
|
-
};
|
|
1871
|
-
refs: {
|
|
1872
|
-
titleRef: HTMLHeadingElement;
|
|
1873
|
-
};
|
|
1874
|
-
rootEl: any;
|
|
1875
|
-
};
|
|
1876
|
-
|
|
1877
|
-
declare function __VLS_template_8(): {
|
|
1878
|
-
attrs: Partial<{}>;
|
|
1879
|
-
slots: Readonly<{
|
|
1880
|
-
/**
|
|
1881
|
-
* Use this slot to insert the form element of your choice
|
|
1882
|
-
*/
|
|
1883
|
-
default: VNode;
|
|
1884
|
-
}> & {
|
|
1885
|
-
/**
|
|
1886
|
-
* Use this slot to insert the form element of your choice
|
|
1887
|
-
*/
|
|
1888
|
-
default: VNode;
|
|
1889
|
-
};
|
|
1890
|
-
refs: {};
|
|
1891
|
-
rootEl: HTMLDivElement;
|
|
1892
|
-
};
|
|
1893
|
-
|
|
1894
|
-
declare function __VLS_template_9(): {
|
|
1895
|
-
attrs: Partial<{}>;
|
|
1896
|
-
slots: Readonly<{
|
|
1897
|
-
/**
|
|
1898
|
-
* Use this slot to insert the form element of your choice
|
|
1899
|
-
*/
|
|
1900
|
-
default: VNode;
|
|
1901
|
-
}> & {
|
|
1902
|
-
/**
|
|
1903
|
-
* Use this slot to insert the form element of your choice
|
|
1904
|
-
*/
|
|
1905
|
-
default: VNode;
|
|
1906
|
-
};
|
|
1907
|
-
refs: {};
|
|
1908
|
-
rootEl: HTMLFieldSetElement;
|
|
1909
|
-
};
|
|
1910
|
-
|
|
1911
2195
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1912
2196
|
|
|
1913
2197
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
@@ -1926,8 +2210,16 @@ declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
|
|
|
1926
2210
|
|
|
1927
2211
|
declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
|
|
1928
2212
|
|
|
2213
|
+
declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
|
|
2214
|
+
|
|
2215
|
+
declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
|
|
2216
|
+
|
|
1929
2217
|
declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
|
|
1930
2218
|
|
|
2219
|
+
declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
2220
|
+
|
|
2221
|
+
declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
|
|
2222
|
+
|
|
1931
2223
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
1932
2224
|
|
|
1933
2225
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
@@ -1996,12 +2288,36 @@ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
|
|
|
1996
2288
|
};
|
|
1997
2289
|
};
|
|
1998
2290
|
|
|
2291
|
+
declare type __VLS_WithTemplateSlots_18<T, S> = T & {
|
|
2292
|
+
new (): {
|
|
2293
|
+
$slots: S;
|
|
2294
|
+
};
|
|
2295
|
+
};
|
|
2296
|
+
|
|
2297
|
+
declare type __VLS_WithTemplateSlots_19<T, S> = T & {
|
|
2298
|
+
new (): {
|
|
2299
|
+
$slots: S;
|
|
2300
|
+
};
|
|
2301
|
+
};
|
|
2302
|
+
|
|
1999
2303
|
declare type __VLS_WithTemplateSlots_2<T, S> = T & {
|
|
2000
2304
|
new (): {
|
|
2001
2305
|
$slots: S;
|
|
2002
2306
|
};
|
|
2003
2307
|
};
|
|
2004
2308
|
|
|
2309
|
+
declare type __VLS_WithTemplateSlots_20<T, S> = T & {
|
|
2310
|
+
new (): {
|
|
2311
|
+
$slots: S;
|
|
2312
|
+
};
|
|
2313
|
+
};
|
|
2314
|
+
|
|
2315
|
+
declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
2316
|
+
new (): {
|
|
2317
|
+
$slots: S;
|
|
2318
|
+
};
|
|
2319
|
+
};
|
|
2320
|
+
|
|
2005
2321
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
2006
2322
|
new (): {
|
|
2007
2323
|
$slots: S;
|
|
@@ -2051,59 +2367,143 @@ declare type CheckListMenuItem = Omit<MenuItem, 'icon'> & {
|
|
|
2051
2367
|
checked: boolean;
|
|
2052
2368
|
};
|
|
2053
2369
|
|
|
2054
|
-
|
|
2370
|
+
declare type FilesValidationState = Record<string, {
|
|
2371
|
+
size: boolean;
|
|
2372
|
+
extension: boolean;
|
|
2373
|
+
customValidation: boolean;
|
|
2374
|
+
}>;
|
|
2375
|
+
|
|
2376
|
+
/**
|
|
2377
|
+
* 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.
|
|
2378
|
+
*/
|
|
2379
|
+
declare type FileUploaderProps = {
|
|
2380
|
+
/**
|
|
2381
|
+
* Model binding for the selected files (`NormalizedFile`)
|
|
2382
|
+
*/
|
|
2383
|
+
modelValue: NormalizedFile[];
|
|
2384
|
+
/**
|
|
2385
|
+
* File types allowed by the uploader.
|
|
2386
|
+
*/
|
|
2387
|
+
accept?: HTMLInputElement['accept'];
|
|
2388
|
+
/**
|
|
2389
|
+
* Enables selecting multiple files at once.
|
|
2390
|
+
*/
|
|
2391
|
+
multiple?: boolean;
|
|
2392
|
+
/**
|
|
2393
|
+
* File extensions to validate.
|
|
2394
|
+
*/
|
|
2395
|
+
allowedExtensions?: string[];
|
|
2396
|
+
/**
|
|
2397
|
+
* Maximum file size allowed (in bytes).
|
|
2398
|
+
*/
|
|
2399
|
+
maxSize?: number;
|
|
2400
|
+
/**
|
|
2401
|
+
* Custom validation rules applied to each file.
|
|
2402
|
+
*/
|
|
2403
|
+
rules?: ((file: NormalizedFile) => boolean)[];
|
|
2404
|
+
/**
|
|
2405
|
+
* Layout format of the item.
|
|
2406
|
+
*/
|
|
2407
|
+
format?: 'inline' | 'stacked';
|
|
2408
|
+
/**
|
|
2409
|
+
* Custom error message for the file.
|
|
2410
|
+
*/
|
|
2411
|
+
errorMessage?: string;
|
|
2412
|
+
/**
|
|
2413
|
+
* Label for the delete button.
|
|
2414
|
+
*/
|
|
2415
|
+
deleteButtonLabel?: string;
|
|
2416
|
+
/**
|
|
2417
|
+
* Optional informational text displayed under the file name.
|
|
2418
|
+
*/
|
|
2419
|
+
information?: string;
|
|
2420
|
+
/**
|
|
2421
|
+
* Enables drag & drop functionality.
|
|
2422
|
+
*/
|
|
2423
|
+
hasDragDrop?: boolean;
|
|
2424
|
+
/**
|
|
2425
|
+
* Controls the display of the uploaded files list.
|
|
2426
|
+
*/
|
|
2427
|
+
showFilesList?: boolean;
|
|
2428
|
+
/**
|
|
2429
|
+
* Disables the whole component.
|
|
2430
|
+
*/
|
|
2431
|
+
disabled?: boolean;
|
|
2432
|
+
/**
|
|
2433
|
+
* Main drag & drop title.
|
|
2434
|
+
*/
|
|
2435
|
+
title?: string;
|
|
2436
|
+
/**
|
|
2437
|
+
* Subtitle used in the drag & drop area.
|
|
2438
|
+
*/
|
|
2439
|
+
subtitle?: string;
|
|
2440
|
+
/**
|
|
2441
|
+
* Label of the upload button.
|
|
2442
|
+
*/
|
|
2443
|
+
uploadButtonLabel?: string;
|
|
2444
|
+
};
|
|
2445
|
+
|
|
2446
|
+
export declare const MAccordionList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2447
|
+
|
|
2448
|
+
export declare const MAccordionListItem: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
|
|
2449
|
+
|
|
2450
|
+
export declare const MActionBottomBar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
2451
|
+
|
|
2452
|
+
export declare const MActionListbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2055
2453
|
|
|
2056
|
-
export declare const
|
|
2454
|
+
export declare const MAvatar: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
2057
2455
|
|
|
2058
|
-
export declare const
|
|
2456
|
+
export declare const MBreadcrumb: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2457
|
+
|
|
2458
|
+
export declare const MBuiltInMenu: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2059
2459
|
"update:modelValue": (value: number) => any;
|
|
2060
|
-
}, string, PublicProps, Readonly<
|
|
2460
|
+
}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
|
|
2061
2461
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2062
2462
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2063
2463
|
|
|
2064
|
-
export declare const MButton:
|
|
2464
|
+
export declare const MButton: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
2065
2465
|
|
|
2066
|
-
export declare const MCallout:
|
|
2466
|
+
export declare const MCallout: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
2067
2467
|
|
|
2068
|
-
export declare const MCarousel:
|
|
2468
|
+
export declare const MCarousel: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2069
2469
|
|
|
2070
|
-
export declare const MCheckbox: DefineComponent<
|
|
2470
|
+
export declare const MCheckbox: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2071
2471
|
"update:modelValue": (value: boolean) => any;
|
|
2072
|
-
}, string, PublicProps, Readonly<
|
|
2472
|
+
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
2073
2473
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2074
2474
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2075
2475
|
|
|
2076
|
-
export declare const MCheckboxGroup: DefineComponent<
|
|
2476
|
+
export declare const MCheckboxGroup: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2077
2477
|
"update:modelValue": (value: string[]) => any;
|
|
2078
|
-
}, string, PublicProps, Readonly<
|
|
2478
|
+
}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
|
|
2079
2479
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2080
2480
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2081
2481
|
|
|
2082
|
-
export declare const MCheckListMenu: DefineComponent<
|
|
2482
|
+
export declare const MCheckListMenu: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2083
2483
|
"update:modelValue": (value: number) => any;
|
|
2084
|
-
}, string, PublicProps, Readonly<
|
|
2484
|
+
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
2085
2485
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2086
2486
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2087
2487
|
|
|
2088
|
-
export declare const MCircularProgressbar: DefineComponent<
|
|
2488
|
+
export declare const MCircularProgressbar: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
|
|
2089
2489
|
type: "percentage" | "content";
|
|
2090
2490
|
value: number;
|
|
2091
2491
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2092
2492
|
|
|
2093
|
-
export declare const MContainer:
|
|
2493
|
+
export declare const MContainer: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
2094
2494
|
|
|
2095
|
-
export declare const MDatepicker: DefineComponent<
|
|
2495
|
+
export declare const MDatepicker: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2096
2496
|
"update:modelValue": (value: string | number) => any;
|
|
2097
|
-
}, string, PublicProps, Readonly<
|
|
2497
|
+
}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
|
|
2098
2498
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2099
2499
|
}>, {
|
|
2100
2500
|
size: "s" | "m";
|
|
2101
2501
|
clearLabel: string;
|
|
2102
2502
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2103
2503
|
|
|
2104
|
-
export declare const MDivider:
|
|
2504
|
+
export declare const MDivider: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
2105
2505
|
|
|
2106
|
-
export declare const MDrawer:
|
|
2506
|
+
export declare const MDrawer: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2107
2507
|
|
|
2108
2508
|
/**
|
|
2109
2509
|
* 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.
|
|
@@ -2116,49 +2516,56 @@ declare type MenuItem = {
|
|
|
2116
2516
|
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
2117
2517
|
};
|
|
2118
2518
|
|
|
2119
|
-
export declare const MField:
|
|
2519
|
+
export declare const MField: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
2520
|
+
|
|
2521
|
+
export declare const MFieldGroup: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
2120
2522
|
|
|
2121
|
-
export declare const
|
|
2523
|
+
export declare const MFileUploader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
2122
2524
|
|
|
2123
|
-
export declare const MFlag: DefineComponent<
|
|
2525
|
+
export declare const MFlag: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2124
2526
|
|
|
2125
|
-
export declare const MIconButton:
|
|
2527
|
+
export declare const MIconButton: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2528
|
+
|
|
2529
|
+
export declare const MKpiItem: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
2530
|
+
size: "s" | "m" | "l";
|
|
2531
|
+
status: "info" | "warning" | "error" | "success" | "neutral";
|
|
2532
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2126
2533
|
|
|
2127
|
-
export declare const MLinearProgressbarBuffer: DefineComponent<
|
|
2534
|
+
export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
|
|
2128
2535
|
value: number;
|
|
2129
2536
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2130
2537
|
|
|
2131
|
-
export declare const MLinearProgressbarPercentage: DefineComponent<
|
|
2538
|
+
export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
|
|
2132
2539
|
value: number;
|
|
2133
2540
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2134
2541
|
|
|
2135
|
-
export declare const MLink:
|
|
2542
|
+
export declare const MLink: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2136
2543
|
|
|
2137
|
-
export declare const MLoader: DefineComponent<
|
|
2138
|
-
size: "xs" | "s" | "m" | "l";
|
|
2544
|
+
export declare const MLoader: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
|
|
2139
2545
|
appearance: "standard" | "accent" | "inverse";
|
|
2546
|
+
size: "xs" | "s" | "m" | "l";
|
|
2140
2547
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2141
2548
|
|
|
2142
|
-
export declare const MLoadingOverlay: DefineComponent<
|
|
2549
|
+
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2143
2550
|
|
|
2144
|
-
export declare const MModal:
|
|
2551
|
+
export declare const MModal: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2145
2552
|
|
|
2146
|
-
export declare const MNumberBadge: DefineComponent<
|
|
2147
|
-
size: "s" | "m";
|
|
2553
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
|
|
2148
2554
|
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
2555
|
+
size: "s" | "m";
|
|
2149
2556
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2150
2557
|
|
|
2151
|
-
export declare const MOverlay:
|
|
2558
|
+
export declare const MOverlay: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
2152
2559
|
|
|
2153
|
-
export declare const MPagination: DefineComponent<
|
|
2560
|
+
export declare const MPagination: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2154
2561
|
"update:modelValue": (value: number) => any;
|
|
2155
|
-
}, string, PublicProps, Readonly<
|
|
2562
|
+
}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
|
|
2156
2563
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2157
2564
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2158
2565
|
|
|
2159
|
-
export declare const MPasswordInput: DefineComponent<
|
|
2566
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2160
2567
|
"update:modelValue": (value: string | number) => any;
|
|
2161
|
-
}, string, PublicProps, Readonly<
|
|
2568
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
2162
2569
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2163
2570
|
}>, {
|
|
2164
2571
|
clearLabel: string;
|
|
@@ -2204,9 +2611,9 @@ iconPosition?: "left" | "right" | "only";
|
|
|
2204
2611
|
type?: "button" | "reset" | "submit";
|
|
2205
2612
|
isLoading?: boolean;
|
|
2206
2613
|
}> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
2207
|
-
size: "s" | "m" | "l";
|
|
2208
|
-
type: "button" | "reset" | "submit";
|
|
2209
2614
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
2615
|
+
type: "button" | "reset" | "submit";
|
|
2616
|
+
size: "s" | "m" | "l";
|
|
2210
2617
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
2211
2618
|
beforeCreate?: (() => void) | (() => void)[];
|
|
2212
2619
|
created?: (() => void) | (() => void)[];
|
|
@@ -2228,9 +2635,9 @@ $forceUpdate: () => void;
|
|
|
2228
2635
|
$nextTick: nextTick;
|
|
2229
2636
|
$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;
|
|
2230
2637
|
} & Readonly<{
|
|
2231
|
-
size: "s" | "m" | "l";
|
|
2232
|
-
type: "button" | "reset" | "submit";
|
|
2233
2638
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
2639
|
+
type: "button" | "reset" | "submit";
|
|
2640
|
+
size: "s" | "m" | "l";
|
|
2234
2641
|
}> & Omit<Readonly<{
|
|
2235
2642
|
appearance?: "standard" | "accent" | "danger" | "inverse";
|
|
2236
2643
|
size?: "s" | "m" | "l";
|
|
@@ -2240,7 +2647,7 @@ outlined?: boolean;
|
|
|
2240
2647
|
iconPosition?: "left" | "right" | "only";
|
|
2241
2648
|
type?: "button" | "reset" | "submit";
|
|
2242
2649
|
isLoading?: boolean;
|
|
2243
|
-
}> & Readonly<{}>, "
|
|
2650
|
+
}> & Readonly<{}>, "appearance" | "type" | "size"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
|
|
2244
2651
|
$slots: Readonly<{
|
|
2245
2652
|
default: string;
|
|
2246
2653
|
icon?: VNode;
|
|
@@ -2251,68 +2658,68 @@ icon?: VNode;
|
|
|
2251
2658
|
}) | null;
|
|
2252
2659
|
}, any>;
|
|
2253
2660
|
|
|
2254
|
-
export declare const MPhoneNumber: DefineComponent<
|
|
2661
|
+
export declare const MPhoneNumber: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2255
2662
|
"update:modelValue": (value: string) => any;
|
|
2256
2663
|
valid: (isValid: boolean) => any;
|
|
2257
|
-
}, string, PublicProps, Readonly<
|
|
2664
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
2258
2665
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2259
2666
|
onValid?: ((isValid: boolean) => any) | undefined;
|
|
2260
2667
|
}>, {
|
|
2261
|
-
size: "s" | "m";
|
|
2262
2668
|
modelValue: string;
|
|
2669
|
+
size: "s" | "m";
|
|
2263
2670
|
defaultCountry: CountryCode;
|
|
2264
2671
|
prefix: boolean;
|
|
2265
2672
|
flag: boolean;
|
|
2266
2673
|
locale: string;
|
|
2267
2674
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2268
2675
|
|
|
2269
|
-
export declare const MPincode: DefineComponent<
|
|
2676
|
+
export declare const MPincode: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2270
2677
|
"update:modelValue": (value: string) => any;
|
|
2271
|
-
}, string, PublicProps, Readonly<
|
|
2678
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
2272
2679
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2273
2680
|
}>, {
|
|
2274
2681
|
length: 4 | 5 | 6;
|
|
2275
2682
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2276
2683
|
|
|
2277
|
-
export declare const MQuantitySelector: DefineComponent<
|
|
2684
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2278
2685
|
"update:modelValue": (value: number) => any;
|
|
2279
|
-
}, string, PublicProps, Readonly<
|
|
2686
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
2280
2687
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2281
2688
|
}>, {
|
|
2282
|
-
size: "s" | "m";
|
|
2283
|
-
name: string;
|
|
2284
2689
|
modelValue: number;
|
|
2690
|
+
size: "s" | "m";
|
|
2285
2691
|
step: number;
|
|
2692
|
+
name: string;
|
|
2286
2693
|
min: number;
|
|
2287
2694
|
max: number;
|
|
2288
2695
|
incrementlabel: string;
|
|
2289
2696
|
decrementLabel: string;
|
|
2290
2697
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2291
2698
|
|
|
2292
|
-
export declare const MRadio: DefineComponent<
|
|
2699
|
+
export declare const MRadio: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2293
2700
|
"update:modelValue": (value: boolean) => any;
|
|
2294
|
-
}, string, PublicProps, Readonly<
|
|
2701
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
2295
2702
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2296
2703
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2297
2704
|
|
|
2298
|
-
export declare const MRadioGroup: DefineComponent<
|
|
2705
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2299
2706
|
"update:modelValue": (value: string) => any;
|
|
2300
|
-
}, string, PublicProps, Readonly<
|
|
2707
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
2301
2708
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2302
2709
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2303
2710
|
|
|
2304
|
-
export declare const MSegmentedControl: DefineComponent<
|
|
2711
|
+
export declare const MSegmentedControl: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2305
2712
|
"update:modelValue": (value: number) => any;
|
|
2306
|
-
}, string, PublicProps, Readonly<
|
|
2713
|
+
}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
|
|
2307
2714
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2308
2715
|
}>, {
|
|
2309
|
-
size: "s" | "m";
|
|
2310
2716
|
modelValue: number;
|
|
2717
|
+
size: "s" | "m";
|
|
2311
2718
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2312
2719
|
|
|
2313
|
-
export declare const MSelect: DefineComponent<
|
|
2720
|
+
export declare const MSelect: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2314
2721
|
"update:modelValue": (value: string | number) => any;
|
|
2315
|
-
}, string, PublicProps, Readonly<
|
|
2722
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
2316
2723
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2317
2724
|
}>, {
|
|
2318
2725
|
size: "s" | "m";
|
|
@@ -2323,33 +2730,50 @@ export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {},
|
|
|
2323
2730
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
2324
2731
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2325
2732
|
}>, {
|
|
2326
|
-
size: "s" | "m" | "l";
|
|
2327
2733
|
appearance: "standard" | "accent";
|
|
2734
|
+
size: "s" | "m" | "l";
|
|
2328
2735
|
readonly: boolean;
|
|
2329
2736
|
compact: boolean;
|
|
2330
2737
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2331
2738
|
|
|
2332
|
-
export declare const MStatusBadge: DefineComponent<
|
|
2739
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
|
|
2333
2740
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2334
2741
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2335
2742
|
|
|
2336
|
-
export declare const MStatusDot: DefineComponent<
|
|
2743
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{}>, {
|
|
2337
2744
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2338
2745
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2339
2746
|
|
|
2340
|
-
export declare const MStatusMessage: DefineComponent<
|
|
2747
|
+
export declare const MStatusMessage: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{}>, {
|
|
2341
2748
|
status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
|
|
2342
2749
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2343
2750
|
|
|
2344
|
-
export declare const MStatusNotification:
|
|
2751
|
+
export declare const MStatusNotification: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
2752
|
+
|
|
2753
|
+
export declare const MStepperBottomBar: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2754
|
+
"update:modelValue": (value: number) => any;
|
|
2755
|
+
cancel: () => any;
|
|
2756
|
+
validate: () => any;
|
|
2757
|
+
}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
|
|
2758
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2759
|
+
onCancel?: (() => any) | undefined;
|
|
2760
|
+
onValidate?: (() => any) | undefined;
|
|
2761
|
+
}>, {
|
|
2762
|
+
modelValue: number;
|
|
2763
|
+
steps: number;
|
|
2764
|
+
cancel: boolean;
|
|
2765
|
+
cancelLabel: string;
|
|
2766
|
+
previousLabel: string;
|
|
2767
|
+
nextLabel: string;
|
|
2768
|
+
validateLabel: string;
|
|
2769
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2345
2770
|
|
|
2346
|
-
export declare const MStepperCompact: DefineComponent<
|
|
2771
|
+
export declare const MStepperCompact: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {
|
|
2347
2772
|
value: number;
|
|
2348
2773
|
maxSteps: number;
|
|
2349
2774
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2350
2775
|
|
|
2351
|
-
export declare const MStepperInline: DefineComponent<
|
|
2352
|
-
currentStep: number;
|
|
2776
|
+
export declare const MStepperInline: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {
|
|
2353
2777
|
steps: Array<{
|
|
2354
2778
|
/**
|
|
2355
2779
|
* Label of the step.
|
|
@@ -2360,11 +2784,12 @@ label: string;
|
|
|
2360
2784
|
*/
|
|
2361
2785
|
additionalInfo?: string;
|
|
2362
2786
|
}>;
|
|
2787
|
+
currentStep: number;
|
|
2363
2788
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2364
2789
|
|
|
2365
|
-
export declare const MTabs: DefineComponent<
|
|
2790
|
+
export declare const MTabs: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2366
2791
|
"update:modelValue": (value: number) => any;
|
|
2367
|
-
}, string, PublicProps, Readonly<
|
|
2792
|
+
}, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
|
|
2368
2793
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2369
2794
|
}>, {
|
|
2370
2795
|
modelValue: number;
|
|
@@ -2373,10 +2798,10 @@ divider: boolean;
|
|
|
2373
2798
|
tab: HTMLButtonElement;
|
|
2374
2799
|
}, HTMLElement>;
|
|
2375
2800
|
|
|
2376
|
-
export declare const MTag: DefineComponent<
|
|
2801
|
+
export declare const MTag: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2377
2802
|
"update:modelValue": (value: boolean) => any;
|
|
2378
2803
|
"remove-tag": (id: string) => any;
|
|
2379
|
-
}, string, PublicProps, Readonly<
|
|
2804
|
+
}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
|
|
2380
2805
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2381
2806
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
2382
2807
|
}>, {
|
|
@@ -2385,32 +2810,38 @@ contextualisedNumber: number;
|
|
|
2385
2810
|
removableLabel: string;
|
|
2386
2811
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2387
2812
|
|
|
2388
|
-
export declare const MTextArea: DefineComponent<
|
|
2813
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2389
2814
|
"update:modelValue": (value: string | number) => any;
|
|
2390
|
-
}, string, PublicProps, Readonly<
|
|
2815
|
+
}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
|
|
2391
2816
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2392
2817
|
}>, {
|
|
2393
2818
|
rows: number;
|
|
2394
2819
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2395
2820
|
|
|
2396
|
-
export declare const MTextInput:
|
|
2821
|
+
export declare const MTextInput: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2397
2822
|
|
|
2398
|
-
export declare const MToaster:
|
|
2823
|
+
export declare const MToaster: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
2399
2824
|
|
|
2400
|
-
export declare const MToggle: DefineComponent<
|
|
2825
|
+
export declare const MToggle: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2401
2826
|
"update:modelValue": (value: boolean) => any;
|
|
2402
|
-
}, string, PublicProps, Readonly<
|
|
2827
|
+
}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{
|
|
2403
2828
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2404
2829
|
}>, {
|
|
2405
2830
|
size: "s" | "m";
|
|
2406
2831
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2407
2832
|
|
|
2408
|
-
export declare const MToggleGroup: DefineComponent<
|
|
2833
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2409
2834
|
"update:modelValue": (value: string[]) => any;
|
|
2410
|
-
}, string, PublicProps, Readonly<
|
|
2835
|
+
}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{
|
|
2411
2836
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2412
2837
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2413
2838
|
|
|
2414
|
-
export declare const MTooltip:
|
|
2839
|
+
export declare const MTooltip: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
2840
|
+
|
|
2841
|
+
declare type NormalizedFile = {
|
|
2842
|
+
name: string;
|
|
2843
|
+
size?: number;
|
|
2844
|
+
type?: HTMLInputElement['accept'];
|
|
2845
|
+
};
|
|
2415
2846
|
|
|
2416
2847
|
export { }
|