@mozaic-ds/vue 2.16.0 → 2.18.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 (132) hide show
  1. package/dist/mozaic-vue.css +2 -1
  2. package/dist/mozaic-vue.d.ts +258 -137
  3. package/dist/mozaic-vue.js +14054 -10878
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +7 -25
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +22 -11
  8. package/src/components/BrandPresets.mdx +2 -2
  9. package/src/components/Migration.mdx +651 -0
  10. package/src/components/accordionlist/MAccordionList.figma.ts +43 -0
  11. package/src/components/accordionlistitem/MAccordionListItem.figma.ts +27 -0
  12. package/src/components/accordionlistitem/MAccordionListItem.spec.ts +22 -3
  13. package/src/components/accordionlistitem/MAccordionListItem.vue +38 -28
  14. package/src/components/actionbottombar/MActionBottomBar.figma.ts +24 -0
  15. package/src/components/actionlistbox/MActionListbox.figma.ts +30 -0
  16. package/src/components/avatar/MAvatar.figma.ts +31 -0
  17. package/src/components/breadcrumb/MBreadcrumb.figma.ts +31 -0
  18. package/src/components/builtinmenu/MBuiltInMenu.figma.ts +23 -0
  19. package/src/components/builtinmenu/MBuiltInMenu.spec.ts +30 -1
  20. package/src/components/builtinmenu/MBuiltInMenu.vue +26 -17
  21. package/src/components/builtinmenu/README.md +2 -0
  22. package/src/components/button/MButton.figma.ts +41 -0
  23. package/src/components/callout/MCallout.figma.ts +29 -0
  24. package/src/components/callout/MCallout.spec.ts +35 -0
  25. package/src/components/callout/MCallout.vue +22 -4
  26. package/src/components/callout/README.md +2 -0
  27. package/src/components/carousel/MCarousel.figma.ts +32 -0
  28. package/src/components/checkbox/MCheckbox.figma.ts +45 -0
  29. package/src/components/checkboxgroup/MCheckboxGroup.figma.ts +30 -0
  30. package/src/components/checklistmenu/MCheckListMenu.figma.ts +29 -0
  31. package/src/components/checklistmenu/MCheckListMenu.spec.ts +12 -1
  32. package/src/components/checklistmenu/MCheckListMenu.vue +6 -0
  33. package/src/components/checklistmenu/README.md +2 -0
  34. package/src/components/circularprogressbar/MCircularProgressbar.figma.ts +31 -0
  35. package/src/components/combobox/MCombobox.figma.ts +48 -0
  36. package/src/components/combobox/MCombobox.spec.ts +1 -1
  37. package/src/components/combobox/MCombobox.vue +18 -9
  38. package/src/components/combobox/README.md +2 -2
  39. package/src/components/container/MContainer.figma.ts +30 -0
  40. package/src/components/datatable/DataTable.stories.ts +277 -0
  41. package/src/components/datatable/DataTableCells.stories.ts +251 -0
  42. package/src/components/datatable/DataTableEmpty.stories.ts +102 -0
  43. package/src/components/datatable/DataTableExpandable.stories.ts +95 -0
  44. package/src/components/datatable/DataTableNested.stories.ts +96 -0
  45. package/src/components/datatable/DataTableSelectable.stories.ts +124 -0
  46. package/src/components/datatable/DataTableSortable.stories.ts +164 -0
  47. package/src/components/datatable/MDataTable.types.ts +54 -0
  48. package/src/components/datatable/assets/styles.scss +10 -0
  49. package/src/components/datatable/datatable.mdx +63 -0
  50. package/src/components/datatable/tools/data.js +8 -0
  51. package/src/components/datatable/tools/data.json +2018 -0
  52. package/src/components/datatable/utils.js +19 -0
  53. package/src/components/datepicker/MDatepicker.figma.ts +20 -0
  54. package/src/components/divider/MDivider.figma.ts +30 -0
  55. package/src/components/drawer/MDrawer.figma.ts +37 -0
  56. package/src/components/drawer/README.md +1 -1
  57. package/src/components/field/MField.figma.ts +30 -0
  58. package/src/components/fileuploader/MFileUploader.figma.ts +23 -0
  59. package/src/components/fileuploaderitem/MFileUploaderItem.figma.ts +27 -0
  60. package/src/components/flag/MFlag.figma.ts +26 -0
  61. package/src/components/iconbutton/MIconButton.figma.ts +54 -0
  62. package/src/components/kpiitem/MKpiItem.figma.ts +33 -0
  63. package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.figma.ts +31 -0
  64. package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.figma.ts +26 -0
  65. package/src/components/link/MLink.figma.ts +32 -0
  66. package/src/components/loader/MLoader.figma.ts +30 -0
  67. package/src/components/loadingoverlay/MLoadingOverlay.figma.ts +18 -0
  68. package/src/components/modal/MModal.figma.ts +27 -0
  69. package/src/components/navigationindicator/MNavigationIndicator.figma.ts +24 -0
  70. package/src/components/navigationindicator/MNavigationIndicator.spec.ts +75 -18
  71. package/src/components/navigationindicator/MNavigationIndicator.vue +10 -12
  72. package/src/components/numberbadge/MNumberBadge.figma.ts +31 -0
  73. package/src/components/optionListbox/MOptionListbox.figma.ts +36 -0
  74. package/src/components/optionListbox/MOptionListbox.vue +34 -19
  75. package/src/components/optionListbox/README.md +1 -1
  76. package/src/components/overlay/MOverlay.figma.ts +20 -0
  77. package/src/components/pageheader/MPageHeader.figma.ts +21 -0
  78. package/src/components/pagination/MPagination.figma.ts +34 -0
  79. package/src/components/passwordinput/MPasswordInput.figma.ts +30 -0
  80. package/src/components/phonenumber/MPhoneNumber.figma.ts +47 -0
  81. package/src/components/pincode/MPincode.figma.ts +41 -0
  82. package/src/components/pincode/MPincode.spec.ts +1 -4
  83. package/src/components/pincode/MPincode.vue +11 -15
  84. package/src/components/popover/MPopover.figma.ts +42 -0
  85. package/src/components/popover/MPopover.spec.ts +126 -0
  86. package/src/components/popover/MPopover.vue +36 -1
  87. package/src/components/quantityselector/MQuantitySelector.figma.ts +50 -0
  88. package/src/components/radio/MRadio.figma.ts +40 -0
  89. package/src/components/radiogroup/MRadioGroup.figma.ts +30 -0
  90. package/src/components/segmentedcontrol/MSegmentedControl.figma.ts +33 -0
  91. package/src/components/segmentedcontrol/MSegmentedControl.spec.ts +92 -0
  92. package/src/components/segmentedcontrol/MSegmentedControl.vue +61 -2
  93. package/src/components/select/MSelect.figma.ts +49 -0
  94. package/src/components/sidebar/MSidebar.figma.ts +28 -0
  95. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.figma.ts +19 -0
  96. package/src/components/sidebarfooter/MSidebarFooter.figma.ts +21 -0
  97. package/src/components/sidebarheader/MSidebarHeader.figma.ts +18 -0
  98. package/src/components/sidebarnavitem/MSidebarNavItem.figma.ts +23 -0
  99. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.figma.ts +20 -0
  100. package/src/components/starrating/MStarRating.figma.ts +35 -0
  101. package/src/components/starrating/MStarRating.spec.ts +19 -22
  102. package/src/components/starrating/MStarRating.vue +3 -2
  103. package/src/components/statusbadge/MStatusBadge.figma.ts +27 -0
  104. package/src/components/statusdot/MStatusDot.figma.ts +31 -0
  105. package/src/components/statusmessage/MStatusMessage.figma.ts +28 -0
  106. package/src/components/statusmessage/MStatusMessage.spec.ts +15 -0
  107. package/src/components/statusmessage/MStatusMessage.stories.ts +4 -0
  108. package/src/components/statusmessage/MStatusMessage.vue +7 -0
  109. package/src/components/statusmessage/README.md +2 -0
  110. package/src/components/statusnotification/MStatusNotification.figma.ts +29 -0
  111. package/src/components/stepperbottombar/MStepperBottomBar.figma.ts +20 -0
  112. package/src/components/steppercompact/MStepperCompact.figma.ts +21 -0
  113. package/src/components/stepperinline/MStepperInline.figma.ts +23 -0
  114. package/src/components/stepperstacked/MStepperStacked.figma.ts +23 -0
  115. package/src/components/tabs/MTabs.figma.ts +33 -0
  116. package/src/components/tabs/MTabs.vue +90 -4
  117. package/src/components/tabs/Mtabs.spec.ts +162 -0
  118. package/src/components/tag/MTag.figma.ts +26 -0
  119. package/src/components/tag/MTag.stories.ts +13 -3
  120. package/src/components/tag/MTag.vue +11 -1
  121. package/src/components/tag/README.md +6 -0
  122. package/src/components/textarea/MTextArea.figma.ts +28 -0
  123. package/src/components/textinput/MTextInput.figma.ts +51 -0
  124. package/src/components/tile/MTile.figma.ts +31 -0
  125. package/src/components/tileclickable/MTileClickable.figma.ts +31 -0
  126. package/src/components/tileexpandable/MTileExpandable.figma.ts +31 -0
  127. package/src/components/tileselectable/MTileSelectable.figma.ts +29 -0
  128. package/src/components/toaster/MToaster.figma.ts +25 -0
  129. package/src/components/toggle/MToggle.figma.ts +39 -0
  130. package/src/components/togglegroup/MToggleGroup.figma.ts +30 -0
  131. package/src/components/tooltip/MTooltip.figma.ts +29 -0
  132. package/src/main.ts +1 -0
