@mozaic-ds/vue 2.12.0 → 2.13.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 (121) hide show
  1. package/dist/mozaic-vue.css +1 -1
  2. package/dist/mozaic-vue.d.ts +702 -361
  3. package/dist/mozaic-vue.js +2791 -2428
  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/{usingPresets.mdx → BrandPresets.mdx} +2 -2
  9. package/src/components/Changelog.mdx +19 -0
  10. package/src/components/Color.mdx +226 -0
  11. package/src/components/Contributing.mdx +12 -6
  12. package/src/components/GettingStarted.mdx +1 -1
  13. package/src/components/Icon.stories.ts +134 -0
  14. package/src/components/Welcome.mdx +49 -0
  15. package/src/components/accordionlist/MAccordionList.spec.ts +136 -0
  16. package/src/components/accordionlist/MAccordionList.stories.ts +123 -0
  17. package/src/components/accordionlist/MAccordionList.vue +91 -0
  18. package/src/components/accordionlist/README.md +24 -0
  19. package/src/components/accordionlist/m-accordion-list.const.ts +9 -0
  20. package/src/components/accordionlistitem/MAccordionListItem.spec.ts +123 -0
  21. package/src/components/accordionlistitem/MAccordionListItem.vue +95 -0
  22. package/src/components/accordionlistitem/README.md +23 -0
  23. package/src/components/actionbottombar/MActionBottomBar.spec.ts +52 -0
  24. package/src/components/actionbottombar/MActionBottomBar.stories.ts +162 -0
  25. package/src/components/actionbottombar/MActionBottomBar.vue +45 -0
  26. package/src/components/actionbottombar/README.md +31 -0
  27. package/src/components/actionlistbox/MActionListbox.spec.ts +134 -0
  28. package/src/components/actionlistbox/MActionListbox.stories.ts +74 -0
  29. package/src/components/actionlistbox/MActionListbox.vue +89 -0
  30. package/src/components/actionlistbox/README.md +25 -0
  31. package/src/components/avatar/MAvatar.stories.ts +1 -1
  32. package/src/components/breadcrumb/README.md +14 -0
  33. package/src/components/builtinmenu/MBuiltInMenu.stories.ts +2 -1
  34. package/src/components/builtinmenu/MBuiltInMenu.vue +1 -1
  35. package/src/components/builtinmenu/README.md +14 -0
  36. package/src/components/button/MButton.spec.ts +1 -1
  37. package/src/components/button/MButton.stories.ts +165 -5
  38. package/src/components/button/README.md +33 -1
  39. package/src/components/callout/MCallout.spec.ts +7 -6
  40. package/src/components/callout/MCallout.stories.ts +1 -2
  41. package/src/components/carousel/MCarousel.spec.ts +1 -2
  42. package/src/components/carousel/MCarousel.stories.ts +2 -1
  43. package/src/components/carousel/MCarousel.vue +1 -2
  44. package/src/components/carousel/README.md +14 -0
  45. package/src/components/checkbox/README.md +14 -0
  46. package/src/components/checkboxgroup/README.md +14 -0
  47. package/src/components/checklistmenu/MCheckListMenu.spec.ts +1 -1
  48. package/src/components/checklistmenu/MCheckListMenu.stories.ts +1 -0
  49. package/src/components/checklistmenu/MCheckListMenu.vue +1 -1
  50. package/src/components/checklistmenu/README.md +14 -0
  51. package/src/components/circularprogressbar/README.md +15 -1
  52. package/src/components/datepicker/MDatepicker.vue +1 -1
  53. package/src/components/divider/README.md +22 -0
  54. package/src/components/drawer/MDrawer.vue +1 -2
  55. package/src/components/drawer/README.md +16 -0
  56. package/src/components/field/README.md +14 -0
  57. package/src/components/fileuploader/MFileUploader.spec.ts +304 -0
  58. package/src/components/fileuploader/MFileUploader.stories.ts +123 -0
  59. package/src/components/fileuploader/MFileUploader.vue +314 -0
  60. package/src/components/fileuploader/README.md +58 -0
  61. package/src/components/fileuploaderitem/MFileUploaderItem.spec.ts +91 -0
  62. package/src/components/fileuploaderitem/MFileUploaderItem.vue +180 -0
  63. package/src/components/fileuploaderitem/README.md +58 -0
  64. package/src/components/flag/README.md +1 -1
  65. package/src/components/iconbutton/MIconButton.spec.ts +1 -1
  66. package/src/components/iconbutton/MIconButton.stories.ts +116 -7
  67. package/src/components/iconbutton/README.md +25 -1
  68. package/src/components/kpiitem/MKpiItem.vue +5 -3
  69. package/src/components/linearprogressbarbuffer/README.md +14 -0
  70. package/src/components/link/MLink.stories.ts +1 -2
  71. package/src/components/link/README.md +14 -0
  72. package/src/components/loader/README.md +20 -0
  73. package/src/components/loadingoverlay/README.md +14 -0
  74. package/src/components/modal/MModal.stories.ts +1 -2
  75. package/src/components/modal/MModal.vue +1 -1
  76. package/src/components/modal/README.md +16 -0
  77. package/src/components/numberbadge/README.md +17 -1
  78. package/src/components/overlay/README.md +16 -0
  79. package/src/components/pagination/MPagination.vue +1 -2
  80. package/src/components/pagination/README.md +18 -0
  81. package/src/components/passwordinput/MPasswordInput.vue +1 -1
  82. package/src/components/passwordinput/README.md +14 -0
  83. package/src/components/phonenumber/MPhoneNumber.spec.ts +7 -6
  84. package/src/components/phonenumber/MPhoneNumber.vue +1 -1
  85. package/src/components/quantityselector/MQuantitySelector.vue +1 -2
  86. package/src/components/radio/README.md +14 -0
  87. package/src/components/radiogroup/README.md +14 -0
  88. package/src/components/select/README.md +14 -0
  89. package/src/components/starrating/MStarRating.spec.ts +1 -2
  90. package/src/components/starrating/MStarRating.vue +1 -3
  91. package/src/components/statusbadge/README.md +14 -0
  92. package/src/components/statusdot/README.md +14 -0
  93. package/src/components/statusmessage/MStatusMessage.spec.ts +6 -4
  94. package/src/components/statusmessage/MStatusMessage.vue +6 -4
  95. package/src/components/statusmessage/README.md +14 -0
  96. package/src/components/statusnotification/MStatusNotification.spec.ts +6 -4
  97. package/src/components/statusnotification/MStatusNotification.stories.ts +1 -1
  98. package/src/components/statusnotification/MStatusNotification.vue +7 -5
  99. package/src/components/statusnotification/README.md +14 -0
  100. package/src/components/stepperbottombar/MStepperBottomBar.spec.ts +134 -0
  101. package/src/components/stepperbottombar/MStepperBottomBar.stories.ts +72 -0
  102. package/src/components/stepperbottombar/MStepperBottomBar.vue +131 -0
  103. package/src/components/stepperbottombar/README.md +40 -0
  104. package/src/components/steppercompact/README.md +14 -0
  105. package/src/components/stepperinline/MStepperInline.vue +1 -2
  106. package/src/components/tabs/MTabs.stories.ts +1 -1
  107. package/src/components/tabs/README.md +16 -0
  108. package/src/components/tag/MTag.vue +1 -1
  109. package/src/components/tag/README.md +14 -0
  110. package/src/components/textinput/MTextInput.spec.ts +1 -1
  111. package/src/components/textinput/MTextInput.stories.ts +1 -1
  112. package/src/components/textinput/MTextInput.vue +1 -1
  113. package/src/components/toaster/MToaster.spec.ts +6 -4
  114. package/src/components/toaster/MToaster.vue +7 -5
  115. package/src/components/toaster/README.md +16 -0
  116. package/src/components/toggle/README.md +14 -0
  117. package/src/components/togglegroup/README.md +14 -0
  118. package/src/main.ts +5 -0
  119. package/src/components/Introduction.mdx +0 -100
  120. package/src/components/Support.mdx +0 -18
  121. package/src/components/usingIcons.mdx +0 -35
@@ -22,44 +22,69 @@ import { VNodeProps } from 'vue';
22
22
  import { WatchOptions } from 'vue';
23
23
  import { WatchStopHandle } from 'vue';
24
24
 
25
- declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
- size: "s" | "m" | "l";
27
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
25
+ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
26
+ "update:modelValue": (value: string[]) => any;
27
+ }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{
28
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
29
+ }>, {
30
+ appearance: "standard" | "ghost";
31
+ behavior: "multiple" | "single";
32
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
28
33
 
29
- declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {
30
- size: "s" | "m" | "l";
31
- type: "button" | "reset" | "submit";
34
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
35
+
36
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
37
+
38
+ declare const __VLS_component_12: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
39
+ "update:modelValue": (v: NormalizedFile[]) => any;
40
+ validation: (validationState: FilesValidationState) => any;
41
+ }, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
42
+ "onUpdate:modelValue"?: ((v: NormalizedFile[]) => any) | undefined;
43
+ onValidation?: ((validationState: FilesValidationState) => any) | undefined;
44
+ }>, {
45
+ title: string;
46
+ hasDragDrop: boolean;
47
+ showFilesList: boolean;
48
+ subtitle: string;
49
+ uploadButtonLabel: string;
50
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
51
+ fileInput: HTMLInputElement;
52
+ }, HTMLDivElement>;
53
+
54
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
32
55
  appearance: "standard" | "accent" | "danger" | "inverse";
