@mozaic-ds/vue 1.0.0-beta.3 → 1.0.0-beta.5

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 (191) hide show
  1. package/LICENSE +51 -0
  2. package/README.md +224 -82
  3. package/dist/mozaic-vue.css +1 -1
  4. package/dist/mozaic-vue.d.ts +1202 -0
  5. package/dist/mozaic-vue.js +1220 -0
  6. package/dist/mozaic-vue.js.map +1 -0
  7. package/dist/mozaic-vue.umd.cjs +2 -0
  8. package/dist/mozaic-vue.umd.cjs.map +1 -0
  9. package/env.d.ts +1 -0
  10. package/package.json +81 -50
  11. package/src/components/Contributing.mdx +118 -0
  12. package/src/components/GettingStarted.mdx +50 -0
  13. package/src/components/Introduction.mdx +54 -0
  14. package/src/components/Support.mdx +18 -0
  15. package/src/components/badge/MBadge.spec.ts +16 -0
  16. package/src/components/badge/MBadge.stories.ts +50 -0
  17. package/src/components/badge/MBadge.vue +36 -34
  18. package/src/components/breadcrumb/MBreadcrumb.spec.ts +105 -0
  19. package/src/components/breadcrumb/MBreadcrumb.stories.ts +57 -0
  20. package/src/components/breadcrumb/MBreadcrumb.vue +52 -55
  21. package/src/components/button/MButton.spec.ts +191 -0
  22. package/src/components/button/MButton.stories.ts +66 -0
  23. package/src/components/button/MButton.vue +98 -154
  24. package/src/components/checkbox/MCheckbox.spec.ts +104 -0
  25. package/src/components/checkbox/MCheckbox.stories.ts +83 -0
  26. package/src/components/checkbox/MCheckbox.vue +60 -101
  27. package/src/components/checkboxgroup/MCheckboxGroup.spec.ts +78 -0
  28. package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +61 -0
  29. package/src/components/checkboxgroup/MCheckboxGroup.vue +97 -0
  30. package/src/components/field/MField.spec.ts +166 -0
  31. package/src/components/field/MField.stories.ts +376 -0
  32. package/src/components/field/MField.vue +78 -61
  33. package/src/components/fieldgroup/MFieldGroup.spec.ts +165 -0
  34. package/src/components/fieldgroup/MFieldGroup.stories.ts +423 -0
  35. package/src/components/fieldgroup/MFieldGroup.vue +79 -0
  36. package/src/components/iconbutton/MIconButton.spec.ts +108 -0
  37. package/src/components/iconbutton/MIconButton.stories.ts +66 -0
  38. package/src/components/iconbutton/MIconButton.vue +73 -0
  39. package/src/components/link/MLink.spec.ts +154 -0
  40. package/src/components/link/MLink.stories.ts +98 -0
  41. package/src/components/link/MLink.vue +86 -109
  42. package/src/components/loader/MLoader.spec.ts +104 -0
  43. package/src/components/loader/MLoader.stories.ts +45 -0
  44. package/src/components/loader/MLoader.vue +65 -55
  45. package/src/components/overlay/MOverlay.spec.ts +51 -0
  46. package/src/components/overlay/MOverlay.stories.ts +40 -0
  47. package/src/components/overlay/MOverlay.vue +27 -19
  48. package/src/components/passwordinput/MPasswordInput.spec.ts +104 -0
  49. package/src/components/passwordinput/MPasswordInput.stories.ts +75 -0
  50. package/src/components/passwordinput/MPasswordInput.vue +129 -76
  51. package/src/components/quantityselector/MQuantitySelector.spec.ts +262 -0
  52. package/src/components/quantityselector/MQuantitySelector.stories.ts +89 -0
  53. package/src/components/quantityselector/MQuantitySelector.vue +160 -136
  54. package/src/components/radio/MRadio.spec.ts +104 -0
  55. package/src/components/radio/MRadio.stories.ts +68 -0
  56. package/src/components/radio/MRadio.vue +56 -39
  57. package/src/components/radiogroup/MRadioGroup.spec.ts +54 -0
  58. package/src/components/radiogroup/MRadioGroup.stories.ts +61 -0
  59. package/src/components/radiogroup/MRadioGroup.vue +79 -0
  60. package/src/components/select/MSelect.spec.ts +114 -0
  61. package/src/components/select/MSelect.stories.ts +101 -0
  62. package/src/components/select/MSelect.vue +77 -119
  63. package/src/components/statusbadge/MStatusBadge.stories.ts +45 -0
  64. package/src/components/statusbadge/MStatusBadge.vue +40 -0
  65. package/src/components/statusbadge/MstatusBadge.spec.ts +16 -0
  66. package/src/components/statusdot/MStatusDot.spec.ts +51 -0
  67. package/src/components/statusdot/MStatusDot.stories.ts +48 -0
  68. package/src/components/statusdot/MStatusDot.vue +36 -0
  69. package/src/components/statusnotification/MStatusNotification.spec.ts +99 -0
  70. package/src/components/statusnotification/MStatusNotification.stories.ts +96 -0
  71. package/src/components/statusnotification/MStatusNotification.vue +106 -0
  72. package/src/components/textarea/MTextArea.spec.ts +112 -0
  73. package/src/components/textarea/MTextArea.stories.ts +67 -0
  74. package/src/components/textarea/MTextArea.vue +81 -42
  75. package/src/components/textinput/MTextInput.spec.ts +121 -0
  76. package/src/components/textinput/MTextInput.stories.ts +114 -0
  77. package/src/components/textinput/MTextInput.vue +127 -47
  78. package/src/components/toggle/MToggle.spec.ts +99 -0
  79. package/src/components/toggle/MToggle.stories.ts +68 -0
  80. package/src/components/toggle/MToggle.vue +63 -103
  81. package/src/components/togglegroup/MToggleGroup.spec.ts +78 -0
  82. package/src/components/togglegroup/MToggleGroup.stories.ts +61 -0
  83. package/src/components/togglegroup/MToggleGroup.vue +97 -0
  84. package/src/components/usingIcons.mdx +43 -0
  85. package/src/components/usingPresets.mdx +125 -0
  86. package/src/main.ts +47 -0
  87. package/dist/demo.html +0 -1
  88. package/dist/mozaic-vue.adeo.css +0 -45
  89. package/dist/mozaic-vue.adeo.umd.js +0 -41775
  90. package/dist/mozaic-vue.common.js +0 -41765
  91. package/dist/mozaic-vue.common.js.map +0 -1
  92. package/dist/mozaic-vue.umd.js +0 -41776
  93. package/dist/mozaic-vue.umd.js.map +0 -1
  94. package/dist/mozaic-vue.umd.min.js +0 -4
  95. package/dist/mozaic-vue.umd.min.js.map +0 -1
  96. package/postinstall.js +0 -3
  97. package/src/components/accordion/MAccordion.vue +0 -128
  98. package/src/components/accordion/index.js +0 -7
  99. package/src/components/autocomplete/MAutocomplete.vue +0 -198
  100. package/src/components/autocomplete/index.js +0 -7
  101. package/src/components/badge/index.js +0 -7
  102. package/src/components/breadcrumb/index.js +0 -7
  103. package/src/components/button/index.js +0 -7
  104. package/src/components/card/MCard.vue +0 -78
  105. package/src/components/card/index.js +0 -7
  106. package/src/components/checkbox/MCheckboxGroup.vue +0 -155
  107. package/src/components/checkbox/index.js +0 -12
  108. package/src/components/container/MContainer.vue +0 -33
  109. package/src/components/container/index.js +0 -7
  110. package/src/components/datatable/MDataTable.vue +0 -651
  111. package/src/components/datatable/MDataTableHeader.vue +0 -55
  112. package/src/components/datatable/MDataTableTop.vue +0 -35
  113. package/src/components/datatable/helpers.js +0 -132
  114. package/src/components/datatable/index.js +0 -12
  115. package/src/components/field/index.js +0 -7
  116. package/src/components/fileuploader/MFileResult.vue +0 -149
  117. package/src/components/fileuploader/MFileUploader.vue +0 -142
  118. package/src/components/fileuploader/index.js +0 -7
  119. package/src/components/flag/MFlag.vue +0 -46
  120. package/src/components/flag/index.js +0 -7
  121. package/src/components/heading/MHeading.vue +0 -75
  122. package/src/components/heading/index.js +0 -7
  123. package/src/components/hero/MHero.vue +0 -93
  124. package/src/components/hero/index.js +0 -7
  125. package/src/components/icon/MIcon.vue +0 -120
  126. package/src/components/icon/index.js +0 -7
  127. package/src/components/index.js +0 -43
  128. package/src/components/layer/MLayer.vue +0 -208
  129. package/src/components/layer/index.js +0 -7
  130. package/src/components/link/index.js +0 -7
  131. package/src/components/listbox/MListBox.vue +0 -106
  132. package/src/components/listbox/index.js +0 -7
  133. package/src/components/loader/index.js +0 -7
  134. package/src/components/modal/MModal.vue +0 -179
  135. package/src/components/modal/index.js +0 -7
  136. package/src/components/notification/MNotification.vue +0 -110
  137. package/src/components/notification/index.js +0 -7
  138. package/src/components/optionbutton/MOptionButton.vue +0 -67
  139. package/src/components/optionbutton/index.js +0 -7
  140. package/src/components/optioncard/MOptionCard.vue +0 -132
  141. package/src/components/optioncard/index.js +0 -7
  142. package/src/components/optiongroup/MOptionGroup.vue +0 -18
  143. package/src/components/optiongroup/index.js +0 -7
  144. package/src/components/overlay/MOverlayLoader.vue +0 -43
  145. package/src/components/overlay/index.js +0 -12
  146. package/src/components/pagination/MPagination.vue +0 -162
  147. package/src/components/pagination/index.js +0 -7
  148. package/src/components/passwordinput/index.js +0 -7
  149. package/src/components/phonenumber/MPhoneNumber.vue +0 -390
  150. package/src/components/phonenumber/index.js +0 -7
  151. package/src/components/progressbar/MProgress.vue +0 -102
  152. package/src/components/progressbar/index.js +0 -7
  153. package/src/components/quantityselector/index.js +0 -7
  154. package/src/components/radio/MRadioGroup.vue +0 -111
  155. package/src/components/radio/index.js +0 -12
  156. package/src/components/ratingstars/MStarsInput.vue +0 -118
  157. package/src/components/ratingstars/MStarsResult.vue +0 -89
  158. package/src/components/ratingstars/index.js +0 -12
  159. package/src/components/select/index.js +0 -7
  160. package/src/components/stepper/MStepper.vue +0 -70
  161. package/src/components/stepper/index.js +0 -7
  162. package/src/components/tabs/MTab.vue +0 -184
  163. package/src/components/tabs/index.js +0 -7
  164. package/src/components/tags/MTag.vue +0 -173
  165. package/src/components/tags/index.js +0 -7
  166. package/src/components/textarea/index.js +0 -7
  167. package/src/components/textinput/MTextInputField.vue +0 -105
  168. package/src/components/textinput/MTextInputIcon.vue +0 -42
  169. package/src/components/textinput/index.js +0 -7
  170. package/src/components/toggle/index.js +0 -7
  171. package/src/components/tooltip/MTooltip.vue +0 -42
  172. package/src/components/tooltip/index.js +0 -7
  173. package/src/index.js +0 -62
  174. package/src/shims-tsx.d.ts +0 -13
  175. package/src/shims.vue.d.ts +0 -4
  176. package/src/tokens/adeo/android/colors.xml +0 -391
  177. package/src/tokens/adeo/android/font_dimens.xml +0 -18
  178. package/src/tokens/adeo/css/_variables.scss +0 -385
  179. package/src/tokens/adeo/css/root.scss +0 -387
  180. package/src/tokens/adeo/ios/StyleDictionaryColor.h +0 -399
  181. package/src/tokens/adeo/ios/StyleDictionaryColor.m +0 -411
  182. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +0 -394
  183. package/src/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  184. package/src/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  185. package/src/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  186. package/src/tokens/adeo/js/tokens.js +0 -483
  187. package/src/tokens/adeo/js/tokensObject.js +0 -10354
  188. package/src/tokens/adeo/scss/_tokens.scss +0 -1300
  189. package/src/utils/mozaicClasses.js +0 -16
  190. package/src/utils/theme.validator.js +0 -19
  191. package/types/index.d.ts +0 -100