@@ -18,7 +18,6 @@ import { OnCleanup } from '@vue/reactivity';
18
18
  import { PublicProps } from 'vue';
19
19
  import { Ref } from 'vue';
20
20
  import { ShallowRef } from 'vue';
21
- import { ShallowUnwrapRef } from 'vue';
22
21
  import { Slot } from 'vue';
23
22
  import { VNode } from 'vue';
24
23
  import { VNodeProps } from 'vue';
@@ -104,7 +103,9 @@ scroll: boolean;
104
103
  closable: boolean;
105
104
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
106
105
 
107
- declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
106
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
107
+ tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
108
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
108
109
 
109
110
  declare const __VLS_component_20: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
110
111
 
@@ -122,7 +123,9 @@ size: "s" | "m" | "l";
122
123
  position: "top" | "right" | "bottom" | "left";
123
124
  closable: boolean;
124
125
  pointer: boolean;
125
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
126
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
127
+ popoverRef: HTMLDivElement;
128
+ }, any>;
126
129
 
127
130
  declare const __VLS_component_23: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
128
131
  "update:modelValue": (value: boolean) => any;
@@ -207,9 +210,9 @@ onListboxKeydown: (event: KeyboardEvent) => void;
207
210
  hideFloatingItem: () => void;
208
211
  }> & Readonly<{
209
212
  "onLog-out"?: (() => any) | undefined;
210
- }>, "container"> & ShallowUnwrapRef< {
211
- container: Readonly<ShallowRef<HTMLDivElement | null>>;
212
- }> & {} & ComponentCustomProperties & {} & {
213
+ }>, "container"> & {
214
+ container: HTMLDivElement | null;
215
+ } & {} & ComponentCustomProperties & {} & {
213
216
  $slots: {
214
217
  default?(_: {}): any;
215
218
  };
@@ -230,11 +233,23 @@ onClose?: (() => any) | undefined;
230
233
  status: "info" | "success" | "warning" | "error";
231
234
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
232
235
 
233
- declare const __VLS_component_28: DefineComponent<__VLS_Props_64, {
236
+ declare const __VLS_component_28: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
237
+ "update:modelValue": (value: boolean) => any;
238
+ "remove-tag": (id: string) => any;
239
+ }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
240
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
241
+ "onRemove-tag"?: ((id: string) => any) | undefined;
242
+ }>, {
243
+ type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
244
+ contextualisedNumber: number;
245
+ removableLabel: string;
246
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
247
+
248
+ declare const __VLS_component_29: DefineComponent<__VLS_Props_65, {
234
249
  focus: typeof focus_2;
235
250
  }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
236
251
  "update:modelValue": (value: string | number) => any;
237
- }, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{
252
+ }, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{
238
253
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
239
254
  }>, {
240
255
  size: "s" | "m";
@@ -244,16 +259,16 @@ clearLabel: string;
244
259
  textInput: HTMLInputElement;
245
260
  }, any>;
