@mozaic-ds/vue 2.13.1 → 2.15.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.
Files changed (104) hide show
  1. package/dist/mozaic-vue.css +1 -1
  2. package/dist/mozaic-vue.d.ts +1482 -369
  3. package/dist/mozaic-vue.js +3639 -2308
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +5 -5
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +7 -6
  8. package/src/components/DarkMode.mdx +115 -0
  9. package/src/components/actionlistbox/MActionListbox.spec.ts +49 -59
  10. package/src/components/actionlistbox/MActionListbox.stories.ts +22 -1
  11. package/src/components/actionlistbox/MActionListbox.vue +82 -28
  12. package/src/components/actionlistbox/README.md +15 -0
  13. package/src/components/avatar/MAvatar.stories.ts +1 -1
  14. package/src/components/breadcrumb/MBreadcrumb.vue +5 -0
  15. package/src/components/button/README.md +4 -0
  16. package/src/components/checkbox/README.md +2 -0
  17. package/src/components/divider/README.md +4 -0
  18. package/src/components/iconbutton/MIconButton.stories.ts +12 -0
  19. package/src/components/iconbutton/MIconButton.vue +13 -1
  20. package/src/components/iconbutton/README.md +27 -0
  21. package/src/components/loader/README.md +2 -0
  22. package/src/components/navigationindicator/MNavigationIndicator.spec.ts +152 -0
  23. package/src/components/navigationindicator/MNavigationIndicator.stories.ts +41 -0
  24. package/src/components/navigationindicator/MNavigationIndicator.vue +132 -0
  25. package/src/components/navigationindicator/README.md +37 -0
  26. package/src/components/pageheader/MPageHeader.spec.ts +142 -0
  27. package/src/components/pageheader/MPageHeader.stories.ts +133 -0
  28. package/src/components/pageheader/MPageHeader.vue +130 -0
  29. package/src/components/pageheader/README.md +46 -0
  30. package/src/components/popover/MPopover.spec.ts +106 -0
  31. package/src/components/popover/MPopover.stories.ts +126 -0
  32. package/src/components/popover/MPopover.vue +131 -0
  33. package/src/components/popover/README.md +42 -0
  34. package/src/components/radio/README.md +2 -0
  35. package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +57 -25
  36. package/src/components/segmentedcontrol/MSegmentedControl.stories.ts +6 -19
  37. package/src/components/segmentedcontrol/MSegmentedControl.vue +27 -13
  38. package/src/components/segmentedcontrol/README.md +6 -3
  39. package/src/components/select/MSelect.spec.ts +2 -1
  40. package/src/components/select/MSelect.vue +31 -25
  41. package/src/components/sidebar/MSidebar.const.ts +6 -0
  42. package/src/components/sidebar/MSidebar.spec.ts +110 -0
  43. package/src/components/sidebar/MSidebar.stories.ts +108 -0
  44. package/src/components/sidebar/MSidebar.vue +124 -0
  45. package/src/components/sidebar/README.md +59 -0
  46. package/src/components/sidebar/stories/DefaultCase.stories.vue +120 -0
  47. package/src/components/sidebar/stories/README.md +35 -0
  48. package/src/components/sidebar/stories/WithExpandOnly.stories.vue +112 -0
  49. package/src/components/sidebar/stories/WithProfileInfoOnly.stories.vue +119 -0
  50. package/src/components/sidebar/stories/WithSingleLevel.stories.vue +98 -0
  51. package/src/components/sidebar/use-floating-item.composable.ts +135 -0
  52. package/src/components/sidebar/use-floating-item.spec.ts +251 -0
  53. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.spec.ts +151 -0
  54. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.vue +113 -0
  55. package/src/components/sidebarexpandableitem/README.md +36 -0
  56. package/src/components/sidebarfooter/MSidebarFooter.spec.ts +276 -0
  57. package/src/components/sidebarfooter/MSidebarFooter.vue +201 -0
  58. package/src/components/sidebarfooter/README.md +52 -0
  59. package/src/components/sidebarfooter/_MSidebarFooterMenu.vue +64 -0
  60. package/src/components/sidebarheader/MSidebarHeader.vue +36 -0
  61. package/src/components/sidebarheader/README.md +31 -0
  62. package/src/components/sidebarnavitem/MSidebarNavItem.spec.ts +127 -0
  63. package/src/components/sidebarnavitem/MSidebarNavItem.vue +113 -0
  64. package/src/components/sidebarnavitem/README.md +56 -0
  65. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.spec.ts +59 -0
  66. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.vue +52 -0
  67. package/src/components/sidebarshortcutitem/README.md +32 -0
  68. package/src/components/sidebarshortcuts/MSidebarShortcuts.spec.ts +87 -0
  69. package/src/components/sidebarshortcuts/MSidebarShortcuts.vue +101 -0
  70. package/src/components/sidebarshortcuts/README.md +36 -0
  71. package/src/components/statusbadge/README.md +12 -0
  72. package/src/components/stepperinline/MStepperInline.spec.ts +63 -28
  73. package/src/components/stepperinline/MStepperInline.stories.ts +18 -10
  74. package/src/components/stepperinline/MStepperInline.vue +24 -10
  75. package/src/components/stepperinline/README.md +6 -2
  76. package/src/components/tabs/MTabs.stories.ts +18 -0
  77. package/src/components/tabs/MTabs.vue +30 -14
  78. package/src/components/tabs/Mtabs.spec.ts +56 -10
  79. package/src/components/tabs/README.md +6 -3
  80. package/src/components/textinput/MTextInput.stories.ts +13 -1
  81. package/src/components/textinput/MTextInput.vue +12 -0
  82. package/src/components/textinput/README.md +3 -1
  83. package/src/components/tile/MTile.spec.ts +61 -0
  84. package/src/components/tile/MTile.stories.ts +102 -0
  85. package/src/components/tile/MTile.vue +68 -0
  86. package/src/components/tile/README.md +19 -0
  87. package/src/components/tileclickable/MTileClickable.spec.ts +130 -0
  88. package/src/components/tileclickable/MTileClickable.stories.ts +60 -0
  89. package/src/components/tileclickable/MTileClickable.vue +106 -0
  90. package/src/components/tileclickable/README.md +30 -0
  91. package/src/components/tileexpandable/MTileExpandable.spec.ts +121 -0
  92. package/src/components/tileexpandable/MTileExpandable.stories.ts +50 -0
  93. package/src/components/tileexpandable/MTileExpandable.vue +131 -0
  94. package/src/components/tileexpandable/README.md +36 -0
  95. package/src/components/tileselectable/MTileSelectable.spec.ts +177 -0
  96. package/src/components/tileselectable/MTileSelectable.stories.ts +55 -0
  97. package/src/components/tileselectable/MTileSelectable.vue +142 -0
  98. package/src/components/tileselectable/README.md +44 -0
  99. package/src/components/toaster/README.md +1 -1
  100. package/src/components/tooltip/MTooltip.vue +5 -0
  101. package/src/components/tooltip/README.md +16 -1
  102. package/src/main.ts +15 -0
  103. package/src/utils/use-is-mobile.composable.ts +20 -0
  104. package/src/utils/use-is-mobile.spec.ts +70 -0
@@ -15,6 +15,7 @@ import { GlobalDirectives } from 'vue';
15
15
  import { nextTick } from 'vue';
16
16
  import { OnCleanup } from '@vue/reactivity';
17
17
  import { PublicProps } from 'vue';
18
+ import { ShallowRef } from 'vue';
18
19
  import { ShallowUnwrapRef } from 'vue';
19
20
  import { Slot } from 'vue';
20
21
  import { VNode } from 'vue';
@@ -31,7 +32,13 @@ appearance: "standard" | "ghost";
31
32
  behavior: "multiple" | "single";
32
33
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
33
34
 
34
- declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
35
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
36
+ appearance: "primary" | "secondary" | "tertiary" | "inverse";
37
+ size: "s" | "m" | "l";
38
+ orientation: "vertical" | "horizontal";
39
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
40
+
41
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
35
42
  back: () => any;
36
43
  "update:open": (value: boolean) => any;
37
44
  }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
@@ -43,11 +50,11 @@ scroll: boolean;
43
50
  titleRef: HTMLHeadingElement;
44
51
  }, any>;
45
52
 
46
- declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
53
+ declare const __VLS_component_12: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
47
54
 
48
- declare const __VLS_component_12: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
55
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
49
56
 
50
- declare const __VLS_component_13: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
57
+ declare const __VLS_component_14: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
51
58
  "update:modelValue": (v: NormalizedFile[]) => any;
52
59
  validation: (validationState: FilesValidationState) => any;
53
60
  }, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
@@ -63,40 +70,167 @@ uploadButtonLabel: string;
63
70
  fileInput: HTMLInputElement;
64
71
  }, HTMLDivElement>;
65
72
 
66
- declare const __VLS_component_14: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
73
+ declare const __VLS_component_15: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
74
+ delete: () => any;
75
+ }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
76
+ onDelete?: (() => any) | undefined;
77
+ }>, {
78
+ format: "inline" | "stacked";
79
+ deleteButtonLabel: string;
80
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
81
+
82
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
67
83
  appearance: "standard" | "accent" | "danger" | "inverse";
68
84
  type: "button" | "reset" | "submit";
69
85
  size: "s" | "m" | "l";
70
86
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
71
87
 
72
- declare const __VLS_component_15: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
88
+ declare const __VLS_component_17: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
73
89
  appearance: "secondary" | "accent" | "inverse" | "standard";
74
90
  size: "s" | "m";
75
91
  iconPosition: "left" | "right";
76
92
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
77
93
 
78
- declare const __VLS_component_16: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
94
+ declare const __VLS_component_18: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
79
95
  "update:open": (value: boolean) => any;
80
- }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
96
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
81
97
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
82
98
  }>, {
83
99
  scroll: boolean;
84
100
  closable: boolean;
85
101
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
86
102
 
87
- declare const __VLS_component_17: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
103
+ declare const __VLS_component_19: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
104
+
105
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
106
+
107
+ declare const __VLS_component_20: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
108
+ back: () => any;
109
+ "toggle-menu": () => any;
110
+ }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
111
+ onBack?: (() => any) | undefined;
112
+ "onToggle-menu"?: (() => any) | undefined;
113
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
114
+
115
+ declare const __VLS_component_21: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
116
+ appearance: "standard" | "inverse";
117
+ size: "s" | "m" | "l";
118
+ position: "top" | "right" | "bottom" | "left";
119
+ closable: boolean;
120
+ pointer: boolean;
121
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
88
122
 
89
- declare const __VLS_component_18: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
123
+ declare const __VLS_component_22: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
124
+ "update:modelValue": (value: boolean) => any;
90
125
  close: () => any;
91
126
  }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