56
+ type: "button" | "reset" | "submit";
57
+ size: "s" | "m" | "l";
33
58
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
34
59
 
35
- declare const __VLS_component_11: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
60
+ declare const __VLS_component_14: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
61
+ appearance: "secondary" | "accent" | "inverse" | "standard";
36
62
  size: "s" | "m";
37
63
  iconPosition: "left" | "right";
38
- appearance: "secondary" | "accent" | "inverse" | "standard";
39
64
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
40
65
 
41
- declare const __VLS_component_12: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
66
+ declare const __VLS_component_15: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
42
67
  "update:open": (value: boolean) => any;
43
- }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
68
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
44
69
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
45
70
  }>, {
46
71
  scroll: boolean;
47
72
  closable: boolean;
48
73
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
49
74
 
50
- declare const __VLS_component_13: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
75
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
51
76
 
52
- declare const __VLS_component_14: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
77
+ declare const __VLS_component_17: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
53
78
  close: () => any;
54
- }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
79
+ }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
55
80
  onClose?: (() => any) | undefined;
56
81
  }>, {
57
82
  status: "info" | "success" | "warning" | "error";
58
83
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
59
84
 
60
- declare const __VLS_component_15: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
85
+ declare const __VLS_component_18: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
61
86
  "update:modelValue": (value: string | number) => any;
62
- }, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
87
+ }, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
63
88
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
64
89
  }>, {
65
90
  size: "s" | "m";
@@ -67,49 +92,55 @@ clearLabel: string;
67
92
  inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
68
93
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
69
94
 
70
- declare const __VLS_component_16: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
95
+ declare const __VLS_component_19: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
71
96
  "update:open": (value: boolean) => any;
72
- }, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
97
+ }, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
73
98
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
74
99
  }>, {
75
100
  status: "info" | "success" | "warning" | "error";
76
101
  closable: boolean;
77
102
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
78
103
 
79
- declare const __VLS_component_17: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{}>, {
104
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
105
+
106
+ declare const __VLS_component_20: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
80
107
  position: "top" | "bottom" | "left" | "right";
81
108
  pointer: boolean;
82
109
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
83
110
 
84
- declare const __VLS_component_2: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {
111
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
85
112
  size: "s" | "m" | "l";
86
- type: "button" | "reset" | "submit";
113
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
114
+
115
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
87
116
  appearance: "standard" | "accent" | "danger" | "inverse";
117
+ type: "button" | "reset" | "submit";
118
+ size: "s" | "m" | "l";
88
119
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
89
120
 
90
- declare const __VLS_component_3: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
121
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
91
122
  appearance: "standard" | "accent" | "tips" | "inverse";
92
123
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
93
124
 
94
- declare const __VLS_component_4: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
125
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
95
126
  previousButtonAriaLabel: string;
96
127
  nextButtonAriaLabel: string;
97
128
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
98
129
  contentContainer: HTMLDivElement;
99
130
  }, HTMLDivElement>;
100
131
 
101
- declare const __VLS_component_5: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
132
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
102
133
 
103
- declare const __VLS_component_6: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
104
- size: "s" | "m" | "l";
134
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
105
135
  appearance: "primary" | "secondary" | "tertiary" | "inverse";
106
136
  orientation: "vertical" | "horizontal";
137
+ size: "s" | "m" | "l";
107
138
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
108
139
 
109
- declare const __VLS_component_7: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
140
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
110
141
  back: () => any;
111
142
  "update:open": (value: boolean) => any;
112
- }, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
143
+ }, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
113
144
  onBack?: (() => any) | undefined;
114
145
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
115
146
  }>, {
@@ -118,24 +149,111 @@ scroll: boolean;
118
149
  titleRef: HTMLHeadingElement;
119
150
  }, any>;
120
151
 
121
- declare const __VLS_component_8: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
152
+ /**
153
+ * 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.
154
+ */
155
+ declare type __VLS_Props = {
156
+ /**
157
+ * Defines the visual appearance of the button.
158
+ */
159
+ appearance?: 'standard' | 'ghost';
160
+ /**
161
+ * Component behavior: `multiple` allows all items to be open simultaneously, `single` ensures only one item is open at a time. For native HTML implementation, the `single` behavior uses the HTML5 `name` attribute on `<details>` elements for browser-native exclusive behavior..
162
+ */
163
+ behavior?: 'multiple' | 'single';
164
+ /**
165
+ * IDs of the Accordion items that are currently open. Updating this array controls which sections are expanded.
166
+ */
167
+ modelValue?: string[];
168
+ };
122
169
 
123
- declare const __VLS_component_9: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
170
+ /**
171
+ * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options.
172
+ */
173
+ declare type __VLS_Props_10 = {
174
+ /**
175
+ * A unique identifier for the checkbox, used to associate the label with the form element.
176
+ */
177
+ id: string;
178
+ /**
179
+ * The name attribute for the checkbox element, typically used for form submission.
180
+ */
181
+ name?: string;
182
+ /**
183
+ * The text label displayed next to the checkbox.
184
+ */
185
+ label?: string;
186
+ /**
187
+ * The checkbox's checked state, bound via v-model.
188
+ */
189
+ modelValue?: boolean;
190
+ /**
191
+ * Sets the checkbox to an indeterminate state (partially selected).
192
+ */
193
+ indeterminate?: boolean;
194
+ /**
195
+ * If `true`, applies an invalid state to the checkbox.
196
+ */
197
+ isInvalid?: boolean;
198
+ /**
199
+ * If `true`, disables the checkbox, making it non-interactive.
200
+ */
201
+ disabled?: boolean;
202
+ /**
203
+ * If `true`, indent the checkbox.
204
+ */
205
+ indented?: boolean;
206
+ };
124
207
 
125
208
  /**
126
- * 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.
209
+ * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options. <br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
127
210
  */