246
261
 
247
- declare const __VLS_component_29: DefineComponent<__VLS_Props_65, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{}>, {
262
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
263
+
264
+ declare const __VLS_component_30: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{}>, {
248
265
  appearance: "primary" | "secondary" | "inverse";
249
266
  bordered: boolean;
250
267
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
251
268
 
252
- declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
253
-
254
- declare const __VLS_component_30: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
269
+ declare const __VLS_component_31: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
255
270
  action: () => any;
256
- }, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{
271
+ }, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{
257
272
  onAction?: (() => any) | undefined;
258
273
  }>, {
259
274
  appearance: "primary" | "secondary" | "inverse";
@@ -261,16 +276,16 @@ iconPosition: "bottom" | "right";
261
276
  bordered: boolean;
262
277
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
263
278
 
264
- declare const __VLS_component_31: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{}>, {
279
+ declare const __VLS_component_32: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{}>, {
265
280
  appearance: "primary" | "secondary";
266
281
  label: string;
267
282
  trigger: "container" | "icon" | "button";
268
283
  bordered: boolean;
269
284
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
270
285
 
271
- declare const __VLS_component_32: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
286
+ declare const __VLS_component_33: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
272
287
  "update:modelValue": (value: boolean) => any;
273
- }, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{
288
+ }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
274
289
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
275
290
  }>, {
276
291
  inputType: "checkbox" | "radio";
@@ -278,16 +293,16 @@ bordered: boolean;
278
293
  inputPosition: "left" | "right";
279
294
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
280
295
 
281
- declare const __VLS_component_33: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
296
+ declare const __VLS_component_34: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
282
297
  "update:open": (value: boolean) => any;
283
- }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
298
+ }, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
284
299
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
285
300
  }>, {
286
301
  status: "info" | "success" | "warning" | "error";
287
302
  closable: boolean;
288
303
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
289
304
 
290
- declare const __VLS_component_34: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{}>, {
305
+ declare const __VLS_component_35: DefineComponent<__VLS_Props_73, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_73> & Readonly<{}>, {
291
306
  position: "top" | "bottom" | "left" | "right";
292
307
  pointer: boolean;
293
308
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
@@ -316,6 +331,7 @@ size: "s" | "m" | "l";
316
331
 
317
332
  declare const __VLS_component_7: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
318
333
  appearance: "standard" | "accent" | "tips" | "inverse";
334
+ tag: "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
319
335
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
320
336
 
321
337
  declare const __VLS_component_8: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
@@ -337,7 +353,6 @@ placeholder: string;
337
353
  clearLabel: string;
338
354
  searchPlaceholder: string;
339
355
  selectLabel: string;
340
- counterLabel: string;
341
356
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
342
357
  combobox: HTMLDivElement;
343
358
  comboboxControl: HTMLButtonElement;
@@ -463,9 +478,9 @@ prefix?: string;
463
478
  suffix?: string;
464
479
  }> & Readonly<{
465
480
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
466
- }>, "focus" | ("size" | "inputType" | "clearLabel")> & ShallowUnwrapRef< {
481
+ }>, "focus" | ("size" | "inputType" | "clearLabel")> & {
467
482
  focus: () => void;
468
- }> & {} & ComponentCustomProperties & {} & {
483
+ } & {} & ComponentCustomProperties & {} & {
469
484
  $slots: Readonly<{
470
485
  icon?: VNode;
471
486
  }> & {
@@ -553,17 +568,21 @@ options: Array<ListboxOption>;
553
568
  "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
554
569
  onOpen?: (() => any) | undefined;
555
570
  onClose?: (() => any) | undefined;
556
- }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & ShallowUnwrapRef< {
571
+ }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & {
557
572
  handleKeydown: (event: KeyboardEvent) => void;
558
573
  toggleValue: (item?: ListboxOption) => void;
559
574
  clearSelection: () => void;
560
- listboxEl: Readonly<ShallowRef<HTMLDivElement | null>>;
561
- activeIndex: Ref<number, number>;
562
- }> & {} & ComponentCustomProperties & {} & {
575
+ listboxEl: HTMLDivElement | null;
576
+ activeIndex: number;
577
+ } & {} & ComponentCustomProperties & {} & {
563
578
  $slots: Readonly<{
564
- optionPrefix: VNode;
579
+ item(props: {
580
+ item: ListboxOption;
581
+ }): VNode;
565
582
  }> & {
566
- optionPrefix: VNode;
583
+ item(props: {
584
+ item: ListboxOption;
585
+ }): VNode;
567
586
  };
568
587
  }) | null;
569
588
  }, HTMLDivElement>;
@@ -681,6 +700,11 @@ declare type __VLS_Props_13 = {
681
700
  * When enabled, adds a visible border around the wrapper to highlight or separate its content.
682
701
  */
683
702
  outlined?: boolean;
703
+ /**
704
+ * Accessible label for the navigation landmark. Should describe the purpose
705
+ * of this menu to distinguish it from other navigations on the page.
706
+ */
707
+ label?: string;
684
708
  };
685
709
 
686
710
  /**
@@ -911,6 +935,11 @@ declare type __VLS_Props_2 = {
911
935
  * Icon component to display before the item title.
912
936
  */
913
937
  icon?: Component;
938
+ /**
939
+ * Heading level for the accordion trigger (h2–h6). Adjust to match the
940
+ * heading hierarchy of the page where the accordion is used.
941
+ */
942
+ tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
914
943
  };
