@mozaic-ds/vue 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +334 -274
- package/dist/mozaic-vue.js +1215 -1144
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +1 -1
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +9 -7
- package/src/components/Contributing.mdx +1 -1
- package/src/components/GettingStarted.mdx +1 -1
- package/src/components/Introduction.mdx +1 -1
- package/src/components/Support.mdx +1 -1
- package/src/components/avatar/MAvatar.stories.ts +1 -0
- package/src/components/avatar/MAvatar.vue +2 -2
- package/src/components/avatar/README.md +16 -0
- package/src/components/breadcrumb/MBreadcrumb.stories.ts +1 -0
- package/src/components/breadcrumb/MBreadcrumb.vue +3 -3
- package/src/components/breadcrumb/README.md +11 -0
- package/src/components/button/MButton.stories.ts +1 -2
- package/src/components/button/MButton.vue +7 -2
- package/src/components/button/README.md +24 -0
- package/src/components/callout/MCallout.stories.ts +1 -0
- package/src/components/callout/MCallout.vue +5 -5
- package/src/components/callout/README.md +19 -0
- package/src/components/checkbox/MCheckbox.vue +5 -1
- package/src/components/checkbox/README.md +23 -0
- package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +1 -1
- package/src/components/checkboxgroup/MCheckboxGroup.vue +1 -1
- package/src/components/checkboxgroup/README.md +20 -0
- package/src/components/circularprogressbar/MCircularProgressbar.stories.ts +1 -0
- package/src/components/circularprogressbar/MCircularProgressbar.vue +2 -2
- package/src/components/circularprogressbar/README.md +14 -0
- package/src/components/container/MContainer.stories.ts +11 -3
- package/src/components/container/MContainer.vue +3 -3
- package/src/components/container/README.md +16 -0
- package/src/components/datepicker/MDatepicker.stories.ts +2 -1
- package/src/components/datepicker/MDatepicker.vue +7 -3
- package/src/components/datepicker/README.md +24 -0
- package/src/components/divider/MDivider.spec.ts +5 -5
- package/src/components/divider/MDivider.stories.ts +8 -13
- package/src/components/divider/MDivider.vue +8 -8
- package/src/components/divider/README.md +18 -0
- package/src/components/drawer/MDrawer.spec.ts +28 -0
- package/src/components/drawer/MDrawer.stories.ts +1 -0
- package/src/components/drawer/MDrawer.vue +16 -5
- package/src/components/drawer/README.md +29 -0
- package/src/components/field/MField.vue +1 -1
- package/src/components/field/README.md +24 -0
- package/src/components/fieldgroup/README.md +22 -0
- package/src/components/flag/MFlag.vue +2 -2
- package/src/components/flag/README.md +11 -0
- package/src/components/iconbutton/MIconButton.stories.ts +1 -0
- package/src/components/iconbutton/MIconButton.vue +2 -2
- package/src/components/iconbutton/README.md +21 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.stories.ts +1 -0
- package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.vue +5 -1
- package/src/components/linearprogressbarbuffer/README.md +11 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.stories.ts +1 -0
- package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.vue +4 -0
- package/src/components/linearprogressbarpercentage/README.md +10 -0
- package/src/components/link/MLink.stories.ts +2 -2
- package/src/components/link/MLink.vue +22 -12
- package/src/components/link/README.md +23 -0
- package/src/components/loader/MLoader.vue +1 -1
- package/src/components/loader/README.md +12 -0
- package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +1 -1
- package/src/components/loadingoverlay/MLoadingOverlay.vue +4 -0
- package/src/components/loadingoverlay/README.md +11 -0
- package/src/components/modal/MModal.vue +11 -7
- package/src/components/modal/README.md +28 -0
- package/src/components/numberbadge/MNumberBadge.vue +4 -4
- package/src/components/numberbadge/README.md +12 -0
- package/src/components/overlay/MOverlay.stories.ts +1 -1
- package/src/components/overlay/MOverlay.vue +2 -2
- package/src/components/overlay/README.md +17 -0
- package/src/components/pagination/MPagination.stories.ts +1 -0
- package/src/components/pagination/MPagination.vue +1 -1
- package/src/components/pagination/README.md +20 -0
- package/src/components/passwordinput/MPasswordInput.vue +6 -2
- package/src/components/passwordinput/README.md +25 -0
- package/src/components/pincode/MPincode.spec.ts +4 -1
- package/src/components/pincode/MPincode.stories.ts +2 -1
- package/src/components/pincode/MPincode.vue +10 -2
- package/src/components/pincode/README.md +22 -0
- package/src/components/quantityselector/MQuantitySelector.stories.ts +1 -1
- package/src/components/quantityselector/MQuantitySelector.vue +6 -2
- package/src/components/quantityselector/README.md +27 -0
- package/src/components/radio/MRadio.vue +5 -1
- package/src/components/radio/README.md +21 -0
- package/src/components/radiogroup/MRadioGroup.vue +1 -1
- package/src/components/radiogroup/README.md +21 -0
- package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +116 -0
- package/src/components/segmentedcontrol/MSegmentedControl.stories.ts +78 -0
- package/src/components/segmentedcontrol/MSegmentedControl.vue +92 -0
- package/src/components/segmentedcontrol/README.md +19 -0
- package/src/components/select/MSelect.vue +6 -2
- package/src/components/select/README.md +24 -0
- package/src/components/statusbadge/MStatusBadge.stories.ts +1 -1
- package/src/components/statusbadge/MStatusBadge.vue +3 -3
- package/src/components/statusbadge/README.md +11 -0
- package/src/components/statusdot/MStatusDot.stories.ts +1 -0
- package/src/components/statusdot/MStatusDot.vue +3 -3
- package/src/components/statusdot/README.md +11 -0
- package/src/components/statusnotification/MStatusNotification.vue +3 -3
- package/src/components/statusnotification/README.md +25 -0
- package/src/components/tabs/MTabs.stories.ts +23 -1
- package/src/components/tabs/MTabs.vue +8 -0
- package/src/components/tabs/Mtabs.spec.ts +30 -9
- package/src/components/tabs/README.md +20 -0
- package/src/components/tag/MTag.stories.ts +1 -1
- package/src/components/tag/MTag.vue +4 -0
- package/src/components/tag/README.md +25 -0
- package/src/components/textarea/MTextArea.vue +5 -1
- package/src/components/textarea/README.md +25 -0
- package/src/components/textinput/MTextInput.vue +10 -6
- package/src/components/textinput/README.md +32 -0
- package/src/components/toaster/MToaster.stories.ts +1 -0
- package/src/components/toaster/MToaster.vue +4 -4
- package/src/components/toaster/README.md +28 -0
- package/src/components/toggle/MToggle.vue +6 -2
- package/src/components/toggle/README.md +21 -0
- package/src/components/togglegroup/MToggleGroup.vue +2 -2
- package/src/components/togglegroup/README.md +20 -0
- package/src/components/tooltip/MTooltip.vue +8 -10
- package/src/components/tooltip/README.md +19 -0
- package/src/components/usingIcons.mdx +1 -1
- package/src/components/usingPresets.mdx +1 -1
- package/src/main.ts +6 -4
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -25,52 +25,50 @@ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, Comp
|
|
|
25
25
|
size: "s" | "m" | "l";
|
|
26
26
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
27
27
|
|
|
28
|
-
declare const __VLS_component_10: DefineComponent<
|
|
28
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {
|
|
29
29
|
size: "s" | "m";
|
|
30
30
|
iconPosition: "left" | "right";
|
|
31
31
|
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
32
|
-
href: string;
|
|
33
|
-
target: "_self" | "_blank" | "_parent" | "_top";
|
|
34
32
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
35
33
|
|
|
36
|
-
declare const __VLS_component_11: DefineComponent<
|
|
34
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
37
35
|
"update:open": (value: boolean) => any;
|
|
38
|
-
}, string, PublicProps, Readonly<
|
|
36
|
+
}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
|
|
39
37
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
40
38
|
}>, {
|
|
41
39
|
closable: boolean;
|
|
42
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
40
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
43
41
|
|
|
44
|
-
declare const __VLS_component_12: DefineComponent<
|
|
42
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
45
43
|
|
|
46
|
-
declare const __VLS_component_13: DefineComponent<
|
|
44
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
47
45
|
close: () => any;
|
|
48
|
-
}, string, PublicProps, Readonly<
|
|
46
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
49
47
|
onClose?: (() => any) | undefined;
|
|
50
48
|
}>, {
|
|
51
49
|
status: "info" | "success" | "warning" | "error";
|
|
52
50
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
53
51
|
|
|
54
|
-
declare const __VLS_component_14: DefineComponent<
|
|
52
|
+
declare const __VLS_component_14: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
55
53
|
"update:modelValue": (value: string | number) => any;
|
|
56
|
-
}, string, PublicProps, Readonly<
|
|
54
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
57
55
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
58
56
|
}>, {
|
|
59
57
|
size: "s" | "m";
|
|
60
58
|
clearLabel: string;
|
|
61
59
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
62
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
60
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
63
61
|
|
|
64
|
-
declare const __VLS_component_15: DefineComponent<
|
|
62
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
65
63
|
"update:open": (value: boolean) => any;
|
|
66
|
-
}, string, PublicProps, Readonly<
|
|
64
|
+
}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
|
|
67
65
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
68
66
|
}>, {
|
|
69
67
|
status: "info" | "success" | "warning" | "error";
|
|
70
68
|
closable: boolean;
|
|
71
69
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
72
70
|
|
|
73
|
-
declare const __VLS_component_16: DefineComponent<
|
|
71
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
|
|
74
72
|
position: "top" | "bottom" | "left" | "right";
|
|
75
73
|
pointer: boolean;
|
|
76
74
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -81,7 +79,7 @@ type: "button" | "reset" | "submit";
|
|
|
81
79
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
82
80
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
83
81
|
|
|
84
|
-
declare const __VLS_component_3: DefineComponent<
|
|
82
|
+
declare const __VLS_component_3: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {
|
|
85
83
|
appearance: "standard" | "accent" | "tips" | "inverse";
|
|
86
84
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
87
85
|
|
|
@@ -89,7 +87,7 @@ declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {},
|
|
|
89
87
|
|
|
90
88
|
declare const __VLS_component_5: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
91
89
|
size: "s" | "m" | "l";
|
|
92
|
-
|
|
90
|
+
appearance: "primary" | "secondary" | "tertiary" | "inverse";
|
|
93
91
|
orientation: "vertical" | "horizontal";
|
|
94
92
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
95
93
|
|
|
@@ -99,7 +97,9 @@ back: () => any;
|
|
|
99
97
|
}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
|
|
100
98
|
onBack?: (() => any) | undefined;
|
|
101
99
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
102
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
100
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
101
|
+
titleRef: HTMLHeadingElement;
|
|
102
|
+
}, any>;
|
|
103
103
|
|
|
104
104
|
declare const __VLS_component_7: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
105
105
|
|
|
@@ -116,25 +116,25 @@ appearance: "standard" | "accent" | "danger" | "inverse";
|
|
|
116
116
|
*/
|
|
117
117
|
declare type __VLS_Props = {
|
|
118
118
|
/**
|
|
119
|
-
* Allows to define the avatar size
|
|
119
|
+
* Allows to define the avatar size.
|
|
120
120
|
*/
|
|
121
121
|
size?: 's' | 'm' | 'l';
|
|
122
122
|
};
|
|
123
123
|
|
|
124
124
|
/**
|
|
125
|
-
* A
|
|
125
|
+
* 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.
|
|
126
126
|
*/
|
|
127
127
|
declare type __VLS_Props_10 = {
|
|
128
128
|
/**
|
|
129
|
-
* Determines the orientation of the divider
|
|
129
|
+
* Determines the orientation of the divider.
|
|
130
130
|
*/
|
|
131
131
|
orientation?: 'vertical' | 'horizontal';
|
|
132
132
|
/**
|
|
133
|
-
* Determines the
|
|
133
|
+
* Determines the appearance of the divider.
|
|
134
134
|
*/
|
|
135
|
-
|
|
135
|
+
appearance?: 'primary' | 'secondary' | 'tertiary' | 'inverse';
|
|
136
136
|
/**
|
|
137
|
-
* Determines the size of the divider
|
|
137
|
+
* Determines the size of the divider.
|
|
138
138
|
*/
|
|
139
139
|
size?: 's' | 'm' | 'l';
|
|
140
140
|
};
|
|
@@ -148,7 +148,7 @@ declare type __VLS_Props_11 = {
|
|
|
148
148
|
*/
|
|
149
149
|
open?: boolean;
|
|
150
150
|
/**
|
|
151
|
-
* Position of the drawer
|
|
151
|
+
* Position of the drawer.
|
|
152
152
|
*/
|
|
153
153
|
position?: 'left' | 'right';
|
|
154
154
|
/**
|
|
@@ -160,17 +160,17 @@ declare type __VLS_Props_11 = {
|
|
|
160
160
|
*/
|
|
161
161
|
back?: boolean;
|
|
162
162
|
/**
|
|
163
|
-
* Title of the drawer
|
|
163
|
+
* Title of the drawer.
|
|
164
164
|
*/
|
|
165
165
|
title: string;
|
|
166
166
|
/**
|
|
167
|
-
* Title of the content of the drawer
|
|
167
|
+
* Title of the content of the drawer.
|
|
168
168
|
*/
|
|
169
169
|
contentTitle?: string;
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
/**
|
|
173
|
-
*
|
|
173
|
+
* 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.
|
|
174
174
|
*/
|
|
175
175
|
declare type __VLS_Props_12 = {
|
|
176
176
|
/**
|
|
@@ -250,17 +250,17 @@ declare type __VLS_Props_13 = {
|
|
|
250
250
|
*/
|
|
251
251
|
declare type __VLS_Props_14 = {
|
|
252
252
|
/**
|
|
253
|
-
* Label of the Flag
|
|
253
|
+
* Label of the Flag.
|
|
254
254
|
*/
|
|
255
255
|
label: string;
|
|
256
256
|
/**
|
|
257
|
-
* Allows to define the Flag
|
|
257
|
+
* Allows to define the Flag appearance.
|
|
258
258
|
*/
|
|
259
259
|
appearance?: 'danger' | 'accent' | 'inverse' | 'standard';
|
|
260
260
|
};
|
|
261
261
|
|
|
262
262
|
/**
|
|
263
|
-
*
|
|
263
|
+
* 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.
|
|
264
264
|
*/
|
|
265
265
|
declare type __VLS_Props_15 = {
|
|
266
266
|
/**
|
|
@@ -290,19 +290,43 @@ declare type __VLS_Props_15 = {
|
|
|
290
290
|
};
|
|
291
291
|
|
|
292
292
|
/**
|
|
293
|
-
* A
|
|
293
|
+
* 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.
|
|
294
294
|
*/
|
|
295
295
|
declare type __VLS_Props_16 = {
|
|
296
|
+
/**
|
|
297
|
+
* Allows to define the progress bar size.
|
|
298
|
+
*/
|
|
299
|
+
size?: 's' | 'm' | 'l';
|
|
300
|
+
/**
|
|
301
|
+
* The current value of the progress bar.
|
|
302
|
+
*/
|
|
303
|
+
value?: number;
|
|
304
|
+
};
|
|
305
|
+
|
|
306
|
+
/**
|
|
307
|
+
* 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.
|
|
308
|
+
*/
|
|
309
|
+
declare type __VLS_Props_17 = {
|
|
310
|
+
/**
|
|
311
|
+
* The current value of the progress bar.
|
|
312
|
+
*/
|
|
313
|
+
value?: number;
|
|
314
|
+
};
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* 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.
|
|
318
|
+
*/
|
|
319
|
+
declare type __VLS_Props_18 = {
|
|
296
320
|
/**
|
|
297
321
|
* Position of the icon relative to the text.
|
|
298
322
|
*/
|
|
299
323
|
iconPosition?: 'left' | 'right';
|
|
300
324
|
/**
|
|
301
|
-
* Allows to define the link
|
|
325
|
+
* Allows to define the link appearance.
|
|
302
326
|
*/
|
|
303
327
|
appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
|
|
304
328
|
/**
|
|
305
|
-
* Allows to define the link size
|
|
329
|
+
* Allows to define the link size.
|
|
306
330
|
*/
|
|
307
331
|
size?: 's' | 'm';
|
|
308
332
|
/**
|
|
@@ -310,11 +334,11 @@ declare type __VLS_Props_16 = {
|
|
|
310
334
|
*/
|
|
311
335
|
href?: string;
|
|
312
336
|
/**
|
|
313
|
-
* Where to open the link
|
|
337
|
+
* Where to open the link.
|
|
314
338
|
*/
|
|
315
339
|
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
316
340
|
/**
|
|
317
|
-
* Specify wether the link is inline
|
|
341
|
+
* Specify wether the link is inline.
|
|
318
342
|
*/
|
|
319
343
|
inline?: boolean;
|
|
320
344
|
/**
|
|
@@ -324,9 +348,9 @@ declare type __VLS_Props_16 = {
|
|
|
324
348
|
};
|
|
325
349
|
|
|
326
350
|
/**
|
|
327
|
-
* A loader
|
|
351
|
+
* 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.
|
|
328
352
|
*/
|
|
329
|
-
declare type
|
|
353
|
+
declare type __VLS_Props_19 = {
|
|
330
354
|
/**
|
|
331
355
|
* Specifies the visual appearance of the loader.
|
|
332
356
|
*/
|
|
@@ -341,10 +365,37 @@ declare type __VLS_Props_17 = {
|
|
|
341
365
|
text?: string;
|
|
342
366
|
};
|
|
343
367
|
|
|
368
|
+
/**
|
|
369
|
+
* 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.
|
|
370
|
+
*/
|
|
371
|
+
declare type __VLS_Props_2 = {
|
|
372
|
+
/**
|
|
373
|
+
* Allows to define the breadcrumb appearance.
|
|
374
|
+
*/
|
|
375
|
+
appearance?: 'standard' | 'inverse';
|
|
376
|
+
/**
|
|
377
|
+
* Links of the breadcrumb.
|
|
378
|
+
*/
|
|
379
|
+
links: Array<{
|
|
380
|
+
/**
|
|
381
|
+
* The label displayed for the link.
|
|
382
|
+
*/
|
|
383
|
+
label: string;
|
|
384
|
+
/**
|
|
385
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
386
|
+
*/
|
|
387
|
+
href: string;
|
|
388
|
+
/**
|
|
389
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
390
|
+
*/
|
|
391
|
+
router?: boolean;
|
|
392
|
+
}>;
|
|
393
|
+
};
|
|
394
|
+
|
|
344
395
|
/**
|
|
345
396
|
* 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.
|
|
346
397
|
*/
|
|
347
|
-
declare type
|
|
398
|
+
declare type __VLS_Props_20 = {
|
|
348
399
|
/**
|
|
349
400
|
* Controls the visibility of the loading overlay.
|
|
350
401
|
*/
|
|
@@ -358,17 +409,17 @@ declare type __VLS_Props_18 = {
|
|
|
358
409
|
/**
|
|
359
410
|
* 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.
|
|
360
411
|
*/
|
|
361
|
-
declare type
|
|
412
|
+
declare type __VLS_Props_21 = {
|
|
362
413
|
/**
|
|
363
414
|
* if `true`, display the modal.
|
|
364
415
|
*/
|
|
365
416
|
open?: boolean;
|
|
366
417
|
/**
|
|
367
|
-
* Title of the modal
|
|
418
|
+
* Title of the modal.
|
|
368
419
|
*/
|
|
369
420
|
title: string;
|
|
370
421
|
/**
|
|
371
|
-
* Description of the modal
|
|
422
|
+
* Description of the modal.
|
|
372
423
|
*/
|
|
373
424
|
description?: string;
|
|
374
425
|
/**
|
|
@@ -378,54 +429,27 @@ declare type __VLS_Props_19 = {
|
|
|
378
429
|
};
|
|
379
430
|
|
|
380
431
|
/**
|
|
381
|
-
* A
|
|
432
|
+
* 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.
|
|
382
433
|
*/
|
|
383
|
-
declare type
|
|
384
|
-
/**
|
|
385
|
-
* Allows to define the breadcrumb style
|
|
386
|
-
*/
|
|
387
|
-
appearance?: 'standard' | 'inverse';
|
|
388
|
-
/**
|
|
389
|
-
* Links of the breadcrumb
|
|
390
|
-
*/
|
|
391
|
-
links: Array<{
|
|
392
|
-
/**
|
|
393
|
-
* The label displayed for the link.
|
|
394
|
-
*/
|
|
395
|
-
label: string;
|
|
396
|
-
/**
|
|
397
|
-
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
398
|
-
*/
|
|
399
|
-
href: string;
|
|
400
|
-
/**
|
|
401
|
-
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
402
|
-
*/
|
|
403
|
-
router?: boolean;
|
|
404
|
-
}>;
|
|
405
|
-
};
|
|
406
|
-
|
|
407
|
-
/**
|
|
408
|
-
* A badge indicates the status of an entity and can evolve at any time.
|
|
409
|
-
*/
|
|
410
|
-
declare type __VLS_Props_20 = {
|
|
434
|
+
declare type __VLS_Props_22 = {
|
|
411
435
|
/**
|
|
412
|
-
* Content of the badge
|
|
436
|
+
* Content of the badge.
|
|
413
437
|
*/
|
|
414
438
|
label: number;
|
|
415
439
|
/**
|
|
416
|
-
* Allows to define the
|
|
440
|
+
* Allows to define the badge appearance.
|
|
417
441
|
*/
|
|
418
442
|
appearance?: 'danger' | 'accent' | 'inverse' | 'standard';
|
|
419
443
|
/**
|
|
420
|
-
* Allows to define the
|
|
444
|
+
* Allows to define the badge size.
|
|
421
445
|
*/
|
|
422
446
|
size?: 's' | 'm';
|
|
423
447
|
};
|
|
424
448
|
|
|
425
449
|
/**
|
|
426
|
-
* An overlay
|
|
450
|
+
* 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.
|
|
427
451
|
*/
|
|
428
|
-
declare type
|
|
452
|
+
declare type __VLS_Props_23 = {
|
|
429
453
|
/**
|
|
430
454
|
* Controls the visibility of the overlay.
|
|
431
455
|
*/
|
|
@@ -439,7 +463,7 @@ declare type __VLS_Props_21 = {
|
|
|
439
463
|
/**
|
|
440
464
|
* 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.
|
|
441
465
|
*/
|
|
442
|
-
declare type
|
|
466
|
+
declare type __VLS_Props_24 = {
|
|
443
467
|
/**
|
|
444
468
|
* A unique identifier for the pagination.
|
|
445
469
|
*/
|
|
@@ -469,7 +493,7 @@ declare type __VLS_Props_22 = {
|
|
|
469
493
|
/**
|
|
470
494
|
* 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.
|
|
471
495
|
*/
|
|
472
|
-
declare type
|
|
496
|
+
declare type __VLS_Props_25 = {
|
|
473
497
|
/**
|
|
474
498
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
475
499
|
*/
|
|
@@ -503,11 +527,11 @@ declare type __VLS_Props_23 = {
|
|
|
503
527
|
*/
|
|
504
528
|
isClearable?: boolean;
|
|
505
529
|
/**
|
|
506
|
-
* The label text for the clear button
|
|
530
|
+
* The label text for the clear button.
|
|
507
531
|
*/
|
|
508
532
|
clearLabel?: string;
|
|
509
533
|
/**
|
|
510
|
-
* Labels of the button displayed when showing or hiding the password
|
|
534
|
+
* Labels of the button displayed when showing or hiding the password.
|
|
511
535
|
*/
|
|
512
536
|
buttonLabel?: {
|
|
513
537
|
show: string;
|
|
@@ -516,9 +540,9 @@ declare type __VLS_Props_23 = {
|
|
|
516
540
|
};
|
|
517
541
|
|
|
518
542
|
/**
|
|
519
|
-
* 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.
|
|
543
|
+
* 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).
|
|
520
544
|
*/
|
|
521
|
-
declare type
|
|
545
|
+
declare type __VLS_Props_26 = {
|
|
522
546
|
/**
|
|
523
547
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
524
548
|
*/
|
|
@@ -550,31 +574,7 @@ declare type __VLS_Props_24 = {
|
|
|
550
574
|
};
|
|
551
575
|
|
|
552
576
|
/**
|
|
553
|
-
* A
|
|
554
|
-
*/
|
|
555
|
-
declare type __VLS_Props_25 = {
|
|
556
|
-
/**
|
|
557
|
-
* Allows to define the progress bar size
|
|
558
|
-
*/
|
|
559
|
-
size?: 's' | 'm' | 'l';
|
|
560
|
-
/**
|
|
561
|
-
* The current value of the progress bar.
|
|
562
|
-
*/
|
|
563
|
-
value?: number;
|
|
564
|
-
};
|
|
565
|
-
|
|
566
|
-
/**
|
|
567
|
-
* 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.
|
|
568
|
-
*/
|
|
569
|
-
declare type __VLS_Props_26 = {
|
|
570
|
-
/**
|
|
571
|
-
* The current value of the progress bar.
|
|
572
|
-
*/
|
|
573
|
-
value?: number;
|
|
574
|
-
};
|
|
575
|
-
|
|
576
|
-
/**
|
|
577
|
-
* The quantity selector is a form element used to enter or select a number. This type of input is best used when the user needs to choose the quantity of a selected item, like a product before adding to cart for example.
|
|
577
|
+
* 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.
|
|
578
578
|
*/
|
|
579
579
|
declare type __VLS_Props_27 = {
|
|
580
580
|
/**
|
|
@@ -598,7 +598,7 @@ declare type __VLS_Props_27 = {
|
|
|
598
598
|
*/
|
|
599
599
|
disabled?: boolean;
|
|
600
600
|
/**
|
|
601
|
-
* Determines the size of the quantity selector
|
|
601
|
+
* Determines the size of the quantity selector.
|
|
602
602
|
*/
|
|
603
603
|
size?: 's' | 'm';
|
|
604
604
|
/**
|
|
@@ -628,7 +628,7 @@ declare type __VLS_Props_27 = {
|
|
|
628
628
|
};
|
|
629
629
|
|
|
630
630
|
/**
|
|
631
|
-
* A radio button is
|
|
631
|
+
* 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.
|
|
632
632
|
*/
|
|
633
633
|
declare type __VLS_Props_28 = {
|
|
634
634
|
/**
|
|
@@ -658,7 +658,7 @@ declare type __VLS_Props_28 = {
|
|
|
658
658
|
};
|
|
659
659
|
|
|
660
660
|
/**
|
|
661
|
-
* A radio button is
|
|
661
|
+
* 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).
|
|
662
662
|
*/
|
|
663
663
|
declare type __VLS_Props_29 = {
|
|
664
664
|
/**
|
|
@@ -690,7 +690,7 @@ declare type __VLS_Props_29 = {
|
|
|
690
690
|
};
|
|
691
691
|
|
|
692
692
|
/**
|
|
693
|
-
* Buttons are used to
|
|
693
|
+
* 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.
|
|
694
694
|
*/
|
|
695
695
|
declare type __VLS_Props_3 = {
|
|
696
696
|
/**
|
|
@@ -728,9 +728,36 @@ declare type __VLS_Props_3 = {
|
|
|
728
728
|
};
|
|
729
729
|
|
|
730
730
|
/**
|
|
731
|
-
* A
|
|
731
|
+
* 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.
|
|
732
732
|
*/
|
|
733
733
|
declare type __VLS_Props_30 = {
|
|
734
|
+
/**
|
|
735
|
+
* The selected segment index, bound via v-model.
|
|
736
|
+
*/
|
|
737
|
+
modelValue?: number;
|
|
738
|
+
/**
|
|
739
|
+
* if `true`, the segmented control take the full width.
|
|
740
|
+
*/
|
|
741
|
+
full?: boolean;
|
|
742
|
+
/**
|
|
743
|
+
* Determines the size of the segmented control.
|
|
744
|
+
*/
|
|
745
|
+
size?: 's' | 'm';
|
|
746
|
+
/**
|
|
747
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each segment.
|
|
748
|
+
*/
|
|
749
|
+
segments: Array<{
|
|
750
|
+
/**
|
|
751
|
+
* The label displayed for the segment.
|
|
752
|
+
*/
|
|
753
|
+
label: string;
|
|
754
|
+
}>;
|
|
755
|
+
};
|
|
756
|
+
|
|
757
|
+
/**
|
|
758
|
+
* 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).
|
|
759
|
+
*/
|
|
760
|
+
declare type __VLS_Props_31 = {
|
|
734
761
|
/**
|
|
735
762
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
736
763
|
*/
|
|
@@ -766,7 +793,7 @@ declare type __VLS_Props_30 = {
|
|
|
766
793
|
*/
|
|
767
794
|
disabled?: boolean;
|
|
768
795
|
/**
|
|
769
|
-
* Determines the size of the select
|
|
796
|
+
* Determines the size of the select.
|
|
770
797
|
*/
|
|
771
798
|
size?: 's' | 'm';
|
|
772
799
|
/**
|
|
@@ -776,33 +803,47 @@ declare type __VLS_Props_30 = {
|
|
|
776
803
|
};
|
|
777
804
|
|
|
778
805
|
/**
|
|
779
|
-
* A
|
|
806
|
+
* 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.
|
|
780
807
|
*/
|
|
781
|
-
declare type
|
|
808
|
+
declare type __VLS_Props_32 = {
|
|
782
809
|
/**
|
|
783
|
-
* Content of the
|
|
810
|
+
* Content of the status badge
|
|
784
811
|
*/
|
|
785
812
|
label: string;
|
|
786
813
|
/**
|
|
787
|
-
* Allows to define the
|
|
814
|
+
* Allows to define the status badge type
|
|
788
815
|
*/
|
|
789
816
|
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
|
|
790
817
|
};
|
|
791
818
|
|
|
819
|
+
/**
|
|
820
|
+
* 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.
|
|
821
|
+
*/
|
|
822
|
+
declare type __VLS_Props_33 = {
|
|
823
|
+
/**
|
|
824
|
+
* Allows to define the status dot type.
|
|
825
|
+
*/
|
|
826
|
+
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
|
|
827
|
+
/**
|
|
828
|
+
* Determines the size of the status dot.
|
|
829
|
+
*/
|
|
830
|
+
size?: 's' | 'm' | 'l';
|
|
831
|
+
};
|
|
832
|
+
|
|
792
833
|
/**
|
|
793
834
|
* 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.
|
|
794
835
|
*/
|
|
795
|
-
declare type
|
|
836
|
+
declare type __VLS_Props_34 = {
|
|
796
837
|
/**
|
|
797
|
-
* Title of the
|
|
838
|
+
* Title of the status notification.
|
|
798
839
|
*/
|
|
799
840
|
title: string;
|
|
800
841
|
/**
|
|
801
|
-
* Description of the
|
|
842
|
+
* Description of the status notification.
|
|
802
843
|
*/
|
|
803
844
|
description: string;
|
|
804
845
|
/**
|
|
805
|
-
* Allows to define the
|
|
846
|
+
* Allows to define the status notification type.
|
|
806
847
|
*/
|
|
807
848
|
status?: 'info' | 'success' | 'warning' | 'error';
|
|
808
849
|
/**
|
|
@@ -814,7 +855,7 @@ declare type __VLS_Props_32 = {
|
|
|
814
855
|
/**
|
|
815
856
|
* 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.
|
|
816
857
|
*/
|
|
817
|
-
declare type
|
|
858
|
+
declare type __VLS_Props_35 = {
|
|
818
859
|
/**
|
|
819
860
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
820
861
|
*/
|
|
@@ -839,6 +880,10 @@ declare type __VLS_Props_33 = {
|
|
|
839
880
|
* The icon displayed for the tab from Mozaic-icon-vue.
|
|
840
881
|
*/
|
|
841
882
|
icon?: Component;
|
|
883
|
+
/**
|
|
884
|
+
* The number badge displayed for the tab.
|
|
885
|
+
*/
|
|
886
|
+
badge?: number;
|
|
842
887
|
/**
|
|
843
888
|
* The label displayed for the tab.
|
|
844
889
|
*/
|
|
@@ -853,7 +898,7 @@ declare type __VLS_Props_33 = {
|
|
|
853
898
|
/**
|
|
854
899
|
* 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).
|
|
855
900
|
*/
|
|
856
|
-
declare type
|
|
901
|
+
declare type __VLS_Props_36 = {
|
|
857
902
|
/**
|
|
858
903
|
* Defines the behavior and layout of the tag.
|
|
859
904
|
*/
|
|
@@ -893,9 +938,9 @@ declare type __VLS_Props_34 = {
|
|
|
893
938
|
};
|
|
894
939
|
|
|
895
940
|
/**
|
|
896
|
-
* A
|
|
941
|
+
* 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).
|
|
897
942
|
*/
|
|
898
|
-
declare type
|
|
943
|
+
declare type __VLS_Props_37 = {
|
|
899
944
|
/**
|
|
900
945
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
901
946
|
*/
|
|
@@ -939,9 +984,9 @@ declare type __VLS_Props_35 = {
|
|
|
939
984
|
};
|
|
940
985
|
|
|
941
986
|
/**
|
|
942
|
-
*
|
|
987
|
+
* 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).
|
|
943
988
|
*/
|
|
944
|
-
declare type
|
|
989
|
+
declare type __VLS_Props_38 = {
|
|
945
990
|
/**
|
|
946
991
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
947
992
|
*/
|
|
@@ -959,7 +1004,7 @@ declare type __VLS_Props_36 = {
|
|
|
959
1004
|
*/
|
|
960
1005
|
placeholder?: string;
|
|
961
1006
|
/**
|
|
962
|
-
* Defines the type of input
|
|
1007
|
+
* Defines the type of input.
|
|
963
1008
|
*/
|
|
964
1009
|
inputType?: 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text';
|
|
965
1010
|
/**
|
|
@@ -971,7 +1016,7 @@ declare type __VLS_Props_36 = {
|
|
|
971
1016
|
*/
|
|
972
1017
|
disabled?: boolean;
|
|
973
1018
|
/**
|
|
974
|
-
* Determines the size of the input
|
|
1019
|
+
* Determines the size of the input.
|
|
975
1020
|
*/
|
|
976
1021
|
size?: 's' | 'm';
|
|
977
1022
|
/**
|
|
@@ -983,7 +1028,7 @@ declare type __VLS_Props_36 = {
|
|
|
983
1028
|
*/
|
|
984
1029
|
isClearable?: boolean;
|
|
985
1030
|
/**
|
|
986
|
-
* The label text for the clear button
|
|
1031
|
+
* The label text for the clear button.
|
|
987
1032
|
*/
|
|
988
1033
|
clearLabel?: string;
|
|
989
1034
|
};
|
|
@@ -991,13 +1036,13 @@ declare type __VLS_Props_36 = {
|
|
|
991
1036
|
/**
|
|
992
1037
|
* 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.
|
|
993
1038
|
*/
|
|
994
|
-
declare type
|
|
1039
|
+
declare type __VLS_Props_39 = {
|
|
995
1040
|
/**
|
|
996
|
-
*
|
|
1041
|
+
* If `true`, display the Toaster.
|
|
997
1042
|
*/
|
|
998
1043
|
open?: boolean;
|
|
999
1044
|
/**
|
|
1000
|
-
* Position of the toaster
|
|
1045
|
+
* Position of the toaster.
|
|
1001
1046
|
*/
|
|
1002
1047
|
position?: 'top' | 'bottom' | 'top-center' | 'bottom-center';
|
|
1003
1048
|
/**
|
|
@@ -1009,11 +1054,11 @@ declare type __VLS_Props_37 = {
|
|
|
1009
1054
|
*/
|
|
1010
1055
|
status?: 'info' | 'success' | 'warning' | 'error';
|
|
1011
1056
|
/**
|
|
1012
|
-
*
|
|
1057
|
+
* If `true`, display the close button.
|
|
1013
1058
|
*/
|
|
1014
1059
|
closable?: boolean;
|
|
1015
1060
|
/**
|
|
1016
|
-
*
|
|
1061
|
+
* If `true`, display the progress bar of the duration.
|
|
1017
1062
|
*/
|
|
1018
1063
|
progress?: boolean;
|
|
1019
1064
|
/**
|
|
@@ -1023,9 +1068,27 @@ declare type __VLS_Props_37 = {
|
|
|
1023
1068
|
};
|
|
1024
1069
|
|
|
1025
1070
|
/**
|
|
1026
|
-
* A
|
|
1071
|
+
* 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.
|
|
1027
1072
|
*/
|
|
1028
|
-
declare type
|
|
1073
|
+
declare type __VLS_Props_4 = {
|
|
1074
|
+
/**
|
|
1075
|
+
* Title of the callout.
|
|
1076
|
+
*/
|
|
1077
|
+
title: string;
|
|
1078
|
+
/**
|
|
1079
|
+
* Description of the callout.
|
|
1080
|
+
*/
|
|
1081
|
+
description: string;
|
|
1082
|
+
/**
|
|
1083
|
+
* Allows to define the callout appearance.
|
|
1084
|
+
*/
|
|
1085
|
+
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1086
|
+
};
|
|
1087
|
+
|
|
1088
|
+
/**
|
|
1089
|
+
* 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.
|
|
1090
|
+
*/
|
|
1091
|
+
declare type __VLS_Props_40 = {
|
|
1029
1092
|
/**
|
|
1030
1093
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1031
1094
|
*/
|
|
@@ -1043,7 +1106,7 @@ declare type __VLS_Props_38 = {
|
|
|
1043
1106
|
*/
|
|
1044
1107
|
modelValue?: boolean;
|
|
1045
1108
|
/**
|
|
1046
|
-
* Determines the size of the toggle
|
|
1109
|
+
* Determines the size of the toggle.
|
|
1047
1110
|
*/
|
|
1048
1111
|
size?: 's' | 'm';
|
|
1049
1112
|
/**
|
|
@@ -1052,32 +1115,62 @@ declare type __VLS_Props_38 = {
|
|
|
1052
1115
|
disabled?: boolean;
|
|
1053
1116
|
};
|
|
1054
1117
|
|
|
1118
|
+
/**
|
|
1119
|
+
* 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).
|
|
1120
|
+
*/
|
|
1121
|
+
declare type __VLS_Props_41 = {
|
|
1122
|
+
/**
|
|
1123
|
+
* The name attribute for the toggle element, typically used for form submission.
|
|
1124
|
+
*/
|
|
1125
|
+
name: string;
|
|
1126
|
+
/**
|
|
1127
|
+
* Property used to manage the values checked by v-model
|
|
1128
|
+
* (Do not use directly)
|
|
1129
|
+
*/
|
|
1130
|
+
modelValue?: Array<string>;
|
|
1131
|
+
/**
|
|
1132
|
+
* List of properties of each toggle of the toggle group.
|
|
1133
|
+
*/
|
|
1134
|
+
options: Array<{
|
|
1135
|
+
id: string;
|
|
1136
|
+
label: string;
|
|
1137
|
+
value: string;
|
|
1138
|
+
disabled?: boolean;
|
|
1139
|
+
isInvalid?: boolean;
|
|
1140
|
+
size?: 's' | 'm';
|
|
1141
|
+
}>;
|
|
1142
|
+
/**
|
|
1143
|
+
* If `true`, make the form element of the group inline.
|
|
1144
|
+
*/
|
|
1145
|
+
inline?: boolean;
|
|
1146
|
+
};
|
|
1147
|
+
|
|
1055
1148
|
/**
|
|
1056
1149
|
* 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.
|
|
1057
1150
|
*/
|
|
1058
|
-
declare type
|
|
1151
|
+
declare type __VLS_Props_42 = {
|
|
1059
1152
|
/**
|
|
1060
1153
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1061
1154
|
*/
|
|
1062
1155
|
id: string;
|
|
1063
1156
|
/**
|
|
1064
|
-
* Content of the tooltip
|
|
1157
|
+
* Content of the tooltip.
|
|
1065
1158
|
*/
|
|
1066
1159
|
text: string;
|
|
1067
1160
|
/**
|
|
1068
|
-
* Determines the position of the tooltip
|
|
1161
|
+
* Determines the position of the tooltip.
|
|
1069
1162
|
*/
|
|
1070
1163
|
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
1071
1164
|
/**
|
|
1072
|
-
*
|
|
1165
|
+
* If `true`, the tooltip display a pointer.
|
|
1073
1166
|
*/
|
|
1074
1167
|
pointer?: boolean;
|
|
1075
1168
|
};
|
|
1076
1169
|
|
|
1077
1170
|
/**
|
|
1078
|
-
*
|
|
1171
|
+
* 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.
|
|
1079
1172
|
*/
|
|
1080
|
-
declare type
|
|
1173
|
+
declare type __VLS_Props_5 = {
|
|
1081
1174
|
/**
|
|
1082
1175
|
* A unique identifier for the checkbox, used to associate the label with the form element.
|
|
1083
1176
|
*/
|
|
@@ -1113,39 +1206,9 @@ declare type __VLS_Props_4 = {
|
|
|
1113
1206
|
};
|
|
1114
1207
|
|
|
1115
1208
|
/**
|
|
1116
|
-
* A
|
|
1209
|
+
* 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).
|
|
1117
1210
|
*/
|
|
1118
|
-
declare type
|
|
1119
|
-
/**
|
|
1120
|
-
* The name attribute for the toggle element, typically used for form submission.
|
|
1121
|
-
*/
|
|
1122
|
-
name: string;
|
|
1123
|
-
/**
|
|
1124
|
-
* Property used to manage the values checked by v-model
|
|
1125
|
-
* (Do not use directly)
|
|
1126
|
-
*/
|
|
1127
|
-
modelValue?: Array<string>;
|
|
1128
|
-
/**
|
|
1129
|
-
* list of properties of each toggle of the toggle group
|
|
1130
|
-
*/
|
|
1131
|
-
options: Array<{
|
|
1132
|
-
id: string;
|
|
1133
|
-
label: string;
|
|
1134
|
-
value: string;
|
|
1135
|
-
disabled?: boolean;
|
|
1136
|
-
isInvalid?: boolean;
|
|
1137
|
-
size?: 's' | 'm';
|
|
1138
|
-
}>;
|
|
1139
|
-
/**
|
|
1140
|
-
* If `true`, make the form element of the group inline.
|
|
1141
|
-
*/
|
|
1142
|
-
inline?: boolean;
|
|
1143
|
-
};
|
|
1144
|
-
|
|
1145
|
-
/**
|
|
1146
|
-
* Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
|
|
1147
|
-
*/
|
|
1148
|
-
declare type __VLS_Props_5 = {
|
|
1211
|
+
declare type __VLS_Props_6 = {
|
|
1149
1212
|
/**
|
|
1150
1213
|
* The name attribute for the checkbox element, typically used for form submission.
|
|
1151
1214
|
*/
|
|
@@ -1175,9 +1238,9 @@ declare type __VLS_Props_5 = {
|
|
|
1175
1238
|
/**
|
|
1176
1239
|
* 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.
|
|
1177
1240
|
*/
|
|
1178
|
-
declare type
|
|
1241
|
+
declare type __VLS_Props_7 = {
|
|
1179
1242
|
/**
|
|
1180
|
-
*
|
|
1243
|
+
* Sets the size of the progress bar.
|
|
1181
1244
|
*/
|
|
1182
1245
|
size?: 's' | 'm' | 'l';
|
|
1183
1246
|
/**
|
|
@@ -1185,7 +1248,7 @@ declare type __VLS_Props_6 = {
|
|
|
1185
1248
|
*/
|
|
1186
1249
|
value?: number;
|
|
1187
1250
|
/**
|
|
1188
|
-
*
|
|
1251
|
+
* Shows either a percentage or custom content.
|
|
1189
1252
|
*/
|
|
1190
1253
|
type?: 'percentage' | 'content';
|
|
1191
1254
|
/**
|
|
@@ -1199,35 +1262,17 @@ declare type __VLS_Props_6 = {
|
|
|
1199
1262
|
};
|
|
1200
1263
|
|
|
1201
1264
|
/**
|
|
1202
|
-
*
|
|
1203
|
-
*/
|
|
1204
|
-
declare type __VLS_Props_7 = {
|
|
1205
|
-
/**
|
|
1206
|
-
* Title of the callout
|
|
1207
|
-
*/
|
|
1208
|
-
title: string;
|
|
1209
|
-
/**
|
|
1210
|
-
* Description of the callout
|
|
1211
|
-
*/
|
|
1212
|
-
description: string;
|
|
1213
|
-
/**
|
|
1214
|
-
* Allows to define the callout style
|
|
1215
|
-
*/
|
|
1216
|
-
appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
|
|
1217
|
-
};
|
|
1218
|
-
|
|
1219
|
-
/**
|
|
1220
|
-
* A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
|
|
1265
|
+
* 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.
|
|
1221
1266
|
*/
|
|
1222
1267
|
declare type __VLS_Props_8 = {
|
|
1223
1268
|
/**
|
|
1224
|
-
*
|
|
1269
|
+
* If `true`, the container will take the full width.
|
|
1225
1270
|
*/
|
|
1226
1271
|
fluid?: boolean;
|
|
1227
1272
|
};
|
|
1228
1273
|
|
|
1229
1274
|
/**
|
|
1230
|
-
* 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.
|
|
1275
|
+
* 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).
|
|
1231
1276
|
*/
|
|
1232
1277
|
declare type __VLS_Props_9 = {
|
|
1233
1278
|
/**
|
|
@@ -1251,7 +1296,7 @@ declare type __VLS_Props_9 = {
|
|
|
1251
1296
|
*/
|
|
1252
1297
|
disabled?: boolean;
|
|
1253
1298
|
/**
|
|
1254
|
-
* Determines the size of the datepicker
|
|
1299
|
+
* Determines the size of the datepicker.
|
|
1255
1300
|
*/
|
|
1256
1301
|
size?: 's' | 'm';
|
|
1257
1302
|
/**
|
|
@@ -1263,7 +1308,7 @@ declare type __VLS_Props_9 = {
|
|
|
1263
1308
|
*/
|
|
1264
1309
|
isClearable?: boolean;
|
|
1265
1310
|
/**
|
|
1266
|
-
* The label text for the clear button
|
|
1311
|
+
* The label text for the clear button.
|
|
1267
1312
|
*/
|
|
1268
1313
|
clearLabel?: string;
|
|
1269
1314
|
};
|
|
@@ -1272,12 +1317,12 @@ declare function __VLS_template(): {
|
|
|
1272
1317
|
attrs: Partial<{}>;
|
|
1273
1318
|
slots: Readonly<{
|
|
1274
1319
|
/**
|
|
1275
|
-
* Use this slot to insert the image, icon or intials of the avatar
|
|
1320
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
1276
1321
|
*/
|
|
1277
1322
|
default: VNode;
|
|
1278
1323
|
}> & {
|
|
1279
1324
|
/**
|
|
1280
|
-
* Use this slot to insert the image, icon or intials of the avatar
|
|
1325
|
+
* Use this slot to insert the image, icon or intials of the avatar.
|
|
1281
1326
|
*/
|
|
1282
1327
|
default: VNode;
|
|
1283
1328
|
};
|
|
@@ -1289,20 +1334,20 @@ declare function __VLS_template_10(): {
|
|
|
1289
1334
|
attrs: Partial<{}>;
|
|
1290
1335
|
slots: Readonly<{
|
|
1291
1336
|
/**
|
|
1292
|
-
* Use this slot to insert the textual content of the Link
|
|
1337
|
+
* Use this slot to insert the textual content of the Link.
|
|
1293
1338
|
*/
|
|
1294
1339
|
default: string;
|
|
1295
1340
|
/**
|
|
1296
|
-
* Use this slot to insert an icon for the Link
|
|
1341
|
+
* Use this slot to insert an icon for the Link.
|
|
1297
1342
|
*/
|
|
1298
1343
|
icon?: VNode;
|
|
1299
1344
|
}> & {
|
|
1300
1345
|
/**
|
|
1301
|
-
* Use this slot to insert the textual content of the Link
|
|
1346
|
+
* Use this slot to insert the textual content of the Link.
|
|
1302
1347
|
*/
|
|
1303
1348
|
default: string;
|
|
1304
1349
|
/**
|
|
1305
|
-
* Use this slot to insert an icon for the Link
|
|
1350
|
+
* Use this slot to insert an icon for the Link.
|
|
1306
1351
|
*/
|
|
1307
1352
|
icon?: VNode;
|
|
1308
1353
|
};
|
|
@@ -1314,53 +1359,53 @@ declare function __VLS_template_11(): {
|
|
|
1314
1359
|
attrs: Partial<{}>;
|
|
1315
1360
|
slots: Readonly<{
|
|
1316
1361
|
/**
|
|
1317
|
-
* Use this slot to insert an icon next to the title of the modal
|
|
1362
|
+
* Use this slot to insert an icon next to the title of the modal.
|
|
1318
1363
|
*/
|
|
1319
1364
|
icon?: VNode;
|
|
1320
1365
|
/**
|
|
1321
|
-
* Use this slot to insert the content of the modal
|
|
1366
|
+
* Use this slot to insert the content of the modal.
|
|
1322
1367
|
*/
|
|
1323
1368
|
default?: VNode;
|
|
1324
1369
|
/**
|
|
1325
|
-
* Use this slot to insert a link in the footer
|
|
1370
|
+
* Use this slot to insert a link in the footer.
|
|
1326
1371
|
*/
|
|
1327
1372
|
link?: VNode;
|
|
1328
1373
|
/**
|
|
1329
|
-
* Use this slot to insert buttons in the footer
|
|
1374
|
+
* Use this slot to insert buttons in the footer.
|
|
1330
1375
|
*/
|
|
1331
1376
|
footer?: VNode;
|
|
1332
1377
|
}> & {
|
|
1333
1378
|
/**
|
|
1334
|
-
* Use this slot to insert an icon next to the title of the modal
|
|
1379
|
+
* Use this slot to insert an icon next to the title of the modal.
|
|
1335
1380
|
*/
|
|
1336
1381
|
icon?: VNode;
|
|
1337
1382
|
/**
|
|
1338
|
-
* Use this slot to insert the content of the modal
|
|
1383
|
+
* Use this slot to insert the content of the modal.
|
|
1339
1384
|
*/
|
|
1340
1385
|
default?: VNode;
|
|
1341
1386
|
/**
|
|
1342
|
-
* Use this slot to insert a link in the footer
|
|
1387
|
+
* Use this slot to insert a link in the footer.
|
|
1343
1388
|
*/
|
|
1344
1389
|
link?: VNode;
|
|
1345
1390
|
/**
|
|
1346
|
-
* Use this slot to insert buttons in the footer
|
|
1391
|
+
* Use this slot to insert buttons in the footer.
|
|
1347
1392
|
*/
|
|
1348
1393
|
footer?: VNode;
|
|
1349
1394
|
};
|
|
1350
1395
|
refs: {};
|
|
1351
|
-
rootEl:
|
|
1396
|
+
rootEl: any;
|
|
1352
1397
|
};
|
|
1353
1398
|
|
|
1354
1399
|
declare function __VLS_template_12(): {
|
|
1355
1400
|
attrs: Partial<{}>;
|
|
1356
1401
|
slots: Readonly<{
|
|
1357
1402
|
/**
|
|
1358
|
-
* Use this slot to insert a centered content inside the overlay
|
|
1403
|
+
* Use this slot to insert a centered content inside the overlay.
|
|
1359
1404
|
*/
|
|
1360
1405
|
default?: VNode;
|
|
1361
1406
|
}> & {
|
|
1362
1407
|
/**
|
|
1363
|
-
* Use this slot to insert a centered content inside the overlay
|
|
1408
|
+
* Use this slot to insert a centered content inside the overlay.
|
|
1364
1409
|
*/
|
|
1365
1410
|
default?: VNode;
|
|
1366
1411
|
};
|
|
@@ -1389,17 +1434,17 @@ declare function __VLS_template_14(): {
|
|
|
1389
1434
|
attrs: Partial<{}>;
|
|
1390
1435
|
slots: Readonly<{
|
|
1391
1436
|
/**
|
|
1392
|
-
* Use this slot to insert an icon in the input
|
|
1437
|
+
* Use this slot to insert an icon in the input.
|
|
1393
1438
|
*/
|
|
1394
1439
|
icon?: VNode;
|
|
1395
1440
|
}> & {
|
|
1396
1441
|
/**
|
|
1397
|
-
* Use this slot to insert an icon in the input
|
|
1442
|
+
* Use this slot to insert an icon in the input.
|
|
1398
1443
|
*/
|
|
1399
1444
|
icon?: VNode;
|
|
1400
1445
|
};
|
|
1401
1446
|
refs: {};
|
|
1402
|
-
rootEl:
|
|
1447
|
+
rootEl: any;
|
|
1403
1448
|
};
|
|
1404
1449
|
|
|
1405
1450
|
declare function __VLS_template_15(): {
|
|
@@ -1444,7 +1489,7 @@ declare function __VLS_template_2(): {
|
|
|
1444
1489
|
*/
|
|
1445
1490
|
default: string;
|
|
1446
1491
|
/**
|
|
1447
|
-
* Use this slot to insert an icon for the Button
|
|
1492
|
+
* Use this slot to insert an icon for the Button.
|
|
1448
1493
|
*/
|
|
1449
1494
|
icon?: VNode;
|
|
1450
1495
|
}> & {
|
|
@@ -1453,7 +1498,7 @@ declare function __VLS_template_2(): {
|
|
|
1453
1498
|
*/
|
|
1454
1499
|
default: string;
|
|
1455
1500
|
/**
|
|
1456
|
-
* Use this slot to insert an icon for the Button
|
|
1501
|
+
* Use this slot to insert an icon for the Button.
|
|
1457
1502
|
*/
|
|
1458
1503
|
icon?: VNode;
|
|
1459
1504
|
};
|
|
@@ -1465,20 +1510,20 @@ declare function __VLS_template_3(): {
|
|
|
1465
1510
|
attrs: Partial<{}>;
|
|
1466
1511
|
slots: Readonly<{
|
|
1467
1512
|
/**
|
|
1468
|
-
* Use this slot to insert an icon
|
|
1513
|
+
* Use this slot to insert an icon.
|
|
1469
1514
|
*/
|
|
1470
1515
|
icon?: VNode;
|
|
1471
1516
|
/**
|
|
1472
|
-
* Use this slot to insert a button or a link in the footer of the callout
|
|
1517
|
+
* Use this slot to insert a button or a link in the footer of the callout.
|
|
1473
1518
|
*/
|
|
1474
1519
|
footer?: VNode;
|
|
1475
1520
|
}> & {
|
|
1476
1521
|
/**
|
|
1477
|
-
* Use this slot to insert an icon
|
|
1522
|
+
* Use this slot to insert an icon.
|
|
1478
1523
|
*/
|
|
1479
1524
|
icon?: VNode;
|
|
1480
1525
|
/**
|
|
1481
|
-
* Use this slot to insert a button or a link in the footer of the callout
|
|
1526
|
+
* Use this slot to insert a button or a link in the footer of the callout.
|
|
1482
1527
|
*/
|
|
1483
1528
|
footer?: VNode;
|
|
1484
1529
|
};
|
|
@@ -1490,12 +1535,12 @@ declare function __VLS_template_4(): {
|
|
|
1490
1535
|
attrs: Partial<{}>;
|
|
1491
1536
|
slots: Readonly<{
|
|
1492
1537
|
/**
|
|
1493
|
-
* Use this slot to insert the content of the container
|
|
1538
|
+
* Use this slot to insert the content of the container.
|
|
1494
1539
|
*/
|
|
1495
1540
|
default?: VNode;
|
|
1496
1541
|
}> & {
|
|
1497
1542
|
/**
|
|
1498
|
-
* Use this slot to insert the content of the container
|
|
1543
|
+
* Use this slot to insert the content of the container.
|
|
1499
1544
|
*/
|
|
1500
1545
|
default?: VNode;
|
|
1501
1546
|
};
|
|
@@ -1541,8 +1586,10 @@ declare function __VLS_template_6(): {
|
|
|
1541
1586
|
*/
|
|
1542
1587
|
footer?: VNode;
|
|
1543
1588
|
};
|
|
1544
|
-
refs: {
|
|
1545
|
-
|
|
1589
|
+
refs: {
|
|
1590
|
+
titleRef: HTMLHeadingElement;
|
|
1591
|
+
};
|
|
1592
|
+
rootEl: any;
|
|
1546
1593
|
};
|
|
1547
1594
|
|
|
1548
1595
|
declare function __VLS_template_7(): {
|
|
@@ -1583,12 +1630,12 @@ declare function __VLS_template_9(): {
|
|
|
1583
1630
|
attrs: Partial<{}>;
|
|
1584
1631
|
slots: Readonly<{
|
|
1585
1632
|
/**
|
|
1586
|
-
* Use this slot to insert
|
|
1633
|
+
* Use this slot to insert an icon for the Button.
|
|
1587
1634
|
*/
|
|
1588
1635
|
icon: VNode;
|
|
1589
1636
|
}> & {
|
|
1590
1637
|
/**
|
|
1591
|
-
* Use this slot to insert
|
|
1638
|
+
* Use this slot to insert an icon for the Button.
|
|
1592
1639
|
*/
|
|
1593
1640
|
icon: VNode;
|
|
1594
1641
|
};
|
|
@@ -1732,19 +1779,19 @@ export declare const MButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2
|
|
|
1732
1779
|
|
|
1733
1780
|
export declare const MCallout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
1734
1781
|
|
|
1735
|
-
export declare const MCheckbox: DefineComponent<
|
|
1782
|
+
export declare const MCheckbox: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1736
1783
|
"update:modelValue": (value: boolean) => any;
|
|
1737
|
-
}, string, PublicProps, Readonly<
|
|
1784
|
+
}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
|
|
1738
1785
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1739
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1786
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1740
1787
|
|
|
1741
|
-
export declare const MCheckboxGroup: DefineComponent<
|
|
1788
|
+
export declare const MCheckboxGroup: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1742
1789
|
"update:modelValue": (value: string[]) => any;
|
|
1743
|
-
}, string, PublicProps, Readonly<
|
|
1790
|
+
}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
|
|
1744
1791
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
1745
1792
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1746
1793
|
|
|
1747
|
-
export declare const MCircularProgressbar: DefineComponent<
|
|
1794
|
+
export declare const MCircularProgressbar: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
|
|
1748
1795
|
type: "percentage" | "content";
|
|
1749
1796
|
value: number;
|
|
1750
1797
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -1758,7 +1805,7 @@ export declare const MDatepicker: DefineComponent<__VLS_Props_9, {}, {}, {}, {},
|
|
|
1758
1805
|
}>, {
|
|
1759
1806
|
size: "s" | "m";
|
|
1760
1807
|
clearLabel: string;
|
|
1761
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1808
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1762
1809
|
|
|
1763
1810
|
export declare const MDivider: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
1764
1811
|
|
|
@@ -1772,41 +1819,41 @@ export declare const MFlag: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, Comp
|
|
|
1772
1819
|
|
|
1773
1820
|
export declare const MIconButton: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
1774
1821
|
|
|
1775
|
-
export declare const MLinearProgressbarBuffer: DefineComponent<
|
|
1822
|
+
export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
|
|
1776
1823
|
value: number;
|
|
1777
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1824
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1778
1825
|
|
|
1779
|
-
export declare const MLinearProgressbarPercentage: DefineComponent<
|
|
1826
|
+
export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
1780
1827
|
value: number;
|
|
1781
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1828
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1782
1829
|
|
|
1783
1830
|
export declare const MLink: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
1784
1831
|
|
|
1785
|
-
export declare const MLoader: DefineComponent<
|
|
1832
|
+
export declare const MLoader: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
|
|
1786
1833
|
size: "s" | "m" | "l";
|
|
1787
1834
|
appearance: "standard" | "accent" | "inverse";
|
|
1788
1835
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1789
1836
|
|
|
1790
|
-
export declare const MLoadingOverlay: DefineComponent<
|
|
1837
|
+
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1791
1838
|
|
|
1792
1839
|
export declare const MModal: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
1793
1840
|
|
|
1794
|
-
export declare const MNumberBadge: DefineComponent<
|
|
1841
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
|
|
1795
1842
|
size: "s" | "m";
|
|
1796
1843
|
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
1797
1844
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
1798
1845
|
|
|
1799
1846
|
export declare const MOverlay: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
1800
1847
|
|
|
1801
|
-
export declare const MPagination: DefineComponent<
|
|
1848
|
+
export declare const MPagination: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1802
1849
|
"update:modelValue": (value: number) => any;
|
|
1803
|
-
}, string, PublicProps, Readonly<
|
|
1850
|
+
}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
|
|
1804
1851
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1805
1852
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
1806
1853
|
|
|
1807
|
-
export declare const MPasswordInput: DefineComponent<
|
|
1854
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1808
1855
|
"update:modelValue": (value: string | number) => any;
|
|
1809
|
-
}, string, PublicProps, Readonly<
|
|
1856
|
+
}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
|
|
1810
1857
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1811
1858
|
}>, {
|
|
1812
1859
|
clearLabel: string;
|
|
@@ -1897,15 +1944,15 @@ default: string;
|
|
|
1897
1944
|
icon?: VNode;
|
|
1898
1945
|
};
|
|
1899
1946
|
}) | null;
|
|
1900
|
-
},
|
|
1947
|
+
}, any>;
|
|
1901
1948
|
|
|
1902
|
-
export declare const MPincode: DefineComponent<
|
|
1949
|
+
export declare const MPincode: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1903
1950
|
"update:modelValue": (value: string) => any;
|
|
1904
|
-
}, string, PublicProps, Readonly<
|
|
1951
|
+
}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
|
|
1905
1952
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1906
1953
|
}>, {
|
|
1907
1954
|
length: 4 | 5 | 6;
|
|
1908
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1955
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1909
1956
|
|
|
1910
1957
|
export declare const MQuantitySelector: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1911
1958
|
"update:modelValue": (value: number) => any;
|
|
@@ -1920,13 +1967,13 @@ min: number;
|
|
|
1920
1967
|
max: number;
|
|
1921
1968
|
incrementlabel: string;
|
|
1922
1969
|
decrementLabel: string;
|
|
1923
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1970
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1924
1971
|
|
|
1925
1972
|
export declare const MRadio: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1926
1973
|
"update:modelValue": (value: boolean) => any;
|
|
1927
1974
|
}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
|
|
1928
1975
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1929
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1976
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1930
1977
|
|
|
1931
1978
|
export declare const MRadioGroup: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1932
1979
|
"update:modelValue": (value: string) => any;
|
|
@@ -1934,23 +1981,36 @@ export declare const MRadioGroup: DefineComponent<__VLS_Props_29, {}, {}, {}, {}
|
|
|
1934
1981
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
1935
1982
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1936
1983
|
|
|
1937
|
-
export declare const
|
|
1938
|
-
"update:modelValue": (value:
|
|
1984
|
+
export declare const MSegmentedControl: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1985
|
+
"update:modelValue": (value: number) => any;
|
|
1939
1986
|
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
1987
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1988
|
+
}>, {
|
|
1989
|
+
size: "s" | "m";
|
|
1990
|
+
modelValue: number;
|
|
1991
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1992
|
+
|
|
1993
|
+
export declare const MSelect: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1994
|
+
"update:modelValue": (value: string | number) => any;
|
|
1995
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
1940
1996
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1941
1997
|
}>, {
|
|
1942
1998
|
size: "s" | "m";
|
|
1943
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
1999
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1944
2000
|
|
|
1945
|
-
export declare const MStatusBadge: DefineComponent<
|
|
2001
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {
|
|
1946
2002
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
1947
2003
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1948
2004
|
|
|
2005
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
|
|
2006
|
+
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2007
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2008
|
+
|
|
1949
2009
|
export declare const MStatusNotification: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
1950
2010
|
|
|
1951
|
-
export declare const MTabs: DefineComponent<
|
|
2011
|
+
export declare const MTabs: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1952
2012
|
"update:modelValue": (value: number) => any;
|
|
1953
|
-
}, string, PublicProps, Readonly<
|
|
2013
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
1954
2014
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
1955
2015
|
}>, {
|
|
1956
2016
|
modelValue: number;
|
|
@@ -1959,10 +2019,10 @@ divider: boolean;
|
|
|
1959
2019
|
tab: HTMLButtonElement;
|
|
1960
2020
|
}, HTMLElement>;
|
|
1961
2021
|
|
|
1962
|
-
export declare const MTag: DefineComponent<
|
|
2022
|
+
export declare const MTag: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1963
2023
|
"update:modelValue": (value: boolean) => any;
|
|
1964
2024
|
"remove-tag": (id: string) => any;
|
|
1965
|
-
}, string, PublicProps, Readonly<
|
|
2025
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
1966
2026
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1967
2027
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
1968
2028
|
}>, {
|
|
@@ -1970,29 +2030,29 @@ type: "informative" | "interactive" | "contextualised" | "removable" | "selectab
|
|
|
1970
2030
|
contextualisedNumber: number;
|
|
1971
2031
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1972
2032
|
|
|
1973
|
-
export declare const MTextArea: DefineComponent<
|
|
2033
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1974
2034
|
"update:modelValue": (value: string | number) => any;
|
|
1975
|
-
}, string, PublicProps, Readonly<
|
|
2035
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
1976
2036
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
1977
2037
|
}>, {
|
|
1978
2038
|
rows: number;
|
|
1979
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
2039
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1980
2040
|
|
|
1981
2041
|
export declare const MTextInput: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
1982
2042
|
|
|
1983
2043
|
export declare const MToaster: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
1984
2044
|
|
|
1985
|
-
export declare const MToggle: DefineComponent<
|
|
2045
|
+
export declare const MToggle: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1986
2046
|
"update:modelValue": (value: boolean) => any;
|
|
1987
|
-
}, string, PublicProps, Readonly<
|
|
2047
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
1988
2048
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
1989
2049
|
}>, {
|
|
1990
2050
|
size: "s" | "m";
|
|
1991
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
2051
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1992
2052
|
|
|
1993
|
-
export declare const MToggleGroup: DefineComponent<
|
|
2053
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
1994
2054
|
"update:modelValue": (value: string[]) => any;
|
|
1995
|
-
}, string, PublicProps, Readonly<
|
|
2055
|
+
}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
|
|
1996
2056
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
1997
2057
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
1998
2058
|
|