128
- declare type __VLS_Props = {
211
+ declare type __VLS_Props_11 = {
129
212
  /**
130
- * Allows to define the avatar size.
213
+ * The name attribute for the checkbox element, typically used for form submission.
131
214
  */
132
- size?: 's' | 'm' | 'l';
215
+ name: string;
216
+ /**
217
+ * Property used to manage the values checked by v-model
218
+ * (Do not use directly)
219
+ */
220
+ modelValue?: Array<string>;
221
+ /**
222
+ * list of properties of each checkbox button of the checkbox group
223
+ */
224
+ options: Array<{
225
+ id: string;
226
+ label: string;
227
+ value: string;
228
+ disabled?: boolean;
229
+ isInvalid?: boolean;
230
+ indented?: boolean;
231
+ }>;
232
+ /**
233
+ * If `true`, make the form element of the group inline.
234
+ */
235
+ inline?: boolean;
236
+ };
237
+
238
+ declare type __VLS_Props_12 = {
239
+ /**
240
+ * 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.
241
+ */
242
+ modelValue?: number;
243
+ /**
244
+ * Defines the menu items, each of which sets a checked state and act as a button, link, or router-link.
245
+ */
246
+ items: CheckListMenuItem[];
247
+ /**
248
+ * When enabled, adds a visible border around the wrapper to highlight or separate its content.
249
+ */
250
+ outlined?: boolean;
133
251
  };
134
252
 
135
253
  /**
136
254
  * A circular progress bar visually represents progress toward a goal or completion of a process using a circular shape. It is commonly used to indicate task completion or performance metrics. The progress is displayed as a partially filled ring, often accompanied by a percentage or status indicator. Circular Progress Bars are useful for providing users with real-time feedback on ongoing actions without taking up significant screen space.
137
255
  */
138
- declare type __VLS_Props_10 = {
256
+ declare type __VLS_Props_13 = {
139
257
  /**
140
258
  * Sets the size of the progress bar.
141
259
  */
@@ -161,7 +279,7 @@ declare type __VLS_Props_10 = {
161
279
  /**
162
280
  * The Container component is designed to wrap your page or section content, typically grids or other layout elements. By default, it centers the content with a maximum width to ensure consistent alignment and spacing.
163
281
  */
164
- declare type __VLS_Props_11 = {
282
+ declare type __VLS_Props_14 = {
165
283
  /**
166
284
  * If `true`, the container will take the full width.
167
285
  */
@@ -171,7 +289,7 @@ declare type __VLS_Props_11 = {
171
289
  /**
172
290
  * A date picker is an input component that allows users to select a date from a calendar interface or manually enter a date value. It enhances usability by providing structured date selection, reducing input errors, and ensuring format consistency. Date Pickers are commonly used in forms, booking systems, scheduling tools, and data filtering interfaces to facilitate accurate date entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
173
291
  */
174
- declare type __VLS_Props_12 = {
292
+ declare type __VLS_Props_15 = {
175
293
  /**
176
294
  * A unique identifier for the datepicker element, used to associate the label with the form element.
177
295
  */
@@ -213,7 +331,7 @@ declare type __VLS_Props_12 = {
213
331
  /**
214
332
  * A divider is a visual element used to separate content or sections within an interface. It helps improve readability and organization by creating clear distinctions between groups of information. Dividers can be thin lines, thick separators, or even styled with spacing variations, adapting to different layouts. They are commonly used in menus, lists, forms, and content blocks to create a structured visual hierarchy.
215
333
  */
216
- declare type __VLS_Props_13 = {
334
+ declare type __VLS_Props_16 = {
217
335
  /**
218
336
  * Determines the orientation of the divider.
219
337
  */
@@ -231,7 +349,7 @@ declare type __VLS_Props_13 = {
231
349
  /**
232
350
  * A drawer is a sliding panel that appears from the side of the screen, providing additional content, settings, or actions without disrupting the main view. It is often used for filtering options, or contextual details. It enhances usability by keeping interfaces clean while offering expandable functionality.
233
351
  */
234
- declare type __VLS_Props_14 = {
352
+ declare type __VLS_Props_17 = {
235
353
  /**
236
354
  * If `true`, display the drawer.
237
355
  */
@@ -269,7 +387,7 @@ declare type __VLS_Props_14 = {
269
387
  /**
270
388
  * A field label is a text element that identifies the purpose of an input field, providing users with clear guidance on what information to enter. It is typically placed above the input field and may include indicators for required or optional fields. Field Labels improve form usability, accessibility, and data entry accuracy by ensuring users understand the expected input.
271
389
  */
272
- declare type __VLS_Props_15 = {
390
+ declare type __VLS_Props_18 = {
273
391
  /**
274
392
  * A unique identifier for the form field, used to associate the label with the form element.
275
393
  */
@@ -315,7 +433,7 @@ declare type __VLS_Props_15 = {
315
433
  /**
316
434
  * This component creates a structured form field for group field such as Radio Group, Checkbox Group or Toggle Group with a label, optional help text, error and validation message handling.
317
435
  */
318
- declare type __VLS_Props_16 = {
436
+ declare type __VLS_Props_19 = {
319
437
  /**
320
438
  * A unique identifier for the form field, used to associate the label with the form element.
321
439
  */
@@ -346,10 +464,20 @@ declare type __VLS_Props_16 = {
346
464
  message?: string;
347
465
  };
348
466
 
467
+ /**
468
+ * 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.
469
+ */
470
+ declare type __VLS_Props_2 = {
471
+ /**
472
+ * If `true`, adds a shadow to the action bottom bar.
473
+ */
474
+ shadow?: boolean;
475
+ };
476
+
349
477
  /**
350
478
  * 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.
351
479
  */
352
- declare type __VLS_Props_17 = {
480
+ declare type __VLS_Props_20 = {
353
481
  /**
354
482
  * Label of the Flag.
355
483
  */
@@ -363,7 +491,7 @@ declare type __VLS_Props_17 = {
363
491
  /**
364
492
  * 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.
365
493
  */
366
- declare type __VLS_Props_18 = {
494
+ declare type __VLS_Props_21 = {
367
495
  /**
368
496
  * Defines the visual style of the icon button.
369
497
  */
@@ -393,7 +521,7 @@ declare type __VLS_Props_18 = {
393
521
  /**
394
522
  * 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.
395
523
  */
396
- declare type __VLS_Props_19 = {
524
+ declare type __VLS_Props_22 = {
397
525
  /**
398
526
  * Allows to define the progress bar size.
399
527
  */
@@ -404,37 +532,10 @@ declare type __VLS_Props_19 = {
404
532
  value?: number;
405
533
  };
406
534
 
407
- /**
408
- * 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.
409
- */
410
- declare type __VLS_Props_2 = {
411
- /**
412
- * Allows to define the breadcrumb appearance.
413
- */
414
- appearance?: 'standard' | 'inverse';
415
- /**
416
- * Links of the breadcrumb.
417
- */
418
- links: Array<{
419
- /**
420
- * The label displayed for the link.
421
- */
422
- label: string;
423
- /**
424
- * URL for the link (for external links or the `to` prop for `router-link`).
425
- */
426
- href: string;
427
- /**
428
- * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
429
- */
430
- router?: boolean;
431
- }>;
432
- };
433
-
434
535
  /**
435
536
  * 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.
436
537
  */
437
- declare type __VLS_Props_20 = {
538
+ declare type __VLS_Props_23 = {
438
539
  /**
439
540
  * The current value of the progress bar.
440
541
  */
@@ -444,7 +545,7 @@ declare type __VLS_Props_20 = {
444
545
  /**
445
546
  * 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.
446
547
  */
447
- declare type __VLS_Props_21 = {
548
+ declare type __VLS_Props_24 = {
448
549
  /**
449
550
  * Position of the icon relative to the text.
450
551
  */
@@ -478,7 +579,7 @@ declare type __VLS_Props_21 = {
478
579
  /**
479
580
  * 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.
480
581
  */
481
- declare type __VLS_Props_22 = {
582
+ declare type __VLS_Props_25 = {
482
583
  /**
483
584
  * Specifies the visual appearance of the loader.
484
585
  */
@@ -496,7 +597,7 @@ declare type __VLS_Props_22 = {
496
597
  /**
497
598
  * 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.
498
599
  */
499
- declare type __VLS_Props_23 = {
600
+ declare type __VLS_Props_26 = {
500
601
  /**
501
602
  * Controls the visibility of the loading overlay.
502
603
  */
@@ -510,7 +611,7 @@ declare type __VLS_Props_23 = {
510
611
  /**
511
612
  * 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.
512
613
  */
513
- declare type __VLS_Props_24 = {
614
+ declare type __VLS_Props_27 = {
514
615
  /**
515
616
  * if `true`, display the modal.
516
617
  */
@@ -540,7 +641,7 @@ declare type __VLS_Props_24 = {
540
641
  /**
541
642
  * 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.
542
643
  */
543
- declare type __VLS_Props_25 = {
644
+ declare type __VLS_Props_28 = {
544
645
  /**
545
646
  * Content of the badge.
546
647
  */
@@ -558,7 +659,7 @@ declare type __VLS_Props_25 = {
558
659
  /**
559
660
  * 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.
560
661
  */
561
- declare type __VLS_Props_26 = {
662
+ declare type __VLS_Props_29 = {
562
663
  /**
563
664
  * Controls the visibility of the overlay.
564
665
  */
@@ -569,10 +670,20 @@ declare type __VLS_Props_26 = {
569
670
  dialogLabel?: string;
570
671
  };
571
672
 
673
+ /**
674
+ * 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.
675
+ */
676
+ declare type __VLS_Props_3 = {
677
+ /**
678
+ * Allows to define the avatar size.
679
+ */
680
+ size?: 's' | 'm' | 'l';
681
+ };
682
+
572
683
  /**
573
684
  * 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.
574
685
  */
575
- declare type __VLS_Props_27 = {
686
+ declare type __VLS_Props_30 = {
576
687
  /**
577
688
  * A unique identifier for the pagination.
578
689
  */
@@ -602,7 +713,7 @@ declare type __VLS_Props_27 = {
602
713
  /**
603
714
  * 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.
604
715
  */
605
- declare type __VLS_Props_28 = {
716
+ declare type __VLS_Props_31 = {
606
717
  /**
607
718
  * A unique identifier for the password input element, used to associate the label with the form element.
608
719
  */
@@ -651,7 +762,7 @@ declare type __VLS_Props_28 = {
651
762
  /**
652
763
  * 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.
653
764
  */
654
- declare type __VLS_Props_29 = {
765
+ declare type __VLS_Props_32 = {
655
766
  /**
656
767
  * A unique identifier for the phone number input element, used to associate the label with the form element.
657
768
  */
@@ -702,25 +813,10 @@ declare type __VLS_Props_29 = {
702
813
  countryCodes?: CountryCode[];
703
814
  };
704
815
 
705
- declare type __VLS_Props_3 = {
706
- /**
707
- * 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.
708
- */
709
- modelValue?: number;
710
- /**
711
- * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
712
- */
713
- items: MenuItem[];
714
- /**
715
- * When enabled, adds a visible border around the wrapper to highlight or separate its content.
716
- */
717
- outlined?: boolean;
718
- };
719
-
720
816
  /**
721
817
  * 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).
722
818
  */
723
- declare type __VLS_Props_30 = {
819
+ declare type __VLS_Props_33 = {
724
820
  /**
725
821
  * A unique identifier for the pincode element, used to associate the label with the form element.
726
822
  */
@@ -754,7 +850,7 @@ declare type __VLS_Props_30 = {
754
850
  /**
755
851
  * 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.
756
852
  */
757
- declare type __VLS_Props_31 = {
853
+ declare type __VLS_Props_34 = {
758
854
  /**
759
855
  * A unique identifier for the quantity selector element, used to associate the label with the form element.
760
856
  */
@@ -808,7 +904,7 @@ declare type __VLS_Props_31 = {
808
904
  /**
809
905
  * 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.
810
906
  */
811
- declare type __VLS_Props_32 = {
907
+ declare type __VLS_Props_35 = {
812
908
  /**
813
909
  * A unique identifier for the radio, used to associate the label with the form element.
814
910
  */
@@ -838,7 +934,7 @@ declare type __VLS_Props_32 = {
838
934
  /**
839
935
  * 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).
840
936
  */
841
- declare type __VLS_Props_33 = {
937
+ declare type __VLS_Props_36 = {
842
938
  /**
843
939
  * The name attribute for the radio element, typically used for form submission.
844
940
  */
@@ -870,7 +966,7 @@ declare type __VLS_Props_33 = {
870
966
  /**
871
967
  * 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.
872
968
  */
873
- declare type __VLS_Props_34 = {
969
+ declare type __VLS_Props_37 = {
874
970
  /**
875
971
  * The selected segment index, bound via v-model.
876
972
  */
@@ -897,7 +993,7 @@ declare type __VLS_Props_34 = {
897
993
  /**
898
994
  * 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).
899
995
  */
900
- declare type __VLS_Props_35 = {
996
+ declare type __VLS_Props_38 = {
901
997
  /**
902
998
  * A unique identifier for the select, used to associate the label with the form element.
903
999
  */
@@ -945,7 +1041,7 @@ declare type __VLS_Props_35 = {
945
1041
  /**
946
1042
  * 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.
947
1043
  */
948
- declare type __VLS_Props_36 = {
1044
+ declare type __VLS_Props_39 = {
949
1045
  /**
950
1046
  * Determines whether the rating is interactive or read-only.
951
1047
  * When true, all user interactions (click, hover, keyboard) are disabled.
@@ -990,23 +1086,58 @@ declare type __VLS_Props_36 = {
990
1086
  };
991
1087
 
992
1088
  /**
993
- * 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.
1089
+ * 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.
994
1090
  */
995
- declare type __VLS_Props_37 = {
1091
+ declare type __VLS_Props_4 = {
996
1092
  /**
997
- * Content of the status badge
1093
+ * title displayed in mobile version.
998
1094
  */
999
- label: string;
1095
+ title?: string;
1000
1096
  /**
1001
- * Allows to define the status badge type
1097
+ * An array of objects that allows you to provide all the data needed to generate the content for each item.
1002
1098
  */
1003
- status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
1099
+ items: Array<{
1100
+ /**
1101
+ * The icon displayed for the item from Mozaic-icon-vue.
1102
+ */
1103
+ icon?: Component;
1104
+ /**
1105
+ * The label displayed for the item.
1106
+ */
1107
+ label: string;
1108
+ /**
1109
+ * If `true`, the item will be disabled.
1110
+ */
1111
+ disabled?: boolean;
1112
+ /**
1113
+ * Allows to define the item appearance.
1114
+ */
1115
+ appearance?: 'standard' | 'danger';
1116
+ /**
1117
+ * Add a divider on top of the item.
1118
+ */
1119
+ divider?: boolean;
1120
+ }>;
1004
1121
  };
1005
1122
 
1006
1123
  /**
1007
- * 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.
1124
+ * 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.
1008
1125
  */
1009
- declare type __VLS_Props_38 = {
1126
+ declare type __VLS_Props_40 = {
1127
+ /**
1128
+ * Content of the status badge
1129
+ */
1130
+ label: string;
1131
+ /**
1132
+ * Allows to define the status badge type
1133
+ */
1134
+ status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
1135
+ };
1136
+
1137
+ /**
1138
+ * 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.
1139
+ */
1140
+ declare type __VLS_Props_41 = {
1010
1141
  /**
1011
1142
  * Allows to define the status dot type.
1012
1143
  */
@@ -1020,7 +1151,7 @@ declare type __VLS_Props_38 = {
1020
1151
  /**
1021
1152
  * 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.
1022
1153
  */
1023
- declare type __VLS_Props_39 = {
1154
+ declare type __VLS_Props_42 = {
1024
1155
  /**
1025
1156
  * Allows to define the status message style.
1026
1157
  */
@@ -1031,48 +1162,10 @@ declare type __VLS_Props_39 = {
1031
1162
  label: string;
1032
1163
  };
1033
1164
 
1034
- /**
1035
- * 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.
1036
- */
1037
- declare type __VLS_Props_4 = {
1038
- /**
1039
- * Defines the visual style of the button.
1040
- */
1041
- appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
1042
- /**
1043
- * Determines the size of the button.
1044
- */
1045
- size?: 's' | 'm' | 'l';
1046
- /**
1047
- * If `true`, disables the button, making it non-interactive.
1048
- */
1049
- disabled?: boolean;
1050
- /**
1051
- * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
1052
- */
1053
- ghost?: boolean;
1054
- /**
1055
- * If `true`, the button gets an outlined style, usually with just the border and no solid background.
1056
- */
1057
- outlined?: boolean;
1058
- /**
1059
- * Controls the positioning of an icon in the button.
1060
- */
1061
- iconPosition?: 'left' | 'right' | 'only';
1062
- /**
1063
- * Specifies the button's HTML `type` attribute.
1064
- */
1065
- type?: 'button' | 'reset' | 'submit';
1066
- /**
1067
- * If `true`, a loading state is displayed.
1068
- */
1069
- isLoading?: boolean;
1070
- };
1071
-
1072
1165
  /**
1073
1166
  * 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.
1074
1167
  */
1075
- declare type __VLS_Props_40 = {
1168
+ declare type __VLS_Props_43 = {
1076
1169
  /**
1077
1170
  * Title of the status notification.
1078
1171
  */
@@ -1094,7 +1187,7 @@ declare type __VLS_Props_40 = {
1094
1187
  /**
1095
1188
  * 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.
1096
1189
  */
1097
- declare type __VLS_Props_41 = {
1190
+ declare type __VLS_Props_44 = {
1098
1191
  /**
1099
1192
  * Current step of the stepper compact.
1100
1193
  */
@@ -1113,10 +1206,44 @@ declare type __VLS_Props_41 = {
1113
1206
  description?: string;
1114
1207
  };
1115
1208
 
1209
+ /**
1210
+ * 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.
1211
+ */
1212
+ declare type __VLS_Props_45 = {
1213
+ /**
1214
+ * Current step of the stepper compact.
1215
+ */
1216
+ modelValue?: number;
1217
+ /**
1218
+ * Total number of steps of the stepper compact.
1219
+ */
1220
+ steps?: number;
1221
+ /**
1222
+ * If `true`, display the cancel button.
1223
+ */
1224
+ cancel?: boolean;
1225
+ /**
1226
+ * Label for the cancel button.
1227
+ */
1228
+ cancelLabel?: string;
1229
+ /**
1230
+ * Label for the previous button.
1231
+ */
1232
+ previousLabel?: string;
1233
+ /**
1234
+ * Label for the next button.
1235
+ */
1236
+ nextLabel?: string;
1237
+ /**
1238
+ * Label for the validate button.
1239
+ */
1240
+ validateLabel?: string;
1241
+ };
1242
+
1116
1243
  /**
1117
1244
  * 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.
1118
1245
  */
1119
- declare type __VLS_Props_42 = {
1246
+ declare type __VLS_Props_46 = {
1120
1247
  /**
1121
1248
  * Current step of the stepper compact.
1122
1249
  */
@@ -1139,7 +1266,7 @@ declare type __VLS_Props_42 = {
1139
1266
  /**
1140
1267
  * 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.
1141
1268
  */
1142
- declare type __VLS_Props_43 = {
1269
+ declare type __VLS_Props_47 = {
1143
1270
  /**
1144
1271
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
1145
1272
  */
@@ -1182,7 +1309,7 @@ declare type __VLS_Props_43 = {
1182
1309
  /**
1183
1310
  * 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).
1184
1311
  */
1185
- declare type __VLS_Props_44 = {
1312
+ declare type __VLS_Props_48 = {
1186
1313
  /**
1187
1314
  * Defines the behavior and layout of the tag.
1188
1315
  */
@@ -1224,7 +1351,7 @@ declare type __VLS_Props_44 = {
1224
1351
  /**
1225
1352
  * 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).
1226
1353
  */
1227
- declare type __VLS_Props_45 = {
1354
+ declare type __VLS_Props_49 = {
1228
1355
  /**
1229
1356
  * A unique identifier for the textarea, used to associate the label with the form element.
1230
1357
  */
@@ -1267,10 +1394,37 @@ declare type __VLS_Props_45 = {
1267
1394
  readonly?: boolean;
1268
1395
  };
1269
1396
 
1397
+ /**
1398
+ * 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.
1399
+ */
1400
+ declare type __VLS_Props_5 = {
1401
+ /**
1402
+ * Allows to define the breadcrumb appearance.
1403
+ */
1404
+ appearance?: 'standard' | 'inverse';
1405
+ /**
1406
+ * Links of the breadcrumb.
1407
+ */
1408
+ links: Array<{
1409
+ /**
1410
+ * The label displayed for the link.
1411
+ */
1412
+ label: string;
1413
+ /**
1414
+ * URL for the link (for external links or the `to` prop for `router-link`).
1415
+ */
1416
+ href: string;
1417
+ /**
1418
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
1419
+ */
1420
+ router?: boolean;
1421
+ }>;
1422
+ };
1423
+
1270
1424
  /**
1271
1425
  * 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).
1272
1426
  */
1273
- declare type __VLS_Props_46 = {
1427
+ declare type __VLS_Props_50 = {
1274
1428
  /**
1275
1429
  * A unique identifier for the input element, used to associate the label with the form element.
1276
1430
  */
@@ -1320,7 +1474,7 @@ declare type __VLS_Props_46 = {
1320
1474
  /**
1321
1475
  * 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.
1322
1476
  */
1323
- declare type __VLS_Props_47 = {
1477
+ declare type __VLS_Props_51 = {
1324
1478
  /**
1325
1479
  * If `true`, display the Toaster.
1326
1480
  */
@@ -1354,7 +1508,7 @@ declare type __VLS_Props_47 = {
1354
1508
  /**
1355
1509
  * 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.
1356
1510
  */
1357
- declare type __VLS_Props_48 = {
1511
+ declare type __VLS_Props_52 = {
1358
1512
  /**
1359
1513
  * A unique identifier for the toggle, used to associate the label with the form element.
1360
1514
  */
@@ -1384,7 +1538,7 @@ declare type __VLS_Props_48 = {
1384
1538
  /**
1385
1539
  * 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).
1386
1540
  */
1387
- declare type __VLS_Props_49 = {
1541
+ declare type __VLS_Props_53 = {
1388
1542
  /**
1389
1543
  * The name attribute for the toggle element, typically used for form submission.
1390
1544
  */
@@ -1410,28 +1564,10 @@ declare type __VLS_Props_49 = {
1410
1564
  inline?: boolean;
1411
1565
  };
1412
1566
 
1413
- /**
1414
- * A callout is used to highlight additional information that can assist users with tips, extra details, or helpful guidance, without signaling a critical status or alert. Unlike notifications, callouts are not triggered by user actions and do not correspond to specific system states. They are designed to enhance the user experience by providing contextually relevant information that supports comprehension and usability.
1415
- */
1416
- declare type __VLS_Props_5 = {
1417
- /**
1418
- * Title of the callout.
1419
- */
1420
- title: string;
1421
- /**
1422
- * Description of the callout.
1423
- */
1424
- description: string;
1425
- /**
1426
- * Allows to define the callout appearance.
1427
- */
1428
- appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
1429
- };
1430
-
1431
1567
  /**
1432
1568
  * 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.
1433
1569
  */
1434
- declare type __VLS_Props_50 = {
1570
+ declare type __VLS_Props_54 = {
1435
1571
  /**
1436
1572
  * A unique identifier for the tooltip, used to describe the tooltip.
1437
1573
  */
@@ -1450,125 +1586,190 @@ declare type __VLS_Props_50 = {
1450
1586
  pointer?: boolean;
1451
1587
  };
1452
1588
 
1453
- /**
1454
- * A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
1455
- */
1456
1589
  declare type __VLS_Props_6 = {
1457
1590
  /**
1458
- * Aria label for the previous button.
1591
+ * 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.
1459
1592
  */
1460
- previousButtonAriaLabel?: string;
1593
+ modelValue?: number;
1461
1594
  /**
1462
- * Aria label for the next button.
1595
+ * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
1463
1596
  */
1464
- nextButtonAriaLabel?: string;
1597
+ items: MenuItem[];
1598
+ /**
1599
+ * When enabled, adds a visible border around the wrapper to highlight or separate its content.
1600
+ */
1601
+ outlined?: boolean;
1465
1602
  };
1466
1603
 
1467
1604
  /**
1468
- * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options.
1605
+ * 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.
1469
1606
  */
1470
1607
  declare type __VLS_Props_7 = {
1471
1608
  /**
1472
- * A unique identifier for the checkbox, used to associate the label with the form element.
1609
+ * Defines the visual style of the button.
1473
1610
  */
1474
- id: string;
1611
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
1475
1612
  /**
1476
- * The name attribute for the checkbox element, typically used for form submission.
1613
+ * Determines the size of the button.
1477
1614
  */
1478
- name?: string;
1615
+ size?: 's' | 'm' | 'l';
1479
1616
  /**
1480
- * The text label displayed next to the checkbox.
1617
+ * If `true`, disables the button, making it non-interactive.
1481
1618
  */
1482
- label?: string;
1619
+ disabled?: boolean;
1483
1620
  /**
1484
- * The checkbox's checked state, bound via v-model.
1621
+ * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
1485
1622
  */
1486
- modelValue?: boolean;
1623
+ ghost?: boolean;
1487
1624
  /**
1488
- * Sets the checkbox to an indeterminate state (partially selected).
1625
+ * If `true`, the button gets an outlined style, usually with just the border and no solid background.
1489
1626
  */
1490
- indeterminate?: boolean;
1627
+ outlined?: boolean;
1491
1628
  /**
1492
- * If `true`, applies an invalid state to the checkbox.
1629
+ * Controls the positioning of an icon in the button.
1493
1630
  */
1494
- isInvalid?: boolean;
1631
+ iconPosition?: 'left' | 'right' | 'only';
1495
1632
  /**
1496
- * If `true`, disables the checkbox, making it non-interactive.
1633
+ * Specifies the button's HTML `type` attribute.
1497
1634
  */
1498
- disabled?: boolean;
1635
+ type?: 'button' | 'reset' | 'submit';
1499
1636
  /**
1500
- * If `true`, indent the checkbox.
1637
+ * If `true`, a loading state is displayed.
1501
1638
  */
1502
- indented?: boolean;
1639
+ isLoading?: boolean;
1503
1640
  };
1504
1641
 
1505
1642
  /**
1506
- * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options. <br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
1643
+ * A callout is used to highlight additional information that can assist users with tips, extra details, or helpful guidance, without signaling a critical status or alert. Unlike notifications, callouts are not triggered by user actions and do not correspond to specific system states. They are designed to enhance the user experience by providing contextually relevant information that supports comprehension and usability.
1507
1644
  */
1508
1645
  declare type __VLS_Props_8 = {
1509
1646
  /**
1510
- * The name attribute for the checkbox element, typically used for form submission.
1511
- */
1512
- name: string;
1513
- /**
1514
- * Property used to manage the values checked by v-model
1515
- * (Do not use directly)
1647
+ * Title of the callout.
1516
1648
  */
1517
- modelValue?: Array<string>;
1649
+ title: string;
1518
1650
  /**
1519
- * list of properties of each checkbox button of the checkbox group
1651
+ * Description of the callout.
1520
1652
  */
1521
- options: Array<{
1522
- id: string;
1523
- label: string;
1524
- value: string;
1525
- disabled?: boolean;
1526
- isInvalid?: boolean;
1527
- indented?: boolean;
1528
- }>;
1653
+ description: string;
1529
1654
  /**
1530
- * If `true`, make the form element of the group inline.
1655
+ * Allows to define the callout appearance.
1531
1656
  */
1532
- inline?: boolean;
1657
+ appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
1533
1658
  };
1534
1659
 
1660
+ /**
1661
+ * A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
1662
+ */
1535
1663
  declare type __VLS_Props_9 = {
1536
1664
  /**
1537
- * 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.
1538
- */
1539
- modelValue?: number;
1540
- /**
1541
- * Defines the menu items, each of which sets a checked state and act as a button, link, or router-link.
1665
+ * Aria label for the previous button.
1542
1666
  */
1543
- items: CheckListMenuItem[];
1667
+ previousButtonAriaLabel?: string;
1544
1668
  /**
1545
- * When enabled, adds a visible border around the wrapper to highlight or separate its content.
1669
+ * Aria label for the next button.
1546
1670
  */
1547
- outlined?: boolean;
1671
+ nextButtonAriaLabel?: string;
1548
1672
  };
1549
1673
 
1550
1674
  declare type __VLS_PublicProps = {
1551
1675
  modelValue: number;
1552
- } & __VLS_Props_36;
1676
+ } & __VLS_Props_39;
1553
1677
 
1554
1678
  declare function __VLS_template(): {
1555
1679
  attrs: Partial<{}>;
1556
1680
  slots: Readonly<{
1557
1681
  /**
1558
- * Use this slot to insert the image, icon or intials of the avatar.
1682
+ * Use this slot to display accordion items.
1559
1683
  */
1560
1684
  default: VNode;
1561
1685
  }> & {
1562
1686
  /**
1563
- * Use this slot to insert the image, icon or intials of the avatar.
1687
+ * Use this slot to display accordion items.
1564
1688
  */
1565
1689
  default: VNode;
1566
1690
  };
1567
1691
  refs: {};
1568
- rootEl: HTMLSpanElement;
1692
+ rootEl: HTMLDivElement;
1569
1693
  };
1570
1694
 
1571
1695
  declare function __VLS_template_10(): {
1696
+ attrs: Partial<{}>;
1697
+ slots: Readonly<{
1698
+ /**
1699
+ * Use this slot to insert the form element of your choice
1700
+ */
1701
+ default: VNode;
1702
+ }> & {
1703
+ /**
1704
+ * Use this slot to insert the form element of your choice
1705
+ */
1706
+ default: VNode;
1707
+ };
1708
+ refs: {};
1709
+ rootEl: HTMLDivElement;
1710
+ };
1711
+
1712
+ declare function __VLS_template_11(): {
1713
+ attrs: Partial<{}>;
1714
+ slots: Readonly<{
1715
+ /**
1716
+ * Use this slot to insert the form element of your choice
1717
+ */
1718
+ default: VNode;
1719
+ }> & {
1720
+ /**
1721
+ * Use this slot to insert the form element of your choice
1722
+ */
1723
+ default: VNode;
1724
+ };
1725
+ refs: {};
1726
+ rootEl: HTMLFieldSetElement;
1727
+ };
1728
+
1729
+ declare function __VLS_template_12(): {
1730
+ attrs: Partial<{}>;
1731
+ slots: Readonly<{
1732
+ /**
1733
+ * Slot for customizing the file name display.
1734
+ * Receives `NormalizedFile` as slot props.
1735
+ */
1736
+ name: VNode;
1737
+ /**
1738
+ * Slot for displaying additional file information.
1739
+ * Receives `NormalizedFile` as slot props.
1740
+ */
1741
+ information: VNode;
1742
+ /**
1743
+ * Slot for providing a custom error message display.
1744
+ * Receives:
1745
+ * `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
1746
+ */
1747
+ errorMessage: VNode;
1748
+ }> & {
1749
+ /**
1750
+ * Slot for customizing the file name display.
1751
+ * Receives `NormalizedFile` as slot props.
1752
+ */
1753
+ name: VNode;
1754
+ /**
1755
+ * Slot for displaying additional file information.
1756
+ * Receives `NormalizedFile` as slot props.
1757
+ */
1758
+ information: VNode;
1759
+ /**
1760
+ * Slot for providing a custom error message display.
1761
+ * Receives:
1762
+ * `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
1763
+ */
1764
+ errorMessage: VNode;
1765
+ };
1766
+ refs: {
1767
+ fileInput: HTMLInputElement;
1768
+ };
1769
+ rootEl: HTMLDivElement;
1770
+ };
1771
+
1772
+ declare function __VLS_template_13(): {
1572
1773
  attrs: Partial<{}>;
1573
1774
  slots: Readonly<{
1574
1775
  /**
@@ -1585,7 +1786,7 @@ declare function __VLS_template_10(): {
1585
1786
  rootEl: HTMLButtonElement;
1586
1787
  };
1587
1788
 
1588
- declare function __VLS_template_11(): {
1789
+ declare function __VLS_template_14(): {
1589
1790
  attrs: Partial<{}>;
1590
1791
  slots: Readonly<{
1591
1792
  /**
@@ -1610,7 +1811,7 @@ declare function __VLS_template_11(): {
1610
1811
  rootEl: any;
1611
1812
  };
1612
1813
 
1613
- declare function __VLS_template_12(): {
1814
+ declare function __VLS_template_15(): {
1614
1815
  attrs: Partial<{}>;
1615
1816
  slots: Readonly<{
1616
1817
  /**
@@ -1651,7 +1852,7 @@ declare function __VLS_template_12(): {
1651
1852
  rootEl: any;
1652
1853
  };
1653
1854
 
1654
- declare function __VLS_template_13(): {
1855
+ declare function __VLS_template_16(): {
1655
1856
  attrs: Partial<{}>;
1656
1857
  slots: Readonly<{
1657
1858
  /**
@@ -1668,7 +1869,7 @@ declare function __VLS_template_13(): {
1668
1869
  rootEl: HTMLDivElement;
1669
1870
  };
1670
1871
 
1671
- declare function __VLS_template_14(): {
1872
+ declare function __VLS_template_17(): {
1672
1873
  attrs: Partial<{}>;
1673
1874
  slots: Readonly<{
1674
1875
  /**
@@ -1685,7 +1886,7 @@ declare function __VLS_template_14(): {
1685
1886
  rootEl: HTMLElement;
1686
1887
  };
1687
1888
 
1688
- declare function __VLS_template_15(): {
1889
+ declare function __VLS_template_18(): {
1689
1890
  attrs: Partial<{}>;
1690
1891
  slots: Readonly<{
1691
1892
  /**
@@ -1702,7 +1903,7 @@ declare function __VLS_template_15(): {
1702
1903
  rootEl: any;
1703
1904
  };
1704
1905
 
1705
- declare function __VLS_template_16(): {
1906
+ declare function __VLS_template_19(): {
1706
1907
  attrs: Partial<{}>;
1707
1908
  slots: Readonly<{
1708
1909
  /**
@@ -1719,7 +1920,32 @@ declare function __VLS_template_16(): {
1719
1920
  rootEl: HTMLElement;
1720
1921
  };
1721
1922
 
1722
- declare function __VLS_template_17(): {
1923
+ declare function __VLS_template_2(): {
1924
+ attrs: Partial<{}>;
1925
+ slots: Readonly<{
1926
+ /**
1927
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
1928
+ */
1929
+ left: VNode[];
1930
+ /**
1931
+ * Use this slot to insert buttons of the action bottom bar.
1932
+ */
1933
+ right?: VNode[];
1934
+ }> & {
1935
+ /**
1936
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
1937
+ */
1938
+ left: VNode[];
1939
+ /**
1940
+ * Use this slot to insert buttons of the action bottom bar.
1941
+ */
1942
+ right?: VNode[];
1943
+ };
1944
+ refs: {};
1945
+ rootEl: HTMLDivElement;
1946
+ };
1947
+
1948
+ declare function __VLS_template_20(): {
1723
1949
  attrs: Partial<{}>;
1724
1950
  slots: Readonly<{
1725
1951
  /**
@@ -1736,7 +1962,24 @@ declare function __VLS_template_17(): {
1736
1962
  rootEl: HTMLDivElement;
1737
1963
  };
1738
1964
 
1739
- declare function __VLS_template_2(): {
1965
+ declare function __VLS_template_3(): {
1966
+ attrs: Partial<{}>;
1967
+ slots: Readonly<{
1968
+ /**
1969
+ * Use this slot to insert the image, icon or intials of the avatar.
1970
+ */
1971
+ default: VNode;
1972
+ }> & {
1973
+ /**
1974
+ * Use this slot to insert the image, icon or intials of the avatar.
1975
+ */
1976
+ default: VNode;
1977
+ };
1978
+ refs: {};
1979
+ rootEl: HTMLSpanElement;
1980
+ };
1981
+
1982
+ declare function __VLS_template_4(): {
1740
1983
  attrs: Partial<{}>;
1741
1984
  slots: Readonly<{
1742
1985
  /**
@@ -1761,7 +2004,7 @@ declare function __VLS_template_2(): {
1761
2004
  rootEl: HTMLButtonElement;
1762
2005
  };
1763
2006
 
1764
- declare function __VLS_template_3(): {
2007
+ declare function __VLS_template_5(): {
1765
2008
  attrs: Partial<{}>;
1766
2009
  slots: Readonly<{
1767
2010
  /**
@@ -1786,7 +2029,7 @@ declare function __VLS_template_3(): {
1786
2029
  rootEl: HTMLElement;
1787
2030
  };
1788
2031
 
1789
- declare function __VLS_template_4(): {
2032
+ declare function __VLS_template_6(): {
1790
2033
  attrs: Partial<{}>;
1791
2034
  slots: Readonly<{
1792
2035
  /**
@@ -1813,7 +2056,7 @@ declare function __VLS_template_4(): {
1813
2056
  rootEl: HTMLDivElement;
1814
2057
  };
1815
2058
 
1816
- declare function __VLS_template_5(): {
2059
+ declare function __VLS_template_7(): {
1817
2060
  attrs: Partial<{}>;
1818
2061
  slots: Readonly<{
1819
2062
  /**
@@ -1830,7 +2073,7 @@ declare function __VLS_template_5(): {
1830
2073
  rootEl: HTMLDivElement;
1831
2074
  };
1832
2075
 
1833
- declare function __VLS_template_6(): {
2076
+ declare function __VLS_template_8(): {
1834
2077
  attrs: Partial<{}>;
1835
2078
  slots: Readonly<{
1836
2079
  /**
@@ -1847,7 +2090,7 @@ declare function __VLS_template_6(): {
1847
2090
  rootEl: HTMLDivElement;
1848
2091
  };
1849
2092
 
1850
- declare function __VLS_template_7(): {
2093
+ declare function __VLS_template_9(): {
1851
2094
  attrs: Partial<{}>;
1852
2095
  slots: Readonly<{
1853
2096
  /**
@@ -1874,40 +2117,6 @@ declare function __VLS_template_7(): {
1874
2117
  rootEl: any;
1875
2118
  };
1876
2119
 
1877
- declare function __VLS_template_8(): {
1878
- attrs: Partial<{}>;
1879
- slots: Readonly<{
1880
- /**
1881
- * Use this slot to insert the form element of your choice
1882
- */
1883
- default: VNode;
1884
- }> & {
1885
- /**
1886
- * Use this slot to insert the form element of your choice
1887
- */
1888
- default: VNode;
1889
- };
1890
- refs: {};
1891
- rootEl: HTMLDivElement;
1892
- };
1893
-
1894
- declare function __VLS_template_9(): {
1895
- attrs: Partial<{}>;
1896
- slots: Readonly<{
1897
- /**
1898
- * Use this slot to insert the form element of your choice
1899
- */
1900
- default: VNode;
1901
- }> & {
1902
- /**
1903
- * Use this slot to insert the form element of your choice
1904
- */
1905
- default: VNode;
1906
- };
1907
- refs: {};
1908
- rootEl: HTMLFieldSetElement;
1909
- };
1910
-
1911
2120
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
1912
2121
 
1913
2122
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
@@ -1926,8 +2135,14 @@ declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
1926
2135
 
1927
2136
  declare type __VLS_TemplateResult_17 = ReturnType<typeof __VLS_template_17>;
1928
2137
 
2138
+ declare type __VLS_TemplateResult_18 = ReturnType<typeof __VLS_template_18>;
2139
+
2140
+ declare type __VLS_TemplateResult_19 = ReturnType<typeof __VLS_template_19>;
2141
+
1929
2142
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
1930
2143
 
2144
+ declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
2145
+
1931
2146
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
1932
2147
 
1933
2148
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
@@ -1996,12 +2211,30 @@ declare type __VLS_WithTemplateSlots_17<T, S> = T & {
1996
2211
  };
1997
2212
  };
1998
2213
 
2214
+ declare type __VLS_WithTemplateSlots_18<T, S> = T & {
2215
+ new (): {
2216
+ $slots: S;
2217
+ };
2218
+ };
2219
+
2220
+ declare type __VLS_WithTemplateSlots_19<T, S> = T & {
2221
+ new (): {
2222
+ $slots: S;
2223
+ };
2224
+ };
2225
+
1999
2226
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
2000
2227
  new (): {
2001
2228
  $slots: S;
2002
2229
  };
2003
2230
  };
2004
2231
 
2232
+ declare type __VLS_WithTemplateSlots_20<T, S> = T & {
2233
+ new (): {
2234
+ $slots: S;
2235
+ };
2236
+ };
2237
+
2005
2238
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
2006
2239
  new (): {
2007
2240
  $slots: S;
@@ -2051,59 +2284,141 @@ declare type CheckListMenuItem = Omit<MenuItem, 'icon'> & {
2051
2284
  checked: boolean;
2052
2285
  };
2053
2286
 
2054
- export declare const MAvatar: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
2287
+ declare type FilesValidationState = Record<string, {
2288
+ size: boolean;
2289
+ extension: boolean;
2290
+ customValidation: boolean;
2291
+ }>;
2292
+
2293
+ /**
2294
+ * 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.
2295
+ */
2296
+ declare type FileUploaderProps = {
2297
+ /**
2298
+ * Model binding for the selected files (`NormalizedFile`)
2299
+ */
2300
+ modelValue: NormalizedFile[];
2301
+ /**
2302
+ * File types allowed by the uploader.
2303
+ */
2304
+ accept?: HTMLInputElement['accept'];
2305
+ /**
2306
+ * Enables selecting multiple files at once.
2307
+ */
2308
+ multiple?: boolean;
2309
+ /**
2310
+ * File extensions to validate.
2311
+ */
2312
+ allowedExtensions?: string[];
2313
+ /**
2314
+ * Maximum file size allowed (in bytes).
2315
+ */
2316
+ maxSize?: number;
2317
+ /**
2318
+ * Custom validation rules applied to each file.
2319
+ */
2320
+ rules?: ((file: NormalizedFile) => boolean)[];
2321
+ /**
2322
+ * Layout format of the item.
2323
+ */
2324
+ format?: 'inline' | 'stacked';
2325
+ /**
2326
+ * Custom error message for the file.
2327
+ */
2328
+ errorMessage?: string;
2329
+ /**
2330
+ * Label for the delete button.
2331
+ */
2332
+ deleteButtonLabel?: string;
2333
+ /**
2334
+ * Optional informational text displayed under the file name.
2335
+ */
2336
+ information?: string;
2337
+ /**
2338
+ * Enables drag & drop functionality.
2339
+ */
2340
+ hasDragDrop?: boolean;
2341
+ /**
2342
+ * Controls the display of the uploaded files list.
2343
+ */
2344
+ showFilesList?: boolean;
2345
+ /**
2346
+ * Disables the whole component.
2347
+ */
2348
+ disabled?: boolean;
2349
+ /**
2350
+ * Main drag & drop title.
2351
+ */
2352
+ title?: string;
2353
+ /**
2354
+ * Subtitle used in the drag & drop area.
2355
+ */
2356
+ subtitle?: string;
2357
+ /**
2358
+ * Label of the upload button.
2359
+ */
2360
+ uploadButtonLabel?: string;
2361
+ };
2362
+
2363
+ export declare const MAccordionList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
2364
+
2365
+ export declare const MActionBottomBar: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
2366
+
2367
+ export declare const MActionListbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2055
2368
 
2056
- export declare const MBreadcrumb: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2369
+ export declare const MAvatar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2057
2370
 
2058
- export declare const MBuiltInMenu: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2371
+ export declare const MBreadcrumb: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2372
+
2373
+ export declare const MBuiltInMenu: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2059
2374
  "update:modelValue": (value: number) => any;
2060
- }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
2375
+ }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
2061
2376
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2062
2377
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2063
2378
 
2064
- export declare const MButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
2379
+ export declare const MButton: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
2065
2380
 
2066
- export declare const MCallout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2381
+ export declare const MCallout: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
2067
2382
 
2068
- export declare const MCarousel: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
2383
+ export declare const MCarousel: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2069
2384
 
2070
- export declare const MCheckbox: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2385
+ export declare const MCheckbox: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2071
2386
  "update:modelValue": (value: boolean) => any;
2072
- }, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
2387
+ }, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
2073
2388
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2074
2389
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2075
2390
 
2076
- export declare const MCheckboxGroup: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2391
+ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2077
2392
  "update:modelValue": (value: string[]) => any;
2078
- }, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
2393
+ }, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
2079
2394
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
2080
2395
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2081
2396
 
2082
- export declare const MCheckListMenu: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2397
+ export declare const MCheckListMenu: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2083
2398
  "update:modelValue": (value: number) => any;
2084
- }, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
2399
+ }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
2085
2400
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2086
2401
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2087
2402
 
2088
- export declare const MCircularProgressbar: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
2403
+ export declare const MCircularProgressbar: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
2089
2404
  type: "percentage" | "content";
2090
2405
  value: number;
2091
2406
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2092
2407
 
2093
- export declare const MContainer: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
2408
+ export declare const MContainer: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2094
2409
 
2095
- export declare const MDatepicker: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2410
+ export declare const MDatepicker: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2096
2411
  "update:modelValue": (value: string | number) => any;
2097
- }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
2412
+ }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
2098
2413
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2099
2414
  }>, {
2100
2415
  size: "s" | "m";
2101
2416
  clearLabel: string;
2102
2417
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2103
2418
 
2104
- export declare const MDivider: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2419
+ export declare const MDivider: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2105
2420
 
2106
- export declare const MDrawer: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2421
+ export declare const MDrawer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2107
2422
 
2108
2423
  /**
2109
2424
  * 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.
@@ -2116,49 +2431,51 @@ declare type MenuItem = {
2116
2431
  target?: '_self' | '_blank' | '_parent' | '_top';
2117
2432
  };
2118
2433
 
2119
- export declare const MField: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2434
+ export declare const MField: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2435
+
2436
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2120
2437
 
2121
- export declare const MFieldGroup: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2438
+ export declare const MFileUploader: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
2122
2439
 
2123
- export declare const MFlag: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2440
+ export declare const MFlag: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2124
2441
 
2125
- export declare const MIconButton: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2442
+ export declare const MIconButton: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2126
2443
 
2127
- export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {
2444
+ export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
2128
2445
  value: number;
2129
2446
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2130
2447
 
2131
- export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
2448
+ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
2132
2449
  value: number;
2133
2450
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2134
2451
 
2135
- export declare const MLink: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2452
+ export declare const MLink: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
2136
2453
 
2137
- export declare const MLoader: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
2138
- size: "xs" | "s" | "m" | "l";
2454
+ export declare const MLoader: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
2139
2455
  appearance: "standard" | "accent" | "inverse";
2456
+ size: "xs" | "s" | "m" | "l";
2140
2457
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2141
2458
 
2142
- export declare const MLoadingOverlay: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2459
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2143
2460
 
2144
- export declare const MModal: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
2461
+ export declare const MModal: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2145
2462
 
2146
- export declare const MNumberBadge: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
2147
- size: "s" | "m";
2463
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
2148
2464
  appearance: "danger" | "accent" | "inverse" | "standard";
2465
+ size: "s" | "m";
2149
2466
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2150
2467
 
2151
- export declare const MOverlay: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2468
+ export declare const MOverlay: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2152
2469
 
2153
- export declare const MPagination: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2470
+ export declare const MPagination: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2154
2471
  "update:modelValue": (value: number) => any;
2155
- }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
2472
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
2156
2473
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2157
2474
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2158
2475
 
2159
- export declare const MPasswordInput: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2476
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2160
2477
  "update:modelValue": (value: string | number) => any;
2161
- }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
2478
+ }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
2162
2479
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2163
2480
  }>, {
2164
2481
  clearLabel: string;
@@ -2204,9 +2521,9 @@ iconPosition?: "left" | "right" | "only";
2204
2521
  type?: "button" | "reset" | "submit";
2205
2522
  isLoading?: boolean;
2206
2523
  }> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2207
- size: "s" | "m" | "l";
2208
- type: "button" | "reset" | "submit";
2209
2524
  appearance: "standard" | "accent" | "danger" | "inverse";
2525
+ type: "button" | "reset" | "submit";
2526
+ size: "s" | "m" | "l";
2210
2527
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2211
2528
  beforeCreate?: (() => void) | (() => void)[];
2212
2529
  created?: (() => void) | (() => void)[];
@@ -2228,9 +2545,9 @@ $forceUpdate: () => void;
2228
2545
  $nextTick: nextTick;
2229
2546
  $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;
2230
2547
  } & Readonly<{
2231
- size: "s" | "m" | "l";
2232
- type: "button" | "reset" | "submit";
2233
2548
  appearance: "standard" | "accent" | "danger" | "inverse";
2549
+ type: "button" | "reset" | "submit";
2550
+ size: "s" | "m" | "l";
2234
2551
  }> & Omit<Readonly<{
2235
2552
  appearance?: "standard" | "accent" | "danger" | "inverse";
2236
2553
  size?: "s" | "m" | "l";
@@ -2240,7 +2557,7 @@ outlined?: boolean;
2240
2557
  iconPosition?: "left" | "right" | "only";
2241
2558
  type?: "button" | "reset" | "submit";
2242
2559
  isLoading?: boolean;
2243
- }> & Readonly<{}>, "size" | "type" | "appearance"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
2560
+ }> & Readonly<{}>, "appearance" | "type" | "size"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
2244
2561
  $slots: Readonly<{
2245
2562
  default: string;
2246
2563
  icon?: VNode;
@@ -2251,68 +2568,68 @@ icon?: VNode;
2251
2568
  }) | null;
2252
2569
  }, any>;
2253
2570
 
2254
- export declare const MPhoneNumber: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2571
+ export declare const MPhoneNumber: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2255
2572
  "update:modelValue": (value: string) => any;
2256
2573
  valid: (isValid: boolean) => any;
2257
- }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
2574
+ }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
2258
2575
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2259
2576
  onValid?: ((isValid: boolean) => any) | undefined;
2260
2577
  }>, {
2261
- size: "s" | "m";
2262
2578
  modelValue: string;
2579
+ size: "s" | "m";
2263
2580
  defaultCountry: CountryCode;
2264
2581
  prefix: boolean;
2265
2582
  flag: boolean;
2266
2583
  locale: string;
2267
2584
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2268
2585
 
2269
- export declare const MPincode: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2586
+ export declare const MPincode: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2270
2587
  "update:modelValue": (value: string) => any;
2271
- }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
2588
+ }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
2272
2589
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2273
2590
  }>, {
2274
2591
  length: 4 | 5 | 6;
2275
2592
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2276
2593
 
2277
- export declare const MQuantitySelector: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2594
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2278
2595
  "update:modelValue": (value: number) => any;
2279
- }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
2596
+ }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
2280
2597
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2281
2598
  }>, {
2282
- size: "s" | "m";
2283
- name: string;
2284
2599
  modelValue: number;
2600
+ size: "s" | "m";
2285
2601
  step: number;
2602
+ name: string;
2286
2603
  min: number;
2287
2604
  max: number;
2288
2605
  incrementlabel: string;
2289
2606
  decrementLabel: string;
2290
2607
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2291
2608
 
2292
- export declare const MRadio: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2609
+ export declare const MRadio: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2293
2610
  "update:modelValue": (value: boolean) => any;
2294
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
2611
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2295
2612
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2296
2613
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2297
2614
 
2298
- export declare const MRadioGroup: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2615
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2299
2616
  "update:modelValue": (value: string) => any;
2300
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
2617
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
2301
2618
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2302
2619
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2303
2620
 
2304
- export declare const MSegmentedControl: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2621
+ export declare const MSegmentedControl: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2305
2622
  "update:modelValue": (value: number) => any;
2306
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
2623
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
2307
2624
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2308
2625
  }>, {
2309
- size: "s" | "m";
2310
2626
  modelValue: number;
2627
+ size: "s" | "m";
2311
2628
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2312
2629
 
2313
- export declare const MSelect: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2630
+ export declare const MSelect: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2314
2631
  "update:modelValue": (value: string | number) => any;
2315
- }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2632
+ }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
2316
2633
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2317
2634
  }>, {
2318
2635
  size: "s" | "m";
@@ -2323,33 +2640,50 @@ export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {},
2323
2640
  }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
2324
2641
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2325
2642
  }>, {
2326
- size: "s" | "m" | "l";
2327
2643
  appearance: "standard" | "accent";
2644
+ size: "s" | "m" | "l";
2328
2645
  readonly: boolean;
2329
2646
  compact: boolean;
2330
2647
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2331
2648
 
2332
- export declare const MStatusBadge: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{}>, {
2649
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{}>, {
2333
2650
  status: "info" | "success" | "warning" | "error" | "neutral";
2334
2651
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2335
2652
 
2336
- export declare const MStatusDot: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{}>, {
2653
+ export declare const MStatusDot: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{}>, {
2337
2654
  status: "info" | "success" | "warning" | "error" | "neutral";
2338
2655
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2339
2656
 
2340
- export declare const MStatusMessage: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
2657
+ export declare const MStatusMessage: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
2341
2658
  status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
2342
2659
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2343
2660
 
2344
- export declare const MStatusNotification: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
2661
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
2345
2662
 
2346
- export declare const MStepperCompact: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{}>, {
2663
+ export declare const MStepperBottomBar: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2664
+ "update:modelValue": (value: number) => any;
2665
+ cancel: () => any;
2666
+ validate: () => any;
2667
+ }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
2668
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2669
+ onCancel?: (() => any) | undefined;
2670
+ onValidate?: (() => any) | undefined;
2671
+ }>, {
2672
+ modelValue: number;
2673
+ steps: number;
2674
+ cancel: boolean;
2675
+ cancelLabel: string;
2676
+ previousLabel: string;
2677
+ nextLabel: string;
2678
+ validateLabel: string;
2679
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2680
+
2681
+ export declare const MStepperCompact: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{}>, {
2347
2682
  value: number;
2348
2683
  maxSteps: number;
2349
2684
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2350
2685
 
2351
- export declare const MStepperInline: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
2352
- currentStep: number;
2686
+ export declare const MStepperInline: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {
2353
2687
  steps: Array<{
2354
2688
  /**
2355
2689
  * Label of the step.
@@ -2360,11 +2694,12 @@ label: string;
2360
2694
  */
2361
2695
  additionalInfo?: string;
2362
2696
  }>;
2697
+ currentStep: number;
2363
2698
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2364
2699
 
2365
- export declare const MTabs: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2700
+ export declare const MTabs: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2366
2701
  "update:modelValue": (value: number) => any;
2367
- }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
2702
+ }, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
2368
2703
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2369
2704
  }>, {
2370
2705
  modelValue: number;
@@ -2373,10 +2708,10 @@ divider: boolean;
2373
2708
  tab: HTMLButtonElement;
2374
2709
  }, HTMLElement>;
2375
2710
 
2376
- export declare const MTag: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2711
+ export declare const MTag: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2377
2712
  "update:modelValue": (value: boolean) => any;
2378
2713
  "remove-tag": (id: string) => any;
2379
- }, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
2714
+ }, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
2380
2715
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2381
2716
  "onRemove-tag"?: ((id: string) => any) | undefined;
2382
2717
  }>, {
@@ -2385,32 +2720,38 @@ contextualisedNumber: number;
2385
2720
  removableLabel: string;
2386
2721
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2387
2722
 
2388
- export declare const MTextArea: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2723
+ export declare const MTextArea: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2389
2724
  "update:modelValue": (value: string | number) => any;
2390
- }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
2725
+ }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
2391
2726
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2392
2727
  }>, {
2393
2728
  rows: number;
2394
2729
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2395
2730
 
2396
- export declare const MTextInput: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2731
+ export declare const MTextInput: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2397
2732
 
2398
- export declare const MToaster: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2733
+ export declare const MToaster: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
2399
2734
 
2400
- export declare const MToggle: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2735
+ export declare const MToggle: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2401
2736
  "update:modelValue": (value: boolean) => any;
2402
- }, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
2737
+ }, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{
2403
2738
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2404
2739
  }>, {
2405
2740
  size: "s" | "m";
2406
2741
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2407
2742
 
2408
- export declare const MToggleGroup: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2743
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2409
2744
  "update:modelValue": (value: string[]) => any;
2410
- }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
2745
+ }, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
2411
2746
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
2412
2747
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2413
2748
 
2414
- export declare const MTooltip: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
2749
+ export declare const MTooltip: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
2750
+
2751
+ declare type NormalizedFile = {
2752
+ name: string;
2753
+ size?: number;
2754
+ type?: HTMLInputElement['accept'];
2755
+ };
2415
2756
 
2416
2757
  export { }