915
944
 
916
945
  /**
@@ -1982,6 +2011,11 @@ declare type __VLS_Props_56 = {
1982
2011
  * Allows to define the status message style.
1983
2012
  */
1984
2013
  status?: 'info' | 'success' | 'warning' | 'error' | 'neutral' | 'inprogress';
2014
+ /**
2015
+ * Allows to define the status message appearance.
2016
+ * The accent status is used to highlight a specific message.
2017
+ */
2018
+ appearance?: 'standard' | 'accent';
1985
2019
  /**
1986
2020
  * Label of the status message.
1987
2021
  */
@@ -2125,9 +2159,40 @@ declare type __VLS_Props_60 = {
2125
2159
  };
2126
2160
 
2127
2161
  /**
2128
- * 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.
2162
+ * 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.
2129
2163
  */
2130
2164
  declare type __VLS_Props_61 = {
2165
+ /**
2166
+ * Defines the currently active step.
2167
+ *
2168
+ * - If a `number` is provided, it represents the 1-based position of the step
2169
+ * in the `steps` array (e.g. `1` for the first step).
2170
+ * - If a `string` is provided, it must match the `id` of one of the steps.
2171
+ */
2172
+ currentStep?: string | number;
2173
+ /**
2174
+ * Steps of the stepper inline.
2175
+ */
2176
+ steps?: Array<{
2177
+ /**
2178
+ * Unique identifier for the step.
2179
+ */
2180
+ id?: string;
2181
+ /**
2182
+ * Label of the step.
2183
+ */
2184
+ label: string;
2185
+ /**
2186
+ * Optional additional information under the label.
2187
+ */
2188
+ additionalInfo?: string;
2189
+ }>;
2190
+ };
2191
+
2192
+ /**
2193
+ * 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.
2194
+ */
2195
+ declare type __VLS_Props_62 = {
2131
2196
  /**
2132
2197
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
2133
2198
  */
@@ -2177,7 +2242,7 @@ declare type __VLS_Props_61 = {
2177
2242
  /**
2178
2243
  * 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).
2179
2244
  */
2180
- declare type __VLS_Props_62 = {
2245
+ declare type __VLS_Props_63 = {
2181
2246
  /**
2182
2247
  * Defines the behavior and layout of the tag.
2183
2248
  */
@@ -2219,7 +2284,7 @@ declare type __VLS_Props_62 = {
2219
2284
  /**
2220
2285
  * 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).
2221
2286
  */
2222
- declare type __VLS_Props_63 = {
2287
+ declare type __VLS_Props_64 = {
2223
2288
  /**
2224
2289
  * A unique identifier for the textarea, used to associate the label with the form element.
2225
2290
  */
@@ -2265,7 +2330,7 @@ declare type __VLS_Props_63 = {
2265
2330
  /**
2266
2331
  * 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).
2267
2332
  */
2268
- declare type __VLS_Props_64 = {
2333
+ declare type __VLS_Props_65 = {
2269
2334
  /**
2270
2335
  * A unique identifier for the input element, used to associate the label with the form element.
2271
2336
  */
@@ -2323,7 +2388,7 @@ declare type __VLS_Props_64 = {
2323
2388
  /**
2324
2389
  * 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.
2325
2390
  */
2326
- declare type __VLS_Props_65 = {
2391
+ declare type __VLS_Props_66 = {
2327
2392
  /**
2328
2393
  * Defines the visual style of the tile.
2329
2394
  */
@@ -2337,7 +2402,7 @@ declare type __VLS_Props_65 = {
2337
2402
  /**
2338
2403
  * 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.
2339
2404
  */
2340
- declare type __VLS_Props_66 = {
2405
+ declare type __VLS_Props_67 = {
2341
2406
  /**
2342
2407
  * Defines the visual style of the tile.
2343
2408
  */
@@ -2369,7 +2434,7 @@ declare type __VLS_Props_66 = {
2369
2434
  /**
2370
2435
  * 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.
2371
2436
  */
2372
- declare type __VLS_Props_67 = {
2437
+ declare type __VLS_Props_68 = {
2373
2438
  /**
2374
2439
  * Defines the visual style of the tile.
2375
2440
  */
@@ -2391,7 +2456,7 @@ declare type __VLS_Props_67 = {
2391
2456
  /**
2392
2457
  * 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.
2393
2458
  */
2394
- declare type __VLS_Props_68 = {
2459
+ declare type __VLS_Props_69 = {
2395
2460
  /**
2396
2461
  * The current value of the tile (selected or not).
2397
2462
  */
@@ -2418,10 +2483,30 @@ declare type __VLS_Props_68 = {
2418
2483
  hideInput?: boolean;
2419
2484
  };
2420
2485
 
2486
+ declare type __VLS_Props_7 = {
2487
+ /**
2488
+ * 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.
2489
+ */
2490
+ modelValue?: number;
2491
+ /**
2492
+ * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
2493
+ */
2494
+ items: MenuItem[];
2495
+ /**
2496
+ * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2497
+ */
2498
+ outlined?: boolean;
2499
+ /**
2500
+ * Accessible label for the navigation landmark. Should describe the purpose
2501
+ * of this menu to distinguish it from other navigations on the page.
2502
+ */
2503
+ label?: string;
2504
+ };
2505
+
2421
2506
  /**
2422
2507
  * 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.
2423
2508
  */
2424
- declare type __VLS_Props_69 = {
2509
+ declare type __VLS_Props_70 = {
2425
2510
  /**
2426
2511
  * If `true`, display the Toaster.
2427
2512
  */
@@ -2452,25 +2537,10 @@ declare type __VLS_Props_69 = {
2452
2537
  timeout?: number;
2453
2538
  };
2454
2539
 
2455
- declare type __VLS_Props_7 = {
2456
- /**
2457
- * 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.
2458
- */
2459
- modelValue?: number;
2460
- /**
2461
- * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
2462
- */
2463
- items: MenuItem[];
2464
- /**
2465
- * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2466
- */
2467
- outlined?: boolean;
2468
- };
2469
-
2470
2540
  /**
2471
2541
  * 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.
2472
2542
  */
2473
- declare type __VLS_Props_70 = {
2543
+ declare type __VLS_Props_71 = {
2474
2544
  /**
2475
2545
  * A unique identifier for the toggle, used to associate the label with the form element.
2476
2546
  */
@@ -2500,7 +2570,7 @@ declare type __VLS_Props_70 = {
2500
2570
  /**
2501
2571
  * 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).
2502
2572
  */
2503
- declare type __VLS_Props_71 = {
2573
+ declare type __VLS_Props_72 = {
2504
2574
  /**
2505
2575
  * The name attribute for the toggle element, typically used for form submission.
2506
2576
  */
@@ -2529,7 +2599,7 @@ declare type __VLS_Props_71 = {
2529
2599
  /**
2530
2600
  * 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.
2531
2601
  */
2532
- declare type __VLS_Props_72 = {
2602
+ declare type __VLS_Props_73 = {
2533
2603
  /**
2534
2604
  * A unique identifier for the tooltip, used to describe the tooltip.
2535
2605
  */
@@ -2606,6 +2676,11 @@ declare type __VLS_Props_9 = {
2606
2676
  * Allows to define the callout appearance.
2607
2677
  */
2608
2678
  appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
2679
+ /**
2680
+ * Heading level for the callout title (h2–h6). Adjust to match the
2681
+ * heading hierarchy of the page where the callout is used.
2682
+ */
2683
+ tag?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6';
2609
2684
  };
2610
2685
 
2611
2686
  declare type __VLS_PublicProps = {
@@ -2991,7 +3066,9 @@ declare function __VLS_template_22(): {
2991
3066
  */
2992
3067
  footer?: VNode;
2993
3068
  };
2994
- refs: {};
3069
+ refs: {
3070
+ popoverRef: HTMLDivElement;
3071
+ };
2995
3072
  rootEl: any;
2996
3073
  };
2997
3074
 
@@ -3134,9 +3211,9 @@ declare function __VLS_template_25(): {
3134
3211
  hideFloatingItem: () => void;
3135
3212
  }> & Readonly<{
3136
3213
  "onLog-out"?: (() => any) | undefined;
3137
- }>, "container"> & ShallowUnwrapRef< {
3138
- container: Readonly<ShallowRef<HTMLDivElement | null>>;
3139
- }> & {} & ComponentCustomProperties & {} & {
3214
+ }>, "container"> & {
3215
+ container: HTMLDivElement | null;
3216
+ } & {} & ComponentCustomProperties & {} & {
3140
3217
  $slots: {
3141
3218
  default?(_: {}): any;
3142
3219
  };
@@ -3187,18 +3264,16 @@ declare function __VLS_template_28(): {
3187
3264
  attrs: Partial<{}>;
3188
3265
  slots: Readonly<{
3189
3266
  /**
3190
- * Use this slot to insert an icon in the input.
3267
+ * Use this slot to insert an icon in the tag.
3191
3268
  */
3192
3269
  icon?: VNode;
3193
3270
  }> & {
3194
3271
  /**
3195
- * Use this slot to insert an icon in the input.
3272
+ * Use this slot to insert an icon in the tag.
3196
3273
  */
3197
3274
  icon?: VNode;
3198
3275
  };
3199
- refs: {
3200
- textInput: HTMLInputElement;
3201
- };
3276
+ refs: {};
3202
3277
  rootEl: any;
3203
3278
  };
3204
3279
 
@@ -3206,33 +3281,19 @@ declare function __VLS_template_29(): {
3206
3281
  attrs: Partial<{}>;
3207
3282
  slots: Readonly<{
3208
3283
  /**
3209
- * Default slot for the main content of the tile.
3210
- */
3211
- default?: VNode[];
3212
- /**
3213
- * Named slot for additional content shown below the main content.
3214
- */
3215
- details?: VNode[];
3216
- /**
3217
- * Named slot for action element, such as a button or link.
3284
+ * Use this slot to insert an icon in the input.
3218
3285
  */
3219
- action?: VNode[];
3286
+ icon?: VNode;
3220
3287
  }> & {
3221
3288
  /**
3222
- * Default slot for the main content of the tile.
3223
- */
3224
- default?: VNode[];
3225
- /**
3226
- * Named slot for additional content shown below the main content.
3227
- */
3228
- details?: VNode[];
3229
- /**
3230
- * Named slot for action element, such as a button or link.
3289
+ * Use this slot to insert an icon in the input.
3231
3290
  */
3232
- action?: VNode[];
3291
+ icon?: VNode;
3233
3292
  };
3234
- refs: {};
3235
- rootEl: HTMLDivElement;
3293
+ refs: {
3294
+ textInput: HTMLInputElement;
3295
+ };
3296
+ rootEl: any;
3236
3297
  };
3237
3298
 
3238
3299
  declare function __VLS_template_3(): {
@@ -3261,6 +3322,39 @@ declare function __VLS_template_3(): {
3261
3322
  };
3262
3323
 
3263
3324
  declare function __VLS_template_30(): {
3325
+ attrs: Partial<{}>;
3326
+ slots: Readonly<{
3327
+ /**
3328
+ * Default slot for the main content of the tile.
3329
+ */
3330
+ default?: VNode[];
3331
+ /**
3332
+ * Named slot for additional content shown below the main content.
3333
+ */
3334
+ details?: VNode[];
3335
+ /**
3336
+ * Named slot for action element, such as a button or link.
3337
+ */
3338
+ action?: VNode[];
3339
+ }> & {
3340
+ /**
3341
+ * Default slot for the main content of the tile.
3342
+ */
3343
+ default?: VNode[];
3344
+ /**
3345
+ * Named slot for additional content shown below the main content.
3346
+ */
3347
+ details?: VNode[];
3348
+ /**
3349
+ * Named slot for action element, such as a button or link.
3350
+ */
3351
+ action?: VNode[];
3352
+ };
3353
+ refs: {};
3354
+ rootEl: HTMLDivElement;
3355
+ };
3356
+
3357
+ declare function __VLS_template_31(): {
3264
3358
  attrs: Partial<{}>;
3265
3359
  slots: Readonly<{
3266
3360
  /**
@@ -3285,7 +3379,7 @@ declare function __VLS_template_30(): {
3285
3379
  rootEl: any;
3286
3380
  };
3287
3381
 
3288
- declare function __VLS_template_31(): {
3382
+ declare function __VLS_template_32(): {
3289
3383
  attrs: Partial<{}>;
3290
3384
  slots: Readonly<{
3291
3385
  /**
@@ -3310,7 +3404,7 @@ declare function __VLS_template_31(): {
3310
3404
  rootEl: HTMLDivElement;
3311
3405
  };
3312
3406
 
3313
- declare function __VLS_template_32(): {
3407
+ declare function __VLS_template_33(): {
3314
3408
  attrs: Partial<{}>;
3315
3409
  slots: Readonly<{
3316
3410
  /**
@@ -3335,7 +3429,7 @@ declare function __VLS_template_32(): {
3335
3429
  rootEl: HTMLDivElement;
3336
3430
  };
3337
3431
 
3338
- declare function __VLS_template_33(): {
3432
+ declare function __VLS_template_34(): {
3339
3433
  attrs: Partial<{}>;
3340
3434
  slots: Readonly<{
3341
3435
  /**
@@ -3352,7 +3446,7 @@ declare function __VLS_template_33(): {
3352
3446
  rootEl: HTMLElement;
3353
3447
  };
3354
3448
 
3355
- declare function __VLS_template_34(): {
3449
+ declare function __VLS_template_35(): {
3356
3450
  attrs: Partial<{}>;
3357
3451
  slots: Readonly<{
3358
3452
  /**
@@ -3486,14 +3580,18 @@ declare function __VLS_template_9(): {
3486
3580
  attrs: Partial<{}>;
3487
3581
  slots: Readonly<{
3488
3582
  /**
3489
- * Use this slot to add a prefix to options.
3583
+ * Use this slot to customize the content of each item.
3490
3584
  */
3491
- optionPrefix: VNode;
3585
+ item(props: {
3586
+ item: ListboxOption;
3587
+ }): VNode;
3492
3588
  }> & {
3493
3589
  /**
3494
- * Use this slot to add a prefix to options.
3590
+ * Use this slot to customize the content of each item.
3495
3591
  */
3496
- optionPrefix: VNode;
3592
+ item(props: {
3593
+ item: ListboxOption;
3594
+ }): VNode;
3497
3595
  };
3498
3596
  refs: {
3499
3597
  combobox: HTMLDivElement;
@@ -3620,9 +3718,9 @@ declare function __VLS_template_9(): {
3620
3718
  suffix?: string;
3621
3719
  }> & Readonly<{
3622
3720
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3623
- }>, "focus" | ("size" | "inputType" | "clearLabel")> & ShallowUnwrapRef< {
3624
- focus: () => void;
3625
- }> & {} & ComponentCustomProperties & {} & {
3721
+ }>, "focus" | ("size" | "inputType" | "clearLabel")> & {
3722
+ focus: () => void;
3723
+ } & {} & ComponentCustomProperties & {} & {
3626
3724
  $slots: Readonly<{
3627
3725
  icon?: VNode;
3628
3726
  }> & {
@@ -3710,17 +3808,21 @@ declare function __VLS_template_9(): {
3710
3808
  "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
3711
3809
  onOpen?: (() => any) | undefined;
3712
3810
  onClose?: (() => any) | undefined;
3713
- }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & ShallowUnwrapRef< {
3714
- handleKeydown: (event: KeyboardEvent) => void;
3715
- toggleValue: (item?: ListboxOption) => void;
3716
- clearSelection: () => void;
3717
- listboxEl: Readonly<ShallowRef<HTMLDivElement | null>>;
3718
- activeIndex: Ref<number, number>;
3719
- }> & {} & ComponentCustomProperties & {} & {
3811
+ }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & {
3812
+ handleKeydown: (event: KeyboardEvent) => void;
3813
+ toggleValue: (item?: ListboxOption) => void;
3814
+ clearSelection: () => void;
3815
+ listboxEl: HTMLDivElement | null;
3816
+ activeIndex: number;
3817
+ } & {} & ComponentCustomProperties & {} & {
3720
3818
  $slots: Readonly<{
3721
- optionPrefix: VNode;
3819
+ item(props: {
3820
+ item: ListboxOption;
3821
+ }): VNode;
3722
3822
  }> & {
3723
- optionPrefix: VNode;
3823
+ item(props: {
3824
+ item: ListboxOption;
3825
+ }): VNode;
3724
3826
  };
3725
3827
  }) | null;
3726
3828
  };
@@ -3783,6 +3885,8 @@ declare type __VLS_TemplateResult_33 = ReturnType<typeof __VLS_template_33>;
3783
3885
 
3784
3886
  declare type __VLS_TemplateResult_34 = ReturnType<typeof __VLS_template_34>;
3785
3887
 
3888
+ declare type __VLS_TemplateResult_35 = ReturnType<typeof __VLS_template_35>;
3889
+
3786
3890
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
3787
3891
 
3788
3892
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
@@ -3963,6 +4067,12 @@ declare type __VLS_WithTemplateSlots_34<T, S> = T & {
3963
4067
  };
3964
4068
  };
3965
4069
 
4070
+ declare type __VLS_WithTemplateSlots_35<T, S> = T & {
4071
+ new (): {
4072
+ $slots: S;
4073
+ };
4074
+ };
4075
+
3966
4076
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
3967
4077
  new (): {
3968
4078
  $slots: S;
@@ -4111,7 +4221,9 @@ export declare const MBuiltInMenu: DefineComponent<__VLS_Props_7, {}, {}, {}, {}
4111
4221
  "update:modelValue": (value: number) => any;
4112
4222
  }, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
4113
4223
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
4114
- }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4224
+ }>, {
4225
+ label: string;
4226
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4115
4227
 
4116
4228
  export declare const MButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
4117
4229
 
@@ -4215,7 +4327,7 @@ onAction?: (() => any) | undefined;
4215
4327
  }>, {
4216
4328
  action: "pause" | "resume";
4217
4329
  player: boolean;
4218
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4330
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4219
4331
 
4220
4332
  export declare const MNumberBadge: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
4221
4333
  appearance: "danger" | "accent" | "inverse" | "standard";
@@ -4314,7 +4426,7 @@ outlined?: boolean;
4314
4426
  iconPosition?: "left" | "right" | "only";
4315
4427
  type?: "button" | "reset" | "submit";
4316
4428
  isLoading?: boolean;
4317
- }> & Readonly<{}>, "appearance" | "type" | "size"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
4429
+ }> & Readonly<{}>, "appearance" | "type" | "size"> & {} & ComponentCustomProperties & {} & {
4318
4430
  $slots: Readonly<{
4319
4431
  default: string;
4320
4432
  icon?: VNode;
@@ -4357,8 +4469,8 @@ export declare const MQuantitySelector: DefineComponent<__VLS_Props_41, {}, {},
4357
4469
  }>, {
4358
4470
  modelValue: number;
4359
4471
  size: "s" | "m";
4360
- step: number;
4361
4472
  name: string;
4473
+ step: number;
4362
4474
  min: number;
4363
4475
  max: number;
4364
4476
  incrementlabel: string;
@@ -4384,7 +4496,7 @@ export declare const MSegmentedControl: DefineComponent<__VLS_Props_44, {}, {},
4384
4496
  }>, {
4385
4497
  modelValue: string | number;
4386
4498
  size: "s" | "m";
4387
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4499
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4388
4500
 
4389
4501
  export declare const MSelect: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4390
4502
  "update:modelValue": (value: string | number) => any;
@@ -4435,6 +4547,7 @@ status: "info" | "success" | "warning" | "error" | "neutral";
4435
4547
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
4436
4548
 
4437
4549
  export declare const MStatusMessage: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{}>, {
4550
+ appearance: "standard" | "accent";
4438
4551
  status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
4439
4552
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4440
4553
 
@@ -4481,9 +4594,27 @@ additionalInfo?: string;
4481
4594
  currentStep: string | number;
4482
4595
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4483
4596
 
4484
- export declare const MTabs: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4597
+ export declare const MStepperStacked: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{}>, {
4598
+ steps: Array<{
4599
+ /**
4600
+ * Unique identifier for the step.
4601
+ */
4602
+ id?: string;
4603
+ /**
4604
+ * Label of the step.
4605
+ */
4606
+ label: string;
4607
+ /**
4608
+ * Optional additional information under the label.
4609
+ */
4610
+ additionalInfo?: string;
4611
+ }>;
4612
+ currentStep: string | number;
4613
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4614
+
4615
+ export declare const MTabs: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4485
4616
  "update:modelValue": (value?: string | number | undefined) => any;
4486
- }, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
4617
+ }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
4487
4618
  "onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
4488
4619
  }>, {
4489
4620
  modelValue: string | number;
@@ -4492,53 +4623,43 @@ divider: boolean;
4492
4623
  tab: HTMLButtonElement;
4493
4624
  }, HTMLElement>;
4494
4625
 
4495
- export declare const MTag: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4496
- "update:modelValue": (value: boolean) => any;
4497
- "remove-tag": (id: string) => any;
4498
- }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
4499
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4500
- "onRemove-tag"?: ((id: string) => any) | undefined;
4501
- }>, {
4502
- type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
4503
- contextualisedNumber: number;
4504
- removableLabel: string;
4505
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4626
+ export declare const MTag: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
4506
4627
 
4507
- export declare const MTextArea: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4628
+ export declare const MTextArea: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4508
4629
  "update:modelValue": (value: string | number) => any;
4509
- }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
4630
+ }, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{
4510
4631
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
4511
4632
  }>, {
4512
4633
  rows: number;
4513
4634
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4514
4635
 
4515
- export declare const MTextInput: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
4636
+ export declare const MTextInput: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
4516
4637
 
4517
- export declare const MTile: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
4638
+ export declare const MTile: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
4518
4639
 
4519
- export declare const MTileClickable: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
4640
+ export declare const MTileClickable: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
4520
4641
 
4521
- export declare const MTileExpandable: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
4642
+ export declare const MTileExpandable: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
4522
4643
 
4523
- export declare const MTileSelectable: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
4644
+ export declare const MTileSelectable: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
4524
4645
 
4525
- export declare const MToaster: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
4646
+ export declare const MToaster: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
4526
4647
 
4527
- export declare const MToggle: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4648
+ export declare const MToggle: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4528
4649
  "update:modelValue": (value: boolean) => any;
4529
- }, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
4650
+ }, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{
4530
4651
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
4531
4652
  }>, {
4532
4653
  size: "s" | "m";
4533
4654
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4534
4655
 
4535
- export declare const MToggleGroup: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4656
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4536
4657
  "update:modelValue": (value: string[]) => any;
4537
- }, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{
4658
+ }, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{
4538
4659
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
4539
4660
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4540
4661
 
4541
- export declare const MTooltip: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
4662
+ export declare const MTooltip: __VLS_WithTemplateSlots_35<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
4542
4663
 
4543
4664
  declare type NormalizedFile = {
4544
4665
  name: string;