@@ -0,0 +1,1202 @@
1
+ import { AllowedComponentProps } from 'vue';
2
+ import { ComponentCustomProperties } from 'vue';
3
+ import { ComponentCustomProps } from 'vue';
4
+ import { ComponentInternalInstance } from 'vue';
5
+ import { ComponentOptionsBase } from 'vue';
6
+ import { ComponentOptionsMixin } from 'vue';
7
+ import { ComponentProvideOptions } from 'vue';
8
+ import { ComponentPublicInstance } from 'vue';
9
+ import { DebuggerEvent } from 'vue';
10
+ import { DefineComponent } from 'vue';
11
+ import { GlobalComponents } from 'vue';
12
+ import { GlobalDirectives } from 'vue';
13
+ import { nextTick } from 'vue';
14
+ import { OnCleanup } from '@vue/reactivity';
15
+ import { PublicProps } from 'vue';
16
+ import { ShallowUnwrapRef } from 'vue';
17
+ import { Slot } from 'vue';
18
+ import { VNode } from 'vue';
19
+ import { VNodeProps } from 'vue';
20
+ import { WatchOptions } from 'vue';
21
+ import { WatchStopHandle } from 'vue';
22
+
23
+ declare const __VLS_component: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
24
+ appearance: "standard" | "accent" | "danger" | "inverse";
25
+ size: "s" | "m" | "l";
26
+ type: "button" | "reset" | "submit";
27
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
28
+
29
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
30
+
31
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
32
+
33
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
34
+ appearance: "standard" | "accent" | "danger" | "inverse";
35
+ size: "s" | "m" | "l";
36
+ type: "button" | "reset" | "submit";
37
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
38
+
39
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
40
+ appearance: "secondary" | "accent" | "inverse" | "standard";
41
+ size: "s" | "m";
42
+ iconPosition: "left" | "right";
43
+ href: string;
44
+ target: string;
45
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
46
+
47
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
48
+
49
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
50
+ close: () => any;
51
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
52
+ onClose?: (() => any) | undefined;
53
+ }>, {
54
+ status: "info" | "success" | "warning" | "error";
55
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
56
+
57
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
58
+ "update:modelValue": (value: string | number) => any;
59
+ }, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
60
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
61
+ }>, {
62
+ size: "s" | "m";
63
+ clearLabel: string;
64
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
65
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
66
+
67
+ /**
68
+ * A badge indicates the status of an entity and can evolve at any time.
69
+ */
70
+ declare type __VLS_Props = {
71
+ /**
72
+ * Content of the badge
73
+ */
74
+ label: number;
75
+ /**
76
+ * Allows to define the Badge style
77
+ */
78
+ appearance?: 'danger' | 'accent' | 'inverse' | 'standard';
79
+ /**
80
+ * Allows to define the Badge size
81
+ */
82
+ size?: 's' | 'm';
83
+ };
84
+
85
+ /**
86
+ * A loader indicates that content or data is being loaded or processed, providing visual feedback to users during wait times.
87
+ */
88
+ declare type __VLS_Props_10 = {
89
+ /**
90
+ * Specifies the visual appearance of the loader.
91
+ */
92
+ appearance?: 'standard' | 'accent' | 'inverse';
93
+ /**
94
+ * Defines the size of the loader.
95
+ */
96
+ size?: 's' | 'm' | 'l';
97
+ /**
98
+ * Text to display alongside the loader when using the loader inside an `Overlay`.
99
+ */
100
+ text?: string;
101
+ };
102
+
103
+ /**
104
+ * An overlay component is a UI element that appears above the main content to display additional information or interactions, often blocking or dimming the background.
105
+ */
106
+ declare type __VLS_Props_11 = {
107
+ /**
108
+ * Controls the visibility of the overlay.
109
+ */
110
+ isVisible?: boolean;
111
+ /**
112
+ * Accessible label for the overlay dialog.
113
+ */
114
+ dialogLabel?: string;
115
+ };
116
+
117
+ /**
118
+ * 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.
119
+ */
120
+ declare type __VLS_Props_12 = {
121
+ /**
122
+ * A unique identifier for the password input element, used to associate the label with the form element.
123
+ */
124
+ id: string;
125
+ /**
126
+ * The name attribute for the password input element, typically used for form submission.
127
+ */
128
+ name?: string;
129
+ /**
130
+ * The current value of the password input field.
131
+ */
132
+ modelValue?: string | number;
133
+ /**
134
+ * A placeholder text to show in the password input when it is empty.
135
+ */
136
+ placeholder?: string;
137
+ /**
138
+ * If `true`, applies an invalid state to the password input.
139
+ */
140
+ isInvalid?: boolean;
141
+ /**
142
+ * If `true`, disables the password input, making it non-interactive.
143
+ */
144
+ disabled?: boolean;
145
+ /**
146
+ * If `true`, the password input is read-only (cannot be edited).
147
+ */
148
+ readonly?: boolean;
149
+ /**
150
+ * If `true`, a clear button will appear when the password input has a value.
151
+ */
152
+ isClearable?: boolean;
153
+ /**
154
+ * The label text for the clear button
155
+ */
156
+ clearLabel?: string;
157
+ /**
158
+ * Labels of the button displayed when showing or hiding the password
159
+ */
160
+ buttonLabel?: {
161
+ show: string;
162
+ hide: string;
163
+ };
164
+ };
165
+
166
+ /**
167
+ * The quantity selector is a form element used to enter or select a number. This type of input is best used when the user needs to choose the quantity of a selected item, like a product before adding to cart for example.
168
+ */
169
+ declare type __VLS_Props_13 = {
170
+ /**
171
+ * A unique identifier for the quantity selector element, used to associate the label with the form element.
172
+ */
173
+ id: string;
174
+ /**
175
+ * The name attribute for the quantity selector element, typically used for form submission.
176
+ */
177
+ name?: string;
178
+ /**
179
+ * The current value of the quantity selector field.
180
+ */
181
+ modelValue?: number;
182
+ /**
183
+ * If `true`, applies an invalid state to the quantity selector.
184
+ */
185
+ isInvalid?: boolean;
186
+ /**
187
+ * If `true`, disables the quantity selector, making it non-interactive.
188
+ */
189
+ disabled?: boolean;
190
+ /**
191
+ * Determines the size of the quantity selector
192
+ */
193
+ size?: 's' | 'm';
194
+ /**
195
+ * Minimum acceptable value for the quantity selector.
196
+ */
197
+ min?: number;
198
+ /**
199
+ * Maximum acceptable value for the quantity selector.
200
+ */
201
+ max?: number;
202
+ /**
203
+ * Determines how much the value will change per click when the quantity is increased or decreased.
204
+ */
205
+ step?: number;
206
+ /**
207
+ * If `true`, the quantity selector is read-only (cannot be edited).
208
+ */
209
+ readonly?: boolean;
210
+ /**
211
+ * The label text for the increment button.
212
+ */
213
+ incrementlabel?: string;
214
+ /**
215
+ * The label text for the decrement button.
216
+ */
217
+ decrementLabel?: string;
218
+ };
219
+
220
+ /**
221
+ * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
222
+ */
223
+ declare type __VLS_Props_14 = {
224
+ /**
225
+ * A unique identifier for the radio, used to associate the label with the form element.
226
+ */
227
+ id: string;
228
+ /**
229
+ * The name attribute for the radio element, typically used for form submission.
230
+ */
231
+ name?: string;
232
+ /**
233
+ * The text label displayed next to the radio.
234
+ */
235
+ label?: string;
236
+ /**
237
+ * The radio's checked state, bound via v-model.
238
+ */
239
+ modelValue?: boolean;
240
+ /**
241
+ * If `true`, applies an invalid state to the radio.
242
+ */
243
+ isInvalid?: boolean;
244
+ /**
245
+ * If `true`, disables the radio, making it non-interactive.
246
+ */
247
+ disabled?: boolean;
248
+ };
249
+
250
+ /**
251
+ * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
252
+ */
253
+ declare type __VLS_Props_15 = {
254
+ /**
255
+ * The name attribute for the radio element, typically used for form submission.
256
+ */
257
+ name: string;
258
+ /**
259
+ * Property used to manage the values checked by v-model
260
+ * (Do not use directly)
261
+ */
262
+ modelValue?: string;
263
+ /**
264
+ * list of properties of each radio button of the radio group
265
+ */
266
+ options: Array<{
267
+ id: string;
268
+ label: string;
269
+ value: string;
270
+ disabled?: boolean;
271
+ }>;
272
+ /**
273
+ * If `true`, applies an invalid state to the radio group.
274
+ */
275
+ isInvalid?: boolean;
276
+ /**
277
+ * If `true`, make the form element of the group inline.
278
+ */
279
+ inline?: boolean;
280
+ };
281
+
282
+ /**
283
+ * A select is a form element for multi-line text input, ideal for longer content like comments or descriptions.
284
+ */
285
+ declare type __VLS_Props_16 = {
286
+ /**
287
+ * A unique identifier for the select, used to associate the label with the form element.
288
+ */
289
+ id: string;
290
+ /**
291
+ * The name attribute for the select element, used for form submission.
292
+ */
293
+ name?: string;
294
+ /**
295
+ * Define the available choices for the select element.
296
+ */
297
+ options: Array<{
298
+ id?: string;
299
+ text: string;
300
+ value: string | number;
301
+ attributes?: Record<string, string | boolean | number>;
302
+ disabled?: boolean;
303
+ }>;
304
+ /**
305
+ * The current value of the select.
306
+ */
307
+ modelValue?: string | number;
308
+ /**
309
+ * Text displayed when the select has no selected value.
310
+ */
311
+ placeholder?: string;
312
+ /**
313
+ * If `true`, the select is marked as invalid.
314
+ */
315
+ isInvalid?: boolean;
316
+ /**
317
+ * If `true`, the select is disabled and non-interactive.
318
+ */
319
+ disabled?: boolean;
320
+ /**
321
+ * Determines the size of the select
322
+ */
323
+ size?: 's' | 'm';
324
+ /**
325
+ * If `true`, the select is read-only (cannot be edited).
326
+ */
327
+ readonly?: boolean;
328
+ };
329
+
330
+ /**
331
+ * A status badge indicates the status of an entity and can evolve at any time.
332
+ */
333
+ declare type __VLS_Props_17 = {
334
+ /**
335
+ * Content of the Status Badge
336
+ */
337
+ label: string;
338
+ /**
339
+ * Allows to define the Status Badge style
340
+ */
341
+ status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
342
+ };
343
+
344
+ /**
345
+ * 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.
346
+ */
347
+ declare type __VLS_Props_18 = {
348
+ /**
349
+ * Title of the Status Notification
350
+ */
351
+ title: string;
352
+ /**
353
+ * Description of the Status Notification
354
+ */
355
+ description: string;
356
+ /**
357
+ * Allows to define the Status Notification style
358
+ */
359
+ status?: 'info' | 'success' | 'warning' | 'error';
360
+ /**
361
+ * if `true`, display the close button.
362
+ */
363
+ closable?: boolean;
364
+ };
365
+
366
+ /**
367
+ * A textarea is a form element for multi-line text input, ideal for longer content like comments or descriptions.
368
+ */
369
+ declare type __VLS_Props_19 = {
370
+ /**
371
+ * A unique identifier for the textarea, used to associate the label with the form element.
372
+ */
373
+ id: string;
374
+ /**
375
+ * The name attribute for the textarea element, used for form submission.
376
+ */
377
+ name?: string;
378
+ /**
379
+ * The current value of the textarea field.
380
+ */
381
+ modelValue?: string | number;
382
+ /**
383
+ * Text displayed when the textarea is empty.
384
+ */
385
+ placeholder?: string;
386
+ /**
387
+ * If `true`, the textarea is marked as invalid.
388
+ */
389
+ isInvalid?: boolean;
390
+ /**
391
+ * If `true`, the textarea is disabled and non-interactive.
392
+ */
393
+ disabled?: boolean;
394
+ /**
395
+ * The number of visible text lines in the textarea.
396
+ */
397
+ rows?: number;
398
+ /**
399
+ * Minimum number of characters required for the textarea.
400
+ */
401
+ minLength?: number;
402
+ /**
403
+ * Maximum number of characters allowed in the textarea.
404
+ */
405
+ maxLength?: number;
406
+ /**
407
+ * If `true`, the textarea is read-only (cannot be edited).
408
+ */
409
+ readonly?: boolean;
410
+ };
411
+
412
+ /**
413
+ * 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.
414
+ */
415
+ declare type __VLS_Props_2 = {
416
+ /**
417
+ * Allows to define the breadcrumb style
418
+ */
419
+ appearance?: 'standard' | 'inverse';
420
+ /**
421
+ * Links of the breadcrumb
422
+ */
423
+ links?: Array<{
424
+ /**
425
+ * The label displayed for the link.
426
+ */
427
+ label: string;
428
+ /**
429
+ * URL for the link (for external links or the `to` prop for `router-link`).
430
+ */
431
+ href: string;
432
+ /**
433
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
434
+ */
435
+ router?: boolean;
436
+ }>;
437
+ };
438
+
439
+ /**
440
+ * Inputs are used to create input fields with text on a single line. Their states depends on the user interaction or the context.
441
+ */
442
+ declare type __VLS_Props_20 = {
443
+ /**
444
+ * A unique identifier for the input element, used to associate the label with the form element.
445
+ */
446
+ id: string;
447
+ /**
448
+ * The name attribute for the input element, typically used for form submission.
449
+ */
450
+ name?: string;
451
+ /**
452
+ * The current value of the input field.
453
+ */
454
+ modelValue?: string | number;
455
+ /**
456
+ * A placeholder text to show in the input when it is empty.
457
+ */
458
+ placeholder?: string;
459
+ /**
460
+ * Defines the type of input
461
+ */
462
+ inputType?: 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text';
463
+ /**
464
+ * If `true`, applies an invalid state to the input.
465
+ */
466
+ isInvalid?: boolean;
467
+ /**
468
+ * If `true`, disables the input, making it non-interactive.
469
+ */
470
+ disabled?: boolean;
471
+ /**
472
+ * Determines the size of the input
473
+ */
474
+ size?: 's' | 'm';
475
+ /**
476
+ * If `true`, the input is read-only (cannot be edited).
477
+ */
478
+ readonly?: boolean;
479
+ /**
480
+ * If `true`, a clear button will appear when the input has a value.
481
+ */
482
+ isClearable?: boolean;
483
+ /**
484
+ * The label text for the clear button
485
+ */
486
+ clearLabel?: string;
487
+ };
488
+
489
+ /**
490
+ * A toggle is used to choose between two possibilities and when the user needs instant feedback. It is common to use toggles when you need to show or hide content and "on/off" switch.
491
+ */
492
+ declare type __VLS_Props_21 = {
493
+ /**
494
+ * A unique identifier for the toggle, used to associate the label with the form element.
495
+ */
496
+ id: string;
497
+ /**
498
+ * The name attribute for the toggle element, typically used for form submission.
499
+ */
500
+ name?: string;
501
+ /**
502
+ * The text label displayed next to the toggle.
503
+ */
504
+ label?: string;
505
+ /**
506
+ * The toggle's checked state, bound via v-model.
507
+ */
508
+ modelValue?: boolean;
509
+ /**
510
+ * Determines the size of the toggle
511
+ */
512
+ size?: 's' | 'm';
513
+ /**
514
+ * If `true`, disables the toggle, making it non-interactive.
515
+ */
516
+ disabled?: boolean;
517
+ };
518
+
519
+ /**
520
+ * A toggle is used to choose between two possibilities and when the user needs instant feedback. It is common to use toggles when you need to show or hide content and "on/off" switch.
521
+ */
522
+ declare type __VLS_Props_22 = {
523
+ /**
524
+ * The name attribute for the toggle element, typically used for form submission.
525
+ */
526
+ name: string;
527
+ /**
528
+ * Property used to manage the values checked by v-model
529
+ * (Do not use directly)
530
+ */
531
+ modelValue?: Array<string>;
532
+ /**
533
+ * list of properties of each toggle of the toggle group
534
+ */
535
+ options: Array<{
536
+ id: string;
537
+ label: string;
538
+ value: string;
539
+ disabled?: boolean;
540
+ isInvalid?: boolean;
541
+ size?: 's' | 'm';
542
+ }>;
543
+ /**
544
+ * If `true`, make the form element of the group inline.
545
+ */
546
+ inline?: boolean;
547
+ };
548
+
549
+ /**
550
+ * Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
551
+ */
552
+ declare type __VLS_Props_3 = {
553
+ /**
554
+ * Defines the visual style of the button.
555
+ */
556
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
557
+ /**
558
+ * Determines the size of the button.
559
+ */
560
+ size?: 's' | 'm' | 'l';
561
+ /**
562
+ * If `true`, disables the button, making it non-interactive.
563
+ */
564
+ disabled?: boolean;
565
+ /**
566
+ * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
567
+ */
568
+ ghost?: boolean;
569
+ /**
570
+ * If `true`, the button gets an outlined style, usually with just the border and no solid background.
571
+ */
572
+ outlined?: boolean;
573
+ /**
574
+ * Controls the positioning of an icon in the button.
575
+ */
576
+ iconPosition?: 'left' | 'right' | 'only';
577
+ /**
578
+ * Specifies the button's HTML `type` attribute.
579
+ */
580
+ type?: 'button' | 'reset' | 'submit';
581
+ /**
582
+ * If `true`, a loading state is displayed.
583
+ */
584
+ isLoading?: boolean;
585
+ };
586
+
587
+ /**
588
+ * Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
589
+ */
590
+ declare type __VLS_Props_4 = {
591
+ /**
592
+ * A unique identifier for the checkbox, used to associate the label with the form element.
593
+ */
594
+ id: string;
595
+ /**
596
+ * The name attribute for the checkbox element, typically used for form submission.
597
+ */
598
+ name?: string;
599
+ /**
600
+ * The text label displayed next to the checkbox.
601
+ */
602
+ label?: string;
603
+ /**
604
+ * The checkbox's checked state, bound via v-model.
605
+ */
606
+ modelValue?: boolean;
607
+ /**
608
+ * Sets the checkbox to an indeterminate state (partially selected).
609
+ */
610
+ indeterminate?: boolean;
611
+ /**
612
+ * If `true`, applies an invalid state to the checkbox.
613
+ */
614
+ isInvalid?: boolean;
615
+ /**
616
+ * If `true`, disables the checkbox, making it non-interactive.
617
+ */
618
+ disabled?: boolean;
619
+ };
620
+
621
+ /**
622
+ * Checkboxes are used to select one or multiple options in a list. They usually find their place in forms and are also used to accept some mentions.
623
+ */
624
+ declare type __VLS_Props_5 = {
625
+ /**
626
+ * The name attribute for the checkbox element, typically used for form submission.
627
+ */
628
+ name: string;
629
+ /**
630
+ * Property used to manage the values checked by v-model
631
+ * (Do not use directly)
632
+ */
633
+ modelValue?: Array<string>;
634
+ /**
635
+ * list of properties of each checkbox button of the checkbox group
636
+ */
637
+ options: Array<{
638
+ id: string;
639
+ label: string;
640
+ value: string;
641
+ disabled?: boolean;
642
+ isInvalid?: boolean;
643
+ }>;
644
+ /**
645
+ * If `true`, make the form element of the group inline.
646
+ */
647
+ inline?: boolean;
648
+ };
649
+
650
+ /**
651
+ * This component creates a structured form field with a label, optional help text, error and validation message handling.
652
+ */
653
+ declare type __VLS_Props_6 = {
654
+ /**
655
+ * A unique identifier for the form field, used to associate the label with the form element.
656
+ */
657
+ id: string;
658
+ /**
659
+ * The text displayed as the label for the form field.
660
+ */
661
+ label: string;
662
+ /**
663
+ * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
664
+ */
665
+ requirementText?: string;
666
+ /**
667
+ * Text shown below the form field to provide additional context or instructions for the user.
668
+ */
669
+ helpText?: string;
670
+ /**
671
+ * The value of the `id` attribute set on the **helpText** element. _This value is mandatory when using a helpText in order to guarantee the accessibility of the component._
672
+ */
673
+ helpId?: string;
674
+ /**
675
+ * If `true`, applies a valid state to the form field.
676
+ */
677
+ isValid?: boolean;
678
+ /**
679
+ * If `true`, applies an invalid state to the form field.
680
+ */
681
+ isInvalid?: boolean;
682
+ /**
683
+ * The value of the `id` attribute set on the **validationMessage** element. _This value is mandatory when using a validationMessage in order to guarantee the accessibility of the component._
684
+ */
685
+ messageId?: string;
686
+ /**
687
+ * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
688
+ */
689
+ message?: string;
690
+ };
691
+
692
+ /**
693
+ * 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.
694
+ */
695
+ declare type __VLS_Props_7 = {
696
+ /**
697
+ * A unique identifier for the form field, used to associate the label with the form element.
698
+ */
699
+ id: string;
700
+ /**
701
+ * The text displayed as the legend for the form fieldset.
702
+ */
703
+ legend: string;
704
+ /**
705
+ * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
706
+ */
707
+ requirementText?: string;
708
+ /**
709
+ * Text shown below the form field to provide additional context or instructions for the user.
710
+ */
711
+ helpText?: string;
712
+ /**
713
+ * If `true`, applies a valid state to the form field.
714
+ */
715
+ isValid?: boolean;
716
+ /**
717
+ * If `true`, applies an invalid state to the form field.
718
+ */
719
+ isInvalid?: boolean;
720
+ /**
721
+ * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
722
+ */
723
+ message?: string;
724
+ };
725
+
726
+ /**
727
+ * Icon Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
728
+ */
729
+ declare type __VLS_Props_8 = {
730
+ /**
731
+ * Defines the visual style of the icon button.
732
+ */
733
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
734
+ /**
735
+ * Determines the size of the icon button.
736
+ */
737
+ size?: 's' | 'm' | 'l';
738
+ /**
739
+ * If `true`, disables the icon button, making it non-interactive.
740
+ */
741
+ disabled?: boolean;
742
+ /**
743
+ * If `true`, applies a "ghost" style to the icon button.
744
+ */
745
+ ghost?: boolean;
746
+ /**
747
+ * If `true`, the icon button gets an outlined style.
748
+ */
749
+ outlined?: boolean;
750
+ /**
751
+ * Specifies the button's HTML `type` attribute.
752
+ */
753
+ type?: 'button' | 'reset' | 'submit';
754
+ };
755
+
756
+ /**
757
+ * A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
758
+ */
759
+ declare type __VLS_Props_9 = {
760
+ /**
761
+ * Position of the icon relative to the text.
762
+ */
763
+ iconPosition?: 'left' | 'right';
764
+ /**
765
+ * Allows to define the link style
766
+ */
767
+ appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
768
+ /**
769
+ * Allows to define the link size
770
+ */
771
+ size?: 's' | 'm';
772
+ /**
773
+ * URL for the link (for external links or the `to` prop for `router-link`).
774
+ */
775
+ href?: string;
776
+ /**
777
+ * Where to open the link
778
+ */
779
+ target?: string;
780
+ /**
781
+ * Specify wether the link is inline
782
+ */
783
+ inline?: boolean;
784
+ /**
785
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
786
+ */
787
+ router?: boolean;
788
+ };
789
+
790
+ declare function __VLS_template(): {
791
+ attrs: Partial<{}>;
792
+ slots: Readonly<{
793
+ /**
794
+ * The content displayed in the button.
795
+ */
796
+ default: string;
797
+ /**
798
+ * Use this slot to insert an icon for the Button
799
+ */
800
+ icon?: VNode;
801
+ }> & {
802
+ /**
803
+ * The content displayed in the button.
804
+ */
805
+ default: string;
806
+ /**
807
+ * Use this slot to insert an icon for the Button
808
+ */
809
+ icon?: VNode;
810
+ };
811
+ refs: {};
812
+ rootEl: HTMLButtonElement;
813
+ };
814
+
815
+ declare function __VLS_template_2(): {
816
+ attrs: Partial<{}>;
817
+ slots: Readonly<{
818
+ /**
819
+ * Use this slot to insert the form element of your choice
820
+ */
821
+ default: VNode;
822
+ }> & {
823
+ /**
824
+ * Use this slot to insert the form element of your choice
825
+ */
826
+ default: VNode;
827
+ };
828
+ refs: {};
829
+ rootEl: HTMLDivElement;
830
+ };
831
+
832
+ declare function __VLS_template_3(): {
833
+ attrs: Partial<{}>;
834
+ slots: Readonly<{
835
+ /**
836
+ * Use this slot to insert the form element of your choice
837
+ */
838
+ default: VNode;
839
+ }> & {
840
+ /**
841
+ * Use this slot to insert the form element of your choice
842
+ */
843
+ default: VNode;
844
+ };
845
+ refs: {};
846
+ rootEl: HTMLFieldSetElement;
847
+ };
848
+
849
+ declare function __VLS_template_4(): {
850
+ attrs: Partial<{}>;
851
+ slots: Readonly<{
852
+ /**
853
+ * Use this slot to insert the form element of your choice
854
+ */
855
+ icon: VNode;
856
+ }> & {
857
+ /**
858
+ * Use this slot to insert the form element of your choice
859
+ */
860
+ icon: VNode;
861
+ };
862
+ refs: {};
863
+ rootEl: HTMLButtonElement;
864
+ };
865
+
866
+ declare function __VLS_template_5(): {
867
+ attrs: Partial<{}>;
868
+ slots: Readonly<{
869
+ /**
870
+ * Use this slot to insert the textual content of the Link
871
+ */
872
+ default: string;
873
+ /**
874
+ * Use this slot to insert an icon for the Link
875
+ */
876
+ icon?: VNode;
877
+ }> & {
878
+ /**
879
+ * Use this slot to insert the textual content of the Link
880
+ */
881
+ default: string;
882
+ /**
883
+ * Use this slot to insert an icon for the Link
884
+ */
885
+ icon?: VNode;
886
+ };
887
+ refs: {};
888
+ rootEl: any;
889
+ };
890
+
891
+ declare function __VLS_template_6(): {
892
+ attrs: Partial<{}>;
893
+ slots: Readonly<{
894
+ /**
895
+ * Use this slot to insert a centered content inside the overlay
896
+ */
897
+ default?: VNode;
898
+ }> & {
899
+ /**
900
+ * Use this slot to insert a centered content inside the overlay
901
+ */
902
+ default?: VNode;
903
+ };
904
+ refs: {};
905
+ rootEl: HTMLDivElement;
906
+ };
907
+
908
+ declare function __VLS_template_7(): {
909
+ attrs: Partial<{}>;
910
+ slots: Readonly<{
911
+ /**
912
+ * Use this slot to insert a button or a link in the footer
913
+ */
914
+ footer?: VNode;
915
+ }> & {
916
+ /**
917
+ * Use this slot to insert a button or a link in the footer
918
+ */
919
+ footer?: VNode;
920
+ };
921
+ refs: {};
922
+ rootEl: HTMLElement;
923
+ };
924
+
925
+ declare function __VLS_template_8(): {
926
+ attrs: Partial<{}>;
927
+ slots: Readonly<{
928
+ /**
929
+ * Use this slot to insert an icon in the input
930
+ */
931
+ icon?: VNode;
932
+ }> & {
933
+ /**
934
+ * Use this slot to insert an icon in the input
935
+ */
936
+ icon?: VNode;
937
+ };
938
+ refs: {};
939
+ rootEl: HTMLDivElement;
940
+ };
941
+
942
+ declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
943
+
944
+ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
945
+
946
+ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
947
+
948
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
949
+
950
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
951
+
952
+ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
953
+
954
+ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
955
+
956
+ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
957
+
958
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
959
+ new (): {
960
+ $slots: S;
961
+ };
962
+ };
963
+
964
+ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
965
+ new (): {
966
+ $slots: S;
967
+ };
968
+ };
969
+
970
+ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
971
+ new (): {
972
+ $slots: S;
973
+ };
974
+ };
975
+
976
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
977
+ new (): {
978
+ $slots: S;
979
+ };
980
+ };
981
+
982
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
983
+ new (): {
984
+ $slots: S;
985
+ };
986
+ };
987
+
988
+ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
989
+ new (): {
990
+ $slots: S;
991
+ };
992
+ };
993
+
994
+ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
995
+ new (): {
996
+ $slots: S;
997
+ };
998
+ };
999
+
1000
+ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
1001
+ new (): {
1002
+ $slots: S;
1003
+ };
1004
+ };
1005
+
1006
+ export declare const MBadge: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
1007
+ appearance: "danger" | "accent" | "inverse" | "standard";
1008
+ size: "s" | "m";
1009
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
1010
+
1011
+ export declare const MBreadcrumb: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1012
+
1013
+ export declare const MButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1014
+
1015
+ export declare const MCheckbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1016
+ "update:modelValue": (value: boolean) => any;
1017
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
1018
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1019
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1020
+
1021
+ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1022
+ "update:modelValue": (value: string[]) => any;
1023
+ }, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
1024
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1025
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1026
+
1027
+ export declare const MField: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
1028
+
1029
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1030
+
1031
+ export declare const MIconButton: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1032
+
1033
+ export declare const MLink: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1034
+
1035
+ export declare const MLoader: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
1036
+ appearance: "standard" | "accent" | "inverse";
1037
+ size: "s" | "m" | "l";
1038
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1039
+
1040
+ export declare const MOverlay: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
1041
+
1042
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1043
+ "update:modelValue": (value: string | number) => any;
1044
+ }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
1045
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1046
+ }>, {
1047
+ clearLabel: string;
1048
+ buttonLabel: {
1049
+ show: string;
1050
+ hide: string;
1051
+ };
1052
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1053
+ button: ({
1054
+ $: ComponentInternalInstance;
1055
+ $data: {};
1056
+ $props: {
1057
+ readonly appearance?: "standard" | "accent" | "danger" | "inverse" | undefined;
1058
+ readonly size?: "s" | "m" | "l" | undefined;
1059
+ readonly disabled?: boolean | undefined;
1060
+ readonly ghost?: boolean | undefined;
1061
+ readonly outlined?: boolean | undefined;
1062
+ readonly iconPosition?: "left" | "right" | "only" | undefined;
1063
+ readonly type?: "button" | "reset" | "submit" | undefined;
1064
+ readonly isLoading?: boolean | undefined;
1065
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1066
+ $attrs: {
1067
+ [x: string]: unknown;
1068
+ };
1069
+ $refs: {
1070
+ [x: string]: unknown;
1071
+ };
1072
+ $slots: Readonly<{
1073
+ [name: string]: Slot<any> | undefined;
1074
+ }>;
1075
+ $root: ComponentPublicInstance | null;
1076
+ $parent: ComponentPublicInstance | null;
1077
+ $host: Element | null;
1078
+ $emit: (event: string, ...args: any[]) => void;
1079
+ $el: HTMLButtonElement;
1080
+ $options: ComponentOptionsBase<Readonly<{
1081
+ appearance?: "standard" | "accent" | "danger" | "inverse";
1082
+ size?: "s" | "m" | "l";
1083
+ disabled?: boolean;
1084
+ ghost?: boolean;
1085
+ outlined?: boolean;
1086
+ iconPosition?: "left" | "right" | "only";
1087
+ type?: "button" | "reset" | "submit";
1088
+ isLoading?: boolean;
1089
+ }> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1090
+ appearance: "standard" | "accent" | "danger" | "inverse";
1091
+ size: "s" | "m" | "l";
1092
+ type: "button" | "reset" | "submit";
1093
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1094
+ beforeCreate?: (() => void) | (() => void)[];
1095
+ created?: (() => void) | (() => void)[];
1096
+ beforeMount?: (() => void) | (() => void)[];
1097
+ mounted?: (() => void) | (() => void)[];
1098
+ beforeUpdate?: (() => void) | (() => void)[];
1099
+ updated?: (() => void) | (() => void)[];
1100
+ activated?: (() => void) | (() => void)[];
1101
+ deactivated?: (() => void) | (() => void)[];
1102
+ beforeDestroy?: (() => void) | (() => void)[];
1103
+ beforeUnmount?: (() => void) | (() => void)[];
1104
+ destroyed?: (() => void) | (() => void)[];
1105
+ unmounted?: (() => void) | (() => void)[];
1106
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1107
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1108
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1109
+ };
1110
+ $forceUpdate: () => void;
1111
+ $nextTick: nextTick;
1112
+ $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;
1113
+ } & Readonly<{
1114
+ appearance: "standard" | "accent" | "danger" | "inverse";
1115
+ size: "s" | "m" | "l";
1116
+ type: "button" | "reset" | "submit";
1117
+ }> & Omit<Readonly<{
1118
+ appearance?: "standard" | "accent" | "danger" | "inverse";
1119
+ size?: "s" | "m" | "l";
1120
+ disabled?: boolean;
1121
+ ghost?: boolean;
1122
+ outlined?: boolean;
1123
+ iconPosition?: "left" | "right" | "only";
1124
+ type?: "button" | "reset" | "submit";
1125
+ isLoading?: boolean;
1126
+ }> & Readonly<{}>, "appearance" | "size" | "type"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
1127
+ $slots: Readonly<{
1128
+ default: string;
1129
+ icon?: VNode;
1130
+ }> & {
1131
+ default: string;
1132
+ icon?: VNode;
1133
+ };
1134
+ }) | null;
1135
+ }, HTMLDivElement>;
1136
+
1137
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1138
+ "update:modelValue": (value: number) => any;
1139
+ }, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
1140
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1141
+ }>, {
1142
+ size: "s" | "m";
1143
+ name: string;
1144
+ modelValue: number;
1145
+ min: number;
1146
+ max: number;
1147
+ step: number;
1148
+ incrementlabel: string;
1149
+ decrementLabel: string;
1150
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1151
+
1152
+ export declare const MRadio: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1153
+ "update:modelValue": (value: boolean) => any;
1154
+ }, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{
1155
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1156
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1157
+
1158
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1159
+ "update:modelValue": (value: string) => any;
1160
+ }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
1161
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1162
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1163
+
1164
+ export declare const MSelect: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1165
+ "update:modelValue": (value: string | number) => any;
1166
+ }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
1167
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1168
+ }>, {
1169
+ size: "s" | "m";
1170
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSelectElement>;
1171
+
1172
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1173
+ status: "info" | "success" | "warning" | "error" | "neutral";
1174
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1175
+
1176
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
1177
+
1178
+ export declare const MTextArea: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1179
+ "update:modelValue": (value: string | number) => any;
1180
+ }, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
1181
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1182
+ }>, {
1183
+ rows: number;
1184
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
1185
+
1186
+ export declare const MTextInput: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
1187
+
1188
+ export declare const MToggle: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1189
+ "update:modelValue": (value: boolean) => any;
1190
+ }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
1191
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1192
+ }>, {
1193
+ size: "s" | "m";
1194
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1195
+
1196
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1197
+ "update:modelValue": (value: string[]) => any;
1198
+ }, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
1199
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1200
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1201
+
1202
+ export { }