127
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
128
+ onClose?: (() => any) | undefined;
129
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
130
+
131
+ declare const __VLS_component_23: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
132
+ trigger: HTMLButtonElement;
133
+ listbox: HTMLDivElement;
134
+ }, any>;
135
+
136
+ declare const __VLS_component_24: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
137
+ "log-out": () => any;
138
+ }, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
139
+ "onLog-out"?: (() => any) | undefined;
140
+ }>, {
141
+ logOutLabel: string;
142
+ expendable: boolean;
143
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
144
+ listbox: ({
145
+ $: ComponentInternalInstance;
146
+ $data: {};
147
+ $props: {
148
+ readonly expanded: boolean;
149
+ readonly logOutLabel: string;
150
+ readonly onListboxKeydown: (event: KeyboardEvent) => void;
151
+ readonly hideFloatingItem: () => void;
152
+ readonly "onLog-out"?: (() => any) | undefined;
153
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
154
+ $attrs: {
155
+ [x: string]: unknown;
156
+ };
157
+ $refs: {
158
+ [x: string]: unknown;
159
+ } & {
160
+ container: HTMLDivElement;
161
+ };
162
+ $slots: Readonly<{
163
+ [name: string]: Slot<any> | undefined;
164
+ }>;
165
+ $root: ComponentPublicInstance | null;
166
+ $parent: ComponentPublicInstance | null;
167
+ $host: Element | null;
168
+ $emit: (event: "log-out") => void;
169
+ $el: HTMLDivElement;
170
+ $options: ComponentOptionsBase<Readonly<{
171
+ expanded: boolean;
172
+ logOutLabel: string;
173
+ onListboxKeydown: (event: KeyboardEvent) => void;
174
+ hideFloatingItem: () => void;
175
+ }> & Readonly<{
176
+ "onLog-out"?: (() => any) | undefined;
177
+ }>, {
178
+ container: Readonly<ShallowRef<HTMLDivElement | null>>;
179
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
180
+ "log-out": () => any;
181
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
182
+ beforeCreate?: (() => void) | (() => void)[];
183
+ created?: (() => void) | (() => void)[];
184
+ beforeMount?: (() => void) | (() => void)[];
185
+ mounted?: (() => void) | (() => void)[];
186
+ beforeUpdate?: (() => void) | (() => void)[];
187
+ updated?: (() => void) | (() => void)[];
188
+ activated?: (() => void) | (() => void)[];
189
+ deactivated?: (() => void) | (() => void)[];
190
+ beforeDestroy?: (() => void) | (() => void)[];
191
+ beforeUnmount?: (() => void) | (() => void)[];
192
+ destroyed?: (() => void) | (() => void)[];
193
+ unmounted?: (() => void) | (() => void)[];
194
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
195
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
196
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
197
+ };
198
+ $forceUpdate: () => void;
199
+ $nextTick: nextTick;
200
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
201
+ } & Readonly<{}> & Omit<Readonly<{
202
+ expanded: boolean;
203
+ logOutLabel: string;
204
+ onListboxKeydown: (event: KeyboardEvent) => void;
205
+ hideFloatingItem: () => void;
206
+ }> & Readonly<{
207
+ "onLog-out"?: (() => any) | undefined;
208
+ }>, "container"> & ShallowUnwrapRef< {
209
+ container: Readonly<ShallowRef<HTMLDivElement | null>>;
210
+ }> & {} & ComponentCustomProperties & {} & {
211
+ $slots: {
212
+ default?(_: {}): any;
213
+ };
214
+ }) | null;
215
+ trigger: HTMLButtonElement;
216
+ }, HTMLElement>;
217
+
218
+ declare const __VLS_component_25: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
219
+ trigger: HTMLButtonElement;
220
+ listbox: HTMLDivElement;
221
+ }, any>;
222
+
223
+ declare const __VLS_component_26: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
224
+ close: () => any;
225
+ }, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{
92
226
  onClose?: (() => any) | undefined;
93
227
  }>, {
94
228
  status: "info" | "success" | "warning" | "error";
95
229
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
96
230
 
97
- declare const __VLS_component_19: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
231
+ declare const __VLS_component_27: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
98
232
  "update:modelValue": (value: string | number) => any;
99
- }, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{
233
+ }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
100
234
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
101
235
  }>, {
102
236
  size: "s" | "m";
@@ -104,52 +238,86 @@ clearLabel: string;
104
238
  inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
105
239
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
106
240
 
107
- declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
241
+ declare const __VLS_component_28: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{}>, {
242
+ appearance: "primary" | "secondary" | "inverse";
243
+ bordered: boolean;
244
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
245
+
246
+ declare const __VLS_component_29: DefineComponent<__VLS_Props_65, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
247
+ action: () => any;
248
+ }, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{
249
+ onAction?: (() => any) | undefined;
250
+ }>, {
251
+ appearance: "primary" | "secondary" | "inverse";
252
+ iconPosition: "bottom" | "right";
253
+ bordered: boolean;
254
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
255
+
256
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
108
257
 
109
- declare const __VLS_component_20: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
258
+ declare const __VLS_component_30: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{}>, {
259
+ appearance: "primary" | "secondary";
260
+ label: string;
261
+ trigger: "container" | "icon" | "button";
262
+ bordered: boolean;
263
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
264
+
265
+ declare const __VLS_component_31: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
266
+ "update:modelValue": (value: boolean) => any;
267
+ }, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{
268
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
269
+ }>, {
270
+ inputType: "checkbox" | "radio";
271
+ bordered: boolean;
272
+ inputPosition: "left" | "right";
273
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
274
+
275
+ declare const __VLS_component_32: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
110
276
  "update:open": (value: boolean) => any;
111
- }, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
277
+ }, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{
112
278
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
113
279
  }>, {
114
280
  status: "info" | "success" | "warning" | "error";
115
281
  closable: boolean;
116
282
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
117
283
 
118
- declare const __VLS_component_21: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{}>, {
284
+ declare const __VLS_component_33: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{}>, {
119
285
  position: "top" | "bottom" | "left" | "right";
120
286
  pointer: boolean;
121
287
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
122
288
 
123
- declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
289
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
290
+ close: () => any;
291
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
292
+ onClose?: (() => any) | undefined;
293
+ }>, {
294
+ position: "top" | "bottom" | "left" | "right";
295
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
296
+ popover: HTMLDivElement;
297
+ }, any>;
124
298
 
125
- declare const __VLS_component_4: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
299
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
126
300
  size: "s" | "m" | "l";
127
301
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
128
302
 
129
- declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
303
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
130
304
  appearance: "standard" | "accent" | "danger" | "inverse";
131
305
  type: "button" | "reset" | "submit";
132
306
  size: "s" | "m" | "l";
133
307
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
134
308
 
135
- declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
309
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
136
310
  appearance: "standard" | "accent" | "tips" | "inverse";
137
311
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
138
312
 
139
- declare const __VLS_component_7: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
313
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
140
314
  previousButtonAriaLabel: string;
141
315
  nextButtonAriaLabel: string;
142
316
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
143
317
  contentContainer: HTMLDivElement;
144
318
  }, HTMLDivElement>;
145
319
 
146
- declare const __VLS_component_8: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
147
-
148
- declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
149
- appearance: "primary" | "secondary" | "tertiary" | "inverse";
150
- size: "s" | "m" | "l";
151
- orientation: "vertical" | "horizontal";
152
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
320
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
153
321
 
154
322
  /**
155
323
  * An Accordion List is a component that organizes content into collapsible sections, allowing users to show or hide related information within a vertically stacked layout. This structure helps optimize space and improve readability by displaying only relevant content when needed. Accordion Lists are commonly used in FAQs, settings menus, and structured content navigation to enhance user experience and reduce visual clutter.
@@ -507,9 +675,39 @@ declare type __VLS_Props_20 = {
507
675
  };
508
676
 
509
677
  /**
510
- * A flag is used to display meta-information about a product or service, acting as a visual indicator of the main category of content. It is typically placed at the top of an element to ensure immediate visibility.
678
+ * A file uploader allows users to upload one or multiple files by either dragging and dropping files into a dedicated area or selecting them manually through their local folders. It provides real-time feedback on upload progress and file status, including file name, size, and success or error indicators. File uploaders are commonly used in forms, content management systems, and document submission processes to facilitate seamless file handling.
511
679
  */
512
680
  declare type __VLS_Props_21 = {
681
+ /**
682
+ * Represents the file to be displayed in the file uploader item.
683
+ */
684
+ file: NormalizedFile;
685
+ /**
686
+ * Layout format of the item.
687
+ */
688
+ format?: 'inline' | 'stacked';
689
+ /**
690
+ * Indicates if the file is valid according to the uploader's validation rules.
691
+ */
692
+ valid?: boolean;
693
+ /**
694
+ * Custom error message for the file.
695
+ */
696
+ errorMessage?: string;
697
+ /**
698
+ * Label for the delete button.
699
+ */
700
+ deleteButtonLabel?: string;
701
+ /**
702
+ * Optional informational text displayed under the file name.
703
+ */
704
+ information?: string;
705
+ };
706
+
707
+ /**
708
+ * A flag is used to display meta-information about a product or service, acting as a visual indicator of the main category of content. It is typically placed at the top of an element to ensure immediate visibility.
709
+ */
710
+ declare type __VLS_Props_22 = {
513
711
  /**
514
712
  * Label of the Flag.
515
713
  */
@@ -523,7 +721,7 @@ declare type __VLS_Props_21 = {
523
721
  /**
524
722
  * Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
525
723
  */
526
- declare type __VLS_Props_22 = {
724
+ declare type __VLS_Props_23 = {
527
725
  /**
528
726
  * Defines the visual style of the icon button.
529
727
  */
@@ -548,12 +746,16 @@ declare type __VLS_Props_22 = {
548
746
  * Specifies the button's HTML `type` attribute.
549
747
  */
550
748
  type?: 'button' | 'reset' | 'submit';
749
+ /**
750
+ * If `true`, a loading state is displayed.
751
+ */
752
+ isLoading?: boolean;
551
753
  };
552
754
 
553
755
  /**
554
756
  * A KPI Item is used to display Key Performance Indicators (KPIs) within an interface, providing a quick and clear visualization of essential data. It often includes contextual elements such as labels, trends, or status indicators to help users interpret the information at a glance. KPI Items are commonly used in dashboards, reports, and analytics tools to highlight critical metrics and facilitate data-driven decision-making.
555
757
  */
556
- declare type __VLS_Props_23 = {
758
+ declare type __VLS_Props_24 = {
557
759
  /**
558
760
  * The current value of the kpi item.
559
761
  */
@@ -583,7 +785,7 @@ declare type __VLS_Props_23 = {
583
785
  /**
584
786
  * A linear progress bar (Buffer) visually represents the progress of a task along a horizontal track, often indicating both current progress and a secondary buffered state. This type of progress bar is commonly used for loading processes, file uploads, or streaming indicators, where part of the task is completed while another portion is preloaded or buffered. It provides users with real-time feedback on task advancement.
585
787
  */
586
- declare type __VLS_Props_24 = {
788
+ declare type __VLS_Props_25 = {
587
789
  /**
588
790
  * Allows to define the progress bar size.
589
791
  */
@@ -597,7 +799,7 @@ declare type __VLS_Props_24 = {
597
799
  /**
598
800
  * A linear progress bar (Percentage) visually represents the completion of a task along a horizontal track, displaying the exact progress in percentage within the bar. It is commonly used for file uploads, installations, form completion, or any process requiring user awareness of progress. The percentage label provides clear and immediate feedback, helping users track progress with precision.
599
801
  */
600
- declare type __VLS_Props_25 = {
802
+ declare type __VLS_Props_26 = {
601
803
  /**
602
804
  * The current value of the progress bar.
603
805
  */
@@ -607,7 +809,7 @@ declare type __VLS_Props_25 = {
607
809
  /**
608
810
  * A link is an interactive text element used to navigate between pages, sections, or external resources. It is typically underlined and styled to indicate its clickable nature. Links can be standalone or embedded within text, and they may include icons to reinforce their purpose. They are essential for navigation and content referencing in web and application interfaces.
609
811
  */
610
- declare type __VLS_Props_26 = {
812
+ declare type __VLS_Props_27 = {
611
813
  /**
612
814
  * Position of the icon relative to the text.
613
815
  */
@@ -641,7 +843,7 @@ declare type __VLS_Props_26 = {
641
843
  /**
642
844
  * A loader is a visual indicator used to inform users that a process is in progress, typically during data fetching, page loading, or background operations. It provides feedback that the system is working, helping to manage user expectations and reduce perceived wait time.
643
845
  */
644
- declare type __VLS_Props_27 = {
846
+ declare type __VLS_Props_28 = {
645
847
  /**
646
848
  * Specifies the visual appearance of the loader.
647
849
  */
@@ -659,7 +861,7 @@ declare type __VLS_Props_27 = {
659
861
  /**
660
862
  * A loading overlay is a full-screen or container-level layer that indicates a process is in progress, preventing user interaction until the task is completed. It includes a progress indicator, and a message to inform users about the loading state. Loading Overlays are commonly used in data-heavy applications, form submissions, and page transitions to enhance user experience by managing wait times effectively.
661
863
  */
662
- declare type __VLS_Props_28 = {
864
+ declare type __VLS_Props_29 = {
663
865
  /**
664
866
  * Controls the visibility of the loading overlay.
665
867
  */
@@ -670,10 +872,20 @@ declare type __VLS_Props_28 = {
670
872
  text?: string;
671
873
  };
672
874
 
875
+ /**
876
+ * An action bottom bar is a fixed element positioned at the bottom of the screen or section, providing persistent access to key actions. It is commonly used for confirmations, validations, warnings, or bulk actions in forms, editing workflows, or data management. This component ensures that primary and secondary actions remain visible and accessible, even when scrolling.
877
+ */
878
+ declare type __VLS_Props_3 = {
879
+ /**
880
+ * If `true`, adds a shadow to the action bottom bar.
881
+ */
882
+ shadow?: boolean;
883
+ };
884
+
673
885
  /**
674
886
  * A modal is a dialog window that appears on top of the main content, requiring user interaction before returning to the main interface. It is used to focus attention on a specific task, provide important information, or request confirmation for an action. Modals typically include a title, description, and primary/secondary actions and should be used for single, focused tasks to avoid disrupting the user experience.
675
887
  */
676
- declare type __VLS_Props_29 = {
888
+ declare type __VLS_Props_30 = {
677
889
  /**
678
890
  * if `true`, display the modal.
679
891
  */
@@ -701,19 +913,35 @@ declare type __VLS_Props_29 = {
701
913
  };
702
914
 
703
915
  /**
704
- * An action bottom bar is a fixed element positioned at the bottom of the screen or section, providing persistent access to key actions. It is commonly used for confirmations, validations, warnings, or bulk actions in forms, editing workflows, or data management. This component ensures that primary and secondary actions remain visible and accessible, even when scrolling.
916
+ * A navigation indicator visually represents the current position within a sequence or step-based process, helping users track progress or navigate through a series of items. It is commonly used in carousels, onboarding flows, or media players. Navigation indicators can be interactive, allowing users to jump between steps, or passive, simply showing progress.
705
917
  */
706
- declare type __VLS_Props_3 = {
918
+ declare type __VLS_Props_31 = {
707
919
  /**
708
- * If `true`, adds a shadow to the action bottom bar.
920
+ * The total number of steps to display.
709
921
  */
710
- shadow?: boolean;
922
+ steps: number;
923
+ /**
924
+ * The index of the currently active step (zero-based).
925
+ */
926
+ modelValue: number;
927
+ /**
928
+ * The current action state of the button. Can be "pause" to show the pause icon or "resume" to show the play icon.
929
+ */
930
+ action?: 'pause' | 'resume';
931
+ /**
932
+ * The text label displayed in the Resume or Pause button.
933
+ */
934
+ label?: string;
935
+ /**
936
+ * If `true`, hides the Resume or Pause button next to the steps.
937
+ */
938
+ player?: boolean;
711
939
  };
712
940
 
713
941
  /**
714
942
  * A Number Badge represents a numeric count, often used to indicate notifications, updates, or items requiring attention. Its distinct appearance makes it easy to spot changes at a glance, ensuring users stay informed without breaking their workflow. Badges are commonly attached to icons, buttons, or tabs to provide contextual awareness.
715
943
  */
716
- declare type __VLS_Props_30 = {
944
+ declare type __VLS_Props_32 = {
717
945
  /**
718
946
  * Content of the badge.
719
947
  */
@@ -731,7 +959,7 @@ declare type __VLS_Props_30 = {
731
959
  /**
732
960
  * An overlay is a semi-transparent layer that appears on top of the main content, typically used to dim the background and focus user attention on a specific element. It is often combined with modals, popovers, or loading states to create a visual separation between the foreground and background. Overlays help prevent unintended interactions while keeping the primary content accessible.
733
961
  */
734
- declare type __VLS_Props_31 = {
962
+ declare type __VLS_Props_33 = {
735
963
  /**
736
964
  * Controls the visibility of the overlay.
737
965
  */
@@ -742,10 +970,40 @@ declare type __VLS_Props_31 = {
742
970
  dialogLabel?: string;
743
971
  };
744
972
 
973
+ /**
974
+ * 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.
975
+ */
976
+ declare type __VLS_Props_34 = {
977
+ /**
978
+ * Main title displayed in the page header.
979
+ */
980
+ title: string;
981
+ /**
982
+ * Enables a drop shadow under the page header.
983
+ */
984
+ shadow?: boolean;
985
+ /**
986
+ * Displays a back icon button in the header.
987
+ */
988
+ backButton?: boolean;
989
+ /**
990
+ * Component status.
991
+ */
992
+ status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
993
+ /**
994
+ * Label text displayed inside the status badge.
995
+ */
996
+ statusLabel?: string;
997
+ /**
998
+ * Additional information text shown below the title.
999
+ */
1000
+ extraInfo?: string;
1001
+ };
1002
+
745
1003
  /**
746
1004
  * Pagination is a navigation component that allows users to browse through large sets of content by dividing it into discrete pages. It typically includes previous and next buttons, numeric page selectors, or dropdowns to jump between pages efficiently. Pagination improves usability and performance in content-heavy applications such as tables, search results, and articles by preventing long scrolls and reducing page load times.
747
1005
  */
748
- declare type __VLS_Props_32 = {
1006
+ declare type __VLS_Props_35 = {
749
1007
  /**
750
1008
  * A unique identifier for the pagination.
751
1009
  */
@@ -775,7 +1033,7 @@ declare type __VLS_Props_32 = {
775
1033
  /**
776
1034
  * A password input is a specialized input field used to securely enter and manage passwords. It typically masks the characters entered to protect sensitive information from being seen. It includes a toggle button to show or hide the password, improving usability while maintaining security. Password inputs are commonly used in login forms, account creation, and authentication flows.
777
1035
  */
778
- declare type __VLS_Props_33 = {
1036
+ declare type __VLS_Props_36 = {
779
1037
  /**
780
1038
  * A unique identifier for the password input element, used to associate the label with the form element.
781
1039
  */
@@ -824,7 +1082,7 @@ declare type __VLS_Props_33 = {
824
1082
  /**
825
1083
  * A phone number input is a specialized input field designed to capture and validate phone numbers, ensuring correct formatting based on country-specific dialing codes. It often includes a country selector that automatically adjusts the international dialing code. This component improves user experience by standardizing phone number entries, reducing errors, and facilitating global compatibility. It is commonly used in registration forms, authentication flows, and contact information fields.
826
1084
  */
827
- declare type __VLS_Props_34 = {
1085
+ declare type __VLS_Props_37 = {
828
1086
  /**
829
1087
  * A unique identifier for the phone number input element, used to associate the label with the form element.
830
1088
  */
@@ -878,7 +1136,7 @@ declare type __VLS_Props_34 = {
878
1136
  /**
879
1137
  * A pincode input is a specialized input field used to enter short numeric codes, such as verification codes, security PINs, or authentication tokens. It typically separates each digit into individual fields to improve readability and ease of entry. This component is commonly used in two-factor authentication (2FA), password recovery, and secure access flows, ensuring a structured and user-friendly experience.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
880
1138
  */
881
- declare type __VLS_Props_35 = {
1139
+ declare type __VLS_Props_38 = {
882
1140
  /**
883
1141
  * A unique identifier for the pincode element, used to associate the label with the form element.
884
1142
  */
@@ -910,67 +1168,141 @@ declare type __VLS_Props_35 = {
910
1168
  };
911
1169
 
912
1170
  /**
913
- * A quantity selector is an input component that allows users to increment or decrement a numeric value, typically using plus (+) and minus (−) buttons. It provides a simple and efficient way to adjust quantities without manual typing, ensuring controlled input. This component is commonly used in e-commerce, inventory management, and settings where users need to specify amounts.
1171
+ * 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.
914
1172
  */
915
- declare type __VLS_Props_36 = {
916
- /**
917
- * A unique identifier for the quantity selector element, used to associate the label with the form element.
918
- */
919
- id: string;
920
- /**
921
- * The name attribute for the quantity selector element, typically used for form submission.
922
- */
923
- name?: string;
924
- /**
925
- * The current value of the quantity selector field.
926
- */
927
- modelValue?: number;
928
- /**
929
- * If `true`, applies an invalid state to the quantity selector.
930
- */
931
- isInvalid?: boolean;
932
- /**
933
- * If `true`, disables the quantity selector, making it non-interactive.
934
- */
935
- disabled?: boolean;
1173
+ declare type __VLS_Props_39 = {
936
1174
  /**
937
- * Determines the size of the quantity selector.
1175
+ * Allows to define the popover appearance.
938
1176
  */
939
- size?: 's' | 'm';
1177
+ appearance?: 'standard' | 'inverse';
940
1178
  /**
941
- * Minimum acceptable value for the quantity selector.
1179
+ * Defines the preferred position of the popover relative to its activator.
942
1180
  */
943
- min?: number;
1181
+ position?: 'top' | 'right' | 'bottom' | 'left';
944
1182
  /**
945
- * Maximum acceptable value for the quantity selector.
1183
+ * Controls the visibility of the popover pointer (arrow).
946
1184
  */
947
- max?: number;
1185
+ pointer?: boolean;
948
1186
  /**
949
- * Determines how much the value will change per click when the quantity is increased or decreased.
1187
+ * Sets the overall size of the popover.
950
1188
  */
951
- step?: number;
1189
+ size?: 's' | 'm' | 'l';
952
1190
  /**
953
- * If `true`, the quantity selector is read-only (cannot be edited).
1191
+ * Displays a close icon button inside the popover.
1192
+ * Clicking the button will close the popover.
954
1193
  */
955
- readonly?: boolean;
1194
+ closable?: boolean;
956
1195
  /**
957
- * The label text for the increment button.
1196
+ * Title displayed at the top of the popover.
958
1197
  */
959
- incrementlabel?: string;
1198
+ title?: string;
960
1199
  /**
961
- * The label text for the decrement button.
1200
+ * Supplementary text displayed below the title.
962
1201
  */
963
- decrementLabel?: string;
1202
+ description?: string;
964
1203
  };
965
1204
 
966
1205
  /**
967
- * A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.
1206
+ * 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.
968
1207
  */
969
- declare type __VLS_Props_37 = {
1208
+ declare type __VLS_Props_4 = {
970
1209
  /**
971
- * A unique identifier for the radio, used to associate the label with the form element.
1210
+ * title displayed in mobile version.
972
1211
  */
973
- id: string;
1212
+ title?: string;
1213
+ /**
1214
+ * Defines the position of the listbox relative to its trigger or container.
1215
+ */
1216
+ position?: 'top' | 'bottom' | 'left' | 'right';
1217
+ /**
1218
+ * An array of objects that allows you to provide all the data needed to generate the content for each item.
1219
+ */
1220
+ items: Array<{
1221
+ /**
1222
+ * The icon displayed for the item from Mozaic-icon-vue.
1223
+ */
1224
+ icon?: Component;
1225
+ /**
1226
+ * The label displayed for the item.
1227
+ */
1228
+ label: string;
1229
+ /**
1230
+ * If `true`, the item will be disabled.
1231
+ */
1232
+ disabled?: boolean;
1233
+ /**
1234
+ * Allows to define the item appearance.
1235
+ */
1236
+ appearance?: 'standard' | 'danger';
1237
+ /**
1238
+ * Add a divider on top of the item.
1239
+ */
1240
+ divider?: boolean;
1241
+ }>;
1242
+ };
1243
+
1244
+ /**
1245
+ * 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.
1246
+ */
1247
+ declare type __VLS_Props_40 = {
1248
+ /**
1249
+ * A unique identifier for the quantity selector element, used to associate the label with the form element.
1250
+ */
1251
+ id: string;
1252
+ /**
1253
+ * The name attribute for the quantity selector element, typically used for form submission.
1254
+ */
1255
+ name?: string;
1256
+ /**
1257
+ * The current value of the quantity selector field.
1258
+ */
1259
+ modelValue?: number;
1260
+ /**
1261
+ * If `true`, applies an invalid state to the quantity selector.
1262
+ */
1263
+ isInvalid?: boolean;
1264
+ /**
1265
+ * If `true`, disables the quantity selector, making it non-interactive.
1266
+ */
1267
+ disabled?: boolean;
1268
+ /**
1269
+ * Determines the size of the quantity selector.
1270
+ */
1271
+ size?: 's' | 'm';
1272
+ /**
1273
+ * Minimum acceptable value for the quantity selector.
1274
+ */
1275
+ min?: number;
1276
+ /**
1277
+ * Maximum acceptable value for the quantity selector.
1278
+ */
1279
+ max?: number;
1280
+ /**
1281
+ * Determines how much the value will change per click when the quantity is increased or decreased.
1282
+ */
1283
+ step?: number;
1284
+ /**
1285
+ * If `true`, the quantity selector is read-only (cannot be edited).
1286
+ */
1287
+ readonly?: boolean;
1288
+ /**
1289
+ * The label text for the increment button.
1290
+ */
1291
+ incrementlabel?: string;
1292
+ /**
1293
+ * The label text for the decrement button.
1294
+ */
1295
+ decrementLabel?: string;
1296
+ };
1297
+
1298
+ /**
1299
+ * 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.
1300
+ */
1301
+ declare type __VLS_Props_41 = {
1302
+ /**
1303
+ * A unique identifier for the radio, used to associate the label with the form element.
1304
+ */
1305
+ id: string;
974
1306
  /**
975
1307
  * The name attribute for the radio element, typically used for form submission.
976
1308
  */
@@ -996,7 +1328,7 @@ declare type __VLS_Props_37 = {
996
1328
  /**
997
1329
  * A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#radio-group).
998
1330
  */
999
- declare type __VLS_Props_38 = {
1331
+ declare type __VLS_Props_42 = {
1000
1332
  /**
1001
1333
  * The name attribute for the radio element, typically used for form submission.
1002
1334
  */
@@ -1028,11 +1360,14 @@ declare type __VLS_Props_38 = {
1028
1360
  /**
1029
1361
  * A Segmented Control allows users to switch between multiple options or views within a single container. It provides a compact and efficient way to toggle between sections without requiring a dropdown or separate navigation. Segmented Controls are commonly used in filters, tabbed navigation, and content selection to enhance user interaction and accessibility.
1030
1362
  */
1031
- declare type __VLS_Props_39 = {
1363
+ declare type __VLS_Props_43 = {
1032
1364
  /**
1033
- * The selected segment index, bound via v-model.
1365
+ * Defines the currently active tab.
1366
+ *
1367
+ * - If a `number` is provided, it represents the index of the segment.
1368
+ * - If a `string` is provided, it must match the `id` of one of the segments.
1034
1369
  */
1035
- modelValue?: number;
1370
+ modelValue?: string | number;
1036
1371
  /**
1037
1372
  * if `true`, the segmented control take the full width.
1038
1373
  */
@@ -1046,51 +1381,20 @@ declare type __VLS_Props_39 = {
1046
1381
  */
1047
1382
  segments: Array<{
1048
1383
  /**
1049
- * The label displayed for the segment.
1050
- */
1051
- label: string;
1052
- }>;
1053
- };
1054
-
1055
- /**
1056
- * An action list is a contextual menu that presents a list of available actions related to a specific element or interface area. It allows users to quickly access functions such as editing, sharing, deleting, or navigating to sub-actions. Action Lists are commonly triggered by buttons, icons (e.g., three-dot menus), or right-click interactions, ensuring a clean and efficient UI.
1057
- */
1058
- declare type __VLS_Props_4 = {
1059
- /**
1060
- * title displayed in mobile version.
1061
- */
1062
- title?: string;
1063
- /**
1064
- * An array of objects that allows you to provide all the data needed to generate the content for each item.
1065
- */
1066
- items: Array<{
1067
- /**
1068
- * The icon displayed for the item from Mozaic-icon-vue.
1384
+ * Unique identifier for the segment.
1069
1385
  */
1070
- icon?: Component;
1386
+ id?: string;
1071
1387
  /**
1072
- * The label displayed for the item.
1388
+ * The label displayed for the segment.
1073
1389
  */
1074
1390
  label: string;
1075
- /**
1076
- * If `true`, the item will be disabled.
1077
- */
1078
- disabled?: boolean;
1079
- /**
1080
- * Allows to define the item appearance.
1081
- */
1082
- appearance?: 'standard' | 'danger';
1083
- /**
1084
- * Add a divider on top of the item.
1085
- */
1086
- divider?: boolean;
1087
1391
  }>;
1088
1392
  };
1089
1393
 
1090
1394
  /**
1091
1395
  * A select component allows users to choose a single option from a predefined list within a native dropdown menu. It helps simplify input by displaying only relevant choices, reducing the need for manual text entry. Select components are commonly used in forms, settings, and filters where structured selection is required.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#select).
1092
1396
  */
1093
- declare type __VLS_Props_40 = {
1397
+ declare type __VLS_Props_44 = {
1094
1398
  /**
1095
1399
  * A unique identifier for the select, used to associate the label with the form element.
1096
1400
  */
@@ -1135,10 +1439,147 @@ declare type __VLS_Props_40 = {
1135
1439
  readonly?: boolean;
1136
1440
  };
1137
1441
 
1442
+ /**
1443
+ * 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.
1444
+ */
1445
+ declare type __VLS_Props_45 = {
1446
+ /**
1447
+ * the state of the expanded sidebar, bound via v-model.
1448
+ */
1449
+ modelValue: boolean;
1450
+ };
1451
+
1452
+ /**
1453
+ * 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.
1454
+ */
1455
+ declare type __VLS_Props_46 = {
1456
+ /**
1457
+ * The text displayed for the sidebar item in its expanded state.
1458
+ */
1459
+ label: string;
1460
+ /**
1461
+ * The title shown at the top of the floating menu when the sidebar is collapsed.
1462
+ */
1463
+ menuLabel: string;
1464
+ /**
1465
+ * A Vue component used to display an icon alongside the sidebar item.
1466
+ */
1467
+ icon?: Component;
1468
+ };
1469
+
1470
+ /**
1471
+ * 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.
1472
+ */
1473
+ declare type __VLS_Props_47 = {
1474
+ /**
1475
+ * The main text or name displayed in the sidebar footer profile.
1476
+ */
1477
+ title?: string;
1478
+ /**
1479
+ * Secondary text or description displayed under the title in the footer.
1480
+ */
1481
+ subtitle?: string;
1482
+ /**
1483
+ * URL of the avatar image displayed in the footer profile.
1484
+ */
1485
+ avatar?: string;
1486
+ /**
1487
+ * if `true`, hides the sidebar expand/collapse button.
1488
+ */
1489
+ expendable?: boolean;
1490
+ /**
1491
+ * Text to display for the log out button.
1492
+ */
1493
+ logOutLabel?: string;
1494
+ };
1495
+
1496
+ /**
1497
+ * SidebarHeader is a component that renders the header of a sidebar, displaying a logo and a main title.
1498
+ */
1499
+ declare type __VLS_Props_48 = {
1500
+ /**
1501
+ * The main title text displayed in the sidebar header.
1502
+ */
1503
+ title: string;
1504
+ /**
1505
+ * URL of the logo image displayed in the sidebar header.
1506
+ */
1507
+ logo: string;
1508
+ };
1509
+
1510
+ /**
1511
+ * 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.
1512
+ */
1513
+ declare type __VLS_Props_49 = {
1514
+ tag?: string;
1515
+ /**
1516
+ * The text label displayed for the navigation item.
1517
+ */
1518
+ label: string;
1519
+ /**
1520
+ * Optional icon component displayed alongside the label.
1521
+ */
1522
+ icon?: Component;
1523
+ /**
1524
+ * The URL the navigation item links to.
1525
+ */
1526
+ href?: string;
1527
+ /**
1528
+ * Marks the item as locked. Shows a lock icon and prevents interaction.
1529
+ */
1530
+ locked?: boolean;
1531
+ /**
1532
+ * Indicates the link is external. Opens in a new tab and shows an external link icon.
1533
+ */
1534
+ external?: boolean;
1535
+ /**
1536
+ * Marks the item as active, applying the active styling.
1537
+ */
1538
+ active?: boolean;
1539
+ };
1540
+
1541
+ /**
1542
+ * 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.
1543
+ */
1544
+ declare type __VLS_Props_5 = {
1545
+ /**
1546
+ * Allows to define the avatar size.
1547
+ */
1548
+ size?: 's' | 'm' | 'l';
1549
+ };
1550
+
1551
+ /**
1552
+ * SidebarShortcutItem is a component that renders a sidebar shortcut link with an optional icon and label, providing quick access to a specific URL.
1553
+ */
1554
+ declare type __VLS_Props_50 = {
1555
+ /**
1556
+ * The text label displayed for the shortcut item.
1557
+ */
1558
+ label: string;
1559
+ /**
1560
+ * The URL the shortcut item links to.
1561
+ */
1562
+ href: string;
1563
+ /**
1564
+ * Optional icon component displayed alongside the label.
1565
+ */
1566
+ icon?: Component;
1567
+ };
1568
+
1569
+ /**
1570
+ * 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.
1571
+ */
1572
+ declare type __VLS_Props_51 = {
1573
+ /**
1574
+ * 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.
1575
+ */
1576
+ stacked?: boolean;
1577
+ };
1578
+
1138
1579
  /**
1139
1580
  * A Star rating visually represents a score or evaluation and can be used to display a rating or allow users to rate an item, such as a product or service. It serves two main purposes: collecting user feedback by enabling individuals to express their experience and providing social proof by displaying ratings from other users to assist decision-making. Rating Stars are commonly found in e-commerce, review systems, and feedback interfaces, offering a quick and intuitive way to assess quality or satisfaction.
1140
1581
  */
1141
- declare type __VLS_Props_41 = {
1582
+ declare type __VLS_Props_52 = {
1142
1583
  /**
1143
1584
  * Determines whether the rating is interactive or read-only.
1144
1585
  * When true, all user interactions (click, hover, keyboard) are disabled.
@@ -1185,7 +1626,7 @@ declare type __VLS_Props_41 = {
1185
1626
  /**
1186
1627
  * A Status Badge is used to indicate the current status of an element, providing a clear and concise visual cue. The status can change dynamically based on updates, events, or conditions within the system. Status Badges help users quickly identify the state of an item, such as an order status, system health, or process completion. They are often color-coded to enhance readability and recognition.
1187
1628
  */
1188
- declare type __VLS_Props_42 = {
1629
+ declare type __VLS_Props_53 = {
1189
1630
  /**
1190
1631
  * Content of the status badge
1191
1632
  */
@@ -1199,7 +1640,7 @@ declare type __VLS_Props_42 = {
1199
1640
  /**
1200
1641
  * A Status dot is a small visual indicator used to represent the state or condition of an element. It is often color-coded to convey different statuses at a glance, such as availability, activity, or urgency. Status Dots are commonly found in user presence indicators, system statuses, or process tracking to provide quick, unobtrusive feedback.
1201
1642
  */
1202
- declare type __VLS_Props_43 = {
1643
+ declare type __VLS_Props_54 = {
1203
1644
  /**
1204
1645
  * Allows to define the status dot type.
1205
1646
  */
@@ -1213,7 +1654,7 @@ declare type __VLS_Props_43 = {
1213
1654
  /**
1214
1655
  * A Status Message is a compact component that combines an icon and concise text to communicate system states or user feedback in limited interface space. The icon and message work together as a unified structure to provide clear, immediate understanding of the current status. Status Messages are designed for contexts where space is constrained but clear communication is essential, offering quick recognition through color-coded icons paired with brief, actionable text.
1215
1656
  */
1216
- declare type __VLS_Props_44 = {
1657
+ declare type __VLS_Props_55 = {
1217
1658
  /**
1218
1659
  * Allows to define the status message style.
1219
1660
  */
@@ -1227,7 +1668,7 @@ declare type __VLS_Props_44 = {
1227
1668
  /**
1228
1669
  * A Status Notification is used to draw the user’s attention to important information that needs to be acknowledged. It often provides feedback on a process, highlights a status update, or alerts users about an issue. Notifications are typically triggered by user actions or system events and are designed to be easily noticeable while maintaining a non-intrusive experience.
1229
1670
  */
1230
- declare type __VLS_Props_45 = {
1671
+ declare type __VLS_Props_56 = {
1231
1672
  /**
1232
1673
  * Title of the status notification.
1233
1674
  */
@@ -1249,7 +1690,7 @@ declare type __VLS_Props_45 = {
1249
1690
  /**
1250
1691
  * A stepper bottom bar is a persistent navigation component used to guide users through a multi-step process. It typically includes “Previous” and “Next” buttons, along with optional actions such as “Cancel” or “Validate”, ensuring a structured flow. This component is commonly used in forms, onboarding sequences, and checkout processes, improving usability by keeping navigation actions always accessible.
1251
1692
  */
1252
- declare type __VLS_Props_46 = {
1693
+ declare type __VLS_Props_57 = {
1253
1694
  /**
1254
1695
  * Current step of the stepper compact.
1255
1696
  */
@@ -1283,7 +1724,7 @@ declare type __VLS_Props_46 = {
1283
1724
  /**
1284
1725
  * A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
1285
1726
  */
1286
- declare type __VLS_Props_47 = {
1727
+ declare type __VLS_Props_58 = {
1287
1728
  /**
1288
1729
  * Current step of the stepper compact.
1289
1730
  */
@@ -1305,15 +1746,23 @@ declare type __VLS_Props_47 = {
1305
1746
  /**
1306
1747
  * A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
1307
1748
  */
1308
- declare type __VLS_Props_48 = {
1749
+ declare type __VLS_Props_59 = {
1309
1750
  /**
1310
- * Current step of the stepper compact.
1751
+ * Defines the currently active step.
1752
+ *
1753
+ * - If a `number` is provided, it represents the 1-based position of the step
1754
+ * in the `steps` array (e.g. `1` for the first step).
1755
+ * - If a `string` is provided, it must match the `id` of one of the steps.
1311
1756
  */
1312
- currentStep?: number;
1757
+ currentStep?: string | number;
1313
1758
  /**
1314
1759
  * Steps of the stepper inline.
1315
1760
  */
1316
1761
  steps?: Array<{
1762
+ /**
1763
+ * Uniquer identifier for the step.
1764
+ */
1765
+ id?: string;
1317
1766
  /**
1318
1767
  * Label of the step.
1319
1768
  */
@@ -1326,9 +1775,36 @@ declare type __VLS_Props_48 = {
1326
1775
  };
1327
1776
 
1328
1777
  /**
1329
- * Tabs are a navigation component that allows users to switch between different sections within the same context. They help organize content efficiently by displaying only one section at a time, reducing clutter and improving accessibility. Tabs can include icons, labels, and notification badges to provide additional context. They are commonly used in dashboards, product management, and settings interfaces.
1778
+ * 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.
1330
1779
  */
1331
- declare type __VLS_Props_49 = {
1780
+ declare type __VLS_Props_6 = {
1781
+ /**
1782
+ * Allows to define the breadcrumb appearance.
1783
+ */
1784
+ appearance?: 'standard' | 'inverse';
1785
+ /**
1786
+ * Links of the breadcrumb.
1787
+ */
1788
+ links: Array<{
1789
+ /**
1790
+ * The label displayed for the link.
1791
+ */
1792
+ label: string;
1793
+ /**
1794
+ * URL for the link (for external links or the `to` prop for `router-link`).
1795
+ */
1796
+ href: string;
1797
+ /**
1798
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
1799
+ */
1800
+ router?: boolean;
1801
+ }>;
1802
+ };
1803
+
1804
+ /**
1805
+ * 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.
1806
+ */
1807
+ declare type __VLS_Props_60 = {
1332
1808
  /**
1333
1809
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
1334
1810
  */
@@ -1342,13 +1818,20 @@ declare type __VLS_Props_49 = {
1342
1818
  */
1343
1819
  centered?: boolean;
1344
1820
  /**
1345
- * The selected tab index, bound via v-model.
1821
+ * Defines the currently active tab.
1822
+ *
1823
+ * - If a `number` is provided, it represents the index of the tab.
1824
+ * - If a `string` is provided, it must match the `id` of one of the tabs.
1346
1825
  */
1347
- modelValue?: number;
1826
+ modelValue?: string | number;
1348
1827
  /**
1349
1828
  * An array of objects that allows you to provide all the data needed to generate the content for each tab.
1350
1829
  */
1351
1830
  tabs: Array<{
1831
+ /**
1832
+ * Unique identifier for the tab.
1833
+ */
1834
+ id?: string;
1352
1835
  /**
1353
1836
  * The icon displayed for the tab from Mozaic-icon-vue.
1354
1837
  */
@@ -1368,20 +1851,10 @@ declare type __VLS_Props_49 = {
1368
1851
  }>;
1369
1852
  };
1370
1853
 
1371
- /**
1372
- * An avatar is a graphical representation of a user, entity, or group, commonly displayed as an image, initials, or an icon. It helps identify individuals or accounts in profiles, comments, chat interfaces, and user lists. Avatars can be customized with different styles, sizes, and fallback options (such as initials or placeholders) to ensure consistency and recognition across interfaces. When multiple users are represented, Avatar groups provide a compact way to display them collectively.
1373
- */
1374
- declare type __VLS_Props_5 = {
1375
- /**
1376
- * Allows to define the avatar size.
1377
- */
1378
- size?: 's' | 'm' | 'l';
1379
- };
1380
-
1381
1854
  /**
1382
1855
  * A Tag is a UI element used to filter data, categorize, select or deselect an option. It can appear standalone, in a group, or embedded within other components. Depending on its use, a tag can be interactive (clickable, removable, selectable) or static (serving as a visual indicator).
1383
1856
  */
1384
- declare type __VLS_Props_50 = {
1857
+ declare type __VLS_Props_61 = {
1385
1858
  /**
1386
1859
  * Defines the behavior and layout of the tag.
1387
1860
  */
@@ -1423,7 +1896,7 @@ declare type __VLS_Props_50 = {
1423
1896
  /**
1424
1897
  * A text area is an input designed for multi-line text entry, allowing users to input longer content compared to a standard text input. It is commonly used for comments, feedback, descriptions, and messaging. Text areas can be resizable or fixed in height, depending on the context, and often include placeholder text, character limits, and validation messages to guide users.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#textarea).
1425
1898
  */
1426
- declare type __VLS_Props_51 = {
1899
+ declare type __VLS_Props_62 = {
1427
1900
  /**
1428
1901
  * A unique identifier for the textarea, used to associate the label with the form element.
1429
1902
  */
@@ -1469,7 +1942,7 @@ declare type __VLS_Props_51 = {
1469
1942
  /**
1470
1943
  * A text input is a single-line input that allows users to enter and edit short text-based content. It is commonly used for names, email addresses, search queries, and form entries. Text Inputs often include placeholders, validation rules, and assistive text to guide users and ensure accurate data entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
1471
1944
  */
1472
- declare type __VLS_Props_52 = {
1945
+ declare type __VLS_Props_63 = {
1473
1946
  /**
1474
1947
  * A unique identifier for the input element, used to associate the label with the form element.
1475
1948
  */
@@ -1514,12 +1987,118 @@ declare type __VLS_Props_52 = {
1514
1987
  * The label text for the clear button.
1515
1988
  */
1516
1989
  clearLabel?: string;
1990
+ /**
1991
+ * Displays additional text inside the component, before the input.
1992
+ */
1993
+ prefix?: string;
1994
+ /**
1995
+ * Displays additional text inside the component, after the input.
1996
+ */
1997
+ suffix?: string;
1998
+ };
1999
+
2000
+ /**
2001
+ * 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.
2002
+ */
2003
+ declare type __VLS_Props_64 = {
2004
+ /**
2005
+ * Defines the visual style of the tile.
2006
+ */
2007
+ appearance?: 'primary' | 'secondary' | 'inverse';
2008
+ /**
2009
+ * Adds a border around the tile.
2010
+ */
2011
+ bordered?: boolean;
2012
+ };
2013
+
2014
+ /**
2015
+ * 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.
2016
+ */
2017
+ declare type __VLS_Props_65 = {
2018
+ /**
2019
+ * Defines the visual style of the tile.
2020
+ */
2021
+ appearance?: 'primary' | 'secondary' | 'inverse';
2022
+ /**
2023
+ * Adds a border around the tile.
2024
+ */
2025
+ bordered?: boolean;
2026
+ /**
2027
+ * If set, the tile becomes an external link (`<a>`).
2028
+ * Used to navigate to a full URL.
2029
+ */
2030
+ href?: string;
2031
+ /**
2032
+ * If set, the tile becomes an internal link (Vue Router route).
2033
+ * Used for navigation within the app.
2034
+ */
2035
+ to?: string;
2036
+ /**
2037
+ * Where to open the link.
2038
+ */
2039
+ target?: '_self' | '_blank' | '_parent' | '_top';
2040
+ /**
2041
+ * Position of the icon relative to the content.
2042
+ */
2043
+ iconPosition?: 'bottom' | 'right';
2044
+ };
2045
+
2046
+ /**
2047
+ * 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.
2048
+ */
2049
+ declare type __VLS_Props_66 = {
2050
+ /**
2051
+ * Defines the visual style of the tile.
2052
+ */
2053
+ appearance?: 'primary' | 'secondary';
2054
+ /**
2055
+ * Adds a border around the tile.
2056
+ */
2057
+ bordered?: boolean;
2058
+ /**
2059
+ * Determines how the tile expansion is triggered.
2060
+ */
2061
+ trigger?: 'container' | 'icon' | 'button';
2062
+ /**
2063
+ * Label for the action button (only used when trigger is 'button').
2064
+ */
2065
+ label?: string;
2066
+ };
2067
+
2068
+ /**
2069
+ * 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.
2070
+ */
2071
+ declare type __VLS_Props_67 = {
2072
+ /**
2073
+ * The current value of the tile (selected or not).
2074
+ */
2075
+ modelValue: boolean;
2076
+ /**
2077
+ * Adds a border around the tile.
2078
+ */
2079
+ bordered?: boolean;
2080
+ /**
2081
+ * Type of input used for selection.
2082
+ */
2083
+ inputType?: 'checkbox' | 'radio';
2084
+ /**
2085
+ * Position of the input relative to the tile content.
2086
+ */
2087
+ inputPosition?: 'left' | 'right';
2088
+ /**
2089
+ * Vertical alignment of the input.
2090
+ */
2091
+ centered?: boolean;
2092
+ /**
2093
+ * If `true`, hides the input and makes the whole tile selectable.
2094
+ */
2095
+ hideInput?: boolean;
1517
2096
  };
1518
2097
 
1519
2098
  /**
1520
2099
  * A toaster is a temporary notification that appears briefly on the screen to provide feedback or updates without interrupting the user’s workflow. It is commonly used for success messages, warnings, errors, or informational updates. Toasters can disappear automatically after a few seconds, be dismissed manually via a close button, or be removed when the user performs a relevant action. They typically include an icon, a short message, and an optional close button for better usability.
1521
2100
  */
1522
- declare type __VLS_Props_53 = {
2101
+ declare type __VLS_Props_68 = {
1523
2102
  /**
1524
2103
  * If `true`, display the Toaster.
1525
2104
  */
@@ -1553,7 +2132,7 @@ declare type __VLS_Props_53 = {
1553
2132
  /**
1554
2133
  * A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.
1555
2134
  */
1556
- declare type __VLS_Props_54 = {
2135
+ declare type __VLS_Props_69 = {
1557
2136
  /**
1558
2137
  * A unique identifier for the toggle, used to associate the label with the form element.
1559
2138
  */
@@ -1580,10 +2159,25 @@ declare type __VLS_Props_54 = {
1580
2159
  disabled?: boolean;
1581
2160
  };
1582
2161
 
2162
+ declare type __VLS_Props_7 = {
2163
+ /**
2164
+ * 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.
2165
+ */
2166
+ modelValue?: number;
2167
+ /**
2168
+ * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
2169
+ */
2170
+ items: MenuItem[];
2171
+ /**
2172
+ * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2173
+ */
2174
+ outlined?: boolean;
2175
+ };
2176
+
1583
2177
  /**
1584
2178
  * A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).
1585
2179
  */
1586
- declare type __VLS_Props_55 = {
2180
+ declare type __VLS_Props_70 = {
1587
2181
  /**
1588
2182
  * The name attribute for the toggle element, typically used for form submission.
1589
2183
  */
@@ -1612,7 +2206,7 @@ declare type __VLS_Props_55 = {
1612
2206
  /**
1613
2207
  * A tooltip is a small, contextual message that appears when users hover over, focus on, or tap an element, providing additional information or guidance without cluttering the interface. Tooltips are commonly used to explain icons, abbreviations, or complex actions. They typically disappear automatically when the user moves away from the trigger element.
1614
2208
  */
1615
- declare type __VLS_Props_56 = {
2209
+ declare type __VLS_Props_71 = {
1616
2210
  /**
1617
2211
  * A unique identifier for the tooltip, used to describe the tooltip.
1618
2212
  */
@@ -1629,48 +2223,10 @@ declare type __VLS_Props_56 = {
1629
2223
  * If `true`, the tooltip display a pointer.
1630
2224
  */
1631
2225
  pointer?: boolean;
1632
- };
1633
-
1634
- /**
1635
- * A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.
1636
- */
1637
- declare type __VLS_Props_6 = {
1638
- /**
1639
- * Allows to define the breadcrumb appearance.
1640
- */
1641
- appearance?: 'standard' | 'inverse';
1642
- /**
1643
- * Links of the breadcrumb.
1644
- */
1645
- links: Array<{
1646
- /**
1647
- * The label displayed for the link.
1648
- */
1649
- label: string;
1650
- /**
1651
- * URL for the link (for external links or the `to` prop for `router-link`).
1652
- */
1653
- href: string;
1654
- /**
1655
- * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
1656
- */
1657
- router?: boolean;
1658
- }>;
1659
- };
1660
-
1661
- declare type __VLS_Props_7 = {
1662
- /**
1663
- * Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
1664
- */
1665
- modelValue?: number;
1666
- /**
1667
- * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
1668
- */
1669
- items: MenuItem[];
1670
2226
  /**
1671
- * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2227
+ * Standalone tooltip
1672
2228
  */
1673
- outlined?: boolean;
2229
+ standalone?: boolean;
1674
2230
  };
1675
2231
 
1676
2232
  /**
@@ -1731,7 +2287,7 @@ declare type __VLS_Props_9 = {
1731
2287
 
1732
2288
  declare type __VLS_PublicProps = {
1733
2289
  modelValue: number;
1734
- } & __VLS_Props_41;
2290
+ } & __VLS_Props_52;
1735
2291
 
1736
2292
  declare function __VLS_template(): {
1737
2293
  attrs: Partial<{}>;
@@ -1751,6 +2307,23 @@ declare function __VLS_template(): {
1751
2307
  };
1752
2308
 
1753
2309
  declare function __VLS_template_10(): {
2310
+ attrs: Partial<{}>;
2311
+ slots: Readonly<{
2312
+ /**
2313
+ * Use this slot to insert the content who need a vertical divider
2314
+ */
2315
+ default?: VNode;
2316
+ }> & {
2317
+ /**
2318
+ * Use this slot to insert the content who need a vertical divider
2319
+ */
2320
+ default?: VNode;
2321
+ };
2322
+ refs: {};
2323
+ rootEl: HTMLDivElement;
2324
+ };
2325
+
2326
+ declare function __VLS_template_11(): {
1754
2327
  attrs: Partial<{}>;
1755
2328
  slots: Readonly<{
1756
2329
  /**
@@ -1777,7 +2350,7 @@ declare function __VLS_template_10(): {
1777
2350
  rootEl: any;
1778
2351
  };
1779
2352
 
1780
- declare function __VLS_template_11(): {
2353
+ declare function __VLS_template_12(): {
1781
2354
  attrs: Partial<{}>;
1782
2355
  slots: Readonly<{
1783
2356
  /**
@@ -1794,7 +2367,7 @@ declare function __VLS_template_11(): {
1794
2367
  rootEl: HTMLDivElement;
1795
2368
  };
1796
2369
 
1797
- declare function __VLS_template_12(): {
2370
+ declare function __VLS_template_13(): {
1798
2371
  attrs: Partial<{}>;
1799
2372
  slots: Readonly<{
1800
2373
  /**
@@ -1811,7 +2384,7 @@ declare function __VLS_template_12(): {
1811
2384
  rootEl: HTMLFieldSetElement;
1812
2385
  };
1813
2386
 
1814
- declare function __VLS_template_13(): {
2387
+ declare function __VLS_template_14(): {
1815
2388
  attrs: Partial<{}>;
1816
2389
  slots: Readonly<{
1817
2390
  /**
@@ -1854,41 +2427,434 @@ declare function __VLS_template_13(): {
1854
2427
  rootEl: HTMLDivElement;
1855
2428
  };
1856
2429
 
1857
- declare function __VLS_template_14(): {
2430
+ declare function __VLS_template_15(): {
2431
+ attrs: Partial<{}>;
2432
+ slots: Readonly<{
2433
+ /**
2434
+ * Slot for customizing the file name display.
2435
+ * Receives `{ file: { name: string; size?: number;} }` as slot props.
2436
+ */
2437
+ name: VNode;
2438
+ /**
2439
+ * Slot for displaying additional file information.
2440
+ */
2441
+ information: VNode;
2442
+ /**
2443
+ * Slot for providing a custom error message display.
2444
+ */
2445
+ errorMessage: VNode;
2446
+ }> & {
2447
+ /**
2448
+ * Slot for customizing the file name display.
2449
+ * Receives `{ file: { name: string; size?: number;} }` as slot props.
2450
+ */
2451
+ name: VNode;
2452
+ /**
2453
+ * Slot for displaying additional file information.
2454
+ */
2455
+ information: VNode;
2456
+ /**
2457
+ * Slot for providing a custom error message display.
2458
+ */
2459
+ errorMessage: VNode;
2460
+ };
2461
+ refs: {};
2462
+ rootEl: HTMLDivElement;
2463
+ };
2464
+
2465
+ declare function __VLS_template_16(): {
1858
2466
  attrs: Partial<{}>;
1859
2467
  slots: Readonly<{
1860
2468
  /**
1861
2469
  * Use this slot to insert an icon for the Button.
1862
2470
  */
1863
- icon: VNode;
2471
+ icon: VNode;
2472
+ }> & {
2473
+ /**
2474
+ * Use this slot to insert an icon for the Button.
2475
+ */
2476
+ icon: VNode;
2477
+ };
2478
+ refs: {};
2479
+ rootEl: HTMLButtonElement;
2480
+ };
2481
+
2482
+ declare function __VLS_template_17(): {
2483
+ attrs: Partial<{}>;
2484
+ slots: Readonly<{
2485
+ /**
2486
+ * Use this slot to insert the textual content of the Link.
2487
+ */
2488
+ default: string;
2489
+ /**
2490
+ * Use this slot to insert an icon for the Link.
2491
+ */
2492
+ icon?: VNode;
2493
+ }> & {
2494
+ /**
2495
+ * Use this slot to insert the textual content of the Link.
2496
+ */
2497
+ default: string;
2498
+ /**
2499
+ * Use this slot to insert an icon for the Link.
2500
+ */
2501
+ icon?: VNode;
2502
+ };
2503
+ refs: {};
2504
+ rootEl: any;
2505
+ };
2506
+
2507
+ declare function __VLS_template_18(): {
2508
+ attrs: Partial<{}>;
2509
+ slots: Readonly<{
2510
+ /**
2511
+ * Use this slot to insert an icon next to the title of the modal.
2512
+ */
2513
+ icon?: VNode;
2514
+ /**
2515
+ * Use this slot to insert the content of the modal.
2516
+ */
2517
+ default?: VNode;
2518
+ /**
2519
+ * Use this slot to insert a link in the footer.
2520
+ */
2521
+ link?: VNode;
2522
+ /**
2523
+ * Use this slot to insert buttons in the footer.
2524
+ */
2525
+ footer?: VNode;
2526
+ }> & {
2527
+ /**
2528
+ * Use this slot to insert an icon next to the title of the modal.
2529
+ */
2530
+ icon?: VNode;
2531
+ /**
2532
+ * Use this slot to insert the content of the modal.
2533
+ */
2534
+ default?: VNode;
2535
+ /**
2536
+ * Use this slot to insert a link in the footer.
2537
+ */
2538
+ link?: VNode;
2539
+ /**
2540
+ * Use this slot to insert buttons in the footer.
2541
+ */
2542
+ footer?: VNode;
2543
+ };
2544
+ refs: {};
2545
+ rootEl: any;
2546
+ };
2547
+
2548
+ declare function __VLS_template_19(): {
2549
+ attrs: Partial<{}>;
2550
+ slots: Readonly<{
2551
+ /**
2552
+ * Use this slot to insert a centered content inside the overlay.
2553
+ */
2554
+ default?: VNode;
2555
+ }> & {
2556
+ /**
2557
+ * Use this slot to insert a centered content inside the overlay.
2558
+ */
2559
+ default?: VNode;
2560
+ };
2561
+ refs: {};
2562
+ rootEl: HTMLDivElement;
2563
+ };
2564
+
2565
+ declare function __VLS_template_2(): {
2566
+ attrs: Partial<{}>;
2567
+ slots: Readonly<{
2568
+ /**
2569
+ * Use this slot to display custom content.
2570
+ */
2571
+ default: VNode;
2572
+ }> & {
2573
+ /**
2574
+ * Use this slot to display custom content.
2575
+ */
2576
+ default: VNode;
2577
+ };
2578
+ refs: {};
2579
+ rootEl: HTMLDivElement;
2580
+ };
2581
+
2582
+ declare function __VLS_template_20(): {
2583
+ attrs: Partial<{}>;
2584
+ slots: Readonly<{
2585
+ /**
2586
+ * Use this slot to insert action items in the top content.
2587
+ */
2588
+ actions?: VNode;
2589
+ /**
2590
+ * Use this slot to insert any content below the Page Header top content.
2591
+ */
2592
+ content?: VNode;
2593
+ /**
2594
+ * Use this slot to insert a tab in the header.
2595
+ */
2596
+ tabs?: VNode;
2597
+ }> & {
2598
+ /**
2599
+ * Use this slot to insert action items in the top content.
2600
+ */
2601
+ actions?: VNode;
2602
+ /**
2603
+ * Use this slot to insert any content below the Page Header top content.
2604
+ */
2605
+ content?: VNode;
2606
+ /**
2607
+ * Use this slot to insert a tab in the header.
2608
+ */
2609
+ tabs?: VNode;
2610
+ };
2611
+ refs: {};
2612
+ rootEl: HTMLDivElement;
2613
+ };
2614
+
2615
+ declare function __VLS_template_21(): {
2616
+ attrs: Partial<{}>;
2617
+ slots: Readonly<{
2618
+ /**
2619
+ * Main content of the popover.
2620
+ */
2621
+ default?: () => VNode[];
2622
+ /**
2623
+ * Activator element that triggers the popover.
2624
+ * Must contain a single <button> or element with [type="button"] attribute.
2625
+ * Receives the popover `id` as a slot prop and must bind it
2626
+ * to the `popovertarget` attribute.
2627
+ */
2628
+ activator?: (props: {
2629
+ id: string;
2630
+ }) => VNode[];
2631
+ /**
2632
+ * Use this slot to insert buttons or link in the footer.
2633
+ */
2634
+ footer?: VNode;
2635
+ }> & {
2636
+ /**
2637
+ * Main content of the popover.
2638
+ */
2639
+ default?: () => VNode[];
2640
+ /**
2641
+ * Activator element that triggers the popover.
2642
+ * Must contain a single <button> or element with [type="button"] attribute.
2643
+ * Receives the popover `id` as a slot prop and must bind it
2644
+ * to the `popovertarget` attribute.
2645
+ */
2646
+ activator?: (props: {
2647
+ id: string;
2648
+ }) => VNode[];
2649
+ /**
2650
+ * Use this slot to insert buttons or link in the footer.
2651
+ */
2652
+ footer?: VNode;
2653
+ };
2654
+ refs: {};
2655
+ rootEl: any;
2656
+ };
2657
+
2658
+ declare function __VLS_template_22(): {
2659
+ attrs: Partial<{}>;
2660
+ slots: Readonly<{
2661
+ /**
2662
+ * Slot for the sidebar header. Should contain an `MSidebarHeader` component.
2663
+ */
2664
+ header: VNode[];
2665
+ /**
2666
+ * Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
2667
+ * with one or more `MSidebarShortcutItem` components inside.
2668
+ */
2669
+ shortcuts: VNode[];
2670
+ /**
2671
+ * Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
2672
+ */
2673
+ nav: VNode[];
2674
+ /**
2675
+ * Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
2676
+ */
2677
+ footer: VNode[];
2678
+ }> & {
2679
+ /**
2680
+ * Slot for the sidebar header. Should contain an `MSidebarHeader` component.
2681
+ */
2682
+ header: VNode[];
2683
+ /**
2684
+ * Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
2685
+ * with one or more `MSidebarShortcutItem` components inside.
2686
+ */
2687
+ shortcuts: VNode[];
2688
+ /**
2689
+ * Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
2690
+ */
2691
+ nav: VNode[];
2692
+ /**
2693
+ * Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
2694
+ */
2695
+ footer: VNode[];
2696
+ };
2697
+ refs: {};
2698
+ rootEl: HTMLElement;
2699
+ };
2700
+
2701
+ declare function __VLS_template_23(): {
2702
+ attrs: Partial<{}>;
2703
+ slots: Readonly<{
2704
+ /**
2705
+ * Contains one or more MSidebarNavItem components used to render the submenu items.
2706
+ */
2707
+ default: VNode[];
2708
+ }> & {
2709
+ /**
2710
+ * Contains one or more MSidebarNavItem components used to render the submenu items.
2711
+ */
2712
+ default: VNode[];
2713
+ };
2714
+ refs: {
2715
+ trigger: HTMLButtonElement;
2716
+ listbox: HTMLDivElement;
2717
+ };
2718
+ rootEl: any;
2719
+ };
2720
+
2721
+ declare function __VLS_template_24(): {
2722
+ attrs: Partial<{}>;
2723
+ slots: Readonly<{
2724
+ /**
2725
+ * Contains one or more MSidebarNavItem components used to render the profile items.
2726
+ */
2727
+ default: VNode[];
2728
+ }> & {
2729
+ /**
2730
+ * Contains one or more MSidebarNavItem components used to render the profile items.
2731
+ */
2732
+ default: VNode[];
2733
+ };
2734
+ refs: {
2735
+ listbox: ({
2736
+ $: ComponentInternalInstance;
2737
+ $data: {};
2738
+ $props: {
2739
+ readonly expanded: boolean;
2740
+ readonly logOutLabel: string;
2741
+ readonly onListboxKeydown: (event: KeyboardEvent) => void;
2742
+ readonly hideFloatingItem: () => void;
2743
+ readonly "onLog-out"?: (() => any) | undefined;
2744
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2745
+ $attrs: {
2746
+ [x: string]: unknown;
2747
+ };
2748
+ $refs: {
2749
+ [x: string]: unknown;
2750
+ } & {
2751
+ container: HTMLDivElement;
2752
+ };
2753
+ $slots: Readonly<{
2754
+ [name: string]: Slot<any> | undefined;
2755
+ }>;
2756
+ $root: ComponentPublicInstance | null;
2757
+ $parent: ComponentPublicInstance | null;
2758
+ $host: Element | null;
2759
+ $emit: (event: "log-out") => void;
2760
+ $el: HTMLDivElement;
2761
+ $options: ComponentOptionsBase<Readonly<{
2762
+ expanded: boolean;
2763
+ logOutLabel: string;
2764
+ onListboxKeydown: (event: KeyboardEvent) => void;
2765
+ hideFloatingItem: () => void;
2766
+ }> & Readonly<{
2767
+ "onLog-out"?: (() => any) | undefined;
2768
+ }>, {
2769
+ container: Readonly<ShallowRef<HTMLDivElement | null>>;
2770
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2771
+ "log-out": () => any;
2772
+ }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2773
+ beforeCreate?: (() => void) | (() => void)[];
2774
+ created?: (() => void) | (() => void)[];
2775
+ beforeMount?: (() => void) | (() => void)[];
2776
+ mounted?: (() => void) | (() => void)[];
2777
+ beforeUpdate?: (() => void) | (() => void)[];
2778
+ updated?: (() => void) | (() => void)[];
2779
+ activated?: (() => void) | (() => void)[];
2780
+ deactivated?: (() => void) | (() => void)[];
2781
+ beforeDestroy?: (() => void) | (() => void)[];
2782
+ beforeUnmount?: (() => void) | (() => void)[];
2783
+ destroyed?: (() => void) | (() => void)[];
2784
+ unmounted?: (() => void) | (() => void)[];
2785
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2786
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2787
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2788
+ };
2789
+ $forceUpdate: () => void;
2790
+ $nextTick: nextTick;
2791
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
2792
+ } & Readonly<{}> & Omit<Readonly<{
2793
+ expanded: boolean;
2794
+ logOutLabel: string;
2795
+ onListboxKeydown: (event: KeyboardEvent) => void;
2796
+ hideFloatingItem: () => void;
2797
+ }> & Readonly<{
2798
+ "onLog-out"?: (() => any) | undefined;
2799
+ }>, "container"> & ShallowUnwrapRef< {
2800
+ container: Readonly<ShallowRef<HTMLDivElement | null>>;
2801
+ }> & {} & ComponentCustomProperties & {} & {
2802
+ $slots: {
2803
+ default?(_: {}): any;
2804
+ };
2805
+ }) | null;
2806
+ trigger: HTMLButtonElement;
2807
+ };
2808
+ rootEl: HTMLElement;
2809
+ };
2810
+
2811
+ declare function __VLS_template_25(): {
2812
+ attrs: Partial<{}>;
2813
+ slots: Readonly<{
2814
+ /**
2815
+ * Slot for sidebar shortcut items. Should contain one or more `MSidebarShortcutItem` components.
2816
+ */
2817
+ default: VNode[];
2818
+ }> & {
2819
+ /**
2820
+ * Slot for sidebar shortcut items. Should contain one or more `MSidebarShortcutItem` components.
2821
+ */
2822
+ default: VNode[];
2823
+ };
2824
+ refs: {
2825
+ trigger: HTMLButtonElement;
2826
+ listbox: HTMLDivElement;
2827
+ };
2828
+ rootEl: any;
2829
+ };
2830
+
2831
+ declare function __VLS_template_26(): {
2832
+ attrs: Partial<{}>;
2833
+ slots: Readonly<{
2834
+ /**
2835
+ * Use this slot to insert a button or a link in the footer
2836
+ */
2837
+ footer?: VNode;
1864
2838
  }> & {
1865
2839
  /**
1866
- * Use this slot to insert an icon for the Button.
2840
+ * Use this slot to insert a button or a link in the footer
1867
2841
  */
1868
- icon: VNode;
2842
+ footer?: VNode;
1869
2843
  };
1870
2844
  refs: {};
1871
- rootEl: HTMLButtonElement;
2845
+ rootEl: HTMLElement;
1872
2846
  };
1873
2847
 
1874
- declare function __VLS_template_15(): {
2848
+ declare function __VLS_template_27(): {
1875
2849
  attrs: Partial<{}>;
1876
2850
  slots: Readonly<{
1877
2851
  /**
1878
- * Use this slot to insert the textual content of the Link.
1879
- */
1880
- default: string;
1881
- /**
1882
- * Use this slot to insert an icon for the Link.
2852
+ * Use this slot to insert an icon in the input.
1883
2853
  */
1884
2854
  icon?: VNode;
1885
2855
  }> & {
1886
2856
  /**
1887
- * Use this slot to insert the textual content of the Link.
1888
- */
1889
- default: string;
1890
- /**
1891
- * Use this slot to insert an icon for the Link.
2857
+ * Use this slot to insert an icon in the input.
1892
2858
  */
1893
2859
  icon?: VNode;
1894
2860
  };
@@ -1896,116 +2862,140 @@ declare function __VLS_template_15(): {
1896
2862
  rootEl: any;
1897
2863
  };
1898
2864
 
1899
- declare function __VLS_template_16(): {
2865
+ declare function __VLS_template_28(): {
1900
2866
  attrs: Partial<{}>;
1901
2867
  slots: Readonly<{
1902
2868
  /**
1903
- * Use this slot to insert an icon next to the title of the modal.
1904
- */
1905
- icon?: VNode;
1906
- /**
1907
- * Use this slot to insert the content of the modal.
2869
+ * Default slot for the main content of the tile.
1908
2870
  */
1909
- default?: VNode;
2871
+ default?: VNode[];
1910
2872
  /**
1911
- * Use this slot to insert a link in the footer.
2873
+ * Named slot for additional content shown below the main content.
1912
2874
  */
1913
- link?: VNode;
2875
+ details?: VNode[];
1914
2876
  /**
1915
- * Use this slot to insert buttons in the footer.
2877
+ * Named slot for action element, such as a button or link.
1916
2878
  */
1917
- footer?: VNode;
2879
+ action?: VNode[];
1918
2880
  }> & {
1919
2881
  /**
1920
- * Use this slot to insert an icon next to the title of the modal.
1921
- */
1922
- icon?: VNode;
1923
- /**
1924
- * Use this slot to insert the content of the modal.
2882
+ * Default slot for the main content of the tile.
1925
2883
  */
1926
- default?: VNode;
2884
+ default?: VNode[];
1927
2885
  /**
1928
- * Use this slot to insert a link in the footer.
2886
+ * Named slot for additional content shown below the main content.
1929
2887
  */
1930
- link?: VNode;
2888
+ details?: VNode[];
1931
2889
  /**
1932
- * Use this slot to insert buttons in the footer.
2890
+ * Named slot for action element, such as a button or link.
1933
2891
  */
1934
- footer?: VNode;
2892
+ action?: VNode[];
1935
2893
  };
1936
2894
  refs: {};
1937
- rootEl: any;
2895
+ rootEl: HTMLDivElement;
1938
2896
  };
1939
2897
 
1940
- declare function __VLS_template_17(): {
2898
+ declare function __VLS_template_29(): {
1941
2899
  attrs: Partial<{}>;
1942
2900
  slots: Readonly<{
1943
2901
  /**
1944
- * Use this slot to insert a centered content inside the overlay.
2902
+ * Default slot for the main content of the tile.
1945
2903
  */
1946
- default?: VNode;
2904
+ default?: VNode[];
2905
+ /**
2906
+ * Named slot for the action icon.
2907
+ */
2908
+ icon?: VNode[];
1947
2909
  }> & {
1948
2910
  /**
1949
- * Use this slot to insert a centered content inside the overlay.
2911
+ * Default slot for the main content of the tile.
1950
2912
  */
1951
- default?: VNode;
2913
+ default?: VNode[];
2914
+ /**
2915
+ * Named slot for the action icon.
2916
+ */
2917
+ icon?: VNode[];
1952
2918
  };
1953
2919
  refs: {};
1954
- rootEl: HTMLDivElement;
2920
+ rootEl: any;
1955
2921
  };
1956
2922
 
1957
- declare function __VLS_template_18(): {
2923
+ declare function __VLS_template_3(): {
1958
2924
  attrs: Partial<{}>;
1959
2925
  slots: Readonly<{
1960
2926
  /**
1961
- * Use this slot to insert a button or a link in the footer
2927
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
1962
2928
  */
1963
- footer?: VNode;
2929
+ left: VNode[];
2930
+ /**
2931
+ * Use this slot to insert buttons of the action bottom bar.
2932
+ */
2933
+ right?: VNode[];
1964
2934
  }> & {
1965
2935
  /**
1966
- * Use this slot to insert a button or a link in the footer
2936
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
1967
2937
  */
1968
- footer?: VNode;
2938
+ left: VNode[];
2939
+ /**
2940
+ * Use this slot to insert buttons of the action bottom bar.
2941
+ */
2942
+ right?: VNode[];
1969
2943
  };
1970
2944
  refs: {};
1971
- rootEl: HTMLElement;
2945
+ rootEl: HTMLDivElement;
1972
2946
  };
1973
2947
 
1974
- declare function __VLS_template_19(): {
2948
+ declare function __VLS_template_30(): {
1975
2949
  attrs: Partial<{}>;
1976
2950
  slots: Readonly<{
1977
2951
  /**
1978
- * Use this slot to insert an icon in the input.
2952
+ * Default slot for the main content of the tile.
1979
2953
  */
1980
- icon?: VNode;
2954
+ default?: VNode[];
2955
+ /**
2956
+ * Named slot for expandable content shown when the tile is opened.
2957
+ */
2958
+ details?: VNode[];
1981
2959
  }> & {
1982
2960
  /**
1983
- * Use this slot to insert an icon in the input.
2961
+ * Default slot for the main content of the tile.
1984
2962
  */
1985
- icon?: VNode;
2963
+ default?: VNode[];
2964
+ /**
2965
+ * Named slot for expandable content shown when the tile is opened.
2966
+ */
2967
+ details?: VNode[];
1986
2968
  };
1987
2969
  refs: {};
1988
- rootEl: any;
2970
+ rootEl: HTMLDivElement;
1989
2971
  };
1990
2972
 
1991
- declare function __VLS_template_2(): {
2973
+ declare function __VLS_template_31(): {
1992
2974
  attrs: Partial<{}>;
1993
2975
  slots: Readonly<{
1994
2976
  /**
1995
- * Use this slot to display custom content.
2977
+ * Default slot for the main content of the tile.
1996
2978
  */
1997
- default: VNode;
2979
+ default?: VNode[];
2980
+ /**
2981
+ * Named slot for additional content shown below the main content.
2982
+ */
2983
+ details?: VNode[];
1998
2984
  }> & {
1999
2985
  /**
2000
- * Use this slot to display custom content.
2986
+ * Default slot for the main content of the tile.
2001
2987
  */
2002
- default: VNode;
2988
+ default?: VNode[];
2989
+ /**
2990
+ * Named slot for additional content shown below the main content.
2991
+ */
2992
+ details?: VNode[];
2003
2993
  };
2004
2994
  refs: {};
2005
2995
  rootEl: HTMLDivElement;
2006
2996
  };
2007
2997
 
2008
- declare function __VLS_template_20(): {
2998
+ declare function __VLS_template_32(): {
2009
2999
  attrs: Partial<{}>;
2010
3000
  slots: Readonly<{
2011
3001
  /**
@@ -2022,7 +3012,7 @@ declare function __VLS_template_20(): {
2022
3012
  rootEl: HTMLElement;
2023
3013
  };
2024
3014
 
2025
- declare function __VLS_template_21(): {
3015
+ declare function __VLS_template_33(): {
2026
3016
  attrs: Partial<{}>;
2027
3017
  slots: Readonly<{
2028
3018
  /**
@@ -2039,32 +3029,26 @@ declare function __VLS_template_21(): {
2039
3029
  rootEl: HTMLDivElement;
2040
3030
  };
2041
3031
 
2042
- declare function __VLS_template_3(): {
3032
+ declare function __VLS_template_4(): {
2043
3033
  attrs: Partial<{}>;
2044
3034
  slots: Readonly<{
2045
3035
  /**
2046
- * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
2047
- */
2048
- left: VNode[];
2049
- /**
2050
- * Use this slot to insert buttons of the action bottom bar.
3036
+ * Activator element that triggers the listbox.
2051
3037
  */
2052
- right?: VNode[];
3038
+ activator?: VNode[];
2053
3039
  }> & {
2054
3040
  /**
2055
- * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
2056
- */
2057
- left: VNode[];
2058
- /**
2059
- * Use this slot to insert buttons of the action bottom bar.
3041
+ * Activator element that triggers the listbox.
2060
3042
  */
2061
- right?: VNode[];
3043
+ activator?: VNode[];
2062
3044
  };
2063
- refs: {};
2064
- rootEl: HTMLDivElement;
3045
+ refs: {
3046
+ popover: HTMLDivElement;
3047
+ };
3048
+ rootEl: any;
2065
3049
  };
2066
3050
 
2067
- declare function __VLS_template_4(): {
3051
+ declare function __VLS_template_5(): {
2068
3052
  attrs: Partial<{}>;
2069
3053
  slots: Readonly<{
2070
3054
  /**
@@ -2081,7 +3065,7 @@ declare function __VLS_template_4(): {
2081
3065
  rootEl: HTMLSpanElement;
2082
3066
  };
2083
3067
 
2084
- declare function __VLS_template_5(): {
3068
+ declare function __VLS_template_6(): {
2085
3069
  attrs: Partial<{}>;
2086
3070
  slots: Readonly<{
2087
3071
  /**
@@ -2106,7 +3090,7 @@ declare function __VLS_template_5(): {
2106
3090
  rootEl: HTMLButtonElement;
2107
3091
  };
2108
3092
 
2109
- declare function __VLS_template_6(): {
3093
+ declare function __VLS_template_7(): {
2110
3094
  attrs: Partial<{}>;
2111
3095
  slots: Readonly<{
2112
3096
  /**
@@ -2131,7 +3115,7 @@ declare function __VLS_template_6(): {
2131
3115
  rootEl: HTMLElement;
2132
3116
  };
2133
3117
 
2134
- declare function __VLS_template_7(): {
3118
+ declare function __VLS_template_8(): {
2135
3119
  attrs: Partial<{}>;
2136
3120
  slots: Readonly<{
2137
3121
  /**
@@ -2158,7 +3142,7 @@ declare function __VLS_template_7(): {
2158
3142
  rootEl: HTMLDivElement;
2159
3143
  };
2160
3144
 
2161
- declare function __VLS_template_8(): {
3145
+ declare function __VLS_template_9(): {
2162
3146
  attrs: Partial<{}>;
2163
3147
  slots: Readonly<{
2164
3148
  /**
@@ -2175,23 +3159,6 @@ declare function __VLS_template_8(): {
2175
3159
  rootEl: HTMLDivElement;
2176
3160
  };
2177
3161
 
2178
- declare function __VLS_template_9(): {
2179
- attrs: Partial<{}>;
2180
- slots: Readonly<{
2181
- /**
2182
- * Use this slot to insert the content who need a vertical divider
2183
- */
2184
- default?: VNode;
2185
- }> & {
2186
- /**
2187
- * Use this slot to insert the content who need a vertical divider
2188
- */
2189
- default?: VNode;
2190
- };
2191
- refs: {};
2192
- rootEl: HTMLDivElement;
2193
- };
2194
-
2195
3162
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
2196
3163
 
2197
3164
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
@@ -2220,8 +3187,32 @@ declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
2220
3187
 
2221
3188
  declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
2222
3189
 
3190
+ declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
3191
+
3192
+ declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
3193
+
3194
+ declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
3195
+
3196
+ declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
3197
+
3198
+ declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
3199
+
3200
+ declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
3201
+
3202
+ declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
3203
+
3204
+ declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
3205
+
2223
3206
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
2224
3207
 
3208
+ declare type __VLS_TemplateResult_30 = ReturnType<typeof __VLS_template_30>;
3209
+
3210
+ declare type __VLS_TemplateResult_31 = ReturnType<typeof __VLS_template_31>;
3211
+
3212
+ declare type __VLS_TemplateResult_32 = ReturnType<typeof __VLS_template_32>;
3213
+
3214
+ declare type __VLS_TemplateResult_33 = ReturnType<typeof __VLS_template_33>;
3215
+
2225
3216
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
2226
3217
 
2227
3218
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
@@ -2318,12 +3309,84 @@ declare type __VLS_WithTemplateSlots_21<T, S> = T & {
2318
3309
  };
2319
3310
  };
2320
3311
 
3312
+ declare type __VLS_WithTemplateSlots_22<T, S> = T & {
3313
+ new (): {
3314
+ $slots: S;
3315
+ };
3316
+ };
3317
+
3318
+ declare type __VLS_WithTemplateSlots_23<T, S> = T & {
3319
+ new (): {
3320
+ $slots: S;
3321
+ };
3322
+ };
3323
+
3324
+ declare type __VLS_WithTemplateSlots_24<T, S> = T & {
3325
+ new (): {
3326
+ $slots: S;
3327
+ };
3328
+ };
3329
+
3330
+ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
3331
+ new (): {
3332
+ $slots: S;
3333
+ };
3334
+ };
3335
+
3336
+ declare type __VLS_WithTemplateSlots_26<T, S> = T & {
3337
+ new (): {
3338
+ $slots: S;
3339
+ };
3340
+ };
3341
+
3342
+ declare type __VLS_WithTemplateSlots_27<T, S> = T & {
3343
+ new (): {
3344
+ $slots: S;
3345
+ };
3346
+ };
3347
+
3348
+ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
3349
+ new (): {
3350
+ $slots: S;
3351
+ };
3352
+ };
3353
+
3354
+ declare type __VLS_WithTemplateSlots_29<T, S> = T & {
3355
+ new (): {
3356
+ $slots: S;
3357
+ };
3358
+ };
3359
+
2321
3360
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
2322
3361
  new (): {
2323
3362
  $slots: S;
2324
3363
  };
2325
3364
  };
2326
3365
 
3366
+ declare type __VLS_WithTemplateSlots_30<T, S> = T & {
3367
+ new (): {
3368
+ $slots: S;
3369
+ };
3370
+ };
3371
+
3372
+ declare type __VLS_WithTemplateSlots_31<T, S> = T & {
3373
+ new (): {
3374
+ $slots: S;
3375
+ };
3376
+ };
3377
+
3378
+ declare type __VLS_WithTemplateSlots_32<T, S> = T & {
3379
+ new (): {
3380
+ $slots: S;
3381
+ };
3382
+ };
3383
+
3384
+ declare type __VLS_WithTemplateSlots_33<T, S> = T & {
3385
+ new (): {
3386
+ $slots: S;
3387
+ };
3388
+ };
3389
+
2327
3390
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
2328
3391
  new (): {
2329
3392
  $slots: S;
@@ -2449,9 +3512,9 @@ export declare const MAccordionListItem: __VLS_WithTemplateSlots_2<typeof __VLS_
2449
3512
 
2450
3513
  export declare const MActionBottomBar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2451
3514
 
2452
- export declare const MActionListbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3515
+ export declare const MActionListbox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
2453
3516
 
2454
- export declare const MAvatar: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
3517
+ export declare const MAvatar: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
2455
3518
 
2456
3519
  export declare const MBreadcrumb: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2457
3520
 
@@ -2461,11 +3524,11 @@ export declare const MBuiltInMenu: DefineComponent<__VLS_Props_7, {}, {}, {}, {}
2461
3524
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2462
3525
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2463
3526
 
2464
- export declare const MButton: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
3527
+ export declare const MButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2465
3528
 
2466
- export declare const MCallout: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
3529
+ export declare const MCallout: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2467
3530
 
2468
- export declare const MCarousel: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
3531
+ export declare const MCarousel: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2469
3532
 
2470
3533
  export declare const MCheckbox: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2471
3534
  "update:modelValue": (value: boolean) => any;
@@ -2490,7 +3553,7 @@ type: "percentage" | "content";
2490
3553
  value: number;
2491
3554
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2492
3555
 
2493
- export declare const MContainer: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
3556
+ export declare const MContainer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2494
3557
 
2495
3558
  export declare const MDatepicker: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2496
3559
  "update:modelValue": (value: string | number) => any;
@@ -2501,9 +3564,9 @@ size: "s" | "m";
2501
3564
  clearLabel: string;
2502
3565
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2503
3566
 
2504
- export declare const MDivider: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
3567
+ export declare const MDivider: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2505
3568
 
2506
- export declare const MDrawer: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
3569
+ export declare const MDrawer: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2507
3570
 
2508
3571
  /**
2509
3572
  * A built-in menu is a structured list of navigational or interactive options, typically displayed as a vertical stack. It allows users to browse categories, access settings, or navigate through different sections of an interface.
@@ -2516,56 +3579,71 @@ declare type MenuItem = {
2516
3579
  target?: '_self' | '_blank' | '_parent' | '_top';
2517
3580
  };
2518
3581
 
2519
- export declare const MField: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
3582
+ export declare const MField: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
3583
+
3584
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2520
3585
 
2521
- export declare const MFieldGroup: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
3586
+ export declare const MFileUploader: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
2522
3587
 
2523
- export declare const MFileUploader: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
3588
+ export declare const MFileUploaderItem: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2524
3589
 
2525
- export declare const MFlag: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3590
+ export declare const MFlag: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2526
3591
 
2527
- export declare const MIconButton: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
3592
+ export declare const MIconButton: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2528
3593
 
2529
- export declare const MKpiItem: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
3594
+ export declare const MKpiItem: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
2530
3595
  size: "s" | "m" | "l";
2531
3596
  status: "info" | "warning" | "error" | "success" | "neutral";
2532
3597
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2533
3598
 
2534
- export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
3599
+ export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
2535
3600
  value: number;
2536
3601
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2537
3602
 
2538
- export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
3603
+ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
2539
3604
  value: number;
2540
3605
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2541
3606
 
2542
- export declare const MLink: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
3607
+ export declare const MLink: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
2543
3608
 
2544
- export declare const MLoader: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
3609
+ export declare const MLoader: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
2545
3610
  appearance: "standard" | "accent" | "inverse";
2546
3611
  size: "xs" | "s" | "m" | "l";
2547
3612
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2548
3613
 
2549
- export declare const MLoadingOverlay: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3614
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2550
3615
 
2551
- export declare const MModal: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
3616
+ export declare const MModal: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2552
3617
 
2553
- export declare const MNumberBadge: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {
3618
+ export declare const MNavigationIndicator: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3619
+ "update:modelValue": (value: number) => any;
3620
+ action: () => any;
3621
+ }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
3622
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3623
+ onAction?: (() => any) | undefined;
3624
+ }>, {
3625
+ action: "pause" | "resume";
3626
+ player: boolean;
3627
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3628
+
3629
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {
2554
3630
  appearance: "danger" | "accent" | "inverse" | "standard";
2555
3631
  size: "s" | "m";
2556
3632
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2557
3633
 
2558
- export declare const MOverlay: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
3634
+ export declare const MOverlay: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
3635
+
3636
+ export declare const MPageHeader: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
2559
3637
 
2560
- export declare const MPagination: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3638
+ export declare const MPagination: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2561
3639
  "update:modelValue": (value: number) => any;
2562
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
3640
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2563
3641
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2564
3642
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2565
3643
 
2566
- export declare const MPasswordInput: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3644
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2567
3645
  "update:modelValue": (value: string | number) => any;
2568
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
3646
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
2569
3647
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2570
3648
  }>, {
2571
3649
  clearLabel: string;
@@ -2658,10 +3736,10 @@ icon?: VNode;
2658
3736
  }) | null;
2659
3737
  }, any>;
2660
3738
 
2661
- export declare const MPhoneNumber: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3739
+ export declare const MPhoneNumber: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2662
3740
  "update:modelValue": (value: string) => any;
2663
3741
  valid: (isValid: boolean) => any;
2664
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
3742
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
2665
3743
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2666
3744
  onValid?: ((isValid: boolean) => any) | undefined;
2667
3745
  }>, {
@@ -2673,17 +3751,19 @@ flag: boolean;
2673
3751
  locale: string;
2674
3752
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2675
3753
 
2676
- export declare const MPincode: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3754
+ export declare const MPincode: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2677
3755
  "update:modelValue": (value: string) => any;
2678
- }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
3756
+ }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
2679
3757
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2680
3758
  }>, {
2681
3759
  length: 4 | 5 | 6;
2682
3760
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2683
3761
 
2684
- export declare const MQuantitySelector: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3762
+ export declare const MPopover: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
3763
+
3764
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2685
3765
  "update:modelValue": (value: number) => any;
2686
- }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
3766
+ }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
2687
3767
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2688
3768
  }>, {
2689
3769
  modelValue: number;
@@ -2696,35 +3776,56 @@ incrementlabel: string;
2696
3776
  decrementLabel: string;
2697
3777
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2698
3778
 
2699
- export declare const MRadio: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3779
+ export declare const MRadio: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2700
3780
  "update:modelValue": (value: boolean) => any;
2701
- }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
3781
+ }, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
2702
3782
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2703
3783
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2704
3784
 
2705
- export declare const MRadioGroup: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3785
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2706
3786
  "update:modelValue": (value: string) => any;
2707
- }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
3787
+ }, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
2708
3788
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2709
3789
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2710
3790
 
2711
- export declare const MSegmentedControl: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2712
- "update:modelValue": (value: number) => any;
2713
- }, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
2714
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3791
+ export declare const MSegmentedControl: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3792
+ "update:modelValue": (value?: string | number | undefined) => any;
3793
+ }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
3794
+ "onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
2715
3795
  }>, {
2716
- modelValue: number;
3796
+ modelValue: string | number;
2717
3797
  size: "s" | "m";
2718
3798
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2719
3799
 
2720
- export declare const MSelect: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3800
+ export declare const MSelect: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2721
3801
  "update:modelValue": (value: string | number) => any;
2722
- }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
3802
+ }, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
2723
3803
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2724
3804
  }>, {
2725
3805
  size: "s" | "m";
2726
3806
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2727
3807
 
3808
+ export declare const MSidebar: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
3809
+
3810
+ export declare const MSidebarExpandableItem: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
3811
+
3812
+ export declare const MSidebarFooter: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
3813
+
3814
+ export declare const MSidebarHeader: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3815
+
3816
+ export declare const MSidebarNavItem: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3817
+ click: (value: MouseEvent) => any;
3818
+ }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
3819
+ onClick?: ((value: MouseEvent) => any) | undefined;
3820
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
3821
+ trigger: unknown;
3822
+ tooltip: HTMLDivElement;
3823
+ }, any>;
3824
+
3825
+ export declare const MSidebarShortcutItem: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
3826
+
3827
+ export declare const MSidebarShortcuts: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
3828
+
2728
3829
  export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2729
3830
  "update:modelValue": (value: number) => any;
2730
3831
  }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
@@ -2736,25 +3837,25 @@ readonly: boolean;
2736
3837
  compact: boolean;
2737
3838
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2738
3839
 
2739
- export declare const MStatusBadge: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
3840
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{}>, {
2740
3841
  status: "info" | "success" | "warning" | "error" | "neutral";
2741
3842
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2742
3843
 
2743
- export declare const MStatusDot: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{}>, {
3844
+ export declare const MStatusDot: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
2744
3845
  status: "info" | "success" | "warning" | "error" | "neutral";
2745
3846
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2746
3847
 
2747
- export declare const MStatusMessage: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{}>, {
3848
+ export declare const MStatusMessage: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {
2748
3849
  status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
2749
3850
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2750
3851
 
2751
- export declare const MStatusNotification: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
3852
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
2752
3853
 
2753
- export declare const MStepperBottomBar: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3854
+ export declare const MStepperBottomBar: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2754
3855
  "update:modelValue": (value: number) => any;
2755
3856
  cancel: () => any;
2756
3857
  validate: () => any;
2757
- }, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
3858
+ }, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{
2758
3859
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2759
3860
  onCancel?: (() => any) | undefined;
2760
3861
  onValidate?: (() => any) | undefined;
@@ -2768,14 +3869,18 @@ nextLabel: string;
2768
3869
  validateLabel: string;
2769
3870
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2770
3871
 
2771
- export declare const MStepperCompact: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {
3872
+ export declare const MStepperCompact: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{}>, {
2772
3873
  value: number;
2773
3874
  maxSteps: number;
2774
3875
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2775
3876
 
2776
- export declare const MStepperInline: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {
3877
+ export declare const MStepperInline: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{}>, {
2777
3878
  steps: Array<{
2778
3879
  /**
3880
+ * Uniquer identifier for the step.
3881
+ */
3882
+ id?: string;
3883
+ /**
2779
3884
  * Label of the step.
2780
3885
  */
2781
3886
  label: string;
@@ -2784,24 +3889,24 @@ label: string;
2784
3889
  */
2785
3890
  additionalInfo?: string;
2786
3891
  }>;
2787
- currentStep: number;
3892
+ currentStep: string | number;
2788
3893
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2789
3894
 
2790
- export declare const MTabs: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2791
- "update:modelValue": (value: number) => any;
2792
- }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
2793
- "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3895
+ export declare const MTabs: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3896
+ "update:modelValue": (value?: string | number | undefined) => any;
3897
+ }, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{
3898
+ "onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
2794
3899
  }>, {
2795
- modelValue: number;
3900
+ modelValue: string | number;
2796
3901
  divider: boolean;
2797
3902
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
2798
3903
  tab: HTMLButtonElement;
2799
3904
  }, HTMLElement>;
2800
3905
 
2801
- export declare const MTag: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3906
+ export declare const MTag: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2802
3907
  "update:modelValue": (value: boolean) => any;
2803
3908
  "remove-tag": (id: string) => any;
2804
- }, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
3909
+ }, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
2805
3910
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2806
3911
  "onRemove-tag"?: ((id: string) => any) | undefined;
2807
3912
  }>, {
@@ -2810,33 +3915,41 @@ contextualisedNumber: number;
2810
3915
  removableLabel: string;
2811
3916
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2812
3917
 
2813
- export declare const MTextArea: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3918
+ export declare const MTextArea: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2814
3919
  "update:modelValue": (value: string | number) => any;
2815
- }, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
3920
+ }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
2816
3921
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2817
3922
  }>, {
2818
3923
  rows: number;
2819
3924
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2820
3925
 
2821
- export declare const MTextInput: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
3926
+ export declare const MTextInput: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
3927
+
3928
+ export declare const MTile: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
3929
+
3930
+ export declare const MTileClickable: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
3931
+
3932
+ export declare const MTileExpandable: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
3933
+
3934
+ export declare const MTileSelectable: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
2822
3935
 
2823
- export declare const MToaster: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
3936
+ export declare const MToaster: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
2824
3937
 
2825
- export declare const MToggle: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3938
+ export declare const MToggle: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2826
3939
  "update:modelValue": (value: boolean) => any;
2827
- }, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{
3940
+ }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
2828
3941
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2829
3942
  }>, {
2830
3943
  size: "s" | "m";
2831
3944
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2832
3945
 
2833
- export declare const MToggleGroup: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3946
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2834
3947
  "update:modelValue": (value: string[]) => any;
2835
- }, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{
3948
+ }, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
2836
3949
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
2837
3950
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2838
3951
 
2839
- export declare const MTooltip: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
3952
+ export declare const MTooltip: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
2840
3953
 
2841
3954
  declare type NormalizedFile = {
2842
3955
  name: string;