@mozaic-ds/vue 2.19.1 → 2.20.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 +512 -296
- package/dist/mozaic-vue.js +1952 -1678
- package/dist/mozaic-vue.js.map +1 -1
- package/dist/mozaic-vue.umd.cjs +6 -6
- package/dist/mozaic-vue.umd.cjs.map +1 -1
- package/package.json +6 -3
- package/src/components/Catalog.scss +84 -0
- package/src/components/Catalog.stories.ts +146 -0
- package/src/components/GettingStarted.mdx +258 -2
- package/src/components/Migration.mdx +4135 -532
- package/src/components/Welcome.mdx +1 -1
- package/src/components/carousel/MCarousel.spec.ts +174 -55
- package/src/components/carousel/MCarousel.vue +106 -33
- package/src/components/checkboxgroup/MCheckboxGroup.vue +2 -9
- package/src/components/combobox/MCombobox.spec.ts +144 -0
- package/src/components/combobox/MCombobox.stories.ts +2 -1
- package/src/components/combobox/MCombobox.vue +68 -38
- package/src/components/combobox/README.md +6 -0
- package/src/components/datatable/DataTable.stories.ts +2 -2
- package/src/components/datatable/DataTableCells.stories.ts +1 -0
- package/src/components/datatable/DataTableEmpty.stories.ts +1 -0
- package/src/components/datatable/DataTableExpandable.stories.ts +1 -0
- package/src/components/datatable/DataTableNested.stories.ts +1 -0
- package/src/components/datatable/DataTablePageable.stories.ts +194 -0
- package/src/components/datatable/DataTableSelectable.stories.ts +1 -0
- package/src/components/datatable/DataTableSortable.stories.ts +1 -0
- package/src/components/datepicker/MDatepicker.stories.ts +2 -0
- package/src/components/datepicker/MDatepicker.vue +17 -11
- package/src/components/divider/README.md +2 -0
- package/src/components/drawer/MDrawer.vue +7 -5
- package/src/components/link/MLink.stories.ts +18 -0
- package/src/components/link/MLink.vue +20 -4
- package/src/components/link/README.md +2 -1
- package/src/components/optionListbox/MOptionListbox.spec.ts +78 -1
- package/src/components/optionListbox/MOptionListbox.types.ts +7 -0
- package/src/components/optionListbox/MOptionListbox.vue +31 -217
- package/src/components/optionListbox/README.md +2 -0
- package/src/components/optionListbox/use-listbox-navigation.composable.ts +147 -0
- package/src/components/optionListbox/use-listbox-selection.composable.ts +149 -0
- package/src/components/pageheader/MPageHeader.spec.ts +17 -3
- package/src/components/pageheader/MPageHeader.stories.ts +37 -41
- package/src/components/pageheader/MPageHeader.vue +26 -16
- package/src/components/pageheader/README.md +2 -1
- package/src/components/pageheadercontext/MPageHeaderContext.spec.ts +155 -0
- package/src/components/pageheadercontext/MPageHeaderContext.vue +126 -0
- package/src/components/pageheadercontext/README.md +33 -0
- package/src/components/pageheaderfeature/MPageHeaderFeature.spec.ts +39 -0
- package/src/components/pageheaderfeature/MPageHeaderFeature.vue +40 -0
- package/src/components/pageheaderfeature/README.md +17 -0
- package/src/components/radiogroup/MRadioGroup.stories.ts +6 -0
- package/src/components/radiogroup/MRadioGroup.vue +2 -9
- package/src/components/sidebar/MSidebar.const.ts +2 -0
- package/src/components/sidebar/MSidebar.stories.ts +33 -0
- package/src/components/sidebar/MSidebar.vue +10 -1
- package/src/components/sidebar/README.md +1 -0
- package/src/components/sidebar/stories/DefaultCase.stories.vue +12 -11
- package/src/components/sidebar/use-floating-item.composable.ts +1 -1
- package/src/components/sidebarexpandableitem/MSidebarExpandableItem.vue +13 -7
- package/src/components/sidebarexpandableitem/README.md +2 -1
- package/src/components/sidebarfooter/MSidebarFooter.vue +16 -9
- package/src/components/sidebarfooter/_MSidebarFooterMenu.vue +10 -2
- package/src/components/sidebarnavitem/MSidebarNavItem.vue +36 -5
- package/src/components/sidebarnavitem/README.md +1 -0
- package/src/components/sidebarshortcutitem/MSidebarShortcutItem.vue +24 -3
- package/src/components/sidebarshortcutitem/README.md +3 -1
- package/src/components/sidebarshortcuts/MSidebarShortcuts.vue +6 -1
- package/src/components/sidebarshortcuts/README.md +12 -0
- package/src/components/statusbadge/MStatusBadge.stories.ts +5 -1
- package/src/components/statusbadge/MStatusBadge.vue +7 -1
- package/src/components/statusbadge/MstatusBadge.spec.ts +31 -0
- package/src/components/statusbadge/README.md +1 -0
- package/src/components/statusmessage/MStatusMessage.spec.ts +4 -4
- package/src/components/statusmessage/MStatusMessage.vue +5 -10
- package/src/components/statusnotification/MStatusNotification.spec.ts +9 -9
- package/src/components/statusnotification/MStatusNotification.vue +9 -8
- package/src/components/tabs/MTabs.stories.ts +30 -1
- package/src/components/tabs/MTabs.vue +12 -3
- package/src/components/tabs/Mtabs.spec.ts +19 -0
- package/src/components/tabs/README.md +1 -0
- package/src/components/tileselectable/MTileSelectable.spec.ts +69 -0
- package/src/components/tileselectable/MTileSelectable.stories.ts +8 -2
- package/src/components/tileselectable/MTileSelectable.vue +18 -1
- package/src/components/tileselectable/README.md +1 -0
- package/src/main.ts +3 -0
- package/src/utils/debounce.ts +15 -0
- package/src/components/BrandPresets.mdx +0 -146
- package/src/components/DarkMode.mdx +0 -115
package/dist/mozaic-vue.d.ts
CHANGED
|
@@ -4,6 +4,8 @@ import { ComponentProvideOptions } from 'vue';
|
|
|
4
4
|
import { CountryCode } from 'libphonenumber-js';
|
|
5
5
|
import { DefineComponent } from 'vue';
|
|
6
6
|
import { PublicProps } from 'vue';
|
|
7
|
+
import { Ref } from 'vue';
|
|
8
|
+
import { ShallowRef } from 'vue';
|
|
7
9
|
import { VNode } from 'vue';
|
|
8
10
|
|
|
9
11
|
declare const __VLS_base: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -67,7 +69,7 @@ declare const __VLS_base_17: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, Com
|
|
|
67
69
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
68
70
|
|
|
69
71
|
declare const __VLS_base_18: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
|
|
70
|
-
appearance: "secondary" | "accent" | "inverse" | "standard";
|
|
72
|
+
appearance: "primary" | "secondary" | "accent" | "inverse" | /** @deprecated Use 'primary' instead */ "standard";
|
|
71
73
|
size: "s" | "m";
|
|
72
74
|
iconPosition: "left" | "right";
|
|
73
75
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -85,17 +87,37 @@ declare const __VLS_base_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, Compo
|
|
|
85
87
|
tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
|
|
86
88
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
87
89
|
|
|
88
|
-
declare const __VLS_base_20: DefineComponent<__VLS_Props_34, {
|
|
90
|
+
declare const __VLS_base_20: DefineComponent<__VLS_Props_34, {
|
|
91
|
+
handleKeydown: (event: KeyboardEvent) => void;
|
|
92
|
+
toggleValue: (item?: ListboxOption) => void;
|
|
93
|
+
clearSelection: () => void;
|
|
94
|
+
listboxEl: Readonly< ShallowRef<HTMLDivElement | null, HTMLDivElement | null>>;
|
|
95
|
+
activeIndex: Ref<number, number>;
|
|
96
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
97
|
+
"update:modelValue": (value: string | number | (string | number)[] | null) => any;
|
|
98
|
+
open: () => any;
|
|
99
|
+
close: () => any;
|
|
100
|
+
}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
|
|
101
|
+
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
|
|
102
|
+
onOpen?: (() => any) | undefined;
|
|
103
|
+
onClose?: (() => any) | undefined;
|
|
104
|
+
}>, {
|
|
105
|
+
clearLabel: string;
|
|
106
|
+
searchPlaceholder: string;
|
|
107
|
+
selectLabel: string;
|
|
108
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
109
|
+
|
|
110
|
+
declare const __VLS_base_21: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
89
111
|
|
|
90
|
-
declare const
|
|
112
|
+
declare const __VLS_base_22: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
91
113
|
back: () => any;
|
|
92
114
|
"toggle-menu": () => any;
|
|
93
|
-
}, string, PublicProps, Readonly<
|
|
115
|
+
}, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
|
|
94
116
|
onBack?: (() => any) | undefined;
|
|
95
117
|
"onToggle-menu"?: (() => any) | undefined;
|
|
96
118
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
97
119
|
|
|
98
|
-
declare const
|
|
120
|
+
declare const __VLS_base_23: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{}>, {
|
|
99
121
|
appearance: "standard" | "inverse";
|
|
100
122
|
size: "s" | "m" | "l";
|
|
101
123
|
position: "top" | "right" | "bottom" | "left";
|
|
@@ -103,39 +125,39 @@ declare const __VLS_base_22: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, Com
|
|
|
103
125
|
pointer: boolean;
|
|
104
126
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
105
127
|
|
|
106
|
-
declare const
|
|
128
|
+
declare const __VLS_base_24: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
107
129
|
"update:modelValue": (value: boolean) => any;
|
|
108
130
|
close: () => any;
|
|
109
|
-
}, string, PublicProps, Readonly<
|
|
131
|
+
}, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
|
|
110
132
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
111
133
|
onClose?: (() => any) | undefined;
|
|
112
134
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
113
135
|
|
|
114
|
-
declare const
|
|
136
|
+
declare const __VLS_base_25: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
115
137
|
|
|
116
|
-
declare const
|
|
138
|
+
declare const __VLS_base_26: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
117
139
|
"log-out": () => any;
|
|
118
|
-
}, string, PublicProps, Readonly<
|
|
140
|
+
}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
|
|
119
141
|
"onLog-out"?: (() => any) | undefined;
|
|
120
142
|
}>, {
|
|
121
143
|
logOutLabel: string;
|
|
122
144
|
expendable: boolean;
|
|
123
145
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
124
146
|
|
|
125
|
-
declare const
|
|
147
|
+
declare const __VLS_base_27: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
126
148
|
|
|
127
|
-
declare const
|
|
149
|
+
declare const __VLS_base_28: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
128
150
|
close: () => any;
|
|
129
|
-
}, string, PublicProps, Readonly<
|
|
151
|
+
}, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{
|
|
130
152
|
onClose?: (() => any) | undefined;
|
|
131
153
|
}>, {
|
|
132
154
|
status: "info" | "success" | "warning" | "error";
|
|
133
155
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
134
156
|
|
|
135
|
-
declare const
|
|
157
|
+
declare const __VLS_base_29: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
136
158
|
"update:modelValue": (value: boolean) => any;
|
|
137
159
|
"remove-tag": (id: string) => any;
|
|
138
|
-
}, string, PublicProps, Readonly<
|
|
160
|
+
}, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{
|
|
139
161
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
140
162
|
"onRemove-tag"?: ((id: string) => any) | undefined;
|
|
141
163
|
}>, {
|
|
@@ -144,11 +166,13 @@ declare const __VLS_base_28: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, Com
|
|
|
144
166
|
removableLabel: string;
|
|
145
167
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
146
168
|
|
|
147
|
-
declare const
|
|
169
|
+
declare const __VLS_base_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
170
|
+
|
|
171
|
+
declare const __VLS_base_30: DefineComponent<__VLS_Props_68, {
|
|
148
172
|
focus: typeof focus_2;
|
|
149
173
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
150
174
|
"update:modelValue": (value: string | number) => any;
|
|
151
|
-
}, string, PublicProps, Readonly<
|
|
175
|
+
}, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{
|
|
152
176
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
153
177
|
}>, {
|
|
154
178
|
size: "s" | "m";
|
|
@@ -156,16 +180,14 @@ declare const __VLS_base_29: DefineComponent<__VLS_Props_65, {
|
|
|
156
180
|
clearLabel: string;
|
|
157
181
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
158
182
|
|
|
159
|
-
declare const
|
|
160
|
-
|
|
161
|
-
declare const __VLS_base_30: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{}>, {
|
|
183
|
+
declare const __VLS_base_31: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{}>, {
|
|
162
184
|
appearance: "primary" | "secondary" | "inverse";
|
|
163
185
|
bordered: boolean;
|
|
164
186
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
165
187
|
|
|
166
|
-
declare const
|
|
188
|
+
declare const __VLS_base_32: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
167
189
|
action: () => any;
|
|
168
|
-
}, string, PublicProps, Readonly<
|
|
190
|
+
}, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
|
|
169
191
|
onAction?: (() => any) | undefined;
|
|
170
192
|
}>, {
|
|
171
193
|
appearance: "primary" | "secondary" | "inverse";
|
|
@@ -173,16 +195,16 @@ declare const __VLS_base_31: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, Com
|
|
|
173
195
|
bordered: boolean;
|
|
174
196
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
175
197
|
|
|
176
|
-
declare const
|
|
198
|
+
declare const __VLS_base_33: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{}>, {
|
|
177
199
|
appearance: "primary" | "secondary";
|
|
178
200
|
label: string;
|
|
179
201
|
trigger: "container" | "icon" | "button";
|
|
180
202
|
bordered: boolean;
|
|
181
203
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
182
204
|
|
|
183
|
-
declare const
|
|
205
|
+
declare const __VLS_base_34: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
184
206
|
"update:modelValue": (value: boolean) => any;
|
|
185
|
-
}, string, PublicProps, Readonly<
|
|
207
|
+
}, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{
|
|
186
208
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
187
209
|
}>, {
|
|
188
210
|
inputType: "checkbox" | "radio";
|
|
@@ -190,16 +212,16 @@ declare const __VLS_base_33: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, Com
|
|
|
190
212
|
inputPosition: "left" | "right";
|
|
191
213
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
192
214
|
|
|
193
|
-
declare const
|
|
215
|
+
declare const __VLS_base_35: DefineComponent<__VLS_Props_73, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
194
216
|
"update:open": (value: boolean) => any;
|
|
195
|
-
}, string, PublicProps, Readonly<
|
|
217
|
+
}, string, PublicProps, Readonly<__VLS_Props_73> & Readonly<{
|
|
196
218
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
197
219
|
}>, {
|
|
198
220
|
status: "info" | "success" | "warning" | "error";
|
|
199
221
|
closable: boolean;
|
|
200
222
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
201
223
|
|
|
202
|
-
declare const
|
|
224
|
+
declare const __VLS_base_36: DefineComponent<__VLS_Props_76, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_76> & Readonly<{}>, {
|
|
203
225
|
position: "top" | "bottom" | "left" | "right";
|
|
204
226
|
pointer: boolean;
|
|
205
227
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -242,10 +264,13 @@ declare const __VLS_base_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, Comp
|
|
|
242
264
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
243
265
|
}>, {
|
|
244
266
|
size: "s" | "m";
|
|
267
|
+
open: boolean;
|
|
245
268
|
placeholder: string;
|
|
246
269
|
clearLabel: string;
|
|
247
270
|
searchPlaceholder: string;
|
|
248
271
|
selectLabel: string;
|
|
272
|
+
controlAriaLabel: string;
|
|
273
|
+
clearAriaLabel: string;
|
|
249
274
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
250
275
|
|
|
251
276
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -352,15 +377,34 @@ declare const __VLS_export_35: __VLS_WithSlots_20<typeof __VLS_base_20, __VLS_Sl
|
|
|
352
377
|
|
|
353
378
|
declare const __VLS_export_36: __VLS_WithSlots_21<typeof __VLS_base_21, __VLS_Slots_21>;
|
|
354
379
|
|
|
355
|
-
declare const __VLS_export_37:
|
|
380
|
+
declare const __VLS_export_37: __VLS_WithSlots_22<typeof __VLS_base_22, __VLS_Slots_22>;
|
|
381
|
+
|
|
382
|
+
declare const __VLS_export_38: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
383
|
+
"update:modelValue": (value: string | number | (string | number)[] | null) => any;
|
|
384
|
+
}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
|
|
385
|
+
"onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
|
|
386
|
+
}>, {
|
|
387
|
+
multiple: boolean;
|
|
388
|
+
label: string;
|
|
389
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
390
|
+
|
|
391
|
+
declare const __VLS_export_39: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
392
|
+
action: () => any;
|
|
393
|
+
}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
|
|
394
|
+
onAction?: (() => any) | undefined;
|
|
395
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
396
|
+
|
|
397
|
+
declare const __VLS_export_4: __VLS_WithSlots_4<typeof __VLS_base_4, __VLS_Slots_4>;
|
|
398
|
+
|
|
399
|
+
declare const __VLS_export_40: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
356
400
|
"update:modelValue": (value: number) => any;
|
|
357
|
-
}, string, PublicProps, Readonly<
|
|
401
|
+
}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
|
|
358
402
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
359
403
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
360
404
|
|
|
361
|
-
declare const
|
|
405
|
+
declare const __VLS_export_41: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
362
406
|
"update:modelValue": (value: string | number) => any;
|
|
363
|
-
}, string, PublicProps, Readonly<
|
|
407
|
+
}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
|
|
364
408
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
365
409
|
}>, {
|
|
366
410
|
clearLabel: string;
|
|
@@ -370,10 +414,10 @@ declare const __VLS_export_38: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, C
|
|
|
370
414
|
};
|
|
371
415
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
372
416
|
|
|
373
|
-
declare const
|
|
417
|
+
declare const __VLS_export_42: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
374
418
|
"update:modelValue": (value: string) => any;
|
|
375
419
|
valid: (isValid: boolean) => any;
|
|
376
|
-
}, string, PublicProps, Readonly<
|
|
420
|
+
}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
|
|
377
421
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
378
422
|
onValid?: ((isValid: boolean) => any) | undefined;
|
|
379
423
|
}>, {
|
|
@@ -385,21 +429,19 @@ declare const __VLS_export_39: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, C
|
|
|
385
429
|
locale: string;
|
|
386
430
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
387
431
|
|
|
388
|
-
declare const
|
|
389
|
-
|
|
390
|
-
declare const __VLS_export_40: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
432
|
+
declare const __VLS_export_43: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
391
433
|
"update:modelValue": (value: string) => any;
|
|
392
|
-
}, string, PublicProps, Readonly<
|
|
434
|
+
}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
|
|
393
435
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
394
436
|
}>, {
|
|
395
437
|
length: 4 | 5 | 6;
|
|
396
438
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
397
439
|
|
|
398
|
-
declare const
|
|
440
|
+
declare const __VLS_export_44: __VLS_WithSlots_23<typeof __VLS_base_23, __VLS_Slots_23>;
|
|
399
441
|
|
|
400
|
-
declare const
|
|
442
|
+
declare const __VLS_export_45: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
401
443
|
"update:modelValue": (value: number) => any;
|
|
402
|
-
}, string, PublicProps, Readonly<
|
|
444
|
+
}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
|
|
403
445
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
404
446
|
}>, {
|
|
405
447
|
modelValue: number;
|
|
@@ -412,56 +454,56 @@ declare const __VLS_export_42: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, C
|
|
|
412
454
|
decrementLabel: string;
|
|
413
455
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
414
456
|
|
|
415
|
-
declare const
|
|
457
|
+
declare const __VLS_export_46: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
416
458
|
"update:modelValue": (value: boolean) => any;
|
|
417
|
-
}, string, PublicProps, Readonly<
|
|
459
|
+
}, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
|
|
418
460
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
419
461
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
420
462
|
|
|
421
|
-
declare const
|
|
463
|
+
declare const __VLS_export_47: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
422
464
|
"update:modelValue": (value: string) => any;
|
|
423
|
-
}, string, PublicProps, Readonly<
|
|
465
|
+
}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
|
|
424
466
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
425
467
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
426
468
|
|
|
427
|
-
declare const
|
|
469
|
+
declare const __VLS_export_48: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
428
470
|
"update:modelValue": (value?: string | number | undefined) => any;
|
|
429
|
-
}, string, PublicProps, Readonly<
|
|
471
|
+
}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
|
|
430
472
|
"onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
|
|
431
473
|
}>, {
|
|
432
474
|
modelValue: string | number;
|
|
433
475
|
size: "s" | "m";
|
|
434
476
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
435
477
|
|
|
436
|
-
declare const
|
|
478
|
+
declare const __VLS_export_49: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
437
479
|
"update:modelValue": (value: string | number) => any;
|
|
438
|
-
}, string, PublicProps, Readonly<
|
|
480
|
+
}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
|
|
439
481
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
440
482
|
}>, {
|
|
441
483
|
size: "s" | "m";
|
|
442
484
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
443
485
|
|
|
444
|
-
declare const
|
|
486
|
+
declare const __VLS_export_5: __VLS_WithSlots_5<typeof __VLS_base_5, __VLS_Slots_5>;
|
|
445
487
|
|
|
446
|
-
declare const
|
|
488
|
+
declare const __VLS_export_50: __VLS_WithSlots_24<typeof __VLS_base_24, __VLS_Slots_24>;
|
|
447
489
|
|
|
448
|
-
declare const
|
|
490
|
+
declare const __VLS_export_51: __VLS_WithSlots_25<typeof __VLS_base_25, __VLS_Slots_25>;
|
|
449
491
|
|
|
450
|
-
declare const
|
|
492
|
+
declare const __VLS_export_52: __VLS_WithSlots_26<typeof __VLS_base_26, __VLS_Slots_26>;
|
|
451
493
|
|
|
452
|
-
declare const
|
|
494
|
+
declare const __VLS_export_53: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
453
495
|
|
|
454
|
-
declare const
|
|
496
|
+
declare const __VLS_export_54: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
455
497
|
click: (value: MouseEvent) => any;
|
|
456
|
-
}, string, PublicProps, Readonly<
|
|
498
|
+
}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
|
|
457
499
|
onClick?: ((value: MouseEvent) => any) | undefined;
|
|
458
500
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
459
501
|
|
|
460
|
-
declare const
|
|
502
|
+
declare const __VLS_export_55: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
461
503
|
|
|
462
|
-
declare const
|
|
504
|
+
declare const __VLS_export_56: __VLS_WithSlots_27<typeof __VLS_base_27, __VLS_Slots_27>;
|
|
463
505
|
|
|
464
|
-
declare const
|
|
506
|
+
declare const __VLS_export_57: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
465
507
|
"update:modelValue": (value: number) => any;
|
|
466
508
|
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
467
509
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
@@ -472,26 +514,29 @@ declare const __VLS_export_54: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}
|
|
|
472
514
|
compact: boolean;
|
|
473
515
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
474
516
|
|
|
475
|
-
declare const
|
|
517
|
+
declare const __VLS_export_58: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{}>, {
|
|
518
|
+
size: "s" | "m";
|
|
476
519
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
477
520
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
478
521
|
|
|
479
|
-
declare const
|
|
522
|
+
declare const __VLS_export_59: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{}>, {
|
|
480
523
|
status: "info" | "success" | "warning" | "error" | "neutral";
|
|
481
524
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
482
525
|
|
|
483
|
-
declare const
|
|
526
|
+
declare const __VLS_export_6: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
527
|
+
|
|
528
|
+
declare const __VLS_export_60: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{}>, {
|
|
484
529
|
appearance: "standard" | "accent";
|
|
485
530
|
status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
|
|
486
531
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
487
532
|
|
|
488
|
-
declare const
|
|
533
|
+
declare const __VLS_export_61: __VLS_WithSlots_28<typeof __VLS_base_28, __VLS_Slots_28>;
|
|
489
534
|
|
|
490
|
-
declare const
|
|
535
|
+
declare const __VLS_export_62: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
491
536
|
"update:modelValue": (value: number) => any;
|
|
492
537
|
cancel: () => any;
|
|
493
538
|
validate: () => any;
|
|
494
|
-
}, string, PublicProps, Readonly<
|
|
539
|
+
}, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
|
|
495
540
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
496
541
|
onCancel?: (() => any) | undefined;
|
|
497
542
|
onValidate?: (() => any) | undefined;
|
|
@@ -505,14 +550,12 @@ declare const __VLS_export_59: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, C
|
|
|
505
550
|
validateLabel: string;
|
|
506
551
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
507
552
|
|
|
508
|
-
declare const
|
|
509
|
-
|
|
510
|
-
declare const __VLS_export_60: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{}>, {
|
|
553
|
+
declare const __VLS_export_63: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{}>, {
|
|
511
554
|
value: number;
|
|
512
555
|
maxSteps: number;
|
|
513
556
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
514
557
|
|
|
515
|
-
declare const
|
|
558
|
+
declare const __VLS_export_64: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{}>, {
|
|
516
559
|
steps: Array<{
|
|
517
560
|
/**
|
|
518
561
|
* Uniquer identifier for the step.
|
|
@@ -530,7 +573,7 @@ declare const __VLS_export_61: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, C
|
|
|
530
573
|
currentStep: string | number;
|
|
531
574
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
532
575
|
|
|
533
|
-
declare const
|
|
576
|
+
declare const __VLS_export_65: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{}>, {
|
|
534
577
|
steps: Array<{
|
|
535
578
|
/**
|
|
536
579
|
* Unique identifier for the step.
|
|
@@ -548,32 +591,27 @@ declare const __VLS_export_62: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, C
|
|
|
548
591
|
currentStep: string | number;
|
|
549
592
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
550
593
|
|
|
551
|
-
declare const
|
|
594
|
+
declare const __VLS_export_66: DefineComponent<__VLS_Props_65, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
552
595
|
"update:modelValue": (value?: string | number | undefined) => any;
|
|
553
|
-
}, string, PublicProps, Readonly<
|
|
596
|
+
}, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{
|
|
554
597
|
"onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
|
|
555
598
|
}>, {
|
|
556
599
|
modelValue: string | number;
|
|
600
|
+
size: "s" | "m";
|
|
557
601
|
divider: boolean;
|
|
558
602
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
559
603
|
|
|
560
|
-
declare const
|
|
604
|
+
declare const __VLS_export_67: __VLS_WithSlots_29<typeof __VLS_base_29, __VLS_Slots_29>;
|
|
561
605
|
|
|
562
|
-
declare const
|
|
606
|
+
declare const __VLS_export_68: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
563
607
|
"update:modelValue": (value: string | number) => any;
|
|
564
|
-
}, string, PublicProps, Readonly<
|
|
608
|
+
}, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{
|
|
565
609
|
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
566
610
|
}>, {
|
|
567
611
|
rows: number;
|
|
568
612
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
569
613
|
|
|
570
|
-
declare const
|
|
571
|
-
|
|
572
|
-
declare const __VLS_export_67: __VLS_WithSlots_30<typeof __VLS_base_30, __VLS_Slots_30>;
|
|
573
|
-
|
|
574
|
-
declare const __VLS_export_68: __VLS_WithSlots_31<typeof __VLS_base_31, __VLS_Slots_31>;
|
|
575
|
-
|
|
576
|
-
declare const __VLS_export_69: __VLS_WithSlots_32<typeof __VLS_base_32, __VLS_Slots_32>;
|
|
614
|
+
declare const __VLS_export_69: __VLS_WithSlots_30<typeof __VLS_base_30, __VLS_Slots_30>;
|
|
577
615
|
|
|
578
616
|
declare const __VLS_export_7: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
579
617
|
"update:modelValue": (value: number) => any;
|
|
@@ -583,25 +621,31 @@ declare const __VLS_export_7: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, Com
|
|
|
583
621
|
label: string;
|
|
584
622
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
585
623
|
|
|
586
|
-
declare const __VLS_export_70:
|
|
624
|
+
declare const __VLS_export_70: __VLS_WithSlots_31<typeof __VLS_base_31, __VLS_Slots_31>;
|
|
625
|
+
|
|
626
|
+
declare const __VLS_export_71: __VLS_WithSlots_32<typeof __VLS_base_32, __VLS_Slots_32>;
|
|
587
627
|
|
|
588
|
-
declare const
|
|
628
|
+
declare const __VLS_export_72: __VLS_WithSlots_33<typeof __VLS_base_33, __VLS_Slots_33>;
|
|
589
629
|
|
|
590
|
-
declare const
|
|
630
|
+
declare const __VLS_export_73: __VLS_WithSlots_34<typeof __VLS_base_34, __VLS_Slots_34>;
|
|
631
|
+
|
|
632
|
+
declare const __VLS_export_74: __VLS_WithSlots_35<typeof __VLS_base_35, __VLS_Slots_35>;
|
|
633
|
+
|
|
634
|
+
declare const __VLS_export_75: DefineComponent<__VLS_Props_74, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
591
635
|
"update:modelValue": (value: boolean) => any;
|
|
592
|
-
}, string, PublicProps, Readonly<
|
|
636
|
+
}, string, PublicProps, Readonly<__VLS_Props_74> & Readonly<{
|
|
593
637
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
594
638
|
}>, {
|
|
595
639
|
size: "s" | "m";
|
|
596
640
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
597
641
|
|
|
598
|
-
declare const
|
|
642
|
+
declare const __VLS_export_76: DefineComponent<__VLS_Props_75, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
599
643
|
"update:modelValue": (value: string[]) => any;
|
|
600
|
-
}, string, PublicProps, Readonly<
|
|
644
|
+
}, string, PublicProps, Readonly<__VLS_Props_75> & Readonly<{
|
|
601
645
|
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
602
646
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
603
647
|
|
|
604
|
-
declare const
|
|
648
|
+
declare const __VLS_export_77: __VLS_WithSlots_36<typeof __VLS_base_36, __VLS_Slots_36>;
|
|
605
649
|
|
|
606
650
|
declare const __VLS_export_8: __VLS_WithSlots_6<typeof __VLS_base_6, __VLS_Slots_6>;
|
|
607
651
|
|
|
@@ -830,6 +874,21 @@ declare type __VLS_Props_15 = {
|
|
|
830
874
|
* Array of options to display in the listbox.
|
|
831
875
|
*/
|
|
832
876
|
options: Array<ListboxOption>;
|
|
877
|
+
/**
|
|
878
|
+
* Accessible label for the combobox trigger button. Should describe what
|
|
879
|
+
* the combobox selects (e.g. "Select a country").
|
|
880
|
+
*/
|
|
881
|
+
controlAriaLabel?: string;
|
|
882
|
+
/**
|
|
883
|
+
* Accessible label for the clear selection button.
|
|
884
|
+
*/
|
|
885
|
+
clearAriaLabel?: string;
|
|
886
|
+
/**
|
|
887
|
+
* Controls the open state of the listbox. When provided, the component operates in controlled
|
|
888
|
+
* mode and delegates open/close decisions to the parent via `v-model:open`. When omitted, the
|
|
889
|
+
* component manages its own open state internally.
|
|
890
|
+
*/
|
|
891
|
+
open?: boolean;
|
|
833
892
|
};
|
|
834
893
|
|
|
835
894
|
/**
|
|
@@ -1193,8 +1252,9 @@ declare type __VLS_Props_28 = {
|
|
|
1193
1252
|
iconPosition?: 'left' | 'right';
|
|
1194
1253
|
/**
|
|
1195
1254
|
* Allows to define the link appearance.
|
|
1255
|
+
* `standard` value is deprecated and will be removed in the next major release. Use `primary` instead.
|
|
1196
1256
|
*/
|
|
1197
|
-
appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
|
|
1257
|
+
appearance?: 'primary' | 'secondary' | 'accent' | 'inverse' | /** @deprecated Use 'primary' instead */ 'standard';
|
|
1198
1258
|
/**
|
|
1199
1259
|
* Allows to define the link size.
|
|
1200
1260
|
*/
|
|
@@ -1334,9 +1394,63 @@ declare type __VLS_Props_33 = {
|
|
|
1334
1394
|
};
|
|
1335
1395
|
|
|
1336
1396
|
/**
|
|
1337
|
-
* An
|
|
1397
|
+
* An Option Listbox is a customizable, accessible listbox component designed to power dropdowns and comboboxes with advanced selection capabilities. It supports single or multiple selection, optional search, grouped options with section headers, and full keyboard navigation.
|
|
1338
1398
|
*/
|
|
1339
1399
|
declare type __VLS_Props_34 = {
|
|
1400
|
+
/**
|
|
1401
|
+
* The current selected value(s) of the listbox.
|
|
1402
|
+
*/
|
|
1403
|
+
modelValue: string | number | null | (string | number)[];
|
|
1404
|
+
/**
|
|
1405
|
+
* Unique identifier for the listbox.
|
|
1406
|
+
*/
|
|
1407
|
+
id: string;
|
|
1408
|
+
/**
|
|
1409
|
+
* Whether the listbox is open.
|
|
1410
|
+
*/
|
|
1411
|
+
open?: boolean;
|
|
1412
|
+
/**
|
|
1413
|
+
* Enable multiple selection.
|
|
1414
|
+
*/
|
|
1415
|
+
multiple?: boolean;
|
|
1416
|
+
/**
|
|
1417
|
+
* Make the listbox read-only.
|
|
1418
|
+
*/
|
|
1419
|
+
readonly?: boolean;
|
|
1420
|
+
/**
|
|
1421
|
+
* Show a search input above the options.
|
|
1422
|
+
*/
|
|
1423
|
+
search?: boolean;
|
|
1424
|
+
/**
|
|
1425
|
+
* Show select all / clear buttons when multiple.
|
|
1426
|
+
*/
|
|
1427
|
+
actions?: boolean;
|
|
1428
|
+
/**
|
|
1429
|
+
* Enable checkable section headers.
|
|
1430
|
+
*/
|
|
1431
|
+
checkableSections?: boolean;
|
|
1432
|
+
/**
|
|
1433
|
+
* Placeholder text for the search input.
|
|
1434
|
+
*/
|
|
1435
|
+
searchPlaceholder?: string;
|
|
1436
|
+
/**
|
|
1437
|
+
* Label for the "Select all" button.
|
|
1438
|
+
*/
|
|
1439
|
+
selectLabel?: string;
|
|
1440
|
+
/**
|
|
1441
|
+
* Label for the "Clear selection" button.
|
|
1442
|
+
*/
|
|
1443
|
+
clearLabel?: string;
|
|
1444
|
+
/**
|
|
1445
|
+
* Array of options and sections to display in the listbox.
|
|
1446
|
+
*/
|
|
1447
|
+
options: Array<ListboxOption>;
|
|
1448
|
+
};
|
|
1449
|
+
|
|
1450
|
+
/**
|
|
1451
|
+
* 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.
|
|
1452
|
+
*/
|
|
1453
|
+
declare type __VLS_Props_35 = {
|
|
1340
1454
|
/**
|
|
1341
1455
|
* Controls the visibility of the overlay.
|
|
1342
1456
|
*/
|
|
@@ -1350,7 +1464,7 @@ declare type __VLS_Props_34 = {
|
|
|
1350
1464
|
/**
|
|
1351
1465
|
* 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.
|
|
1352
1466
|
*/
|
|
1353
|
-
declare type
|
|
1467
|
+
declare type __VLS_Props_36 = {
|
|
1354
1468
|
/**
|
|
1355
1469
|
* Main title displayed in the page header.
|
|
1356
1470
|
*/
|
|
@@ -1377,10 +1491,56 @@ declare type __VLS_Props_35 = {
|
|
|
1377
1491
|
extraInfo?: string;
|
|
1378
1492
|
};
|
|
1379
1493
|
|
|
1494
|
+
/**
|
|
1495
|
+
* The Page Header Context component provides a compact context switcher integrated in the page header.
|
|
1496
|
+
* It allows selecting a single context or multiple contexts from a list of options.
|
|
1497
|
+
*/
|
|
1498
|
+
declare type __VLS_Props_37 = {
|
|
1499
|
+
/**
|
|
1500
|
+
* Current selected value.
|
|
1501
|
+
*/
|
|
1502
|
+
modelValue: string | number | null | (string | number)[];
|
|
1503
|
+
/**
|
|
1504
|
+
* Fallback label displayed when no option is selected, or main label in multiple mode.
|
|
1505
|
+
*/
|
|
1506
|
+
label?: string;
|
|
1507
|
+
/**
|
|
1508
|
+
* Enables multiple selection mode.
|
|
1509
|
+
*/
|
|
1510
|
+
multiple?: boolean;
|
|
1511
|
+
/**
|
|
1512
|
+
* Available options in the context switcher list.
|
|
1513
|
+
*/
|
|
1514
|
+
options: Array<{
|
|
1515
|
+
/**
|
|
1516
|
+
* Option label displayed in the list.
|
|
1517
|
+
*/
|
|
1518
|
+
label: string;
|
|
1519
|
+
/**
|
|
1520
|
+
* Option value emitted on selection.
|
|
1521
|
+
*/
|
|
1522
|
+
value: string | number;
|
|
1523
|
+
}>;
|
|
1524
|
+
};
|
|
1525
|
+
|
|
1526
|
+
/**
|
|
1527
|
+
* The Page Header Feature component renders a clickable feature item in the page header action area.
|
|
1528
|
+
*/
|
|
1529
|
+
declare type __VLS_Props_38 = {
|
|
1530
|
+
/**
|
|
1531
|
+
* Text label displayed for the feature item.
|
|
1532
|
+
*/
|
|
1533
|
+
label: string;
|
|
1534
|
+
/**
|
|
1535
|
+
* Icon component displayed next to the feature label.
|
|
1536
|
+
*/
|
|
1537
|
+
icon: Component;
|
|
1538
|
+
};
|
|
1539
|
+
|
|
1380
1540
|
/**
|
|
1381
1541
|
* 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.
|
|
1382
1542
|
*/
|
|
1383
|
-
declare type
|
|
1543
|
+
declare type __VLS_Props_39 = {
|
|
1384
1544
|
/**
|
|
1385
1545
|
* A unique identifier for the pagination.
|
|
1386
1546
|
*/
|
|
@@ -1407,10 +1567,53 @@ declare type __VLS_Props_36 = {
|
|
|
1407
1567
|
selectLabel?: string;
|
|
1408
1568
|
};
|
|
1409
1569
|
|
|
1570
|
+
/**
|
|
1571
|
+
* 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.
|
|
1572
|
+
*/
|
|
1573
|
+
declare type __VLS_Props_4 = {
|
|
1574
|
+
/**
|
|
1575
|
+
* title displayed in mobile version.
|
|
1576
|
+
*/
|
|
1577
|
+
title?: string;
|
|
1578
|
+
/**
|
|
1579
|
+
* Defines the position of the listbox relative to its trigger or container.
|
|
1580
|
+
*/
|
|
1581
|
+
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
1582
|
+
/**
|
|
1583
|
+
* An array of objects that allows you to provide all the data needed to generate the content for each item.
|
|
1584
|
+
*/
|
|
1585
|
+
items: Array<{
|
|
1586
|
+
/**
|
|
1587
|
+
* Unique identifier for the item.
|
|
1588
|
+
*/
|
|
1589
|
+
id?: string;
|
|
1590
|
+
/**
|
|
1591
|
+
* The icon displayed for the item from Mozaic-icon-vue.
|
|
1592
|
+
*/
|
|
1593
|
+
icon?: Component;
|
|
1594
|
+
/**
|
|
1595
|
+
* The label displayed for the item.
|
|
1596
|
+
*/
|
|
1597
|
+
label: string;
|
|
1598
|
+
/**
|
|
1599
|
+
* If `true`, the item will be disabled.
|
|
1600
|
+
*/
|
|
1601
|
+
disabled?: boolean;
|
|
1602
|
+
/**
|
|
1603
|
+
* Allows to define the item appearance.
|
|
1604
|
+
*/
|
|
1605
|
+
appearance?: 'standard' | 'danger';
|
|
1606
|
+
/**
|
|
1607
|
+
* Add a divider on top of the item.
|
|
1608
|
+
*/
|
|
1609
|
+
divider?: boolean;
|
|
1610
|
+
}>;
|
|
1611
|
+
};
|
|
1612
|
+
|
|
1410
1613
|
/**
|
|
1411
1614
|
* 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.
|
|
1412
1615
|
*/
|
|
1413
|
-
declare type
|
|
1616
|
+
declare type __VLS_Props_40 = {
|
|
1414
1617
|
/**
|
|
1415
1618
|
* A unique identifier for the password input element, used to associate the label with the form element.
|
|
1416
1619
|
*/
|
|
@@ -1459,7 +1662,7 @@ declare type __VLS_Props_37 = {
|
|
|
1459
1662
|
/**
|
|
1460
1663
|
* 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.
|
|
1461
1664
|
*/
|
|
1462
|
-
declare type
|
|
1665
|
+
declare type __VLS_Props_41 = {
|
|
1463
1666
|
/**
|
|
1464
1667
|
* A unique identifier for the phone number input element, used to associate the label with the form element.
|
|
1465
1668
|
*/
|
|
@@ -1513,7 +1716,7 @@ declare type __VLS_Props_38 = {
|
|
|
1513
1716
|
/**
|
|
1514
1717
|
* 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).
|
|
1515
1718
|
*/
|
|
1516
|
-
declare type
|
|
1719
|
+
declare type __VLS_Props_42 = {
|
|
1517
1720
|
/**
|
|
1518
1721
|
* A unique identifier for the pincode element, used to associate the label with the form element.
|
|
1519
1722
|
*/
|
|
@@ -1544,53 +1747,10 @@ declare type __VLS_Props_39 = {
|
|
|
1544
1747
|
readonly?: boolean;
|
|
1545
1748
|
};
|
|
1546
1749
|
|
|
1547
|
-
/**
|
|
1548
|
-
* 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.
|
|
1549
|
-
*/
|
|
1550
|
-
declare type __VLS_Props_4 = {
|
|
1551
|
-
/**
|
|
1552
|
-
* title displayed in mobile version.
|
|
1553
|
-
*/
|
|
1554
|
-
title?: string;
|
|
1555
|
-
/**
|
|
1556
|
-
* Defines the position of the listbox relative to its trigger or container.
|
|
1557
|
-
*/
|
|
1558
|
-
position?: 'top' | 'bottom' | 'left' | 'right';
|
|
1559
|
-
/**
|
|
1560
|
-
* An array of objects that allows you to provide all the data needed to generate the content for each item.
|
|
1561
|
-
*/
|
|
1562
|
-
items: Array<{
|
|
1563
|
-
/**
|
|
1564
|
-
* Unique identifier for the item.
|
|
1565
|
-
*/
|
|
1566
|
-
id?: string;
|
|
1567
|
-
/**
|
|
1568
|
-
* The icon displayed for the item from Mozaic-icon-vue.
|
|
1569
|
-
*/
|
|
1570
|
-
icon?: Component;
|
|
1571
|
-
/**
|
|
1572
|
-
* The label displayed for the item.
|
|
1573
|
-
*/
|
|
1574
|
-
label: string;
|
|
1575
|
-
/**
|
|
1576
|
-
* If `true`, the item will be disabled.
|
|
1577
|
-
*/
|
|
1578
|
-
disabled?: boolean;
|
|
1579
|
-
/**
|
|
1580
|
-
* Allows to define the item appearance.
|
|
1581
|
-
*/
|
|
1582
|
-
appearance?: 'standard' | 'danger';
|
|
1583
|
-
/**
|
|
1584
|
-
* Add a divider on top of the item.
|
|
1585
|
-
*/
|
|
1586
|
-
divider?: boolean;
|
|
1587
|
-
}>;
|
|
1588
|
-
};
|
|
1589
|
-
|
|
1590
1750
|
/**
|
|
1591
1751
|
* 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.
|
|
1592
1752
|
*/
|
|
1593
|
-
declare type
|
|
1753
|
+
declare type __VLS_Props_43 = {
|
|
1594
1754
|
/**
|
|
1595
1755
|
* Allows to define the popover appearance.
|
|
1596
1756
|
*/
|
|
@@ -1625,7 +1785,7 @@ declare type __VLS_Props_40 = {
|
|
|
1625
1785
|
/**
|
|
1626
1786
|
* 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.
|
|
1627
1787
|
*/
|
|
1628
|
-
declare type
|
|
1788
|
+
declare type __VLS_Props_44 = {
|
|
1629
1789
|
/**
|
|
1630
1790
|
* A unique identifier for the quantity selector element, used to associate the label with the form element.
|
|
1631
1791
|
*/
|
|
@@ -1679,7 +1839,7 @@ declare type __VLS_Props_41 = {
|
|
|
1679
1839
|
/**
|
|
1680
1840
|
* 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.
|
|
1681
1841
|
*/
|
|
1682
|
-
declare type
|
|
1842
|
+
declare type __VLS_Props_45 = {
|
|
1683
1843
|
/**
|
|
1684
1844
|
* A unique identifier for the radio, used to associate the label with the form element.
|
|
1685
1845
|
*/
|
|
@@ -1709,7 +1869,7 @@ declare type __VLS_Props_42 = {
|
|
|
1709
1869
|
/**
|
|
1710
1870
|
* 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).
|
|
1711
1871
|
*/
|
|
1712
|
-
declare type
|
|
1872
|
+
declare type __VLS_Props_46 = {
|
|
1713
1873
|
/**
|
|
1714
1874
|
* The name attribute for the radio element, typically used for form submission.
|
|
1715
1875
|
*/
|
|
@@ -1741,7 +1901,7 @@ declare type __VLS_Props_43 = {
|
|
|
1741
1901
|
/**
|
|
1742
1902
|
* 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.
|
|
1743
1903
|
*/
|
|
1744
|
-
declare type
|
|
1904
|
+
declare type __VLS_Props_47 = {
|
|
1745
1905
|
/**
|
|
1746
1906
|
* Defines the currently active tab.
|
|
1747
1907
|
*
|
|
@@ -1775,7 +1935,7 @@ declare type __VLS_Props_44 = {
|
|
|
1775
1935
|
/**
|
|
1776
1936
|
* 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).
|
|
1777
1937
|
*/
|
|
1778
|
-
declare type
|
|
1938
|
+
declare type __VLS_Props_48 = {
|
|
1779
1939
|
/**
|
|
1780
1940
|
* A unique identifier for the select, used to associate the label with the form element.
|
|
1781
1941
|
*/
|
|
@@ -1823,17 +1983,31 @@ declare type __VLS_Props_45 = {
|
|
|
1823
1983
|
/**
|
|
1824
1984
|
* 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.
|
|
1825
1985
|
*/
|
|
1826
|
-
declare type
|
|
1986
|
+
declare type __VLS_Props_49 = {
|
|
1827
1987
|
/**
|
|
1828
1988
|
* the state of the expanded sidebar, bound via v-model.
|
|
1829
1989
|
*/
|
|
1830
1990
|
modelValue: boolean;
|
|
1991
|
+
/**
|
|
1992
|
+
* Whether to display a right border on the sidebar.
|
|
1993
|
+
*/
|
|
1994
|
+
divider?: boolean;
|
|
1995
|
+
};
|
|
1996
|
+
|
|
1997
|
+
/**
|
|
1998
|
+
* 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.
|
|
1999
|
+
*/
|
|
2000
|
+
declare type __VLS_Props_5 = {
|
|
2001
|
+
/**
|
|
2002
|
+
* Allows to define the avatar size.
|
|
2003
|
+
*/
|
|
2004
|
+
size?: 's' | 'm' | 'l';
|
|
1831
2005
|
};
|
|
1832
2006
|
|
|
1833
2007
|
/**
|
|
1834
2008
|
* SidebarExpandableItem is a component that renders a sidebar item which can either expand to show a nested submenu or display a floating menu when the sidebar is collapsed. It supports optional icons, keyboard navigation, and accessibility attributes, and allows for custom submenu items via slots.
|
|
1835
2009
|
*/
|
|
1836
|
-
declare type
|
|
2010
|
+
declare type __VLS_Props_50 = {
|
|
1837
2011
|
/**
|
|
1838
2012
|
* The text displayed for the sidebar item in its expanded state.
|
|
1839
2013
|
*/
|
|
@@ -1851,7 +2025,7 @@ declare type __VLS_Props_47 = {
|
|
|
1851
2025
|
/**
|
|
1852
2026
|
* SidebarFooter is a component that renders the footer of a sidebar. It can display a user profile with an optional avatar, title, subtitle, and link, and includes a button to expand or collapse the sidebar.
|
|
1853
2027
|
*/
|
|
1854
|
-
declare type
|
|
2028
|
+
declare type __VLS_Props_51 = {
|
|
1855
2029
|
/**
|
|
1856
2030
|
* The main text or name displayed in the sidebar footer profile.
|
|
1857
2031
|
*/
|
|
@@ -1877,7 +2051,7 @@ declare type __VLS_Props_48 = {
|
|
|
1877
2051
|
/**
|
|
1878
2052
|
* SidebarHeader is a component that renders the header of a sidebar, displaying a logo and a main title.
|
|
1879
2053
|
*/
|
|
1880
|
-
declare type
|
|
2054
|
+
declare type __VLS_Props_52 = {
|
|
1881
2055
|
/**
|
|
1882
2056
|
* The main title text displayed in the sidebar header.
|
|
1883
2057
|
*/
|
|
@@ -1888,20 +2062,10 @@ declare type __VLS_Props_49 = {
|
|
|
1888
2062
|
logo: string;
|
|
1889
2063
|
};
|
|
1890
2064
|
|
|
1891
|
-
/**
|
|
1892
|
-
* 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.
|
|
1893
|
-
*/
|
|
1894
|
-
declare type __VLS_Props_5 = {
|
|
1895
|
-
/**
|
|
1896
|
-
* Allows to define the avatar size.
|
|
1897
|
-
*/
|
|
1898
|
-
size?: 's' | 'm' | 'l';
|
|
1899
|
-
};
|
|
1900
|
-
|
|
1901
2065
|
/**
|
|
1902
2066
|
* SidebarNavItem is a component that renders a sidebar navigation item with optional icon support. It handles active, locked, and external states, shows tooltips or floating items when the sidebar is collapsed, and supports click events.
|
|
1903
2067
|
*/
|
|
1904
|
-
declare type
|
|
2068
|
+
declare type __VLS_Props_53 = {
|
|
1905
2069
|
tag?: string;
|
|
1906
2070
|
/**
|
|
1907
2071
|
* The text label displayed for the navigation item.
|
|
@@ -1915,6 +2079,10 @@ declare type __VLS_Props_50 = {
|
|
|
1915
2079
|
* The URL the navigation item links to.
|
|
1916
2080
|
*/
|
|
1917
2081
|
href?: string;
|
|
2082
|
+
/**
|
|
2083
|
+
* If defined, the item will act as a router-link to the specified route.
|
|
2084
|
+
*/
|
|
2085
|
+
to?: string;
|
|
1918
2086
|
/**
|
|
1919
2087
|
* Marks the item as locked. Shows a lock icon and prevents interaction.
|
|
1920
2088
|
*/
|
|
@@ -1932,7 +2100,7 @@ declare type __VLS_Props_50 = {
|
|
|
1932
2100
|
/**
|
|
1933
2101
|
* SidebarShortcutItem is a component that renders a sidebar shortcut link with an optional icon and label, providing quick access to a specific URL.
|
|
1934
2102
|
*/
|
|
1935
|
-
declare type
|
|
2103
|
+
declare type __VLS_Props_54 = {
|
|
1936
2104
|
/**
|
|
1937
2105
|
* The text label displayed for the shortcut item.
|
|
1938
2106
|
*/
|
|
@@ -1940,7 +2108,15 @@ declare type __VLS_Props_51 = {
|
|
|
1940
2108
|
/**
|
|
1941
2109
|
* The URL the shortcut item links to.
|
|
1942
2110
|
*/
|
|
1943
|
-
href
|
|
2111
|
+
href?: string;
|
|
2112
|
+
/**
|
|
2113
|
+
* If defined, the item will act as a router-link to the specified route.
|
|
2114
|
+
*/
|
|
2115
|
+
to?: string;
|
|
2116
|
+
/**
|
|
2117
|
+
* Indicates the link is external and opens in a new tab.
|
|
2118
|
+
*/
|
|
2119
|
+
external?: boolean;
|
|
1944
2120
|
/**
|
|
1945
2121
|
* Optional icon component displayed alongside the label.
|
|
1946
2122
|
*/
|
|
@@ -1950,7 +2126,7 @@ declare type __VLS_Props_51 = {
|
|
|
1950
2126
|
/**
|
|
1951
2127
|
* SidebarShortcuts is a component that displays a list of sidebar shortcut items. It supports stacked or grid layouts, shows a floating overlay when the sidebar is collapsed, and allows custom shortcut items via slots.
|
|
1952
2128
|
*/
|
|
1953
|
-
declare type
|
|
2129
|
+
declare type __VLS_Props_55 = {
|
|
1954
2130
|
/**
|
|
1955
2131
|
* Determines the layout of the sidebar shortcuts. When true, the shortcuts are displayed in a vertical stacked list. When false or not provided, the shortcuts are arranged in a grid layout.
|
|
1956
2132
|
*/
|
|
@@ -1960,7 +2136,7 @@ declare type __VLS_Props_52 = {
|
|
|
1960
2136
|
/**
|
|
1961
2137
|
* 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.
|
|
1962
2138
|
*/
|
|
1963
|
-
declare type
|
|
2139
|
+
declare type __VLS_Props_56 = {
|
|
1964
2140
|
/**
|
|
1965
2141
|
* Determines whether the rating is interactive or read-only.
|
|
1966
2142
|
* When true, all user interactions (click, hover, keyboard) are disabled.
|
|
@@ -2007,11 +2183,15 @@ declare type __VLS_Props_53 = {
|
|
|
2007
2183
|
/**
|
|
2008
2184
|
* 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.
|
|
2009
2185
|
*/
|
|
2010
|
-
declare type
|
|
2186
|
+
declare type __VLS_Props_57 = {
|
|
2011
2187
|
/**
|
|
2012
2188
|
* Content of the status badge
|
|
2013
2189
|
*/
|
|
2014
2190
|
label: string;
|
|
2191
|
+
/**
|
|
2192
|
+
* Allows to define the status badge size
|
|
2193
|
+
*/
|
|
2194
|
+
size?: 's' | 'm';
|
|
2015
2195
|
/**
|
|
2016
2196
|
* Allows to define the status badge type
|
|
2017
2197
|
*/
|
|
@@ -2021,7 +2201,7 @@ declare type __VLS_Props_54 = {
|
|
|
2021
2201
|
/**
|
|
2022
2202
|
* 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.
|
|
2023
2203
|
*/
|
|
2024
|
-
declare type
|
|
2204
|
+
declare type __VLS_Props_58 = {
|
|
2025
2205
|
/**
|
|
2026
2206
|
* Allows to define the status dot type.
|
|
2027
2207
|
*/
|
|
@@ -2035,7 +2215,7 @@ declare type __VLS_Props_55 = {
|
|
|
2035
2215
|
/**
|
|
2036
2216
|
* 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.
|
|
2037
2217
|
*/
|
|
2038
|
-
declare type
|
|
2218
|
+
declare type __VLS_Props_59 = {
|
|
2039
2219
|
/**
|
|
2040
2220
|
* Allows to define the status message style.
|
|
2041
2221
|
*/
|
|
@@ -2051,10 +2231,37 @@ declare type __VLS_Props_56 = {
|
|
|
2051
2231
|
label: string;
|
|
2052
2232
|
};
|
|
2053
2233
|
|
|
2234
|
+
/**
|
|
2235
|
+
* 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.
|
|
2236
|
+
*/
|
|
2237
|
+
declare type __VLS_Props_6 = {
|
|
2238
|
+
/**
|
|
2239
|
+
* Allows to define the breadcrumb appearance.
|
|
2240
|
+
*/
|
|
2241
|
+
appearance?: 'standard' | 'inverse';
|
|
2242
|
+
/**
|
|
2243
|
+
* Links of the breadcrumb.
|
|
2244
|
+
*/
|
|
2245
|
+
links: Array<{
|
|
2246
|
+
/**
|
|
2247
|
+
* The label displayed for the link.
|
|
2248
|
+
*/
|
|
2249
|
+
label: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
2252
|
+
*/
|
|
2253
|
+
href: string;
|
|
2254
|
+
/**
|
|
2255
|
+
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
2256
|
+
*/
|
|
2257
|
+
router?: boolean;
|
|
2258
|
+
}>;
|
|
2259
|
+
};
|
|
2260
|
+
|
|
2054
2261
|
/**
|
|
2055
2262
|
* 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.
|
|
2056
2263
|
*/
|
|
2057
|
-
declare type
|
|
2264
|
+
declare type __VLS_Props_60 = {
|
|
2058
2265
|
/**
|
|
2059
2266
|
* Title of the status notification.
|
|
2060
2267
|
*/
|
|
@@ -2076,7 +2283,7 @@ declare type __VLS_Props_57 = {
|
|
|
2076
2283
|
/**
|
|
2077
2284
|
* 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.
|
|
2078
2285
|
*/
|
|
2079
|
-
declare type
|
|
2286
|
+
declare type __VLS_Props_61 = {
|
|
2080
2287
|
/**
|
|
2081
2288
|
* Current step of the stepper compact.
|
|
2082
2289
|
*/
|
|
@@ -2110,7 +2317,7 @@ declare type __VLS_Props_58 = {
|
|
|
2110
2317
|
/**
|
|
2111
2318
|
* 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.
|
|
2112
2319
|
*/
|
|
2113
|
-
declare type
|
|
2320
|
+
declare type __VLS_Props_62 = {
|
|
2114
2321
|
/**
|
|
2115
2322
|
* Current step of the stepper compact.
|
|
2116
2323
|
*/
|
|
@@ -2129,37 +2336,10 @@ declare type __VLS_Props_59 = {
|
|
|
2129
2336
|
description?: string;
|
|
2130
2337
|
};
|
|
2131
2338
|
|
|
2132
|
-
/**
|
|
2133
|
-
* 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.
|
|
2134
|
-
*/
|
|
2135
|
-
declare type __VLS_Props_6 = {
|
|
2136
|
-
/**
|
|
2137
|
-
* Allows to define the breadcrumb appearance.
|
|
2138
|
-
*/
|
|
2139
|
-
appearance?: 'standard' | 'inverse';
|
|
2140
|
-
/**
|
|
2141
|
-
* Links of the breadcrumb.
|
|
2142
|
-
*/
|
|
2143
|
-
links: Array<{
|
|
2144
|
-
/**
|
|
2145
|
-
* The label displayed for the link.
|
|
2146
|
-
*/
|
|
2147
|
-
label: string;
|
|
2148
|
-
/**
|
|
2149
|
-
* URL for the link (for external links or the `to` prop for `router-link`).
|
|
2150
|
-
*/
|
|
2151
|
-
href: string;
|
|
2152
|
-
/**
|
|
2153
|
-
* If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
|
|
2154
|
-
*/
|
|
2155
|
-
router?: boolean;
|
|
2156
|
-
}>;
|
|
2157
|
-
};
|
|
2158
|
-
|
|
2159
2339
|
/**
|
|
2160
2340
|
* 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.
|
|
2161
2341
|
*/
|
|
2162
|
-
declare type
|
|
2342
|
+
declare type __VLS_Props_63 = {
|
|
2163
2343
|
/**
|
|
2164
2344
|
* Defines the currently active step.
|
|
2165
2345
|
*
|
|
@@ -2190,7 +2370,7 @@ declare type __VLS_Props_60 = {
|
|
|
2190
2370
|
/**
|
|
2191
2371
|
* 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.
|
|
2192
2372
|
*/
|
|
2193
|
-
declare type
|
|
2373
|
+
declare type __VLS_Props_64 = {
|
|
2194
2374
|
/**
|
|
2195
2375
|
* Defines the currently active step.
|
|
2196
2376
|
*
|
|
@@ -2221,11 +2401,15 @@ declare type __VLS_Props_61 = {
|
|
|
2221
2401
|
/**
|
|
2222
2402
|
* 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.
|
|
2223
2403
|
*/
|
|
2224
|
-
declare type
|
|
2404
|
+
declare type __VLS_Props_65 = {
|
|
2225
2405
|
/**
|
|
2226
2406
|
* A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
|
|
2227
2407
|
*/
|
|
2228
2408
|
description?: string;
|
|
2409
|
+
/**
|
|
2410
|
+
* Defines the size of the tab.
|
|
2411
|
+
*/
|
|
2412
|
+
size?: 's' | 'm';
|
|
2229
2413
|
/**
|
|
2230
2414
|
* If `true`, the divider will appear.
|
|
2231
2415
|
*/
|
|
@@ -2271,7 +2455,7 @@ declare type __VLS_Props_62 = {
|
|
|
2271
2455
|
/**
|
|
2272
2456
|
* 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).
|
|
2273
2457
|
*/
|
|
2274
|
-
declare type
|
|
2458
|
+
declare type __VLS_Props_66 = {
|
|
2275
2459
|
/**
|
|
2276
2460
|
* Defines the behavior and layout of the tag.
|
|
2277
2461
|
*/
|
|
@@ -2313,7 +2497,7 @@ declare type __VLS_Props_63 = {
|
|
|
2313
2497
|
/**
|
|
2314
2498
|
* 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).
|
|
2315
2499
|
*/
|
|
2316
|
-
declare type
|
|
2500
|
+
declare type __VLS_Props_67 = {
|
|
2317
2501
|
/**
|
|
2318
2502
|
* A unique identifier for the textarea, used to associate the label with the form element.
|
|
2319
2503
|
*/
|
|
@@ -2359,7 +2543,7 @@ declare type __VLS_Props_64 = {
|
|
|
2359
2543
|
/**
|
|
2360
2544
|
* 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).
|
|
2361
2545
|
*/
|
|
2362
|
-
declare type
|
|
2546
|
+
declare type __VLS_Props_68 = {
|
|
2363
2547
|
/**
|
|
2364
2548
|
* A unique identifier for the input element, used to associate the label with the form element.
|
|
2365
2549
|
*/
|
|
@@ -2417,7 +2601,7 @@ declare type __VLS_Props_65 = {
|
|
|
2417
2601
|
/**
|
|
2418
2602
|
* 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.
|
|
2419
2603
|
*/
|
|
2420
|
-
declare type
|
|
2604
|
+
declare type __VLS_Props_69 = {
|
|
2421
2605
|
/**
|
|
2422
2606
|
* Defines the visual style of the tile.
|
|
2423
2607
|
*/
|
|
@@ -2428,10 +2612,30 @@ declare type __VLS_Props_66 = {
|
|
|
2428
2612
|
bordered?: boolean;
|
|
2429
2613
|
};
|
|
2430
2614
|
|
|
2615
|
+
declare type __VLS_Props_7 = {
|
|
2616
|
+
/**
|
|
2617
|
+
* Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
|
|
2618
|
+
*/
|
|
2619
|
+
modelValue?: number;
|
|
2620
|
+
/**
|
|
2621
|
+
* Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
|
|
2622
|
+
*/
|
|
2623
|
+
items: MenuItem[];
|
|
2624
|
+
/**
|
|
2625
|
+
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
2626
|
+
*/
|
|
2627
|
+
outlined?: boolean;
|
|
2628
|
+
/**
|
|
2629
|
+
* Accessible label for the navigation landmark. Should describe the purpose
|
|
2630
|
+
* of this menu to distinguish it from other navigations on the page.
|
|
2631
|
+
*/
|
|
2632
|
+
label?: string;
|
|
2633
|
+
};
|
|
2634
|
+
|
|
2431
2635
|
/**
|
|
2432
2636
|
* 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.
|
|
2433
2637
|
*/
|
|
2434
|
-
declare type
|
|
2638
|
+
declare type __VLS_Props_70 = {
|
|
2435
2639
|
/**
|
|
2436
2640
|
* Defines the visual style of the tile.
|
|
2437
2641
|
*/
|
|
@@ -2463,7 +2667,7 @@ declare type __VLS_Props_67 = {
|
|
|
2463
2667
|
/**
|
|
2464
2668
|
* 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.
|
|
2465
2669
|
*/
|
|
2466
|
-
declare type
|
|
2670
|
+
declare type __VLS_Props_71 = {
|
|
2467
2671
|
/**
|
|
2468
2672
|
* Defines the visual style of the tile.
|
|
2469
2673
|
*/
|
|
@@ -2485,7 +2689,7 @@ declare type __VLS_Props_68 = {
|
|
|
2485
2689
|
/**
|
|
2486
2690
|
* 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.
|
|
2487
2691
|
*/
|
|
2488
|
-
declare type
|
|
2692
|
+
declare type __VLS_Props_72 = {
|
|
2489
2693
|
/**
|
|
2490
2694
|
* The current value of the tile (selected or not).
|
|
2491
2695
|
*/
|
|
@@ -2510,32 +2714,16 @@ declare type __VLS_Props_69 = {
|
|
|
2510
2714
|
* If `true`, hides the input and makes the whole tile selectable.
|
|
2511
2715
|
*/
|
|
2512
2716
|
hideInput?: boolean;
|
|
2513
|
-
};
|
|
2514
|
-
|
|
2515
|
-
declare type __VLS_Props_7 = {
|
|
2516
|
-
/**
|
|
2517
|
-
* Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
|
|
2518
|
-
*/
|
|
2519
|
-
modelValue?: number;
|
|
2520
2717
|
/**
|
|
2521
|
-
*
|
|
2522
|
-
*/
|
|
2523
|
-
items: MenuItem[];
|
|
2524
|
-
/**
|
|
2525
|
-
* When enabled, adds a visible border around the wrapper to highlight or separate its content.
|
|
2526
|
-
*/
|
|
2527
|
-
outlined?: boolean;
|
|
2528
|
-
/**
|
|
2529
|
-
* Accessible label for the navigation landmark. Should describe the purpose
|
|
2530
|
-
* of this menu to distinguish it from other navigations on the page.
|
|
2718
|
+
* Determines how the tile expansion is triggered.
|
|
2531
2719
|
*/
|
|
2532
|
-
|
|
2720
|
+
trigger?: 'container' | 'input';
|
|
2533
2721
|
};
|
|
2534
2722
|
|
|
2535
2723
|
/**
|
|
2536
2724
|
* 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.
|
|
2537
2725
|
*/
|
|
2538
|
-
declare type
|
|
2726
|
+
declare type __VLS_Props_73 = {
|
|
2539
2727
|
/**
|
|
2540
2728
|
* If `true`, display the Toaster.
|
|
2541
2729
|
*/
|
|
@@ -2569,7 +2757,7 @@ declare type __VLS_Props_70 = {
|
|
|
2569
2757
|
/**
|
|
2570
2758
|
* 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.
|
|
2571
2759
|
*/
|
|
2572
|
-
declare type
|
|
2760
|
+
declare type __VLS_Props_74 = {
|
|
2573
2761
|
/**
|
|
2574
2762
|
* A unique identifier for the toggle, used to associate the label with the form element.
|
|
2575
2763
|
*/
|
|
@@ -2599,7 +2787,7 @@ declare type __VLS_Props_71 = {
|
|
|
2599
2787
|
/**
|
|
2600
2788
|
* 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).
|
|
2601
2789
|
*/
|
|
2602
|
-
declare type
|
|
2790
|
+
declare type __VLS_Props_75 = {
|
|
2603
2791
|
/**
|
|
2604
2792
|
* The name attribute for the toggle element, typically used for form submission.
|
|
2605
2793
|
*/
|
|
@@ -2628,7 +2816,7 @@ declare type __VLS_Props_72 = {
|
|
|
2628
2816
|
/**
|
|
2629
2817
|
* 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.
|
|
2630
2818
|
*/
|
|
2631
|
-
declare type
|
|
2819
|
+
declare type __VLS_Props_76 = {
|
|
2632
2820
|
/**
|
|
2633
2821
|
* A unique identifier for the tooltip, used to describe the tooltip.
|
|
2634
2822
|
*/
|
|
@@ -2712,7 +2900,7 @@ declare type __VLS_Props_9 = {
|
|
|
2712
2900
|
tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
|
|
2713
2901
|
};
|
|
2714
2902
|
|
|
2715
|
-
declare type __VLS_PublicProps =
|
|
2903
|
+
declare type __VLS_PublicProps = __VLS_Props_56 & __VLS_ModelProps;
|
|
2716
2904
|
|
|
2717
2905
|
declare type __VLS_Slots = {
|
|
2718
2906
|
/**
|
|
@@ -2840,17 +3028,30 @@ declare type __VLS_Slots_2 = {
|
|
|
2840
3028
|
};
|
|
2841
3029
|
|
|
2842
3030
|
declare type __VLS_Slots_20 = {
|
|
3031
|
+
/**
|
|
3032
|
+
* Use this slot to customize the content of each item.
|
|
3033
|
+
*/
|
|
3034
|
+
item(props: {
|
|
3035
|
+
item: ListboxOption;
|
|
3036
|
+
}): VNode;
|
|
3037
|
+
};
|
|
3038
|
+
|
|
3039
|
+
declare type __VLS_Slots_21 = {
|
|
2843
3040
|
/**
|
|
2844
3041
|
* Use this slot to insert a centered content inside the overlay.
|
|
2845
3042
|
*/
|
|
2846
3043
|
default?: VNode;
|
|
2847
3044
|
};
|
|
2848
3045
|
|
|
2849
|
-
declare type
|
|
3046
|
+
declare type __VLS_Slots_22 = {
|
|
2850
3047
|
/**
|
|
2851
|
-
* Use this slot to insert
|
|
3048
|
+
* Use this slot to insert feature items in the top content.
|
|
2852
3049
|
*/
|
|
2853
3050
|
actions?: VNode;
|
|
3051
|
+
/**
|
|
3052
|
+
* Use this slot to insert context switcher component.
|
|
3053
|
+
*/
|
|
3054
|
+
context?: VNode;
|
|
2854
3055
|
/**
|
|
2855
3056
|
* Use this slot to insert any content below the Page Header top content.
|
|
2856
3057
|
*/
|
|
@@ -2861,7 +3062,7 @@ declare type __VLS_Slots_21 = {
|
|
|
2861
3062
|
tabs?: VNode;
|
|
2862
3063
|
};
|
|
2863
3064
|
|
|
2864
|
-
declare type
|
|
3065
|
+
declare type __VLS_Slots_23 = {
|
|
2865
3066
|
/**
|
|
2866
3067
|
* Main content of the popover.
|
|
2867
3068
|
*/
|
|
@@ -2881,7 +3082,7 @@ declare type __VLS_Slots_22 = {
|
|
|
2881
3082
|
footer?: VNode;
|
|
2882
3083
|
};
|
|
2883
3084
|
|
|
2884
|
-
declare type
|
|
3085
|
+
declare type __VLS_Slots_24 = {
|
|
2885
3086
|
/**
|
|
2886
3087
|
* Slot for the sidebar header. Should contain an `MSidebarHeader` component.
|
|
2887
3088
|
*/
|
|
@@ -2901,44 +3102,43 @@ declare type __VLS_Slots_23 = {
|
|
|
2901
3102
|
footer: VNode[];
|
|
2902
3103
|
};
|
|
2903
3104
|
|
|
2904
|
-
declare type
|
|
3105
|
+
declare type __VLS_Slots_25 = {
|
|
2905
3106
|
/**
|
|
2906
3107
|
* Contains one or more MSidebarNavItem components used to render the submenu items.
|
|
3108
|
+
* The slot scope provides a `close` function that can be called to hide the floating menu.
|
|
2907
3109
|
*/
|
|
2908
|
-
default:
|
|
3110
|
+
default(props: {
|
|
3111
|
+
close: () => void;
|
|
3112
|
+
}): VNode[];
|
|
2909
3113
|
};
|
|
2910
3114
|
|
|
2911
|
-
declare type
|
|
3115
|
+
declare type __VLS_Slots_26 = {
|
|
2912
3116
|
/**
|
|
2913
3117
|
* Contains one or more MSidebarNavItem components used to render the profile items.
|
|
3118
|
+
* The slot scope provides a `close` function that can be called to hide the floating menu.
|
|
2914
3119
|
*/
|
|
2915
|
-
default:
|
|
3120
|
+
default(props: {
|
|
3121
|
+
close: () => void;
|
|
3122
|
+
}): VNode[];
|
|
2916
3123
|
};
|
|
2917
3124
|
|
|
2918
|
-
declare type
|
|
3125
|
+
declare type __VLS_Slots_27 = {
|
|
2919
3126
|
/**
|
|
2920
3127
|
* Slot for sidebar shortcut items. Should contain one or more `MSidebarShortcutItem` components.
|
|
2921
3128
|
*/
|
|
2922
3129
|
default: VNode[];
|
|
2923
3130
|
};
|
|
2924
3131
|
|
|
2925
|
-
declare type
|
|
3132
|
+
declare type __VLS_Slots_28 = {
|
|
2926
3133
|
/**
|
|
2927
3134
|
* Use this slot to insert a button or a link in the footer
|
|
2928
3135
|
*/
|
|
2929
3136
|
footer?: VNode;
|
|
2930
3137
|
};
|
|
2931
3138
|
|
|
2932
|
-
declare type __VLS_Slots_28 = {
|
|
2933
|
-
/**
|
|
2934
|
-
* Use this slot to insert an icon in the tag.
|
|
2935
|
-
*/
|
|
2936
|
-
icon?: VNode;
|
|
2937
|
-
};
|
|
2938
|
-
|
|
2939
3139
|
declare type __VLS_Slots_29 = {
|
|
2940
3140
|
/**
|
|
2941
|
-
* Use this slot to insert an icon in the
|
|
3141
|
+
* Use this slot to insert an icon in the tag.
|
|
2942
3142
|
*/
|
|
2943
3143
|
icon?: VNode;
|
|
2944
3144
|
};
|
|
@@ -2955,6 +3155,13 @@ declare type __VLS_Slots_3 = {
|
|
|
2955
3155
|
};
|
|
2956
3156
|
|
|
2957
3157
|
declare type __VLS_Slots_30 = {
|
|
3158
|
+
/**
|
|
3159
|
+
* Use this slot to insert an icon in the input.
|
|
3160
|
+
*/
|
|
3161
|
+
icon?: VNode;
|
|
3162
|
+
};
|
|
3163
|
+
|
|
3164
|
+
declare type __VLS_Slots_31 = {
|
|
2958
3165
|
/**
|
|
2959
3166
|
* Default slot for the main content of the tile.
|
|
2960
3167
|
*/
|
|
@@ -2969,7 +3176,7 @@ declare type __VLS_Slots_30 = {
|
|
|
2969
3176
|
action?: VNode[];
|
|
2970
3177
|
};
|
|
2971
3178
|
|
|
2972
|
-
declare type
|
|
3179
|
+
declare type __VLS_Slots_32 = {
|
|
2973
3180
|
/**
|
|
2974
3181
|
* Default slot for the main content of the tile.
|
|
2975
3182
|
*/
|
|
@@ -2980,7 +3187,7 @@ declare type __VLS_Slots_31 = {
|
|
|
2980
3187
|
icon?: VNode[];
|
|
2981
3188
|
};
|
|
2982
3189
|
|
|
2983
|
-
declare type
|
|
3190
|
+
declare type __VLS_Slots_33 = {
|
|
2984
3191
|
/**
|
|
2985
3192
|
* Default slot for the main content of the tile.
|
|
2986
3193
|
*/
|
|
@@ -2991,7 +3198,7 @@ declare type __VLS_Slots_32 = {
|
|
|
2991
3198
|
details?: VNode[];
|
|
2992
3199
|
};
|
|
2993
3200
|
|
|
2994
|
-
declare type
|
|
3201
|
+
declare type __VLS_Slots_34 = {
|
|
2995
3202
|
/**
|
|
2996
3203
|
* Default slot for the main content of the tile.
|
|
2997
3204
|
*/
|
|
@@ -3002,14 +3209,14 @@ declare type __VLS_Slots_33 = {
|
|
|
3002
3209
|
details?: VNode[];
|
|
3003
3210
|
};
|
|
3004
3211
|
|
|
3005
|
-
declare type
|
|
3212
|
+
declare type __VLS_Slots_35 = {
|
|
3006
3213
|
/**
|
|
3007
3214
|
* Use this slot to insert a button or a link in the toaster
|
|
3008
3215
|
*/
|
|
3009
3216
|
action?: VNode;
|
|
3010
3217
|
};
|
|
3011
3218
|
|
|
3012
|
-
declare type
|
|
3219
|
+
declare type __VLS_Slots_36 = {
|
|
3013
3220
|
/**
|
|
3014
3221
|
* The tooltip will point to the content of the slot.
|
|
3015
3222
|
*/
|
|
@@ -3246,6 +3453,12 @@ declare type __VLS_WithSlots_35<T, S> = T & {
|
|
|
3246
3453
|
};
|
|
3247
3454
|
};
|
|
3248
3455
|
|
|
3456
|
+
declare type __VLS_WithSlots_36<T, S> = T & {
|
|
3457
|
+
new (): {
|
|
3458
|
+
$slots: S;
|
|
3459
|
+
};
|
|
3460
|
+
};
|
|
3461
|
+
|
|
3249
3462
|
declare type __VLS_WithSlots_4<T, S> = T & {
|
|
3250
3463
|
new (): {
|
|
3251
3464
|
$slots: S;
|
|
@@ -3367,9 +3580,6 @@ declare type FileUploaderProps = {
|
|
|
3367
3580
|
|
|
3368
3581
|
declare function focus_2(): void;
|
|
3369
3582
|
|
|
3370
|
-
/**
|
|
3371
|
-
* An Option Listbox is a customizable, accessible listbox component designed to power dropdowns and comboboxes with advanced selection capabilities. It supports single or multiple selection, optional search, grouped options with section headers, and full keyboard navigation.
|
|
3372
|
-
*/
|
|
3373
3583
|
declare type ListboxOption = {
|
|
3374
3584
|
label: string;
|
|
3375
3585
|
content?: string;
|
|
@@ -3457,85 +3667,91 @@ export declare const MNavigationIndicator: typeof __VLS_export_33;
|
|
|
3457
3667
|
|
|
3458
3668
|
export declare const MNumberBadge: typeof __VLS_export_34;
|
|
3459
3669
|
|
|
3460
|
-
export declare const
|
|
3670
|
+
export declare const MOptionListbox: typeof __VLS_export_35;
|
|
3671
|
+
|
|
3672
|
+
export declare const MOverlay: typeof __VLS_export_36;
|
|
3673
|
+
|
|
3674
|
+
export declare const MPageHeader: typeof __VLS_export_37;
|
|
3675
|
+
|
|
3676
|
+
export declare const MPageHeaderContext: typeof __VLS_export_38;
|
|
3461
3677
|
|
|
3462
|
-
export declare const
|
|
3678
|
+
export declare const MPageHeaderFeature: typeof __VLS_export_39;
|
|
3463
3679
|
|
|
3464
|
-
export declare const MPagination: typeof
|
|
3680
|
+
export declare const MPagination: typeof __VLS_export_40;
|
|
3465
3681
|
|
|
3466
|
-
export declare const MPasswordInput: typeof
|
|
3682
|
+
export declare const MPasswordInput: typeof __VLS_export_41;
|
|
3467
3683
|
|
|
3468
|
-
export declare const MPhoneNumber: typeof
|
|
3684
|
+
export declare const MPhoneNumber: typeof __VLS_export_42;
|
|
3469
3685
|
|
|
3470
|
-
export declare const MPincode: typeof
|
|
3686
|
+
export declare const MPincode: typeof __VLS_export_43;
|
|
3471
3687
|
|
|
3472
|
-
export declare const MPopover: typeof
|
|
3688
|
+
export declare const MPopover: typeof __VLS_export_44;
|
|
3473
3689
|
|
|
3474
|
-
export declare const MQuantitySelector: typeof
|
|
3690
|
+
export declare const MQuantitySelector: typeof __VLS_export_45;
|
|
3475
3691
|
|
|
3476
|
-
export declare const MRadio: typeof
|
|
3692
|
+
export declare const MRadio: typeof __VLS_export_46;
|
|
3477
3693
|
|
|
3478
|
-
export declare const MRadioGroup: typeof
|
|
3694
|
+
export declare const MRadioGroup: typeof __VLS_export_47;
|
|
3479
3695
|
|
|
3480
|
-
export declare const MSegmentedControl: typeof
|
|
3696
|
+
export declare const MSegmentedControl: typeof __VLS_export_48;
|
|
3481
3697
|
|
|
3482
|
-
export declare const MSelect: typeof
|
|
3698
|
+
export declare const MSelect: typeof __VLS_export_49;
|
|
3483
3699
|
|
|
3484
|
-
export declare const MSidebar: typeof
|
|
3700
|
+
export declare const MSidebar: typeof __VLS_export_50;
|
|
3485
3701
|
|
|
3486
|
-
export declare const MSidebarExpandableItem: typeof
|
|
3702
|
+
export declare const MSidebarExpandableItem: typeof __VLS_export_51;
|
|
3487
3703
|
|
|
3488
|
-
export declare const MSidebarFooter: typeof
|
|
3704
|
+
export declare const MSidebarFooter: typeof __VLS_export_52;
|
|
3489
3705
|
|
|
3490
|
-
export declare const MSidebarHeader: typeof
|
|
3706
|
+
export declare const MSidebarHeader: typeof __VLS_export_53;
|
|
3491
3707
|
|
|
3492
|
-
export declare const MSidebarNavItem: typeof
|
|
3708
|
+
export declare const MSidebarNavItem: typeof __VLS_export_54;
|
|
3493
3709
|
|
|
3494
|
-
export declare const MSidebarShortcutItem: typeof
|
|
3710
|
+
export declare const MSidebarShortcutItem: typeof __VLS_export_55;
|
|
3495
3711
|
|
|
3496
|
-
export declare const MSidebarShortcuts: typeof
|
|
3712
|
+
export declare const MSidebarShortcuts: typeof __VLS_export_56;
|
|
3497
3713
|
|
|
3498
|
-
export declare const MStarRating: typeof
|
|
3714
|
+
export declare const MStarRating: typeof __VLS_export_57;
|
|
3499
3715
|
|
|
3500
|
-
export declare const MStatusBadge: typeof
|
|
3716
|
+
export declare const MStatusBadge: typeof __VLS_export_58;
|
|
3501
3717
|
|
|
3502
|
-
export declare const MStatusDot: typeof
|
|
3718
|
+
export declare const MStatusDot: typeof __VLS_export_59;
|
|
3503
3719
|
|
|
3504
|
-
export declare const MStatusMessage: typeof
|
|
3720
|
+
export declare const MStatusMessage: typeof __VLS_export_60;
|
|
3505
3721
|
|
|
3506
|
-
export declare const MStatusNotification: typeof
|
|
3722
|
+
export declare const MStatusNotification: typeof __VLS_export_61;
|
|
3507
3723
|
|
|
3508
|
-
export declare const MStepperBottomBar: typeof
|
|
3724
|
+
export declare const MStepperBottomBar: typeof __VLS_export_62;
|
|
3509
3725
|
|
|
3510
|
-
export declare const MStepperCompact: typeof
|
|
3726
|
+
export declare const MStepperCompact: typeof __VLS_export_63;
|
|
3511
3727
|
|
|
3512
|
-
export declare const MStepperInline: typeof
|
|
3728
|
+
export declare const MStepperInline: typeof __VLS_export_64;
|
|
3513
3729
|
|
|
3514
|
-
export declare const MStepperStacked: typeof
|
|
3730
|
+
export declare const MStepperStacked: typeof __VLS_export_65;
|
|
3515
3731
|
|
|
3516
|
-
export declare const MTabs: typeof
|
|
3732
|
+
export declare const MTabs: typeof __VLS_export_66;
|
|
3517
3733
|
|
|
3518
|
-
export declare const MTag: typeof
|
|
3734
|
+
export declare const MTag: typeof __VLS_export_67;
|
|
3519
3735
|
|
|
3520
|
-
export declare const MTextArea: typeof
|
|
3736
|
+
export declare const MTextArea: typeof __VLS_export_68;
|
|
3521
3737
|
|
|
3522
|
-
export declare const MTextInput: typeof
|
|
3738
|
+
export declare const MTextInput: typeof __VLS_export_69;
|
|
3523
3739
|
|
|
3524
|
-
export declare const MTile: typeof
|
|
3740
|
+
export declare const MTile: typeof __VLS_export_70;
|
|
3525
3741
|
|
|
3526
|
-
export declare const MTileClickable: typeof
|
|
3742
|
+
export declare const MTileClickable: typeof __VLS_export_71;
|
|
3527
3743
|
|
|
3528
|
-
export declare const MTileExpandable: typeof
|
|
3744
|
+
export declare const MTileExpandable: typeof __VLS_export_72;
|
|
3529
3745
|
|
|
3530
|
-
export declare const MTileSelectable: typeof
|
|
3746
|
+
export declare const MTileSelectable: typeof __VLS_export_73;
|
|
3531
3747
|
|
|
3532
|
-
export declare const MToaster: typeof
|
|
3748
|
+
export declare const MToaster: typeof __VLS_export_74;
|
|
3533
3749
|
|
|
3534
|
-
export declare const MToggle: typeof
|
|
3750
|
+
export declare const MToggle: typeof __VLS_export_75;
|
|
3535
3751
|
|
|
3536
|
-
export declare const MToggleGroup: typeof
|
|
3752
|
+
export declare const MToggleGroup: typeof __VLS_export_76;
|
|
3537
3753
|
|
|
3538
|
-
export declare const MTooltip: typeof
|
|
3754
|
+
export declare const MTooltip: typeof __VLS_export_77;
|
|
3539
3755
|
|
|
3540
3756
|
declare type NormalizedFile = {
|
|
3541
3757
|
name: string;
|