@mozaic-ds/vue 2.13.1 → 2.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/mozaic-vue.css +1 -1
- package/dist/mozaic-vue.d.ts +844 -224
- package/dist/mozaic-vue.js +2473 -1809
- 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 +4 -4
- package/src/components/actionlistbox/MActionListbox.spec.ts +53 -59
- package/src/components/actionlistbox/MActionListbox.stories.ts +22 -1
- package/src/components/actionlistbox/MActionListbox.vue +91 -28
- package/src/components/actionlistbox/README.md +15 -0
- package/src/components/breadcrumb/MBreadcrumb.vue +5 -0
- package/src/components/button/README.md +4 -0
- package/src/components/checkbox/README.md +2 -0
- package/src/components/divider/README.md +4 -0
- package/src/components/iconbutton/MIconButton.stories.ts +12 -0
- package/src/components/iconbutton/MIconButton.vue +13 -1
- package/src/components/iconbutton/README.md +27 -0
- package/src/components/loader/README.md +2 -0
- package/src/components/navigationindicator/MNavigationIndicator.spec.ts +152 -0
- package/src/components/navigationindicator/MNavigationIndicator.stories.ts +41 -0
- package/src/components/navigationindicator/MNavigationIndicator.vue +132 -0
- package/src/components/navigationindicator/README.md +37 -0
- package/src/components/pageheader/MPageHeader.spec.ts +142 -0
- package/src/components/pageheader/MPageHeader.stories.ts +125 -0
- package/src/components/pageheader/MPageHeader.vue +133 -0
- package/src/components/pageheader/README.md +46 -0
- package/src/components/popover/MPopover.spec.ts +106 -0
- package/src/components/popover/MPopover.stories.ts +126 -0
- package/src/components/popover/MPopover.vue +131 -0
- package/src/components/popover/README.md +42 -0
- package/src/components/radio/README.md +2 -0
- package/src/components/select/MSelect.spec.ts +2 -1
- package/src/components/select/MSelect.vue +30 -25
- package/src/components/sidebar/MSidebar.const.ts +6 -0
- package/src/components/sidebar/MSidebar.spec.ts +110 -0
- package/src/components/sidebar/MSidebar.stories.ts +108 -0
- package/src/components/sidebar/MSidebar.vue +124 -0
- package/src/components/sidebar/README.md +59 -0
- package/src/components/sidebar/stories/DefaultCase.stories.vue +120 -0
- package/src/components/sidebar/stories/README.md +27 -0
- package/src/components/sidebar/stories/WithExpandOnly.stories.vue +112 -0
- package/src/components/sidebar/stories/WithProfileInfoOnly.stories.vue +119 -0
- package/src/components/sidebar/stories/WithSingleLevel.stories.vue +98 -0
- package/src/components/sidebar/use-floating-item.composable.ts +135 -0
- package/src/components/sidebar/use-floating-item.spec.ts +251 -0
- package/src/components/sidebarexpandableitem/MSidebarExpandableItem.spec.ts +151 -0
- package/src/components/sidebarexpandableitem/MSidebarExpandableItem.vue +113 -0
- package/src/components/sidebarexpandableitem/README.md +36 -0
- package/src/components/sidebarfooter/MSidebarFooter.spec.ts +276 -0
- package/src/components/sidebarfooter/MSidebarFooter.vue +201 -0
- package/src/components/sidebarfooter/README.md +52 -0
- package/src/components/sidebarfooter/_MSidebarFooterMenu.vue +64 -0
- package/src/components/sidebarheader/MSidebarHeader.vue +36 -0
- package/src/components/sidebarheader/README.md +31 -0
- package/src/components/sidebarnavitem/MSidebarNavItem.spec.ts +127 -0
- package/src/components/sidebarnavitem/MSidebarNavItem.vue +113 -0
- package/src/components/sidebarnavitem/README.md +56 -0
- package/src/components/sidebarshortcutitem/MSidebarShortcutItem.spec.ts +59 -0
- package/src/components/sidebarshortcutitem/MSidebarShortcutItem.vue +52 -0
- package/src/components/sidebarshortcutitem/README.md +32 -0
- package/src/components/sidebarshortcuts/MSidebarShortcuts.spec.ts +87 -0
- package/src/components/sidebarshortcuts/MSidebarShortcuts.vue +101 -0
- package/src/components/sidebarshortcuts/README.md +36 -0
- package/src/components/statusbadge/README.md +12 -0
- package/src/components/textinput/MTextInput.stories.ts +13 -1
- package/src/components/textinput/MTextInput.vue +12 -0
- package/src/components/textinput/README.md +3 -1
- package/src/components/tile/MTile.spec.ts +61 -0
- package/src/components/tile/MTile.stories.ts +102 -0
- package/src/components/tile/MTile.vue +68 -0
- package/src/components/tile/README.md +19 -0
- package/src/components/tileclickable/MTileClickable.spec.ts +130 -0
- package/src/components/tileclickable/MTileClickable.stories.ts +60 -0
- package/src/components/tileclickable/MTileClickable.vue +106 -0
- package/src/components/tileclickable/README.md +30 -0
- package/src/components/tileexpandable/MTileExpandable.spec.ts +121 -0
- package/src/components/tileexpandable/MTileExpandable.stories.ts +50 -0
- package/src/components/tileexpandable/MTileExpandable.vue +131 -0
- package/src/components/tileexpandable/README.md +36 -0
- package/src/components/tileselectable/MTileSelectable.spec.ts +177 -0
- package/src/components/tileselectable/MTileSelectable.stories.ts +55 -0
- package/src/components/tileselectable/MTileSelectable.vue +142 -0
- package/src/components/tileselectable/README.md +44 -0
- package/src/components/toaster/README.md +1 -1
- package/src/components/tooltip/MTooltip.vue +5 -0
- package/src/components/tooltip/README.md +16 -1
- package/src/main.ts +8 -0
- package/src/utils/use-is-mobile.composable.ts +20 -0
- package/src/utils/use-is-mobile.spec.ts +70 -0
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -31,7 +31,13 @@ appearance: "standard" | "ghost";
|
|
|
31
31
|
behavior: "multiple" | "single";
|
|
32
32
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
33
|
|
|
34
|
-
declare const __VLS_component_10: DefineComponent<
|
|
34
|
+
declare const __VLS_component_10: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
35
|
+
appearance: "primary" | "secondary" | "tertiary" | "inverse";
|
|
36
|
+
size: "s" | "m" | "l";
|
|
37
|
+
orientation: "vertical" | "horizontal";
|
|
38
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
39
|
+
|
|
40
|
+
declare const __VLS_component_11: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
35
41
|
back: () => any;
|
|
36
42
|
"update:open": (value: boolean) => any;
|
|
37
43
|
}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
|
|
@@ -43,11 +49,11 @@ scroll: boolean;
|
|
|
43
49
|
titleRef: HTMLHeadingElement;
|
|
44
50
|
}, any>;
|
|
45
51
|
|
|
46
|
-
declare const
|
|
52
|
+
declare const __VLS_component_12: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
47
53
|
|
|
48
|
-
declare const
|
|
54
|
+
declare const __VLS_component_13: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
|
|
49
55
|
|
|
50
|
-
declare const
|
|
56
|
+
declare const __VLS_component_14: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
51
57
|
"update:modelValue": (v: NormalizedFile[]) => any;
|
|
52
58
|
validation: (validationState: FilesValidationState) => any;
|
|
53
59
|
}, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
|
|
@@ -63,19 +69,19 @@ uploadButtonLabel: string;
|
|
|
63
69
|
fileInput: HTMLInputElement;
|
|
64
70
|
}, HTMLDivElement>;
|
|
65
71
|
|
|
66
|
-
declare const
|
|
72
|
+
declare const __VLS_component_15: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
|
|
67
73
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
68
74
|
type: "button" | "reset" | "submit";
|
|
69
75
|
size: "s" | "m" | "l";
|
|
70
76
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
71
77
|
|
|
72
|
-
declare const
|
|
78
|
+
declare const __VLS_component_16: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
|
|
73
79
|
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
74
80
|
size: "s" | "m";
|
|
75
81
|
iconPosition: "left" | "right";
|
|
76
82
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
77
83
|
|
|
78
|
-
declare const
|
|
84
|
+
declare const __VLS_component_17: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
79
85
|
"update:open": (value: boolean) => any;
|
|
80
86
|
}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
|
|
81
87
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
@@ -84,19 +90,77 @@ scroll: boolean;
|
|
|
84
90
|
closable: boolean;
|
|
85
91
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
86
92
|
|
|
87
|
-
declare const
|
|
93
|
+
declare const __VLS_component_18: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
94
|
+
|
|
95
|
+
declare const __VLS_component_19: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
96
|
+
back: () => any;
|
|
97
|
+
"toggle-menu": () => any;
|
|
98
|
+
}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
|
|
99
|
+
onBack?: (() => any) | undefined;
|
|
100
|
+
"onToggle-menu"?: (() => any) | undefined;
|
|
101
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
102
|
+
|
|
103
|
+
declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
104
|
+
|
|
105
|
+
declare const __VLS_component_20: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{}>, {
|
|
106
|
+
appearance: "standard" | "inverse";
|
|
107
|
+
size: "s" | "m" | "l";
|
|
108
|
+
position: "top" | "right" | "bottom" | "left";
|
|
109
|
+
closable: boolean;
|
|
110
|
+
pointer: boolean;
|
|
111
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
112
|
+
|
|
113
|
+
declare const __VLS_component_21: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
114
|
+
"update:modelValue": (value: boolean) => any;
|
|
115
|
+
close: () => any;
|
|
116
|
+
}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
|
|
117
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
118
|
+
onClose?: (() => any) | undefined;
|
|
119
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
88
120
|
|
|
89
|
-
declare const
|
|
121
|
+
declare const __VLS_component_22: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
90
122
|
close: () => any;
|
|
91
|
-
}, string, PublicProps, Readonly<
|
|
123
|
+
}, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
|
|
92
124
|
onClose?: (() => any) | undefined;
|
|
93
125
|
}>, {
|
|
94
126
|
status: "info" | "success" | "warning" | "error";
|
|
95
127
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
96
128
|
|
|
97
|
-
declare const
|
|
129
|
+
declare const __VLS_component_23: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {
|
|
130
|
+
appearance: "primary" | "secondary" | "inverse";
|
|
131
|
+
bordered: boolean;
|
|
132
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
133
|
+
|
|
134
|
+
declare const __VLS_component_24: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
135
|
+
action: () => any;
|
|
136
|
+
}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{
|
|
137
|
+
onAction?: (() => any) | undefined;
|
|
138
|
+
}>, {
|
|
139
|
+
appearance: "primary" | "secondary" | "inverse";
|
|
140
|
+
iconPosition: "bottom" | "right";
|
|
141
|
+
bordered: boolean;
|
|
142
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
143
|
+
|
|
144
|
+
declare const __VLS_component_25: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{}>, {
|
|
145
|
+
appearance: "primary" | "secondary";
|
|
146
|
+
label: string;
|
|
147
|
+
bordered: boolean;
|
|
148
|
+
trigger: "container" | "icon" | "button";
|
|
149
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
150
|
+
|
|
151
|
+
declare const __VLS_component_26: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
152
|
+
"update:modelValue": (value: boolean) => any;
|
|
153
|
+
}, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{
|
|
154
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
155
|
+
}>, {
|
|
156
|
+
inputType: "checkbox" | "radio";
|
|
157
|
+
bordered: boolean;
|
|
158
|
+
inputPosition: "left" | "right";
|
|
159
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
160
|
+
|
|
161
|
+
declare const __VLS_component_27: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
98
162
|
"update:modelValue": (value: string | number) => any;
|
|
99
|
-
}, string, PublicProps, Readonly<
|
|
163
|
+
}, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{
|
|
100
164
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
101
165
|
}>, {
|
|
102
166
|
size: "s" | "m";
|
|
@@ -104,52 +168,54 @@ clearLabel: string;
|
|
|
104
168
|
inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
|
|
105
169
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
106
170
|
|
|
107
|
-
declare const
|
|
108
|
-
|
|
109
|
-
declare const __VLS_component_20: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
171
|
+
declare const __VLS_component_28: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
110
172
|
"update:open": (value: boolean) => any;
|
|
111
|
-
}, string, PublicProps, Readonly<
|
|
173
|
+
}, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
|
|
112
174
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
113
175
|
}>, {
|
|
114
176
|
status: "info" | "success" | "warning" | "error";
|
|
115
177
|
closable: boolean;
|
|
116
178
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
117
179
|
|
|
118
|
-
declare const
|
|
180
|
+
declare const __VLS_component_29: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{}>, {
|
|
119
181
|
position: "top" | "bottom" | "left" | "right";
|
|
120
182
|
pointer: boolean;
|
|
121
183
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
122
184
|
|
|
123
185
|
declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
124
186
|
|
|
125
|
-
declare const __VLS_component_4: DefineComponent<
|
|
187
|
+
declare const __VLS_component_4: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
188
|
+
close: () => any;
|
|
189
|
+
}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
|
|
190
|
+
onClose?: (() => any) | undefined;
|
|
191
|
+
}>, {
|
|
192
|
+
position: "top" | "bottom" | "left" | "right";
|
|
193
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
194
|
+
popover: HTMLDivElement;
|
|
195
|
+
}, any>;
|
|
196
|
+
|
|
197
|
+
declare const __VLS_component_5: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
|
|
126
198
|
size: "s" | "m" | "l";
|
|
127
199
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
128
200
|
|
|
129
|
-
declare const
|
|
201
|
+
declare const __VLS_component_6: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
|
|
130
202
|
appearance: "standard" | "accent" | "danger" | "inverse";
|
|
131
203
|
type: "button" | "reset" | "submit";
|
|
132
204
|
size: "s" | "m" | "l";
|
|
133
205
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
|
|
134
206
|
|
|
135
|
-
declare const
|
|
207
|
+
declare const __VLS_component_7: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
|
|
136
208
|
appearance: "standard" | "accent" | "tips" | "inverse";
|
|
137
209
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
138
210
|
|
|
139
|
-
declare const
|
|
211
|
+
declare const __VLS_component_8: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
|
|
140
212
|
previousButtonAriaLabel: string;
|
|
141
213
|
nextButtonAriaLabel: string;
|
|
142
214
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
143
215
|
contentContainer: HTMLDivElement;
|
|
144
216
|
}, HTMLDivElement>;
|
|
145
217
|
|
|
146
|
-
declare const
|
|
147
|
-
|
|
148
|
-
declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
|
|
149
|
-
appearance: "primary" | "secondary" | "tertiary" | "inverse";
|
|
150
|
-
size: "s" | "m" | "l";
|
|
151
|
-
orientation: "vertical" | "horizontal";
|
|
152
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
218
|
+
declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
153
219
|
|
|
154
220
|
/**
|
|
155
221
|
* 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.
|
|
@@ -548,6 +614,10 @@ declare type __VLS_Props_22 = {
|
|
|
548
614
|
* Specifies the button's HTML `type` attribute.
|
|
549
615
|
*/
|
|
550
616
|
type?: 'button' | 'reset' | 'submit';
|
|
617
|
+
/**
|
|
618
|
+
* If `true`, a loading state is displayed.
|
|
619
|
+
*/
|
|
620
|
+
isLoading?: boolean;
|
|
551
621
|
};
|
|
552
622
|
|
|
553
623
|
/**
|
|
@@ -711,9 +781,35 @@ declare type __VLS_Props_3 = {
|
|
|
711
781
|
};
|
|
712
782
|
|
|
713
783
|
/**
|
|
714
|
-
* A
|
|
784
|
+
* A navigation indicator visually represents the current position within a sequence or step-based process, helping users track progress or navigate through a series of items. It is commonly used in carousels, onboarding flows, or media players. Navigation indicators can be interactive, allowing users to jump between steps, or passive, simply showing progress.
|
|
715
785
|
*/
|
|
716
786
|
declare type __VLS_Props_30 = {
|
|
787
|
+
/**
|
|
788
|
+
* The total number of steps to display.
|
|
789
|
+
*/
|
|
790
|
+
steps: number;
|
|
791
|
+
/**
|
|
792
|
+
* The index of the currently active step (zero-based).
|
|
793
|
+
*/
|
|
794
|
+
modelValue: number;
|
|
795
|
+
/**
|
|
796
|
+
* The current action state of the button. Can be "pause" to show the pause icon or "resume" to show the play icon.
|
|
797
|
+
*/
|
|
798
|
+
action?: 'pause' | 'resume';
|
|
799
|
+
/**
|
|
800
|
+
* The text label displayed in the Resume or Pause button.
|
|
801
|
+
*/
|
|
802
|
+
label?: string;
|
|
803
|
+
/**
|
|
804
|
+
* If `true`, hides the Resume or Pause button next to the steps.
|
|
805
|
+
*/
|
|
806
|
+
player?: boolean;
|
|
807
|
+
};
|
|
808
|
+
|
|
809
|
+
/**
|
|
810
|
+
* 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.
|
|
811
|
+
*/
|
|
812
|
+
declare type __VLS_Props_31 = {
|
|
717
813
|
/**
|
|
718
814
|
* Content of the badge.
|
|
719
815
|
*/
|
|
@@ -731,7 +827,7 @@ declare type __VLS_Props_30 = {
|
|
|
731
827
|
/**
|
|
732
828
|
* 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.
|
|
733
829
|
*/
|
|
734
|
-
declare type
|
|
830
|
+
declare type __VLS_Props_32 = {
|
|
735
831
|
/**
|
|
736
832
|
* Controls the visibility of the overlay.
|
|
737
833
|
*/
|
|
@@ -742,10 +838,40 @@ declare type __VLS_Props_31 = {
|
|
|
742
838
|
dialogLabel?: string;
|
|
743
839
|
};
|
|
744
840
|
|
|
841
|
+
/**
|
|
842
|
+
* The Page Header is a fundamental component that structures the top part of an interface, serving as a cognitive anchor point for users. It establishes page context, facilitates navigation, and provides the main actions available within the current scope.
|
|
843
|
+
*/
|
|
844
|
+
declare type __VLS_Props_33 = {
|
|
845
|
+
/**
|
|
846
|
+
* Main title displayed in the page header.
|
|
847
|
+
*/
|
|
848
|
+
title: string;
|
|
849
|
+
/**
|
|
850
|
+
* Enables a drop shadow under the page header.
|
|
851
|
+
*/
|
|
852
|
+
shadow?: boolean;
|
|
853
|
+
/**
|
|
854
|
+
* Displays a back icon button in the header.
|
|
855
|
+
*/
|
|
856
|
+
backButton?: boolean;
|
|
857
|
+
/**
|
|
858
|
+
* Component status.
|
|
859
|
+
*/
|
|
860
|
+
status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
|
|
861
|
+
/**
|
|
862
|
+
* Label text displayed inside the status badge.
|
|
863
|
+
*/
|
|
864
|
+
statusLabel?: string;
|
|
865
|
+
/**
|
|
866
|
+
* Additional information text shown below the title.
|
|
867
|
+
*/
|
|
868
|
+
extraInfo?: string;
|
|
869
|
+
};
|
|
870
|
+
|
|
745
871
|
/**
|
|
746
872
|
* 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.
|
|
747
873
|
*/
|
|
748
|
-
declare type
|
|
874
|
+
declare type __VLS_Props_34 = {
|
|
749
875
|
/**
|
|
750
876
|
* A unique identifier for the pagination.
|
|
751
877
|
*/
|
|
@@ -775,7 +901,7 @@ declare type __VLS_Props_32 = {
|
|
|
775
901
|
/**
|
|
776
902
|
* 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.
|
|
777
903
|
*/
|
|
778
|
-
declare type
|
|
904
|
+
declare type __VLS_Props_35 = {
|
|
779
905
|
/**
|
|
780
906
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
781
907
|
*/
|
|
@@ -824,7 +950,7 @@ declare type __VLS_Props_33 = {
|
|
|
824
950
|
/**
|
|
825
951
|
* 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.
|
|
826
952
|
*/
|
|
827
|
-
declare type
|
|
953
|
+
declare type __VLS_Props_36 = {
|
|
828
954
|
/**
|
|
829
955
|
* A unique identifier for the phone number input element, used to associate the label with the form element.
|
|
830
956
|
*/
|
|
@@ -878,7 +1004,7 @@ declare type __VLS_Props_34 = {
|
|
|
878
1004
|
/**
|
|
879
1005
|
* 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).
|
|
880
1006
|
*/
|
|
881
|
-
declare type
|
|
1007
|
+
declare type __VLS_Props_37 = {
|
|
882
1008
|
/**
|
|
883
1009
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
884
1010
|
*/
|
|
@@ -909,10 +1035,45 @@ declare type __VLS_Props_35 = {
|
|
|
909
1035
|
readonly?: boolean;
|
|
910
1036
|
};
|
|
911
1037
|
|
|
1038
|
+
/**
|
|
1039
|
+
* A popover is a small overlay that appears above other content, typically triggered by a user interaction such as clicking or hovering over an element. It is used to display contextual information, additional actions, or interactive content without navigating away from the main interface. Popovers often include a title, description, and action buttons, and they automatically close when clicking outside or selecting an action.
|
|
1040
|
+
*/
|
|
1041
|
+
declare type __VLS_Props_38 = {
|
|
1042
|
+
/**
|
|
1043
|
+
* Allows to define the popover appearance.
|
|
1044
|
+
*/
|
|
1045
|
+
appearance?: 'standard' | 'inverse';
|
|
1046
|
+
/**
|
|
1047
|
+
* Defines the preferred position of the popover relative to its activator.
|
|
1048
|
+
*/
|
|
1049
|
+
position?: 'top' | 'right' | 'bottom' | 'left';
|
|
1050
|
+
/**
|
|
1051
|
+
* Controls the visibility of the popover pointer (arrow).
|
|
1052
|
+
*/
|
|
1053
|
+
pointer?: boolean;
|
|
1054
|
+
/**
|
|
1055
|
+
* Sets the overall size of the popover.
|
|
1056
|
+
*/
|
|
1057
|
+
size?: 's' | 'm' | 'l';
|
|
1058
|
+
/**
|
|
1059
|
+
* Displays a close icon button inside the popover.
|
|
1060
|
+
* Clicking the button will close the popover.
|
|
1061
|
+
*/
|
|
1062
|
+
closable?: boolean;
|
|
1063
|
+
/**
|
|
1064
|
+
* Title displayed at the top of the popover.
|
|
1065
|
+
*/
|
|
1066
|
+
title?: string;
|
|
1067
|
+
/**
|
|
1068
|
+
* Supplementary text displayed below the title.
|
|
1069
|
+
*/
|
|
1070
|
+
description?: string;
|
|
1071
|
+
};
|
|
1072
|
+
|
|
912
1073
|
/**
|
|
913
1074
|
* 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.
|
|
914
1075
|
*/
|
|
915
|
-
declare type
|
|
1076
|
+
declare type __VLS_Props_39 = {
|
|
916
1077
|
/**
|
|
917
1078
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
918
1079
|
*/
|
|
@@ -963,10 +1124,49 @@ declare type __VLS_Props_36 = {
|
|
|
963
1124
|
decrementLabel?: string;
|
|
964
1125
|
};
|
|
965
1126
|
|
|
1127
|
+
/**
|
|
1128
|
+
* 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.
|
|
1129
|
+
*/
|
|
1130
|
+
declare type __VLS_Props_4 = {
|
|
1131
|
+
/**
|
|
1132
|
+
* title displayed in mobile version.
|
|
1133
|
+
*/
|
|
1134
|
+
title?: string;
|
|
1135
|
+
/**
|
|
1136
|
+
* Defines the position of the listbox relative to its trigger or container.
|
|
1137
|
+
*/
|
|
1138
|
+
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
1139
|
+
/**
|
|
1140
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each item.
|
|
1141
|
+
*/
|
|
1142
|
+
items: Array<{
|
|
1143
|
+
/**
|
|
1144
|
+
* The icon displayed for the item from Mozaic-icon-vue.
|
|
1145
|
+
*/
|
|
1146
|
+
icon?: Component;
|
|
1147
|
+
/**
|
|
1148
|
+
* The label displayed for the item.
|
|
1149
|
+
*/
|
|
1150
|
+
label: string;
|
|
1151
|
+
/**
|
|
1152
|
+
* If `true`, the item will be disabled.
|
|
1153
|
+
*/
|
|
1154
|
+
disabled?: boolean;
|
|
1155
|
+
/**
|
|
1156
|
+
* Allows to define the item appearance.
|
|
1157
|
+
*/
|
|
1158
|
+
appearance?: 'standard' | 'danger';
|
|
1159
|
+
/**
|
|
1160
|
+
* Add a divider on top of the item.
|
|
1161
|
+
*/
|
|
1162
|
+
divider?: boolean;
|
|
1163
|
+
}>;
|
|
1164
|
+
};
|
|
1165
|
+
|
|
966
1166
|
/**
|
|
967
1167
|
* 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.
|
|
968
1168
|
*/
|
|
969
|
-
declare type
|
|
1169
|
+
declare type __VLS_Props_40 = {
|
|
970
1170
|
/**
|
|
971
1171
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
972
1172
|
*/
|
|
@@ -996,7 +1196,7 @@ declare type __VLS_Props_37 = {
|
|
|
996
1196
|
/**
|
|
997
1197
|
* 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).
|
|
998
1198
|
*/
|
|
999
|
-
declare type
|
|
1199
|
+
declare type __VLS_Props_41 = {
|
|
1000
1200
|
/**
|
|
1001
1201
|
* The name attribute for the radio element, typically used for form submission.
|
|
1002
1202
|
*/
|
|
@@ -1028,7 +1228,7 @@ declare type __VLS_Props_38 = {
|
|
|
1028
1228
|
/**
|
|
1029
1229
|
* 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.
|
|
1030
1230
|
*/
|
|
1031
|
-
declare type
|
|
1231
|
+
declare type __VLS_Props_42 = {
|
|
1032
1232
|
/**
|
|
1033
1233
|
* The selected segment index, bound via v-model.
|
|
1034
1234
|
*/
|
|
@@ -1052,45 +1252,10 @@ declare type __VLS_Props_39 = {
|
|
|
1052
1252
|
}>;
|
|
1053
1253
|
};
|
|
1054
1254
|
|
|
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
|
-
|
|
1090
1255
|
/**
|
|
1091
1256
|
* 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).
|
|
1092
1257
|
*/
|
|
1093
|
-
declare type
|
|
1258
|
+
declare type __VLS_Props_43 = {
|
|
1094
1259
|
/**
|
|
1095
1260
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
1096
1261
|
*/
|
|
@@ -1135,10 +1300,20 @@ declare type __VLS_Props_40 = {
|
|
|
1135
1300
|
readonly?: boolean;
|
|
1136
1301
|
};
|
|
1137
1302
|
|
|
1303
|
+
/**
|
|
1304
|
+
* A sidebar is a vertical navigation component that provides quick access to key sections and functionalities within an application or website. It contains expandable menus, and shortcuts, allowing users to navigate efficiently while keeping the main content area uncluttered. Sidebars can be collapsible or persistent, adapting to different screen sizes and user preferences. They are commonly used in dashboards, content management systems, and productivity tools.
|
|
1305
|
+
*/
|
|
1306
|
+
declare type __VLS_Props_44 = {
|
|
1307
|
+
/**
|
|
1308
|
+
* the state of the expanded sidebar, bound via v-model.
|
|
1309
|
+
*/
|
|
1310
|
+
modelValue: boolean;
|
|
1311
|
+
};
|
|
1312
|
+
|
|
1138
1313
|
/**
|
|
1139
1314
|
* 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.
|
|
1140
1315
|
*/
|
|
1141
|
-
declare type
|
|
1316
|
+
declare type __VLS_Props_45 = {
|
|
1142
1317
|
/**
|
|
1143
1318
|
* Determines whether the rating is interactive or read-only.
|
|
1144
1319
|
* When true, all user interactions (click, hover, keyboard) are disabled.
|
|
@@ -1185,7 +1360,7 @@ declare type __VLS_Props_41 = {
|
|
|
1185
1360
|
/**
|
|
1186
1361
|
* 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.
|
|
1187
1362
|
*/
|
|
1188
|
-
declare type
|
|
1363
|
+
declare type __VLS_Props_46 = {
|
|
1189
1364
|
/**
|
|
1190
1365
|
* Content of the status badge
|
|
1191
1366
|
*/
|
|
@@ -1199,7 +1374,7 @@ declare type __VLS_Props_42 = {
|
|
|
1199
1374
|
/**
|
|
1200
1375
|
* 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.
|
|
1201
1376
|
*/
|
|
1202
|
-
declare type
|
|
1377
|
+
declare type __VLS_Props_47 = {
|
|
1203
1378
|
/**
|
|
1204
1379
|
* Allows to define the status dot type.
|
|
1205
1380
|
*/
|
|
@@ -1213,7 +1388,7 @@ declare type __VLS_Props_43 = {
|
|
|
1213
1388
|
/**
|
|
1214
1389
|
* 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.
|
|
1215
1390
|
*/
|
|
1216
|
-
declare type
|
|
1391
|
+
declare type __VLS_Props_48 = {
|
|
1217
1392
|
/**
|
|
1218
1393
|
* Allows to define the status message style.
|
|
1219
1394
|
*/
|
|
@@ -1227,7 +1402,7 @@ declare type __VLS_Props_44 = {
|
|
|
1227
1402
|
/**
|
|
1228
1403
|
* 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.
|
|
1229
1404
|
*/
|
|
1230
|
-
declare type
|
|
1405
|
+
declare type __VLS_Props_49 = {
|
|
1231
1406
|
/**
|
|
1232
1407
|
* Title of the status notification.
|
|
1233
1408
|
*/
|
|
@@ -1246,10 +1421,20 @@ declare type __VLS_Props_45 = {
|
|
|
1246
1421
|
closable?: boolean;
|
|
1247
1422
|
};
|
|
1248
1423
|
|
|
1424
|
+
/**
|
|
1425
|
+
* 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.
|
|
1426
|
+
*/
|
|
1427
|
+
declare type __VLS_Props_5 = {
|
|
1428
|
+
/**
|
|
1429
|
+
* Allows to define the avatar size.
|
|
1430
|
+
*/
|
|
1431
|
+
size?: 's' | 'm' | 'l';
|
|
1432
|
+
};
|
|
1433
|
+
|
|
1249
1434
|
/**
|
|
1250
1435
|
* 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
1436
|
*/
|
|
1252
|
-
declare type
|
|
1437
|
+
declare type __VLS_Props_50 = {
|
|
1253
1438
|
/**
|
|
1254
1439
|
* Current step of the stepper compact.
|
|
1255
1440
|
*/
|
|
@@ -1283,7 +1468,7 @@ declare type __VLS_Props_46 = {
|
|
|
1283
1468
|
/**
|
|
1284
1469
|
* 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.
|
|
1285
1470
|
*/
|
|
1286
|
-
declare type
|
|
1471
|
+
declare type __VLS_Props_51 = {
|
|
1287
1472
|
/**
|
|
1288
1473
|
* Current step of the stepper compact.
|
|
1289
1474
|
*/
|
|
@@ -1305,7 +1490,7 @@ declare type __VLS_Props_47 = {
|
|
|
1305
1490
|
/**
|
|
1306
1491
|
* 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.
|
|
1307
1492
|
*/
|
|
1308
|
-
declare type
|
|
1493
|
+
declare type __VLS_Props_52 = {
|
|
1309
1494
|
/**
|
|
1310
1495
|
* Current step of the stepper compact.
|
|
1311
1496
|
*/
|
|
@@ -1328,7 +1513,7 @@ declare type __VLS_Props_48 = {
|
|
|
1328
1513
|
/**
|
|
1329
1514
|
* 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.
|
|
1330
1515
|
*/
|
|
1331
|
-
declare type
|
|
1516
|
+
declare type __VLS_Props_53 = {
|
|
1332
1517
|
/**
|
|
1333
1518
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
1334
1519
|
*/
|
|
@@ -1369,21 +1554,11 @@ declare type __VLS_Props_49 = {
|
|
|
1369
1554
|
};
|
|
1370
1555
|
|
|
1371
1556
|
/**
|
|
1372
|
-
*
|
|
1557
|
+
* 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).
|
|
1373
1558
|
*/
|
|
1374
|
-
declare type
|
|
1559
|
+
declare type __VLS_Props_54 = {
|
|
1375
1560
|
/**
|
|
1376
|
-
*
|
|
1377
|
-
*/
|
|
1378
|
-
size?: 's' | 'm' | 'l';
|
|
1379
|
-
};
|
|
1380
|
-
|
|
1381
|
-
/**
|
|
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).
|
|
1383
|
-
*/
|
|
1384
|
-
declare type __VLS_Props_50 = {
|
|
1385
|
-
/**
|
|
1386
|
-
* Defines the behavior and layout of the tag.
|
|
1561
|
+
* Defines the behavior and layout of the tag.
|
|
1387
1562
|
*/
|
|
1388
1563
|
type?: 'informative' | 'interactive' | 'contextualised' | 'removable' | 'selectable';
|
|
1389
1564
|
/**
|
|
@@ -1420,10 +1595,108 @@ declare type __VLS_Props_50 = {
|
|
|
1420
1595
|
removableLabel?: string;
|
|
1421
1596
|
};
|
|
1422
1597
|
|
|
1598
|
+
/**
|
|
1599
|
+
* A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
|
|
1600
|
+
*/
|
|
1601
|
+
declare type __VLS_Props_55 = {
|
|
1602
|
+
/**
|
|
1603
|
+
* Defines the visual style of the tile.
|
|
1604
|
+
*/
|
|
1605
|
+
appearance?: 'primary' | 'secondary' | 'inverse';
|
|
1606
|
+
/**
|
|
1607
|
+
* Adds a border around the tile.
|
|
1608
|
+
*/
|
|
1609
|
+
bordered?: boolean;
|
|
1610
|
+
};
|
|
1611
|
+
|
|
1612
|
+
/**
|
|
1613
|
+
* A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
|
|
1614
|
+
*/
|
|
1615
|
+
declare type __VLS_Props_56 = {
|
|
1616
|
+
/**
|
|
1617
|
+
* Defines the visual style of the tile.
|
|
1618
|
+
*/
|
|
1619
|
+
appearance?: 'primary' | 'secondary' | 'inverse';
|
|
1620
|
+
/**
|
|
1621
|
+
* Adds a border around the tile.
|
|
1622
|
+
*/
|
|
1623
|
+
bordered?: boolean;
|
|
1624
|
+
/**
|
|
1625
|
+
* If set, the tile becomes an external link (`<a>`).
|
|
1626
|
+
* Used to navigate to a full URL.
|
|
1627
|
+
*/
|
|
1628
|
+
href?: string;
|
|
1629
|
+
/**
|
|
1630
|
+
* If set, the tile becomes an internal link (Vue Router route).
|
|
1631
|
+
* Used for navigation within the app.
|
|
1632
|
+
*/
|
|
1633
|
+
to?: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* Where to open the link.
|
|
1636
|
+
*/
|
|
1637
|
+
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
1638
|
+
/**
|
|
1639
|
+
* Position of the icon relative to the content.
|
|
1640
|
+
*/
|
|
1641
|
+
iconPosition?: 'bottom' | 'right';
|
|
1642
|
+
};
|
|
1643
|
+
|
|
1644
|
+
/**
|
|
1645
|
+
* A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
|
|
1646
|
+
*/
|
|
1647
|
+
declare type __VLS_Props_57 = {
|
|
1648
|
+
/**
|
|
1649
|
+
* Defines the visual style of the tile.
|
|
1650
|
+
*/
|
|
1651
|
+
appearance?: 'primary' | 'secondary';
|
|
1652
|
+
/**
|
|
1653
|
+
* Adds a border around the tile.
|
|
1654
|
+
*/
|
|
1655
|
+
bordered?: boolean;
|
|
1656
|
+
/**
|
|
1657
|
+
* Determines how the tile expansion is triggered.
|
|
1658
|
+
*/
|
|
1659
|
+
trigger?: 'container' | 'icon' | 'button';
|
|
1660
|
+
/**
|
|
1661
|
+
* Label for the action button (only used when trigger is 'button').
|
|
1662
|
+
*/
|
|
1663
|
+
label?: string;
|
|
1664
|
+
};
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
|
|
1668
|
+
*/
|
|
1669
|
+
declare type __VLS_Props_58 = {
|
|
1670
|
+
/**
|
|
1671
|
+
* The current value of the tile (selected or not).
|
|
1672
|
+
*/
|
|
1673
|
+
modelValue: boolean;
|
|
1674
|
+
/**
|
|
1675
|
+
* Adds a border around the tile.
|
|
1676
|
+
*/
|
|
1677
|
+
bordered?: boolean;
|
|
1678
|
+
/**
|
|
1679
|
+
* Type of input used for selection.
|
|
1680
|
+
*/
|
|
1681
|
+
inputType?: 'checkbox' | 'radio';
|
|
1682
|
+
/**
|
|
1683
|
+
* Position of the input relative to the tile content.
|
|
1684
|
+
*/
|
|
1685
|
+
inputPosition?: 'left' | 'right';
|
|
1686
|
+
/**
|
|
1687
|
+
* Vertical alignment of the input.
|
|
1688
|
+
*/
|
|
1689
|
+
centered?: boolean;
|
|
1690
|
+
/**
|
|
1691
|
+
* If `true`, hides the input and makes the whole tile selectable.
|
|
1692
|
+
*/
|
|
1693
|
+
hideInput?: boolean;
|
|
1694
|
+
};
|
|
1695
|
+
|
|
1423
1696
|
/**
|
|
1424
1697
|
* 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).
|
|
1425
1698
|
*/
|
|
1426
|
-
declare type
|
|
1699
|
+
declare type __VLS_Props_59 = {
|
|
1427
1700
|
/**
|
|
1428
1701
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
1429
1702
|
*/
|
|
@@ -1466,10 +1739,37 @@ declare type __VLS_Props_51 = {
|
|
|
1466
1739
|
readonly?: boolean;
|
|
1467
1740
|
};
|
|
1468
1741
|
|
|
1742
|
+
/**
|
|
1743
|
+
* 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.
|
|
1744
|
+
*/
|
|
1745
|
+
declare type __VLS_Props_6 = {
|
|
1746
|
+
/**
|
|
1747
|
+
* Allows to define the breadcrumb appearance.
|
|
1748
|
+
*/
|
|
1749
|
+
appearance?: 'standard' | 'inverse';
|
|
1750
|
+
/**
|
|
1751
|
+
* Links of the breadcrumb.
|
|
1752
|
+
*/
|
|
1753
|
+
links: Array<{
|
|
1754
|
+
/**
|
|
1755
|
+
* The label displayed for the link.
|
|
1756
|
+
*/
|
|
1757
|
+
label: string;
|
|
1758
|
+
/**
|
|
1759
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
1760
|
+
*/
|
|
1761
|
+
href: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
1764
|
+
*/
|
|
1765
|
+
router?: boolean;
|
|
1766
|
+
}>;
|
|
1767
|
+
};
|
|
1768
|
+
|
|
1469
1769
|
/**
|
|
1470
1770
|
* 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).
|
|
1471
1771
|
*/
|
|
1472
|
-
declare type
|
|
1772
|
+
declare type __VLS_Props_60 = {
|
|
1473
1773
|
/**
|
|
1474
1774
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
1475
1775
|
*/
|
|
@@ -1514,12 +1814,20 @@ declare type __VLS_Props_52 = {
|
|
|
1514
1814
|
* The label text for the clear button.
|
|
1515
1815
|
*/
|
|
1516
1816
|
clearLabel?: string;
|
|
1817
|
+
/**
|
|
1818
|
+
* Displays additional text inside the component, before the input.
|
|
1819
|
+
*/
|
|
1820
|
+
prefix?: string;
|
|
1821
|
+
/**
|
|
1822
|
+
* Displays additional text inside the component, after the input.
|
|
1823
|
+
*/
|
|
1824
|
+
suffix?: string;
|
|
1517
1825
|
};
|
|
1518
1826
|
|
|
1519
1827
|
/**
|
|
1520
1828
|
* 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.
|
|
1521
1829
|
*/
|
|
1522
|
-
declare type
|
|
1830
|
+
declare type __VLS_Props_61 = {
|
|
1523
1831
|
/**
|
|
1524
1832
|
* If `true`, display the Toaster.
|
|
1525
1833
|
*/
|
|
@@ -1553,7 +1861,7 @@ declare type __VLS_Props_53 = {
|
|
|
1553
1861
|
/**
|
|
1554
1862
|
* 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.
|
|
1555
1863
|
*/
|
|
1556
|
-
declare type
|
|
1864
|
+
declare type __VLS_Props_62 = {
|
|
1557
1865
|
/**
|
|
1558
1866
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
1559
1867
|
*/
|
|
@@ -1583,7 +1891,7 @@ declare type __VLS_Props_54 = {
|
|
|
1583
1891
|
/**
|
|
1584
1892
|
* 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).
|
|
1585
1893
|
*/
|
|
1586
|
-
declare type
|
|
1894
|
+
declare type __VLS_Props_63 = {
|
|
1587
1895
|
/**
|
|
1588
1896
|
* The name attribute for the toggle element, typically used for form submission.
|
|
1589
1897
|
*/
|
|
@@ -1612,7 +1920,7 @@ declare type __VLS_Props_55 = {
|
|
|
1612
1920
|
/**
|
|
1613
1921
|
* 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.
|
|
1614
1922
|
*/
|
|
1615
|
-
declare type
|
|
1923
|
+
declare type __VLS_Props_64 = {
|
|
1616
1924
|
/**
|
|
1617
1925
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
1618
1926
|
*/
|
|
@@ -1629,33 +1937,10 @@ declare type __VLS_Props_56 = {
|
|
|
1629
1937
|
* If `true`, the tooltip display a pointer.
|
|
1630
1938
|
*/
|
|
1631
1939
|
pointer?: boolean;
|
|
1632
|
-
};
|
|
1633
|
-
|
|
1634
|
-
/**
|
|
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.
|
|
1636
|
-
*/
|
|
1637
|
-
declare type __VLS_Props_6 = {
|
|
1638
1940
|
/**
|
|
1639
|
-
*
|
|
1941
|
+
* Standalone tooltip
|
|
1640
1942
|
*/
|
|
1641
|
-
|
|
1642
|
-
/**
|
|
1643
|
-
* Links of the breadcrumb.
|
|
1644
|
-
*/
|
|
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
|
-
}>;
|
|
1943
|
+
standalone?: boolean;
|
|
1659
1944
|
};
|
|
1660
1945
|
|
|
1661
1946
|
declare type __VLS_Props_7 = {
|
|
@@ -1731,7 +2016,7 @@ declare type __VLS_Props_9 = {
|
|
|
1731
2016
|
|
|
1732
2017
|
declare type __VLS_PublicProps = {
|
|
1733
2018
|
modelValue: number;
|
|
1734
|
-
} &
|
|
2019
|
+
} & __VLS_Props_45;
|
|
1735
2020
|
|
|
1736
2021
|
declare function __VLS_template(): {
|
|
1737
2022
|
attrs: Partial<{}>;
|
|
@@ -1751,6 +2036,23 @@ declare function __VLS_template(): {
|
|
|
1751
2036
|
};
|
|
1752
2037
|
|
|
1753
2038
|
declare function __VLS_template_10(): {
|
|
2039
|
+
attrs: Partial<{}>;
|
|
2040
|
+
slots: Readonly<{
|
|
2041
|
+
/**
|
|
2042
|
+
* Use this slot to insert the content who need a vertical divider
|
|
2043
|
+
*/
|
|
2044
|
+
default?: VNode;
|
|
2045
|
+
}> & {
|
|
2046
|
+
/**
|
|
2047
|
+
* Use this slot to insert the content who need a vertical divider
|
|
2048
|
+
*/
|
|
2049
|
+
default?: VNode;
|
|
2050
|
+
};
|
|
2051
|
+
refs: {};
|
|
2052
|
+
rootEl: HTMLDivElement;
|
|
2053
|
+
};
|
|
2054
|
+
|
|
2055
|
+
declare function __VLS_template_11(): {
|
|
1754
2056
|
attrs: Partial<{}>;
|
|
1755
2057
|
slots: Readonly<{
|
|
1756
2058
|
/**
|
|
@@ -1777,7 +2079,7 @@ declare function __VLS_template_10(): {
|
|
|
1777
2079
|
rootEl: any;
|
|
1778
2080
|
};
|
|
1779
2081
|
|
|
1780
|
-
declare function
|
|
2082
|
+
declare function __VLS_template_12(): {
|
|
1781
2083
|
attrs: Partial<{}>;
|
|
1782
2084
|
slots: Readonly<{
|
|
1783
2085
|
/**
|
|
@@ -1794,7 +2096,7 @@ declare function __VLS_template_11(): {
|
|
|
1794
2096
|
rootEl: HTMLDivElement;
|
|
1795
2097
|
};
|
|
1796
2098
|
|
|
1797
|
-
declare function
|
|
2099
|
+
declare function __VLS_template_13(): {
|
|
1798
2100
|
attrs: Partial<{}>;
|
|
1799
2101
|
slots: Readonly<{
|
|
1800
2102
|
/**
|
|
@@ -1811,7 +2113,7 @@ declare function __VLS_template_12(): {
|
|
|
1811
2113
|
rootEl: HTMLFieldSetElement;
|
|
1812
2114
|
};
|
|
1813
2115
|
|
|
1814
|
-
declare function
|
|
2116
|
+
declare function __VLS_template_14(): {
|
|
1815
2117
|
attrs: Partial<{}>;
|
|
1816
2118
|
slots: Readonly<{
|
|
1817
2119
|
/**
|
|
@@ -1854,7 +2156,7 @@ declare function __VLS_template_13(): {
|
|
|
1854
2156
|
rootEl: HTMLDivElement;
|
|
1855
2157
|
};
|
|
1856
2158
|
|
|
1857
|
-
declare function
|
|
2159
|
+
declare function __VLS_template_15(): {
|
|
1858
2160
|
attrs: Partial<{}>;
|
|
1859
2161
|
slots: Readonly<{
|
|
1860
2162
|
/**
|
|
@@ -1871,7 +2173,7 @@ declare function __VLS_template_14(): {
|
|
|
1871
2173
|
rootEl: HTMLButtonElement;
|
|
1872
2174
|
};
|
|
1873
2175
|
|
|
1874
|
-
declare function
|
|
2176
|
+
declare function __VLS_template_16(): {
|
|
1875
2177
|
attrs: Partial<{}>;
|
|
1876
2178
|
slots: Readonly<{
|
|
1877
2179
|
/**
|
|
@@ -1896,7 +2198,7 @@ declare function __VLS_template_15(): {
|
|
|
1896
2198
|
rootEl: any;
|
|
1897
2199
|
};
|
|
1898
2200
|
|
|
1899
|
-
declare function
|
|
2201
|
+
declare function __VLS_template_17(): {
|
|
1900
2202
|
attrs: Partial<{}>;
|
|
1901
2203
|
slots: Readonly<{
|
|
1902
2204
|
/**
|
|
@@ -1937,7 +2239,7 @@ declare function __VLS_template_16(): {
|
|
|
1937
2239
|
rootEl: any;
|
|
1938
2240
|
};
|
|
1939
2241
|
|
|
1940
|
-
declare function
|
|
2242
|
+
declare function __VLS_template_18(): {
|
|
1941
2243
|
attrs: Partial<{}>;
|
|
1942
2244
|
slots: Readonly<{
|
|
1943
2245
|
/**
|
|
@@ -1954,7 +2256,143 @@ declare function __VLS_template_17(): {
|
|
|
1954
2256
|
rootEl: HTMLDivElement;
|
|
1955
2257
|
};
|
|
1956
2258
|
|
|
1957
|
-
declare function
|
|
2259
|
+
declare function __VLS_template_19(): {
|
|
2260
|
+
attrs: Partial<{}>;
|
|
2261
|
+
slots: Readonly<{
|
|
2262
|
+
/**
|
|
2263
|
+
* Use this slot to insert action items in the top content.
|
|
2264
|
+
*/
|
|
2265
|
+
actions?: VNode;
|
|
2266
|
+
/**
|
|
2267
|
+
* Use this slot to insert any content below the Page Header top content.
|
|
2268
|
+
*/
|
|
2269
|
+
content?: VNode;
|
|
2270
|
+
/**
|
|
2271
|
+
* Use this slot to insert a tab in the header.
|
|
2272
|
+
*/
|
|
2273
|
+
tabs?: VNode;
|
|
2274
|
+
}> & {
|
|
2275
|
+
/**
|
|
2276
|
+
* Use this slot to insert action items in the top content.
|
|
2277
|
+
*/
|
|
2278
|
+
actions?: VNode;
|
|
2279
|
+
/**
|
|
2280
|
+
* Use this slot to insert any content below the Page Header top content.
|
|
2281
|
+
*/
|
|
2282
|
+
content?: VNode;
|
|
2283
|
+
/**
|
|
2284
|
+
* Use this slot to insert a tab in the header.
|
|
2285
|
+
*/
|
|
2286
|
+
tabs?: VNode;
|
|
2287
|
+
};
|
|
2288
|
+
refs: {};
|
|
2289
|
+
rootEl: HTMLDivElement;
|
|
2290
|
+
};
|
|
2291
|
+
|
|
2292
|
+
declare function __VLS_template_2(): {
|
|
2293
|
+
attrs: Partial<{}>;
|
|
2294
|
+
slots: Readonly<{
|
|
2295
|
+
/**
|
|
2296
|
+
* Use this slot to display custom content.
|
|
2297
|
+
*/
|
|
2298
|
+
default: VNode;
|
|
2299
|
+
}> & {
|
|
2300
|
+
/**
|
|
2301
|
+
* Use this slot to display custom content.
|
|
2302
|
+
*/
|
|
2303
|
+
default: VNode;
|
|
2304
|
+
};
|
|
2305
|
+
refs: {};
|
|
2306
|
+
rootEl: HTMLDivElement;
|
|
2307
|
+
};
|
|
2308
|
+
|
|
2309
|
+
declare function __VLS_template_20(): {
|
|
2310
|
+
attrs: Partial<{}>;
|
|
2311
|
+
slots: Readonly<{
|
|
2312
|
+
/**
|
|
2313
|
+
* Main content of the popover.
|
|
2314
|
+
*/
|
|
2315
|
+
default?: () => VNode[];
|
|
2316
|
+
/**
|
|
2317
|
+
* Activator element that triggers the popover.
|
|
2318
|
+
* Must contain a single <button> or element with [type="button"] attribute.
|
|
2319
|
+
* Receives the popover `id` as a slot prop and must bind it
|
|
2320
|
+
* to the `popovertarget` attribute.
|
|
2321
|
+
*/
|
|
2322
|
+
activator?: (props: {
|
|
2323
|
+
id: string;
|
|
2324
|
+
}) => VNode[];
|
|
2325
|
+
/**
|
|
2326
|
+
* Use this slot to insert buttons or link in the footer.
|
|
2327
|
+
*/
|
|
2328
|
+
footer?: VNode;
|
|
2329
|
+
}> & {
|
|
2330
|
+
/**
|
|
2331
|
+
* Main content of the popover.
|
|
2332
|
+
*/
|
|
2333
|
+
default?: () => VNode[];
|
|
2334
|
+
/**
|
|
2335
|
+
* Activator element that triggers the popover.
|
|
2336
|
+
* Must contain a single <button> or element with [type="button"] attribute.
|
|
2337
|
+
* Receives the popover `id` as a slot prop and must bind it
|
|
2338
|
+
* to the `popovertarget` attribute.
|
|
2339
|
+
*/
|
|
2340
|
+
activator?: (props: {
|
|
2341
|
+
id: string;
|
|
2342
|
+
}) => VNode[];
|
|
2343
|
+
/**
|
|
2344
|
+
* Use this slot to insert buttons or link in the footer.
|
|
2345
|
+
*/
|
|
2346
|
+
footer?: VNode;
|
|
2347
|
+
};
|
|
2348
|
+
refs: {};
|
|
2349
|
+
rootEl: any;
|
|
2350
|
+
};
|
|
2351
|
+
|
|
2352
|
+
declare function __VLS_template_21(): {
|
|
2353
|
+
attrs: Partial<{}>;
|
|
2354
|
+
slots: Readonly<{
|
|
2355
|
+
/**
|
|
2356
|
+
* Slot for the sidebar header. Should contain an `MSidebarHeader` component.
|
|
2357
|
+
*/
|
|
2358
|
+
header: VNode[];
|
|
2359
|
+
/**
|
|
2360
|
+
* Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
|
|
2361
|
+
* with one or more `MSidebarShortcutItem` components inside.
|
|
2362
|
+
*/
|
|
2363
|
+
shortcuts: VNode[];
|
|
2364
|
+
/**
|
|
2365
|
+
* Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
|
|
2366
|
+
*/
|
|
2367
|
+
nav: VNode[];
|
|
2368
|
+
/**
|
|
2369
|
+
* Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
|
|
2370
|
+
*/
|
|
2371
|
+
footer: VNode[];
|
|
2372
|
+
}> & {
|
|
2373
|
+
/**
|
|
2374
|
+
* Slot for the sidebar header. Should contain an `MSidebarHeader` component.
|
|
2375
|
+
*/
|
|
2376
|
+
header: VNode[];
|
|
2377
|
+
/**
|
|
2378
|
+
* Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
|
|
2379
|
+
* with one or more `MSidebarShortcutItem` components inside.
|
|
2380
|
+
*/
|
|
2381
|
+
shortcuts: VNode[];
|
|
2382
|
+
/**
|
|
2383
|
+
* Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
|
|
2384
|
+
*/
|
|
2385
|
+
nav: VNode[];
|
|
2386
|
+
/**
|
|
2387
|
+
* Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
|
|
2388
|
+
*/
|
|
2389
|
+
footer: VNode[];
|
|
2390
|
+
};
|
|
2391
|
+
refs: {};
|
|
2392
|
+
rootEl: HTMLElement;
|
|
2393
|
+
};
|
|
2394
|
+
|
|
2395
|
+
declare function __VLS_template_22(): {
|
|
1958
2396
|
attrs: Partial<{}>;
|
|
1959
2397
|
slots: Readonly<{
|
|
1960
2398
|
/**
|
|
@@ -1971,41 +2409,132 @@ declare function __VLS_template_18(): {
|
|
|
1971
2409
|
rootEl: HTMLElement;
|
|
1972
2410
|
};
|
|
1973
2411
|
|
|
1974
|
-
declare function
|
|
2412
|
+
declare function __VLS_template_23(): {
|
|
1975
2413
|
attrs: Partial<{}>;
|
|
1976
2414
|
slots: Readonly<{
|
|
1977
2415
|
/**
|
|
1978
|
-
*
|
|
2416
|
+
* Default slot for the main content of the tile.
|
|
1979
2417
|
*/
|
|
1980
|
-
|
|
2418
|
+
default?: VNode[];
|
|
2419
|
+
/**
|
|
2420
|
+
* Named slot for additional content shown below the main content.
|
|
2421
|
+
*/
|
|
2422
|
+
details?: VNode[];
|
|
2423
|
+
/**
|
|
2424
|
+
* Named slot for action element, such as a button or link.
|
|
2425
|
+
*/
|
|
2426
|
+
action?: VNode[];
|
|
1981
2427
|
}> & {
|
|
1982
2428
|
/**
|
|
1983
|
-
*
|
|
2429
|
+
* Default slot for the main content of the tile.
|
|
1984
2430
|
*/
|
|
1985
|
-
|
|
2431
|
+
default?: VNode[];
|
|
2432
|
+
/**
|
|
2433
|
+
* Named slot for additional content shown below the main content.
|
|
2434
|
+
*/
|
|
2435
|
+
details?: VNode[];
|
|
2436
|
+
/**
|
|
2437
|
+
* Named slot for action element, such as a button or link.
|
|
2438
|
+
*/
|
|
2439
|
+
action?: VNode[];
|
|
2440
|
+
};
|
|
2441
|
+
refs: {};
|
|
2442
|
+
rootEl: HTMLDivElement;
|
|
2443
|
+
};
|
|
2444
|
+
|
|
2445
|
+
declare function __VLS_template_24(): {
|
|
2446
|
+
attrs: Partial<{}>;
|
|
2447
|
+
slots: Readonly<{
|
|
2448
|
+
/**
|
|
2449
|
+
* Default slot for the main content of the tile.
|
|
2450
|
+
*/
|
|
2451
|
+
default?: VNode[];
|
|
2452
|
+
/**
|
|
2453
|
+
* Named slot for the action icon.
|
|
2454
|
+
*/
|
|
2455
|
+
icon?: VNode[];
|
|
2456
|
+
}> & {
|
|
2457
|
+
/**
|
|
2458
|
+
* Default slot for the main content of the tile.
|
|
2459
|
+
*/
|
|
2460
|
+
default?: VNode[];
|
|
2461
|
+
/**
|
|
2462
|
+
* Named slot for the action icon.
|
|
2463
|
+
*/
|
|
2464
|
+
icon?: VNode[];
|
|
1986
2465
|
};
|
|
1987
2466
|
refs: {};
|
|
1988
2467
|
rootEl: any;
|
|
1989
2468
|
};
|
|
1990
2469
|
|
|
1991
|
-
declare function
|
|
2470
|
+
declare function __VLS_template_25(): {
|
|
1992
2471
|
attrs: Partial<{}>;
|
|
1993
2472
|
slots: Readonly<{
|
|
1994
2473
|
/**
|
|
1995
|
-
*
|
|
2474
|
+
* Default slot for the main content of the tile.
|
|
1996
2475
|
*/
|
|
1997
|
-
default
|
|
2476
|
+
default?: VNode[];
|
|
2477
|
+
/**
|
|
2478
|
+
* Named slot for expandable content shown when the tile is opened.
|
|
2479
|
+
*/
|
|
2480
|
+
details?: VNode[];
|
|
1998
2481
|
}> & {
|
|
1999
2482
|
/**
|
|
2000
|
-
*
|
|
2483
|
+
* Default slot for the main content of the tile.
|
|
2001
2484
|
*/
|
|
2002
|
-
default
|
|
2485
|
+
default?: VNode[];
|
|
2486
|
+
/**
|
|
2487
|
+
* Named slot for expandable content shown when the tile is opened.
|
|
2488
|
+
*/
|
|
2489
|
+
details?: VNode[];
|
|
2003
2490
|
};
|
|
2004
2491
|
refs: {};
|
|
2005
2492
|
rootEl: HTMLDivElement;
|
|
2006
2493
|
};
|
|
2007
2494
|
|
|
2008
|
-
declare function
|
|
2495
|
+
declare function __VLS_template_26(): {
|
|
2496
|
+
attrs: Partial<{}>;
|
|
2497
|
+
slots: Readonly<{
|
|
2498
|
+
/**
|
|
2499
|
+
* Default slot for the main content of the tile.
|
|
2500
|
+
*/
|
|
2501
|
+
default?: VNode[];
|
|
2502
|
+
/**
|
|
2503
|
+
* Named slot for additional content shown below the main content.
|
|
2504
|
+
*/
|
|
2505
|
+
details?: VNode[];
|
|
2506
|
+
}> & {
|
|
2507
|
+
/**
|
|
2508
|
+
* Default slot for the main content of the tile.
|
|
2509
|
+
*/
|
|
2510
|
+
default?: VNode[];
|
|
2511
|
+
/**
|
|
2512
|
+
* Named slot for additional content shown below the main content.
|
|
2513
|
+
*/
|
|
2514
|
+
details?: VNode[];
|
|
2515
|
+
};
|
|
2516
|
+
refs: {};
|
|
2517
|
+
rootEl: HTMLDivElement;
|
|
2518
|
+
};
|
|
2519
|
+
|
|
2520
|
+
declare function __VLS_template_27(): {
|
|
2521
|
+
attrs: Partial<{}>;
|
|
2522
|
+
slots: Readonly<{
|
|
2523
|
+
/**
|
|
2524
|
+
* Use this slot to insert an icon in the input.
|
|
2525
|
+
*/
|
|
2526
|
+
icon?: VNode;
|
|
2527
|
+
}> & {
|
|
2528
|
+
/**
|
|
2529
|
+
* Use this slot to insert an icon in the input.
|
|
2530
|
+
*/
|
|
2531
|
+
icon?: VNode;
|
|
2532
|
+
};
|
|
2533
|
+
refs: {};
|
|
2534
|
+
rootEl: any;
|
|
2535
|
+
};
|
|
2536
|
+
|
|
2537
|
+
declare function __VLS_template_28(): {
|
|
2009
2538
|
attrs: Partial<{}>;
|
|
2010
2539
|
slots: Readonly<{
|
|
2011
2540
|
/**
|
|
@@ -2022,7 +2551,7 @@ declare function __VLS_template_20(): {
|
|
|
2022
2551
|
rootEl: HTMLElement;
|
|
2023
2552
|
};
|
|
2024
2553
|
|
|
2025
|
-
declare function
|
|
2554
|
+
declare function __VLS_template_29(): {
|
|
2026
2555
|
attrs: Partial<{}>;
|
|
2027
2556
|
slots: Readonly<{
|
|
2028
2557
|
/**
|
|
@@ -2065,6 +2594,25 @@ declare function __VLS_template_3(): {
|
|
|
2065
2594
|
};
|
|
2066
2595
|
|
|
2067
2596
|
declare function __VLS_template_4(): {
|
|
2597
|
+
attrs: Partial<{}>;
|
|
2598
|
+
slots: Readonly<{
|
|
2599
|
+
/**
|
|
2600
|
+
* Activator element that triggers the listbox.
|
|
2601
|
+
*/
|
|
2602
|
+
activator?: VNode[];
|
|
2603
|
+
}> & {
|
|
2604
|
+
/**
|
|
2605
|
+
* Activator element that triggers the listbox.
|
|
2606
|
+
*/
|
|
2607
|
+
activator?: VNode[];
|
|
2608
|
+
};
|
|
2609
|
+
refs: {
|
|
2610
|
+
popover: HTMLDivElement;
|
|
2611
|
+
};
|
|
2612
|
+
rootEl: any;
|
|
2613
|
+
};
|
|
2614
|
+
|
|
2615
|
+
declare function __VLS_template_5(): {
|
|
2068
2616
|
attrs: Partial<{}>;
|
|
2069
2617
|
slots: Readonly<{
|
|
2070
2618
|
/**
|
|
@@ -2081,7 +2629,7 @@ declare function __VLS_template_4(): {
|
|
|
2081
2629
|
rootEl: HTMLSpanElement;
|
|
2082
2630
|
};
|
|
2083
2631
|
|
|
2084
|
-
declare function
|
|
2632
|
+
declare function __VLS_template_6(): {
|
|
2085
2633
|
attrs: Partial<{}>;
|
|
2086
2634
|
slots: Readonly<{
|
|
2087
2635
|
/**
|
|
@@ -2106,7 +2654,7 @@ declare function __VLS_template_5(): {
|
|
|
2106
2654
|
rootEl: HTMLButtonElement;
|
|
2107
2655
|
};
|
|
2108
2656
|
|
|
2109
|
-
declare function
|
|
2657
|
+
declare function __VLS_template_7(): {
|
|
2110
2658
|
attrs: Partial<{}>;
|
|
2111
2659
|
slots: Readonly<{
|
|
2112
2660
|
/**
|
|
@@ -2131,7 +2679,7 @@ declare function __VLS_template_6(): {
|
|
|
2131
2679
|
rootEl: HTMLElement;
|
|
2132
2680
|
};
|
|
2133
2681
|
|
|
2134
|
-
declare function
|
|
2682
|
+
declare function __VLS_template_8(): {
|
|
2135
2683
|
attrs: Partial<{}>;
|
|
2136
2684
|
slots: Readonly<{
|
|
2137
2685
|
/**
|
|
@@ -2158,7 +2706,7 @@ declare function __VLS_template_7(): {
|
|
|
2158
2706
|
rootEl: HTMLDivElement;
|
|
2159
2707
|
};
|
|
2160
2708
|
|
|
2161
|
-
declare function
|
|
2709
|
+
declare function __VLS_template_9(): {
|
|
2162
2710
|
attrs: Partial<{}>;
|
|
2163
2711
|
slots: Readonly<{
|
|
2164
2712
|
/**
|
|
@@ -2175,23 +2723,6 @@ declare function __VLS_template_8(): {
|
|
|
2175
2723
|
rootEl: HTMLDivElement;
|
|
2176
2724
|
};
|
|
2177
2725
|
|
|
2178
|
-
declare function __VLS_template_9(): {
|
|
2179
|
-
attrs: Partial<{}>;
|
|
2180
|
-
slots: Readonly<{
|
|
2181
|
-
/**
|
|
2182
|
-
* Use this slot to insert the content who need a vertical divider
|
|
2183
|
-
*/
|
|
2184
|
-
default?: VNode;
|
|
2185
|
-
}> & {
|
|
2186
|
-
/**
|
|
2187
|
-
* Use this slot to insert the content who need a vertical divider
|
|
2188
|
-
*/
|
|
2189
|
-
default?: VNode;
|
|
2190
|
-
};
|
|
2191
|
-
refs: {};
|
|
2192
|
-
rootEl: HTMLDivElement;
|
|
2193
|
-
};
|
|
2194
|
-
|
|
2195
2726
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
2196
2727
|
|
|
2197
2728
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
@@ -2220,6 +2751,22 @@ declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
|
|
|
2220
2751
|
|
|
2221
2752
|
declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
|
|
2222
2753
|
|
|
2754
|
+
declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
|
|
2755
|
+
|
|
2756
|
+
declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
|
|
2757
|
+
|
|
2758
|
+
declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
|
|
2759
|
+
|
|
2760
|
+
declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
|
|
2761
|
+
|
|
2762
|
+
declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
|
|
2763
|
+
|
|
2764
|
+
declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
|
|
2765
|
+
|
|
2766
|
+
declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
|
|
2767
|
+
|
|
2768
|
+
declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
|
|
2769
|
+
|
|
2223
2770
|
declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
|
|
2224
2771
|
|
|
2225
2772
|
declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
|
|
@@ -2318,6 +2865,54 @@ declare type __VLS_WithTemplateSlots_21<T, S> = T & {
|
|
|
2318
2865
|
};
|
|
2319
2866
|
};
|
|
2320
2867
|
|
|
2868
|
+
declare type __VLS_WithTemplateSlots_22<T, S> = T & {
|
|
2869
|
+
new (): {
|
|
2870
|
+
$slots: S;
|
|
2871
|
+
};
|
|
2872
|
+
};
|
|
2873
|
+
|
|
2874
|
+
declare type __VLS_WithTemplateSlots_23<T, S> = T & {
|
|
2875
|
+
new (): {
|
|
2876
|
+
$slots: S;
|
|
2877
|
+
};
|
|
2878
|
+
};
|
|
2879
|
+
|
|
2880
|
+
declare type __VLS_WithTemplateSlots_24<T, S> = T & {
|
|
2881
|
+
new (): {
|
|
2882
|
+
$slots: S;
|
|
2883
|
+
};
|
|
2884
|
+
};
|
|
2885
|
+
|
|
2886
|
+
declare type __VLS_WithTemplateSlots_25<T, S> = T & {
|
|
2887
|
+
new (): {
|
|
2888
|
+
$slots: S;
|
|
2889
|
+
};
|
|
2890
|
+
};
|
|
2891
|
+
|
|
2892
|
+
declare type __VLS_WithTemplateSlots_26<T, S> = T & {
|
|
2893
|
+
new (): {
|
|
2894
|
+
$slots: S;
|
|
2895
|
+
};
|
|
2896
|
+
};
|
|
2897
|
+
|
|
2898
|
+
declare type __VLS_WithTemplateSlots_27<T, S> = T & {
|
|
2899
|
+
new (): {
|
|
2900
|
+
$slots: S;
|
|
2901
|
+
};
|
|
2902
|
+
};
|
|
2903
|
+
|
|
2904
|
+
declare type __VLS_WithTemplateSlots_28<T, S> = T & {
|
|
2905
|
+
new (): {
|
|
2906
|
+
$slots: S;
|
|
2907
|
+
};
|
|
2908
|
+
};
|
|
2909
|
+
|
|
2910
|
+
declare type __VLS_WithTemplateSlots_29<T, S> = T & {
|
|
2911
|
+
new (): {
|
|
2912
|
+
$slots: S;
|
|
2913
|
+
};
|
|
2914
|
+
};
|
|
2915
|
+
|
|
2321
2916
|
declare type __VLS_WithTemplateSlots_3<T, S> = T & {
|
|
2322
2917
|
new (): {
|
|
2323
2918
|
$slots: S;
|
|
@@ -2449,9 +3044,9 @@ export declare const MAccordionListItem: __VLS_WithTemplateSlots_2<typeof __VLS_
|
|
|
2449
3044
|
|
|
2450
3045
|
export declare const MActionBottomBar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
|
|
2451
3046
|
|
|
2452
|
-
export declare const MActionListbox:
|
|
3047
|
+
export declare const MActionListbox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
2453
3048
|
|
|
2454
|
-
export declare const MAvatar:
|
|
3049
|
+
export declare const MAvatar: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
|
|
2455
3050
|
|
|
2456
3051
|
export declare const MBreadcrumb: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2457
3052
|
|
|
@@ -2461,11 +3056,11 @@ export declare const MBuiltInMenu: DefineComponent<__VLS_Props_7, {}, {}, {}, {}
|
|
|
2461
3056
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2462
3057
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2463
3058
|
|
|
2464
|
-
export declare const MButton:
|
|
3059
|
+
export declare const MButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
|
|
2465
3060
|
|
|
2466
|
-
export declare const MCallout:
|
|
3061
|
+
export declare const MCallout: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2467
3062
|
|
|
2468
|
-
export declare const MCarousel:
|
|
3063
|
+
export declare const MCarousel: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
|
|
2469
3064
|
|
|
2470
3065
|
export declare const MCheckbox: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2471
3066
|
"update:modelValue": (value: boolean) => any;
|
|
@@ -2490,7 +3085,7 @@ type: "percentage" | "content";
|
|
|
2490
3085
|
value: number;
|
|
2491
3086
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2492
3087
|
|
|
2493
|
-
export declare const MContainer:
|
|
3088
|
+
export declare const MContainer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
2494
3089
|
|
|
2495
3090
|
export declare const MDatepicker: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2496
3091
|
"update:modelValue": (value: string | number) => any;
|
|
@@ -2501,9 +3096,9 @@ size: "s" | "m";
|
|
|
2501
3096
|
clearLabel: string;
|
|
2502
3097
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2503
3098
|
|
|
2504
|
-
export declare const MDivider:
|
|
3099
|
+
export declare const MDivider: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2505
3100
|
|
|
2506
|
-
export declare const MDrawer:
|
|
3101
|
+
export declare const MDrawer: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
2507
3102
|
|
|
2508
3103
|
/**
|
|
2509
3104
|
* 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.
|
|
@@ -2516,15 +3111,15 @@ declare type MenuItem = {
|
|
|
2516
3111
|
target?: '_self' | '_blank' | '_parent' | '_top';
|
|
2517
3112
|
};
|
|
2518
3113
|
|
|
2519
|
-
export declare const MField:
|
|
3114
|
+
export declare const MField: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
2520
3115
|
|
|
2521
|
-
export declare const MFieldGroup:
|
|
3116
|
+
export declare const MFieldGroup: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
2522
3117
|
|
|
2523
|
-
export declare const MFileUploader:
|
|
3118
|
+
export declare const MFileUploader: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2524
3119
|
|
|
2525
3120
|
export declare const MFlag: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2526
3121
|
|
|
2527
|
-
export declare const MIconButton:
|
|
3122
|
+
export declare const MIconButton: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2528
3123
|
|
|
2529
3124
|
export declare const MKpiItem: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
|
|
2530
3125
|
size: "s" | "m" | "l";
|
|
@@ -2539,7 +3134,7 @@ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_2
|
|
|
2539
3134
|
value: number;
|
|
2540
3135
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2541
3136
|
|
|
2542
|
-
export declare const MLink:
|
|
3137
|
+
export declare const MLink: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2543
3138
|
|
|
2544
3139
|
export declare const MLoader: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
|
|
2545
3140
|
appearance: "standard" | "accent" | "inverse";
|
|
@@ -2548,24 +3143,37 @@ size: "xs" | "s" | "m" | "l";
|
|
|
2548
3143
|
|
|
2549
3144
|
export declare const MLoadingOverlay: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2550
3145
|
|
|
2551
|
-
export declare const MModal:
|
|
3146
|
+
export declare const MModal: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
3147
|
+
|
|
3148
|
+
export declare const MNavigationIndicator: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
3149
|
+
"update:modelValue": (value: number) => any;
|
|
3150
|
+
action: () => any;
|
|
3151
|
+
}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
|
|
3152
|
+
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
3153
|
+
onAction?: (() => any) | undefined;
|
|
3154
|
+
}>, {
|
|
3155
|
+
action: "pause" | "resume";
|
|
3156
|
+
player: boolean;
|
|
3157
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2552
3158
|
|
|
2553
|
-
export declare const MNumberBadge: DefineComponent<
|
|
3159
|
+
export declare const MNumberBadge: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
|
|
2554
3160
|
appearance: "danger" | "accent" | "inverse" | "standard";
|
|
2555
3161
|
size: "s" | "m";
|
|
2556
3162
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2557
3163
|
|
|
2558
|
-
export declare const MOverlay:
|
|
3164
|
+
export declare const MOverlay: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
|
|
3165
|
+
|
|
3166
|
+
export declare const MPageHeader: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
|
|
2559
3167
|
|
|
2560
|
-
export declare const MPagination: DefineComponent<
|
|
3168
|
+
export declare const MPagination: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2561
3169
|
"update:modelValue": (value: number) => any;
|
|
2562
|
-
}, string, PublicProps, Readonly<
|
|
3170
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
2563
3171
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2564
3172
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2565
3173
|
|
|
2566
|
-
export declare const MPasswordInput: DefineComponent<
|
|
3174
|
+
export declare const MPasswordInput: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2567
3175
|
"update:modelValue": (value: string | number) => any;
|
|
2568
|
-
}, string, PublicProps, Readonly<
|
|
3176
|
+
}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
|
|
2569
3177
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2570
3178
|
}>, {
|
|
2571
3179
|
clearLabel: string;
|
|
@@ -2658,10 +3266,10 @@ icon?: VNode;
|
|
|
2658
3266
|
}) | null;
|
|
2659
3267
|
}, any>;
|
|
2660
3268
|
|
|
2661
|
-
export declare const MPhoneNumber: DefineComponent<
|
|
3269
|
+
export declare const MPhoneNumber: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2662
3270
|
"update:modelValue": (value: string) => any;
|
|
2663
3271
|
valid: (isValid: boolean) => any;
|
|
2664
|
-
}, string, PublicProps, Readonly<
|
|
3272
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
2665
3273
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2666
3274
|
onValid?: ((isValid: boolean) => any) | undefined;
|
|
2667
3275
|
}>, {
|
|
@@ -2673,17 +3281,19 @@ flag: boolean;
|
|
|
2673
3281
|
locale: string;
|
|
2674
3282
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2675
3283
|
|
|
2676
|
-
export declare const MPincode: DefineComponent<
|
|
3284
|
+
export declare const MPincode: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2677
3285
|
"update:modelValue": (value: string) => any;
|
|
2678
|
-
}, string, PublicProps, Readonly<
|
|
3286
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
2679
3287
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2680
3288
|
}>, {
|
|
2681
3289
|
length: 4 | 5 | 6;
|
|
2682
3290
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2683
3291
|
|
|
2684
|
-
export declare const
|
|
3292
|
+
export declare const MPopover: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
|
|
3293
|
+
|
|
3294
|
+
export declare const MQuantitySelector: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2685
3295
|
"update:modelValue": (value: number) => any;
|
|
2686
|
-
}, string, PublicProps, Readonly<
|
|
3296
|
+
}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
|
|
2687
3297
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2688
3298
|
}>, {
|
|
2689
3299
|
modelValue: number;
|
|
@@ -2696,35 +3306,37 @@ incrementlabel: string;
|
|
|
2696
3306
|
decrementLabel: string;
|
|
2697
3307
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2698
3308
|
|
|
2699
|
-
export declare const MRadio: DefineComponent<
|
|
3309
|
+
export declare const MRadio: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2700
3310
|
"update:modelValue": (value: boolean) => any;
|
|
2701
|
-
}, string, PublicProps, Readonly<
|
|
3311
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
2702
3312
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2703
3313
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2704
3314
|
|
|
2705
|
-
export declare const MRadioGroup: DefineComponent<
|
|
3315
|
+
export declare const MRadioGroup: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2706
3316
|
"update:modelValue": (value: string) => any;
|
|
2707
|
-
}, string, PublicProps, Readonly<
|
|
3317
|
+
}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
|
|
2708
3318
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
2709
3319
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2710
3320
|
|
|
2711
|
-
export declare const MSegmentedControl: DefineComponent<
|
|
3321
|
+
export declare const MSegmentedControl: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2712
3322
|
"update:modelValue": (value: number) => any;
|
|
2713
|
-
}, string, PublicProps, Readonly<
|
|
3323
|
+
}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
|
|
2714
3324
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2715
3325
|
}>, {
|
|
2716
3326
|
modelValue: number;
|
|
2717
3327
|
size: "s" | "m";
|
|
2718
3328
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2719
3329
|
|
|
2720
|
-
export declare const MSelect: DefineComponent<
|
|
3330
|
+
export declare const MSelect: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2721
3331
|
"update:modelValue": (value: string | number) => any;
|
|
2722
|
-
}, string, PublicProps, Readonly<
|
|
3332
|
+
}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
|
|
2723
3333
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2724
3334
|
}>, {
|
|
2725
3335
|
size: "s" | "m";
|
|
2726
3336
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2727
3337
|
|
|
3338
|
+
export declare const MSidebar: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
|
|
3339
|
+
|
|
2728
3340
|
export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2729
3341
|
"update:modelValue": (value: number) => any;
|
|
2730
3342
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
@@ -2736,25 +3348,25 @@ readonly: boolean;
|
|
|
2736
3348
|
compact: boolean;
|
|
2737
3349
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2738
3350
|
|
|
2739
|
-
export declare const MStatusBadge: DefineComponent<
|
|
3351
|
+
export declare const MStatusBadge: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {
|
|
2740
3352
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2741
3353
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2742
3354
|
|
|
2743
|
-
export declare const MStatusDot: DefineComponent<
|
|
3355
|
+
export declare const MStatusDot: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {
|
|
2744
3356
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
2745
3357
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
2746
3358
|
|
|
2747
|
-
export declare const MStatusMessage: DefineComponent<
|
|
3359
|
+
export declare const MStatusMessage: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {
|
|
2748
3360
|
status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
|
|
2749
3361
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2750
3362
|
|
|
2751
|
-
export declare const MStatusNotification:
|
|
3363
|
+
export declare const MStatusNotification: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
|
|
2752
3364
|
|
|
2753
|
-
export declare const MStepperBottomBar: DefineComponent<
|
|
3365
|
+
export declare const MStepperBottomBar: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2754
3366
|
"update:modelValue": (value: number) => any;
|
|
2755
3367
|
cancel: () => any;
|
|
2756
3368
|
validate: () => any;
|
|
2757
|
-
}, string, PublicProps, Readonly<
|
|
3369
|
+
}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
|
|
2758
3370
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2759
3371
|
onCancel?: (() => any) | undefined;
|
|
2760
3372
|
onValidate?: (() => any) | undefined;
|
|
@@ -2768,12 +3380,12 @@ nextLabel: string;
|
|
|
2768
3380
|
validateLabel: string;
|
|
2769
3381
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2770
3382
|
|
|
2771
|
-
export declare const MStepperCompact: DefineComponent<
|
|
3383
|
+
export declare const MStepperCompact: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{}>, {
|
|
2772
3384
|
value: number;
|
|
2773
3385
|
maxSteps: number;
|
|
2774
3386
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2775
3387
|
|
|
2776
|
-
export declare const MStepperInline: DefineComponent<
|
|
3388
|
+
export declare const MStepperInline: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{}>, {
|
|
2777
3389
|
steps: Array<{
|
|
2778
3390
|
/**
|
|
2779
3391
|
* Label of the step.
|
|
@@ -2787,9 +3399,9 @@ additionalInfo?: string;
|
|
|
2787
3399
|
currentStep: number;
|
|
2788
3400
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
2789
3401
|
|
|
2790
|
-
export declare const MTabs: DefineComponent<
|
|
3402
|
+
export declare const MTabs: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2791
3403
|
"update:modelValue": (value: number) => any;
|
|
2792
|
-
}, string, PublicProps, Readonly<
|
|
3404
|
+
}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
|
|
2793
3405
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
2794
3406
|
}>, {
|
|
2795
3407
|
modelValue: number;
|
|
@@ -2798,10 +3410,10 @@ divider: boolean;
|
|
|
2798
3410
|
tab: HTMLButtonElement;
|
|
2799
3411
|
}, HTMLElement>;
|
|
2800
3412
|
|
|
2801
|
-
export declare const MTag: DefineComponent<
|
|
3413
|
+
export declare const MTag: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2802
3414
|
"update:modelValue": (value: boolean) => any;
|
|
2803
3415
|
"remove-tag": (id: string) => any;
|
|
2804
|
-
}, string, PublicProps, Readonly<
|
|
3416
|
+
}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{
|
|
2805
3417
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2806
3418
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
2807
3419
|
}>, {
|
|
@@ -2810,33 +3422,41 @@ contextualisedNumber: number;
|
|
|
2810
3422
|
removableLabel: string;
|
|
2811
3423
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2812
3424
|
|
|
2813
|
-
export declare const MTextArea: DefineComponent<
|
|
3425
|
+
export declare const MTextArea: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2814
3426
|
"update:modelValue": (value: string | number) => any;
|
|
2815
|
-
}, string, PublicProps, Readonly<
|
|
3427
|
+
}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{
|
|
2816
3428
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
2817
3429
|
}>, {
|
|
2818
3430
|
rows: number;
|
|
2819
3431
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2820
3432
|
|
|
2821
|
-
export declare const MTextInput:
|
|
3433
|
+
export declare const MTextInput: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
3434
|
+
|
|
3435
|
+
export declare const MTile: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
|
|
3436
|
+
|
|
3437
|
+
export declare const MTileClickable: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
|
|
2822
3438
|
|
|
2823
|
-
export declare const
|
|
3439
|
+
export declare const MTileExpandable: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
|
|
2824
3440
|
|
|
2825
|
-
export declare const
|
|
3441
|
+
export declare const MTileSelectable: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
|
|
3442
|
+
|
|
3443
|
+
export declare const MToaster: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
3444
|
+
|
|
3445
|
+
export declare const MToggle: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2826
3446
|
"update:modelValue": (value: boolean) => any;
|
|
2827
|
-
}, string, PublicProps, Readonly<
|
|
3447
|
+
}, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
|
|
2828
3448
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
2829
3449
|
}>, {
|
|
2830
3450
|
size: "s" | "m";
|
|
2831
3451
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2832
3452
|
|
|
2833
|
-
export declare const MToggleGroup: DefineComponent<
|
|
3453
|
+
export declare const MToggleGroup: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
2834
3454
|
"update:modelValue": (value: string[]) => any;
|
|
2835
|
-
}, string, PublicProps, Readonly<
|
|
3455
|
+
}, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
|
|
2836
3456
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
2837
3457
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
2838
3458
|
|
|
2839
|
-
export declare const MTooltip:
|
|
3459
|
+
export declare const MTooltip: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
|
|
2840
3460
|
|
|
2841
3461
|
declare type NormalizedFile = {
|
|
2842
3462
|
name: string;
|