@mozaic-ds/vue 1.0.0-rc.2 → 2.1.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 (222) hide show
  1. package/LICENSE +51 -0
  2. package/README.md +76 -77
  3. package/dist/mozaic-vue.css +1 -1
  4. package/dist/mozaic-vue.d.ts +1664 -0
  5. package/dist/mozaic-vue.js +1943 -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 +78 -51
  11. package/src/components/Contributing.mdx +118 -0
  12. package/src/components/GettingStarted.mdx +45 -0
  13. package/src/components/Introduction.mdx +100 -0
  14. package/src/components/Support.mdx +18 -0
  15. package/src/components/breadcrumb/MBreadcrumb.spec.ts +105 -0
  16. package/src/components/breadcrumb/MBreadcrumb.stories.ts +82 -0
  17. package/src/components/breadcrumb/MBreadcrumb.vue +52 -55
  18. package/src/components/button/MButton.spec.ts +191 -0
  19. package/src/components/button/MButton.stories.ts +59 -0
  20. package/src/components/button/MButton.vue +98 -154
  21. package/src/components/checkbox/MCheckbox.spec.ts +104 -0
  22. package/src/components/checkbox/MCheckbox.stories.ts +83 -0
  23. package/src/components/checkbox/MCheckbox.vue +60 -101
  24. package/src/components/checkboxgroup/MCheckboxGroup.spec.ts +78 -0
  25. package/src/components/checkboxgroup/MCheckboxGroup.stories.ts +61 -0
  26. package/src/components/checkboxgroup/MCheckboxGroup.vue +97 -0
  27. package/src/components/datepicker/MDatepicker.spec.ts +95 -0
  28. package/src/components/datepicker/MDatepicker.stories.ts +75 -0
  29. package/src/components/datepicker/MDatepicker.vue +114 -0
  30. package/src/components/divider/MDivider.spec.ts +57 -0
  31. package/src/components/divider/MDivider.stories.ts +64 -0
  32. package/src/components/divider/MDivider.vue +56 -0
  33. package/src/components/drawer/MDrawer.spec.ts +100 -0
  34. package/src/components/drawer/MDrawer.stories.ts +128 -0
  35. package/src/components/drawer/MDrawer.vue +140 -0
  36. package/src/components/field/MField.spec.ts +166 -0
  37. package/src/components/field/MField.stories.ts +369 -0
  38. package/src/components/field/MField.vue +78 -61
  39. package/src/components/fieldgroup/MFieldGroup.spec.ts +165 -0
  40. package/src/components/fieldgroup/MFieldGroup.stories.ts +416 -0
  41. package/src/components/fieldgroup/MFieldGroup.vue +79 -0
  42. package/src/components/flag/MFlag.spec.ts +46 -0
  43. package/src/components/flag/MFlag.stories.ts +46 -0
  44. package/src/components/flag/MFlag.vue +28 -39
  45. package/src/components/iconbutton/MIconButton.spec.ts +108 -0
  46. package/src/components/iconbutton/MIconButton.stories.ts +74 -0
  47. package/src/components/iconbutton/MIconButton.vue +73 -0
  48. package/src/components/link/MLink.spec.ts +154 -0
  49. package/src/components/link/MLink.stories.ts +89 -0
  50. package/src/components/link/MLink.vue +86 -120
  51. package/src/components/loader/MLoader.spec.ts +104 -0
  52. package/src/components/loader/MLoader.stories.ts +43 -0
  53. package/src/components/loader/MLoader.vue +66 -55
  54. package/src/components/loadingoverlay/MLoadingOverlay.spec.ts +37 -0
  55. package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +40 -0
  56. package/src/components/loadingoverlay/MLoadingOverlay.vue +28 -0
  57. package/src/components/modal/MModal.spec.ts +103 -0
  58. package/src/components/modal/MModal.stories.ts +127 -0
  59. package/src/components/modal/MModal.vue +106 -154
  60. package/src/components/numberbadge/MNumberBadge.spec.ts +56 -0
  61. package/src/components/numberbadge/MNumberBadge.stories.ts +48 -0
  62. package/src/components/numberbadge/MNumberBadge.vue +45 -0
  63. package/src/components/overlay/MOverlay.spec.ts +51 -0
  64. package/src/components/overlay/MOverlay.stories.ts +35 -0
  65. package/src/components/overlay/MOverlay.vue +27 -19
  66. package/src/components/pagination/MPagination.spec.ts +123 -0
  67. package/src/components/pagination/MPagination.stories.ts +83 -0
  68. package/src/components/pagination/MPagination.vue +120 -140
  69. package/src/components/passwordinput/MPasswordInput.spec.ts +104 -0
  70. package/src/components/passwordinput/MPasswordInput.stories.ts +75 -0
  71. package/src/components/passwordinput/MPasswordInput.vue +126 -77
  72. package/src/components/pincode/MPincode.spec.ts +126 -0
  73. package/src/components/pincode/MPincode.stories.ts +68 -0
  74. package/src/components/pincode/MPincode.vue +148 -0
  75. package/src/components/quantityselector/MQuantitySelector.spec.ts +262 -0
  76. package/src/components/quantityselector/MQuantitySelector.stories.ts +89 -0
  77. package/src/components/quantityselector/MQuantitySelector.vue +159 -148
  78. package/src/components/radio/MRadio.spec.ts +104 -0
  79. package/src/components/radio/MRadio.stories.ts +68 -0
  80. package/src/components/radio/MRadio.vue +56 -39
  81. package/src/components/radiogroup/MRadioGroup.spec.ts +54 -0
  82. package/src/components/radiogroup/MRadioGroup.stories.ts +61 -0
  83. package/src/components/radiogroup/MRadioGroup.vue +79 -0
  84. package/src/components/select/MSelect.spec.ts +114 -0
  85. package/src/components/select/MSelect.stories.ts +101 -0
  86. package/src/components/select/MSelect.vue +77 -119
  87. package/src/components/statusbadge/MStatusBadge.stories.ts +45 -0
  88. package/src/components/statusbadge/MStatusBadge.vue +40 -0
  89. package/src/components/statusbadge/MstatusBadge.spec.ts +16 -0
  90. package/src/components/statusdot/MStatusDot.spec.ts +51 -0
  91. package/src/components/statusdot/MStatusDot.stories.ts +48 -0
  92. package/src/components/statusdot/MStatusDot.vue +36 -0
  93. package/src/components/statusnotification/MStatusNotification.spec.ts +103 -0
  94. package/src/components/statusnotification/MStatusNotification.stories.ts +89 -0
  95. package/src/components/statusnotification/MStatusNotification.vue +106 -0
  96. package/src/components/tabs/MTabs.stories.ts +104 -0
  97. package/src/components/tabs/MTabs.vue +113 -0
  98. package/src/components/tabs/Mtabs.spec.ts +149 -0
  99. package/src/components/tag/MTag.spec.ts +107 -0
  100. package/src/components/tag/MTag.stories.ts +75 -0
  101. package/src/components/tag/MTag.vue +151 -0
  102. package/src/components/textarea/MTextArea.spec.ts +112 -0
  103. package/src/components/textarea/MTextArea.stories.ts +67 -0
  104. package/src/components/textarea/MTextArea.vue +81 -43
  105. package/src/components/textinput/MTextInput.spec.ts +121 -0
  106. package/src/components/textinput/MTextInput.stories.ts +107 -0
  107. package/src/components/textinput/MTextInput.vue +127 -47
  108. package/src/components/toggle/MToggle.spec.ts +99 -0
  109. package/src/components/toggle/MToggle.stories.ts +68 -0
  110. package/src/components/toggle/MToggle.vue +63 -103
  111. package/src/components/togglegroup/MToggleGroup.spec.ts +78 -0
  112. package/src/components/togglegroup/MToggleGroup.stories.ts +61 -0
  113. package/src/components/togglegroup/MToggleGroup.vue +97 -0
  114. package/src/components/usingIcons.mdx +35 -0
  115. package/src/components/usingPresets.mdx +128 -0
  116. package/src/main.ts +32 -0
  117. package/dist/demo.html +0 -1
  118. package/dist/mozaic-vue.adeo.css +0 -47
  119. package/dist/mozaic-vue.adeo.umd.js +0 -31109
  120. package/dist/mozaic-vue.common.js +0 -31099
  121. package/dist/mozaic-vue.common.js.map +0 -1
  122. package/dist/mozaic-vue.umd.js +0 -31110
  123. package/dist/mozaic-vue.umd.js.map +0 -1
  124. package/dist/mozaic-vue.umd.min.js +0 -4
  125. package/dist/mozaic-vue.umd.min.js.map +0 -1
  126. package/postinstall.js +0 -3
  127. package/src/components/accordion/MAccordion.vue +0 -128
  128. package/src/components/accordion/index.js +0 -7
  129. package/src/components/autocomplete/MAutocomplete.vue +0 -381
  130. package/src/components/autocomplete/index.js +0 -7
  131. package/src/components/badge/MBadge.vue +0 -43
  132. package/src/components/badge/index.js +0 -7
  133. package/src/components/breadcrumb/index.js +0 -7
  134. package/src/components/button/index.js +0 -7
  135. package/src/components/card/MCard.vue +0 -78
  136. package/src/components/card/index.js +0 -7
  137. package/src/components/checkbox/MCheckboxGroup.vue +0 -163
  138. package/src/components/checkbox/index.js +0 -12
  139. package/src/components/container/MContainer.vue +0 -33
  140. package/src/components/container/index.js +0 -7
  141. package/src/components/datatable/MDataTable.vue +0 -651
  142. package/src/components/datatable/MDataTableHeader.vue +0 -55
  143. package/src/components/datatable/MDataTableTop.vue +0 -35
  144. package/src/components/datatable/helpers.js +0 -132
  145. package/src/components/datatable/index.js +0 -12
  146. package/src/components/dropdown/MDropdown.vue +0 -317
  147. package/src/components/dropdown/index.js +0 -7
  148. package/src/components/field/index.js +0 -7
  149. package/src/components/fileuploader/MFileResult.vue +0 -149
  150. package/src/components/fileuploader/MFileUploader.vue +0 -142
  151. package/src/components/fileuploader/index.js +0 -7
  152. package/src/components/flag/index.js +0 -7
  153. package/src/components/heading/MHeading.vue +0 -75
  154. package/src/components/heading/index.js +0 -7
  155. package/src/components/hero/MHero.vue +0 -93
  156. package/src/components/hero/index.js +0 -7
  157. package/src/components/icon/MIcon.vue +0 -136
  158. package/src/components/icon/index.js +0 -7
  159. package/src/components/index.js +0 -44
  160. package/src/components/layer/MLayer.vue +0 -208
  161. package/src/components/layer/index.js +0 -7
  162. package/src/components/link/index.js +0 -7
  163. package/src/components/listbox/MListBox.vue +0 -146
  164. package/src/components/listbox/MListBoxActions.vue +0 -251
  165. package/src/components/listbox/index.js +0 -12
  166. package/src/components/loader/index.js +0 -7
  167. package/src/components/modal/index.js +0 -7
  168. package/src/components/notification/MNotification.vue +0 -110
  169. package/src/components/notification/index.js +0 -7
  170. package/src/components/optionbutton/MOptionButton.vue +0 -67
  171. package/src/components/optionbutton/index.js +0 -7
  172. package/src/components/optioncard/MOptionCard.vue +0 -132
  173. package/src/components/optioncard/index.js +0 -7
  174. package/src/components/optiongroup/MOptionGroup.vue +0 -18
  175. package/src/components/optiongroup/index.js +0 -7
  176. package/src/components/overlay/MOverlayLoader.vue +0 -43
  177. package/src/components/overlay/index.js +0 -12
  178. package/src/components/pagination/index.js +0 -7
  179. package/src/components/passwordinput/index.js +0 -7
  180. package/src/components/phonenumber/MPhoneNumber.vue +0 -398
  181. package/src/components/phonenumber/index.js +0 -7
  182. package/src/components/progressbar/MProgress.vue +0 -102
  183. package/src/components/progressbar/index.js +0 -7
  184. package/src/components/quantityselector/index.js +0 -7
  185. package/src/components/radio/MRadioGroup.vue +0 -111
  186. package/src/components/radio/index.js +0 -12
  187. package/src/components/ratingstars/MStarsInput.vue +0 -119
  188. package/src/components/ratingstars/MStarsResult.vue +0 -89
  189. package/src/components/ratingstars/index.js +0 -12
  190. package/src/components/select/index.js +0 -7
  191. package/src/components/stepper/MStepper.vue +0 -111
  192. package/src/components/stepper/index.js +0 -7
  193. package/src/components/tabs/MTab.vue +0 -198
  194. package/src/components/tabs/index.js +0 -7
  195. package/src/components/tags/MTag.vue +0 -173
  196. package/src/components/tags/index.js +0 -7
  197. package/src/components/textarea/index.js +0 -7
  198. package/src/components/textinput/MTextInputField.vue +0 -105
  199. package/src/components/textinput/MTextInputIcon.vue +0 -42
  200. package/src/components/textinput/index.js +0 -7
  201. package/src/components/toggle/index.js +0 -7
  202. package/src/components/tooltip/MTooltip.vue +0 -42
  203. package/src/components/tooltip/index.js +0 -7
  204. package/src/index.js +0 -63
  205. package/src/shims-tsx.d.ts +0 -13
  206. package/src/shims.vue.d.ts +0 -4
  207. package/src/tokens/adeo/android/colors.xml +0 -448
  208. package/src/tokens/adeo/android/font_dimens.xml +0 -18
  209. package/src/tokens/adeo/css/_variables.scss +0 -442
  210. package/src/tokens/adeo/css/root.scss +0 -444
  211. package/src/tokens/adeo/ios/StyleDictionaryColor.h +0 -456
  212. package/src/tokens/adeo/ios/StyleDictionaryColor.m +0 -468
  213. package/src/tokens/adeo/ios/StyleDictionaryColor.swift +0 -451
  214. package/src/tokens/adeo/ios/StyleDictionarySize.h +0 -69
  215. package/src/tokens/adeo/ios/StyleDictionarySize.m +0 -70
  216. package/src/tokens/adeo/ios/StyleDictionarySize.swift +0 -71
  217. package/src/tokens/adeo/js/tokens.js +0 -540
  218. package/src/tokens/adeo/js/tokensObject.js +0 -11641
  219. package/src/tokens/adeo/scss/_tokens.scss +0 -1514
  220. package/src/utils/mozaicClasses.js +0 -16
  221. package/src/utils/theme.validator.js +0 -19
  222. package/types/index.d.ts +0 -104
@@ -0,0 +1,1664 @@
1
+ import { AllowedComponentProps } from 'vue';
2
+ import { Component } from 'vue';
3
+ import { ComponentCustomProperties } from 'vue';
4
+ import { ComponentCustomProps } from 'vue';
5
+ import { ComponentInternalInstance } from 'vue';
6
+ import { ComponentOptionsBase } from 'vue';
7
+ import { ComponentOptionsMixin } from 'vue';
8
+ import { ComponentProvideOptions } from 'vue';
9
+ import { ComponentPublicInstance } from 'vue';
10
+ import { DebuggerEvent } from 'vue';
11
+ import { DefineComponent } from 'vue';
12
+ import { GlobalComponents } from 'vue';
13
+ import { GlobalDirectives } from 'vue';
14
+ import { nextTick } from 'vue';
15
+ import { OnCleanup } from '@vue/reactivity';
16
+ import { PublicProps } from 'vue';
17
+ import { ShallowUnwrapRef } from 'vue';
18
+ import { Slot } from 'vue';
19
+ import { VNode } from 'vue';
20
+ import { VNodeProps } from 'vue';
21
+ import { WatchOptions } from 'vue';
22
+ import { WatchStopHandle } from 'vue';
23
+
24
+ declare const __VLS_component: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {
25
+ appearance: "standard" | "accent" | "danger" | "inverse";
26
+ size: "s" | "m" | "l";
27
+ type: "button" | "reset" | "submit";
28
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
29
+
30
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
31
+ close: () => any;
32
+ }, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
33
+ onClose?: (() => any) | undefined;
34
+ }>, {
35
+ status: "info" | "success" | "warning" | "error";
36
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
37
+
38
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
39
+ "update:modelValue": (value: string | number) => any;
40
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
41
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
42
+ }>, {
43
+ size: "s" | "m";
44
+ clearLabel: string;
45
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
46
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
47
+
48
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
49
+ size: "s" | "m" | "l";
50
+ style: "primary" | "secondary" | "tertiary" | "inverse";
51
+ orientation: "vertical" | "horizontal";
52
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
53
+
54
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
55
+ back: () => any;
56
+ "update:open": (value: boolean) => any;
57
+ }, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
58
+ onBack?: (() => any) | undefined;
59
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
60
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
61
+
62
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
63
+
64
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
65
+
66
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {
67
+ appearance: "standard" | "accent" | "danger" | "inverse";
68
+ size: "s" | "m" | "l";
69
+ type: "button" | "reset" | "submit";
70
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
71
+
72
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
73
+ iconPosition: "left" | "right";
74
+ appearance: "secondary" | "accent" | "inverse" | "standard";
75
+ size: "s" | "m";
76
+ href: string;
77
+ target: "_self" | "_blank" | "_parent" | "_top";
78
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
79
+
80
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
81
+ "update:open": (value: boolean) => any;
82
+ }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
83
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
84
+ }>, {
85
+ closable: boolean;
86
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
87
+
88
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
89
+
90
+ /**
91
+ * 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.
92
+ */
93
+ declare type __VLS_Props = {
94
+ /**
95
+ * Allows to define the breadcrumb style
96
+ */
97
+ appearance?: 'standard' | 'inverse';
98
+ /**
99
+ * Links of the breadcrumb
100
+ */
101
+ links: Array<{
102
+ /**
103
+ * The label displayed for the link.
104
+ */
105
+ label: string;
106
+ /**
107
+ * URL for the link (for external links or the `to` prop for `router-link`).
108
+ */
109
+ href: string;
110
+ /**
111
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
112
+ */
113
+ router?: boolean;
114
+ }>;
115
+ };
116
+
117
+ /**
118
+ * 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.
119
+ */
120
+ declare type __VLS_Props_10 = {
121
+ /**
122
+ * Label of the Flag
123
+ */
124
+ label: string;
125
+ /**
126
+ * Allows to define the Flag style
127
+ */
128
+ appearance?: 'danger' | 'accent' | 'inverse' | 'standard';
129
+ };
130
+
131
+ /**
132
+ * Icon Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
133
+ */
134
+ declare type __VLS_Props_11 = {
135
+ /**
136
+ * Defines the visual style of the icon button.
137
+ */
138
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
139
+ /**
140
+ * Determines the size of the icon button.
141
+ */
142
+ size?: 's' | 'm' | 'l';
143
+ /**
144
+ * If `true`, disables the icon button, making it non-interactive.
145
+ */
146
+ disabled?: boolean;
147
+ /**
148
+ * If `true`, applies a "ghost" style to the icon button.
149
+ */
150
+ ghost?: boolean;
151
+ /**
152
+ * If `true`, the icon button gets an outlined style.
153
+ */
154
+ outlined?: boolean;
155
+ /**
156
+ * Specifies the button's HTML `type` attribute.
157
+ */
158
+ type?: 'button' | 'reset' | 'submit';
159
+ };
160
+
161
+ /**
162
+ * A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
163
+ */
164
+ declare type __VLS_Props_12 = {
165
+ /**
166
+ * Position of the icon relative to the text.
167
+ */
168
+ iconPosition?: 'left' | 'right';
169
+ /**
170
+ * Allows to define the link style
171
+ */
172
+ appearance?: 'secondary' | 'accent' | 'inverse' | 'standard';
173
+ /**
174
+ * Allows to define the link size
175
+ */
176
+ size?: 's' | 'm';
177
+ /**
178
+ * URL for the link (for external links or the `to` prop for `router-link`).
179
+ */
180
+ href?: string;
181
+ /**
182
+ * Where to open the link
183
+ */
184
+ target?: '_self' | '_blank' | '_parent' | '_top';
185
+ /**
186
+ * Specify wether the link is inline
187
+ */
188
+ inline?: boolean;
189
+ /**
190
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
191
+ */
192
+ router?: boolean;
193
+ };
194
+
195
+ /**
196
+ * A loader indicates that content or data is being loaded or processed, providing visual feedback to users during wait times.
197
+ */
198
+ declare type __VLS_Props_13 = {
199
+ /**
200
+ * Specifies the visual appearance of the loader.
201
+ */
202
+ appearance?: 'standard' | 'accent' | 'inverse';
203
+ /**
204
+ * Defines the size of the loader.
205
+ */
206
+ size?: 's' | 'm' | 'l';
207
+ /**
208
+ * Text to display alongside the loader when using the loader inside an `Overlay`.
209
+ */
210
+ text?: string;
211
+ };
212
+
213
+ /**
214
+ * 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.
215
+ */
216
+ declare type __VLS_Props_14 = {
217
+ /**
218
+ * Controls the visibility of the loading overlay.
219
+ */
220
+ isVisible?: boolean;
221
+ /**
222
+ * Text of the loading overlay.
223
+ */
224
+ text?: string;
225
+ };
226
+
227
+ /**
228
+ * 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.
229
+ */
230
+ declare type __VLS_Props_15 = {
231
+ /**
232
+ * if `true`, display the modal.
233
+ */
234
+ open?: boolean;
235
+ /**
236
+ * Title of the modal
237
+ */
238
+ title: string;
239
+ /**
240
+ * Description of the modal
241
+ */
242
+ description?: string;
243
+ /**
244
+ * if `true`, display the close button.
245
+ */
246
+ closable?: boolean;
247
+ };
248
+
249
+ /**
250
+ * A badge indicates the status of an entity and can evolve at any time.
251
+ */
252
+ declare type __VLS_Props_16 = {
253
+ /**
254
+ * Content of the badge
255
+ */
256
+ label: number;
257
+ /**
258
+ * Allows to define the Badge style
259
+ */
260
+ appearance?: 'danger' | 'accent' | 'inverse' | 'standard';
261
+ /**
262
+ * Allows to define the Badge size
263
+ */
264
+ size?: 's' | 'm';
265
+ };
266
+
267
+ /**
268
+ * 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.
269
+ */
270
+ declare type __VLS_Props_17 = {
271
+ /**
272
+ * Controls the visibility of the overlay.
273
+ */
274
+ isVisible?: boolean;
275
+ /**
276
+ * Accessible label for the overlay dialog.
277
+ */
278
+ dialogLabel?: string;
279
+ };
280
+
281
+ /**
282
+ * 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.
283
+ */
284
+ declare type __VLS_Props_18 = {
285
+ /**
286
+ * A unique identifier for the pagination.
287
+ */
288
+ id: string;
289
+ /**
290
+ * The current value of the selected page.
291
+ */
292
+ modelValue: number;
293
+ /**
294
+ * If `true`, display a compact version without the select.
295
+ */
296
+ compact?: boolean;
297
+ /**
298
+ * Define the available choices for the pagination select element.
299
+ */
300
+ options: Array<{
301
+ id?: string;
302
+ text: string;
303
+ value: number;
304
+ }>;
305
+ /**
306
+ * Accessible label for the select of the pagination.
307
+ */
308
+ selectLabel?: string;
309
+ };
310
+
311
+ /**
312
+ * 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.
313
+ */
314
+ declare type __VLS_Props_19 = {
315
+ /**
316
+ * A unique identifier for the password input element, used to associate the label with the form element.
317
+ */
318
+ id: string;
319
+ /**
320
+ * The name attribute for the password input element, typically used for form submission.
321
+ */
322
+ name?: string;
323
+ /**
324
+ * The current value of the password input field.
325
+ */
326
+ modelValue?: string | number;
327
+ /**
328
+ * A placeholder text to show in the password input when it is empty.
329
+ */
330
+ placeholder?: string;
331
+ /**
332
+ * If `true`, applies an invalid state to the password input.
333
+ */
334
+ isInvalid?: boolean;
335
+ /**
336
+ * If `true`, disables the password input, making it non-interactive.
337
+ */
338
+ disabled?: boolean;
339
+ /**
340
+ * If `true`, the password input is read-only (cannot be edited).
341
+ */
342
+ readonly?: boolean;
343
+ /**
344
+ * If `true`, a clear button will appear when the password input has a value.
345
+ */
346
+ isClearable?: boolean;
347
+ /**
348
+ * The label text for the clear button
349
+ */
350
+ clearLabel?: string;
351
+ /**
352
+ * Labels of the button displayed when showing or hiding the password
353
+ */
354
+ buttonLabel?: {
355
+ show: string;
356
+ hide: string;
357
+ };
358
+ };
359
+
360
+ /**
361
+ * Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
362
+ */
363
+ declare type __VLS_Props_2 = {
364
+ /**
365
+ * Defines the visual style of the button.
366
+ */
367
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
368
+ /**
369
+ * Determines the size of the button.
370
+ */
371
+ size?: 's' | 'm' | 'l';
372
+ /**
373
+ * If `true`, disables the button, making it non-interactive.
374
+ */
375
+ disabled?: boolean;
376
+ /**
377
+ * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
378
+ */
379
+ ghost?: boolean;
380
+ /**
381
+ * If `true`, the button gets an outlined style, usually with just the border and no solid background.
382
+ */
383
+ outlined?: boolean;
384
+ /**
385
+ * Controls the positioning of an icon in the button.
386
+ */
387
+ iconPosition?: 'left' | 'right' | 'only';
388
+ /**
389
+ * Specifies the button's HTML `type` attribute.
390
+ */
391
+ type?: 'button' | 'reset' | 'submit';
392
+ /**
393
+ * If `true`, a loading state is displayed.
394
+ */
395
+ isLoading?: boolean;
396
+ };
397
+
398
+ /**
399
+ * 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.
400
+ */
401
+ declare type __VLS_Props_20 = {
402
+ /**
403
+ * A unique identifier for the pincode element, used to associate the label with the form element.
404
+ */
405
+ id: string;
406
+ /**
407
+ * The number of input displayed in the pincode element.
408
+ */
409
+ length?: 4 | 5 | 6;
410
+ /**
411
+ * The name attribute for the pincode element, typically used for form submission.
412
+ */
413
+ name?: string;
414
+ /**
415
+ * The current value of the pincode field.
416
+ */
417
+ modelValue?: string | number;
418
+ /**
419
+ * If `true`, applies an invalid state to the pincode.
420
+ */
421
+ isInvalid?: boolean;
422
+ /**
423
+ * If `true`, disables the pincode, making it non-interactive.
424
+ */
425
+ disabled?: boolean;
426
+ /**
427
+ * If `true`, the pincode is read-only (cannot be edited).
428
+ */
429
+ readonly?: boolean;
430
+ };
431
+
432
+ /**
433
+ * 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.
434
+ */
435
+ declare type __VLS_Props_21 = {
436
+ /**
437
+ * A unique identifier for the quantity selector element, used to associate the label with the form element.
438
+ */
439
+ id: string;
440
+ /**
441
+ * The name attribute for the quantity selector element, typically used for form submission.
442
+ */
443
+ name?: string;
444
+ /**
445
+ * The current value of the quantity selector field.
446
+ */
447
+ modelValue?: number;
448
+ /**
449
+ * If `true`, applies an invalid state to the quantity selector.
450
+ */
451
+ isInvalid?: boolean;
452
+ /**
453
+ * If `true`, disables the quantity selector, making it non-interactive.
454
+ */
455
+ disabled?: boolean;
456
+ /**
457
+ * Determines the size of the quantity selector
458
+ */
459
+ size?: 's' | 'm';
460
+ /**
461
+ * Minimum acceptable value for the quantity selector.
462
+ */
463
+ min?: number;
464
+ /**
465
+ * Maximum acceptable value for the quantity selector.
466
+ */
467
+ max?: number;
468
+ /**
469
+ * Determines how much the value will change per click when the quantity is increased or decreased.
470
+ */
471
+ step?: number;
472
+ /**
473
+ * If `true`, the quantity selector is read-only (cannot be edited).
474
+ */
475
+ readonly?: boolean;
476
+ /**
477
+ * The label text for the increment button.
478
+ */
479
+ incrementlabel?: string;
480
+ /**
481
+ * The label text for the decrement button.
482
+ */
483
+ decrementLabel?: string;
484
+ };
485
+
486
+ /**
487
+ * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
488
+ */
489
+ declare type __VLS_Props_22 = {
490
+ /**
491
+ * A unique identifier for the radio, used to associate the label with the form element.
492
+ */
493
+ id: string;
494
+ /**
495
+ * The name attribute for the radio element, typically used for form submission.
496
+ */
497
+ name?: string;
498
+ /**
499
+ * The text label displayed next to the radio.
500
+ */
501
+ label?: string;
502
+ /**
503
+ * The radio's checked state, bound via v-model.
504
+ */
505
+ modelValue?: boolean;
506
+ /**
507
+ * If `true`, applies an invalid state to the radio.
508
+ */
509
+ isInvalid?: boolean;
510
+ /**
511
+ * If `true`, disables the radio, making it non-interactive.
512
+ */
513
+ disabled?: boolean;
514
+ };
515
+
516
+ /**
517
+ * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
518
+ */
519
+ declare type __VLS_Props_23 = {
520
+ /**
521
+ * The name attribute for the radio element, typically used for form submission.
522
+ */
523
+ name: string;
524
+ /**
525
+ * Property used to manage the values checked by v-model
526
+ * (Do not use directly)
527
+ */
528
+ modelValue?: string;
529
+ /**
530
+ * list of properties of each radio button of the radio group
531
+ */
532
+ options: Array<{
533
+ id: string;
534
+ label: string;
535
+ value: string;
536
+ disabled?: boolean;
537
+ }>;
538
+ /**
539
+ * If `true`, applies an invalid state to the radio group.
540
+ */
541
+ isInvalid?: boolean;
542
+ /**
543
+ * If `true`, make the form element of the group inline.
544
+ */
545
+ inline?: boolean;
546
+ };
547
+
548
+ /**
549
+ * A select is a form element for multi-line text input, ideal for longer content like comments or descriptions.
550
+ */
551
+ declare type __VLS_Props_24 = {
552
+ /**
553
+ * A unique identifier for the select, used to associate the label with the form element.
554
+ */
555
+ id: string;
556
+ /**
557
+ * The name attribute for the select element, used for form submission.
558
+ */
559
+ name?: string;
560
+ /**
561
+ * Define the available choices for the select element.
562
+ */
563
+ options: Array<{
564
+ id?: string;
565
+ text: string;
566
+ value: string | number;
567
+ attributes?: Record<string, string | boolean | number>;
568
+ disabled?: boolean;
569
+ }>;
570
+ /**
571
+ * The current value of the select.
572
+ */
573
+ modelValue?: string | number;
574
+ /**
575
+ * Text displayed when the select has no selected value.
576
+ */
577
+ placeholder?: string;
578
+ /**
579
+ * If `true`, the select is marked as invalid.
580
+ */
581
+ isInvalid?: boolean;
582
+ /**
583
+ * If `true`, the select is disabled and non-interactive.
584
+ */
585
+ disabled?: boolean;
586
+ /**
587
+ * Determines the size of the select
588
+ */
589
+ size?: 's' | 'm';
590
+ /**
591
+ * If `true`, the select is read-only (cannot be edited).
592
+ */
593
+ readonly?: boolean;
594
+ };
595
+
596
+ /**
597
+ * A status badge indicates the status of an entity and can evolve at any time.
598
+ */
599
+ declare type __VLS_Props_25 = {
600
+ /**
601
+ * Content of the Status Badge
602
+ */
603
+ label: string;
604
+ /**
605
+ * Allows to define the Status Badge style
606
+ */
607
+ status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
608
+ };
609
+
610
+ /**
611
+ * 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.
612
+ */
613
+ declare type __VLS_Props_26 = {
614
+ /**
615
+ * Title of the Status Notification
616
+ */
617
+ title: string;
618
+ /**
619
+ * Description of the Status Notification
620
+ */
621
+ description: string;
622
+ /**
623
+ * Allows to define the Status Notification style
624
+ */
625
+ status?: 'info' | 'success' | 'warning' | 'error';
626
+ /**
627
+ * if `true`, display the close button.
628
+ */
629
+ closable?: boolean;
630
+ };
631
+
632
+ /**
633
+ * 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.
634
+ */
635
+ declare type __VLS_Props_27 = {
636
+ /**
637
+ * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
638
+ */
639
+ description?: string;
640
+ /**
641
+ * If `true`, the divider will appear.
642
+ */
643
+ divider?: boolean;
644
+ /**
645
+ * If `true`, the tabs of the component will be centered.
646
+ */
647
+ centered?: boolean;
648
+ /**
649
+ * The selected tab index, bound via v-model.
650
+ */
651
+ modelValue?: number;
652
+ /**
653
+ * An array of objects that allows you to provide all the data needed to generate the content for each tab.
654
+ */
655
+ tabs: Array<{
656
+ /**
657
+ * The icon displayed for the tab from Mozaic-icon-vue.
658
+ */
659
+ icon?: Component;
660
+ /**
661
+ * The label displayed for the tab.
662
+ */
663
+ label: string;
664
+ /**
665
+ * If `true`, the tab will be disabled.
666
+ */
667
+ disabled?: boolean;
668
+ }>;
669
+ };
670
+
671
+ /**
672
+ * 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).
673
+ */
674
+ declare type __VLS_Props_28 = {
675
+ /**
676
+ * Defines the behavior and layout of the tag.
677
+ */
678
+ type?: 'informative' | 'interactive' | 'contextualised' | 'removable' | 'selectable';
679
+ /**
680
+ * Determines the size of the tag.
681
+ */
682
+ size?: 's' | 'm' | 'l';
683
+ /**
684
+ * A unique identifier for the tag, used to associate the label with the form element. **Required** when type is 'selectable' or 'removable'.
685
+ */
686
+ id?: string;
687
+ /**
688
+ * The name attribute for the tag element, typically used for form submission. (only relevant for type: 'selectable').
689
+ */
690
+ name?: string;
691
+ /**
692
+ * The text label displayed next to the tag.
693
+ */
694
+ label: string;
695
+ /**
696
+ * The tag's checked state, bound via v-model. Used only for type: 'selectable'.
697
+ */
698
+ modelValue?: boolean;
699
+ /**
700
+ * If `true`, disables the tag, making it non-interactive. Applicable to selectable, interactive, and contextualised types.
701
+ */
702
+ disabled?: boolean;
703
+ /**
704
+ * A number displayed in the badge when the tag is contextualised.
705
+ */
706
+ contextualisedNumber?: number;
707
+ /**
708
+ * Accessible label text for the remove button in removable tags.
709
+ */
710
+ removableLabel?: string;
711
+ };
712
+
713
+ /**
714
+ * A textarea is a form element for multi-line text input, ideal for longer content like comments or descriptions.
715
+ */
716
+ declare type __VLS_Props_29 = {
717
+ /**
718
+ * A unique identifier for the textarea, used to associate the label with the form element.
719
+ */
720
+ id: string;
721
+ /**
722
+ * The name attribute for the textarea element, used for form submission.
723
+ */
724
+ name?: string;
725
+ /**
726
+ * The current value of the textarea field.
727
+ */
728
+ modelValue?: string | number;
729
+ /**
730
+ * Text displayed when the textarea is empty.
731
+ */
732
+ placeholder?: string;
733
+ /**
734
+ * If `true`, the textarea is marked as invalid.
735
+ */
736
+ isInvalid?: boolean;
737
+ /**
738
+ * If `true`, the textarea is disabled and non-interactive.
739
+ */
740
+ disabled?: boolean;
741
+ /**
742
+ * The number of visible text lines in the textarea.
743
+ */
744
+ rows?: number;
745
+ /**
746
+ * Minimum number of characters required for the textarea.
747
+ */
748
+ minLength?: number;
749
+ /**
750
+ * Maximum number of characters allowed in the textarea.
751
+ */
752
+ maxLength?: number;
753
+ /**
754
+ * If `true`, the textarea is read-only (cannot be edited).
755
+ */
756
+ readonly?: boolean;
757
+ };
758
+
759
+ /**
760
+ * 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.
761
+ */
762
+ declare type __VLS_Props_3 = {
763
+ /**
764
+ * A unique identifier for the checkbox, used to associate the label with the form element.
765
+ */
766
+ id: string;
767
+ /**
768
+ * The name attribute for the checkbox element, typically used for form submission.
769
+ */
770
+ name?: string;
771
+ /**
772
+ * The text label displayed next to the checkbox.
773
+ */
774
+ label?: string;
775
+ /**
776
+ * The checkbox's checked state, bound via v-model.
777
+ */
778
+ modelValue?: boolean;
779
+ /**
780
+ * Sets the checkbox to an indeterminate state (partially selected).
781
+ */
782
+ indeterminate?: boolean;
783
+ /**
784
+ * If `true`, applies an invalid state to the checkbox.
785
+ */
786
+ isInvalid?: boolean;
787
+ /**
788
+ * If `true`, disables the checkbox, making it non-interactive.
789
+ */
790
+ disabled?: boolean;
791
+ };
792
+
793
+ /**
794
+ * Inputs are used to create input fields with text on a single line. Their states depends on the user interaction or the context.
795
+ */
796
+ declare type __VLS_Props_30 = {
797
+ /**
798
+ * A unique identifier for the input element, used to associate the label with the form element.
799
+ */
800
+ id: string;
801
+ /**
802
+ * The name attribute for the input element, typically used for form submission.
803
+ */
804
+ name?: string;
805
+ /**
806
+ * The current value of the input field.
807
+ */
808
+ modelValue?: string | number;
809
+ /**
810
+ * A placeholder text to show in the input when it is empty.
811
+ */
812
+ placeholder?: string;
813
+ /**
814
+ * Defines the type of input
815
+ */
816
+ inputType?: 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text';
817
+ /**
818
+ * If `true`, applies an invalid state to the input.
819
+ */
820
+ isInvalid?: boolean;
821
+ /**
822
+ * If `true`, disables the input, making it non-interactive.
823
+ */
824
+ disabled?: boolean;
825
+ /**
826
+ * Determines the size of the input
827
+ */
828
+ size?: 's' | 'm';
829
+ /**
830
+ * If `true`, the input is read-only (cannot be edited).
831
+ */
832
+ readonly?: boolean;
833
+ /**
834
+ * If `true`, a clear button will appear when the input has a value.
835
+ */
836
+ isClearable?: boolean;
837
+ /**
838
+ * The label text for the clear button
839
+ */
840
+ clearLabel?: string;
841
+ };
842
+
843
+ /**
844
+ * 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.
845
+ */
846
+ declare type __VLS_Props_31 = {
847
+ /**
848
+ * A unique identifier for the toggle, used to associate the label with the form element.
849
+ */
850
+ id: string;
851
+ /**
852
+ * The name attribute for the toggle element, typically used for form submission.
853
+ */
854
+ name?: string;
855
+ /**
856
+ * The text label displayed next to the toggle.
857
+ */
858
+ label?: string;
859
+ /**
860
+ * The toggle's checked state, bound via v-model.
861
+ */
862
+ modelValue?: boolean;
863
+ /**
864
+ * Determines the size of the toggle
865
+ */
866
+ size?: 's' | 'm';
867
+ /**
868
+ * If `true`, disables the toggle, making it non-interactive.
869
+ */
870
+ disabled?: boolean;
871
+ };
872
+
873
+ /**
874
+ * 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.
875
+ */
876
+ declare type __VLS_Props_32 = {
877
+ /**
878
+ * The name attribute for the toggle element, typically used for form submission.
879
+ */
880
+ name: string;
881
+ /**
882
+ * Property used to manage the values checked by v-model
883
+ * (Do not use directly)
884
+ */
885
+ modelValue?: Array<string>;
886
+ /**
887
+ * list of properties of each toggle of the toggle group
888
+ */
889
+ options: Array<{
890
+ id: string;
891
+ label: string;
892
+ value: string;
893
+ disabled?: boolean;
894
+ isInvalid?: boolean;
895
+ size?: 's' | 'm';
896
+ }>;
897
+ /**
898
+ * If `true`, make the form element of the group inline.
899
+ */
900
+ inline?: boolean;
901
+ };
902
+
903
+ /**
904
+ * 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.
905
+ */
906
+ declare type __VLS_Props_4 = {
907
+ /**
908
+ * The name attribute for the checkbox element, typically used for form submission.
909
+ */
910
+ name: string;
911
+ /**
912
+ * Property used to manage the values checked by v-model
913
+ * (Do not use directly)
914
+ */
915
+ modelValue?: Array<string>;
916
+ /**
917
+ * list of properties of each checkbox button of the checkbox group
918
+ */
919
+ options: Array<{
920
+ id: string;
921
+ label: string;
922
+ value: string;
923
+ disabled?: boolean;
924
+ isInvalid?: boolean;
925
+ }>;
926
+ /**
927
+ * If `true`, make the form element of the group inline.
928
+ */
929
+ inline?: boolean;
930
+ };
931
+
932
+ /**
933
+ * 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.
934
+ */
935
+ declare type __VLS_Props_5 = {
936
+ /**
937
+ * A unique identifier for the datepicker element, used to associate the label with the form element.
938
+ */
939
+ id: string;
940
+ /**
941
+ * The name attribute for the datepicker element, typically used for form submission.
942
+ */
943
+ name?: string;
944
+ /**
945
+ * The current value of the datepicker field.
946
+ */
947
+ modelValue?: string | number;
948
+ /**
949
+ * If `true`, applies an invalid state to the datepicker.
950
+ */
951
+ isInvalid?: boolean;
952
+ /**
953
+ * If `true`, disables the datepicker, making it non-interactive.
954
+ */
955
+ disabled?: boolean;
956
+ /**
957
+ * Determines the size of the datepicker
958
+ */
959
+ size?: 's' | 'm';
960
+ /**
961
+ * If `true`, the datepicker is read-only (cannot be edited).
962
+ */
963
+ readonly?: boolean;
964
+ /**
965
+ * If `true`, a clear button will appear when the datepicker has a value.
966
+ */
967
+ isClearable?: boolean;
968
+ /**
969
+ * The label text for the clear button
970
+ */
971
+ clearLabel?: string;
972
+ };
973
+
974
+ /**
975
+ * A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
976
+ */
977
+ declare type __VLS_Props_6 = {
978
+ /**
979
+ * Determines the orientation of the divider
980
+ */
981
+ orientation?: 'vertical' | 'horizontal';
982
+ /**
983
+ * Determines the style of the divider
984
+ */
985
+ style?: 'primary' | 'secondary' | 'tertiary' | 'inverse';
986
+ /**
987
+ * Determines the size of the divider
988
+ */
989
+ size?: 's' | 'm' | 'l';
990
+ };
991
+
992
+ /**
993
+ * 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.
994
+ */
995
+ declare type __VLS_Props_7 = {
996
+ /**
997
+ * If `true`, display the drawer.
998
+ */
999
+ open?: boolean;
1000
+ /**
1001
+ * Position of the drawer
1002
+ */
1003
+ position?: 'left' | 'right';
1004
+ /**
1005
+ * If `true`, the drawer have a bigger width.
1006
+ */
1007
+ extended?: boolean;
1008
+ /**
1009
+ * If `true`, display the back button.
1010
+ */
1011
+ back?: boolean;
1012
+ /**
1013
+ * Title of the drawer
1014
+ */
1015
+ title: string;
1016
+ /**
1017
+ * Title of the content of the drawer
1018
+ */
1019
+ contentTitle?: string;
1020
+ };
1021
+
1022
+ /**
1023
+ * This component creates a structured form field with a label, optional help text, error and validation message handling.
1024
+ */
1025
+ declare type __VLS_Props_8 = {
1026
+ /**
1027
+ * A unique identifier for the form field, used to associate the label with the form element.
1028
+ */
1029
+ id: string;
1030
+ /**
1031
+ * The text displayed as the label for the form field.
1032
+ */
1033
+ label: string;
1034
+ /**
1035
+ * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
1036
+ */
1037
+ requirementText?: string;
1038
+ /**
1039
+ * Text shown below the form field to provide additional context or instructions for the user.
1040
+ */
1041
+ helpText?: string;
1042
+ /**
1043
+ * 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._
1044
+ */
1045
+ helpId?: string;
1046
+ /**
1047
+ * If `true`, applies a valid state to the form field.
1048
+ */
1049
+ isValid?: boolean;
1050
+ /**
1051
+ * If `true`, applies an invalid state to the form field.
1052
+ */
1053
+ isInvalid?: boolean;
1054
+ /**
1055
+ * 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._
1056
+ */
1057
+ messageId?: string;
1058
+ /**
1059
+ * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
1060
+ */
1061
+ message?: string;
1062
+ };
1063
+
1064
+ /**
1065
+ * 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.
1066
+ */
1067
+ declare type __VLS_Props_9 = {
1068
+ /**
1069
+ * A unique identifier for the form field, used to associate the label with the form element.
1070
+ */
1071
+ id: string;
1072
+ /**
1073
+ * The text displayed as the legend for the form fieldset.
1074
+ */
1075
+ legend: string;
1076
+ /**
1077
+ * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
1078
+ */
1079
+ requirementText?: string;
1080
+ /**
1081
+ * Text shown below the form field to provide additional context or instructions for the user.
1082
+ */
1083
+ helpText?: string;
1084
+ /**
1085
+ * If `true`, applies a valid state to the form field.
1086
+ */
1087
+ isValid?: boolean;
1088
+ /**
1089
+ * If `true`, applies an invalid state to the form field.
1090
+ */
1091
+ isInvalid?: boolean;
1092
+ /**
1093
+ * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
1094
+ */
1095
+ message?: string;
1096
+ };
1097
+
1098
+ declare function __VLS_template(): {
1099
+ attrs: Partial<{}>;
1100
+ slots: Readonly<{
1101
+ /**
1102
+ * The content displayed in the button.
1103
+ */
1104
+ default: string;
1105
+ /**
1106
+ * Use this slot to insert an icon for the Button
1107
+ */
1108
+ icon?: VNode;
1109
+ }> & {
1110
+ /**
1111
+ * The content displayed in the button.
1112
+ */
1113
+ default: string;
1114
+ /**
1115
+ * Use this slot to insert an icon for the Button
1116
+ */
1117
+ icon?: VNode;
1118
+ };
1119
+ refs: {};
1120
+ rootEl: HTMLButtonElement;
1121
+ };
1122
+
1123
+ declare function __VLS_template_10(): {
1124
+ attrs: Partial<{}>;
1125
+ slots: Readonly<{
1126
+ /**
1127
+ * Use this slot to insert a button or a link in the footer
1128
+ */
1129
+ footer?: VNode;
1130
+ }> & {
1131
+ /**
1132
+ * Use this slot to insert a button or a link in the footer
1133
+ */
1134
+ footer?: VNode;
1135
+ };
1136
+ refs: {};
1137
+ rootEl: HTMLElement;
1138
+ };
1139
+
1140
+ declare function __VLS_template_11(): {
1141
+ attrs: Partial<{}>;
1142
+ slots: Readonly<{
1143
+ /**
1144
+ * Use this slot to insert an icon in the input
1145
+ */
1146
+ icon?: VNode;
1147
+ }> & {
1148
+ /**
1149
+ * Use this slot to insert an icon in the input
1150
+ */
1151
+ icon?: VNode;
1152
+ };
1153
+ refs: {};
1154
+ rootEl: HTMLDivElement;
1155
+ };
1156
+
1157
+ declare function __VLS_template_2(): {
1158
+ attrs: Partial<{}>;
1159
+ slots: {
1160
+ default?(_: {}): any;
1161
+ };
1162
+ refs: {};
1163
+ rootEl: HTMLDivElement;
1164
+ };
1165
+
1166
+ declare function __VLS_template_3(): {
1167
+ attrs: Partial<{}>;
1168
+ slots: Readonly<{
1169
+ /**
1170
+ * Use this slot to insert the content of the drawer
1171
+ */
1172
+ default?: VNode;
1173
+ /**
1174
+ * Use this slot to insert buttons in the footer
1175
+ */
1176
+ footer?: VNode;
1177
+ }> & {
1178
+ /**
1179
+ * Use this slot to insert the content of the drawer
1180
+ */
1181
+ default?: VNode;
1182
+ /**
1183
+ * Use this slot to insert buttons in the footer
1184
+ */
1185
+ footer?: VNode;
1186
+ };
1187
+ refs: {};
1188
+ rootEl: HTMLDivElement;
1189
+ };
1190
+
1191
+ declare function __VLS_template_4(): {
1192
+ attrs: Partial<{}>;
1193
+ slots: Readonly<{
1194
+ /**
1195
+ * Use this slot to insert the form element of your choice
1196
+ */
1197
+ default: VNode;
1198
+ }> & {
1199
+ /**
1200
+ * Use this slot to insert the form element of your choice
1201
+ */
1202
+ default: VNode;
1203
+ };
1204
+ refs: {};
1205
+ rootEl: HTMLDivElement;
1206
+ };
1207
+
1208
+ declare function __VLS_template_5(): {
1209
+ attrs: Partial<{}>;
1210
+ slots: Readonly<{
1211
+ /**
1212
+ * Use this slot to insert the form element of your choice
1213
+ */
1214
+ default: VNode;
1215
+ }> & {
1216
+ /**
1217
+ * Use this slot to insert the form element of your choice
1218
+ */
1219
+ default: VNode;
1220
+ };
1221
+ refs: {};
1222
+ rootEl: HTMLFieldSetElement;
1223
+ };
1224
+
1225
+ declare function __VLS_template_6(): {
1226
+ attrs: Partial<{}>;
1227
+ slots: Readonly<{
1228
+ /**
1229
+ * Use this slot to insert the form element of your choice
1230
+ */
1231
+ icon: VNode;
1232
+ }> & {
1233
+ /**
1234
+ * Use this slot to insert the form element of your choice
1235
+ */
1236
+ icon: VNode;
1237
+ };
1238
+ refs: {};
1239
+ rootEl: HTMLButtonElement;
1240
+ };
1241
+
1242
+ declare function __VLS_template_7(): {
1243
+ attrs: Partial<{}>;
1244
+ slots: Readonly<{
1245
+ /**
1246
+ * Use this slot to insert the textual content of the Link
1247
+ */
1248
+ default: string;
1249
+ /**
1250
+ * Use this slot to insert an icon for the Link
1251
+ */
1252
+ icon?: VNode;
1253
+ }> & {
1254
+ /**
1255
+ * Use this slot to insert the textual content of the Link
1256
+ */
1257
+ default: string;
1258
+ /**
1259
+ * Use this slot to insert an icon for the Link
1260
+ */
1261
+ icon?: VNode;
1262
+ };
1263
+ refs: {};
1264
+ rootEl: any;
1265
+ };
1266
+
1267
+ declare function __VLS_template_8(): {
1268
+ attrs: Partial<{}>;
1269
+ slots: Readonly<{
1270
+ /**
1271
+ * Use this slot to insert an icon next to the title of the modal
1272
+ */
1273
+ icon?: VNode;
1274
+ /**
1275
+ * Use this slot to insert the content of the modal
1276
+ */
1277
+ default?: VNode;
1278
+ /**
1279
+ * Use this slot to insert a link in the footer
1280
+ */
1281
+ link?: VNode;
1282
+ /**
1283
+ * Use this slot to insert buttons in the footer
1284
+ */
1285
+ footer?: VNode;
1286
+ }> & {
1287
+ /**
1288
+ * Use this slot to insert an icon next to the title of the modal
1289
+ */
1290
+ icon?: VNode;
1291
+ /**
1292
+ * Use this slot to insert the content of the modal
1293
+ */
1294
+ default?: VNode;
1295
+ /**
1296
+ * Use this slot to insert a link in the footer
1297
+ */
1298
+ link?: VNode;
1299
+ /**
1300
+ * Use this slot to insert buttons in the footer
1301
+ */
1302
+ footer?: VNode;
1303
+ };
1304
+ refs: {};
1305
+ rootEl: HTMLDivElement;
1306
+ };
1307
+
1308
+ declare function __VLS_template_9(): {
1309
+ attrs: Partial<{}>;
1310
+ slots: Readonly<{
1311
+ /**
1312
+ * Use this slot to insert a centered content inside the overlay
1313
+ */
1314
+ default?: VNode;
1315
+ }> & {
1316
+ /**
1317
+ * Use this slot to insert a centered content inside the overlay
1318
+ */
1319
+ default?: VNode;
1320
+ };
1321
+ refs: {};
1322
+ rootEl: HTMLDivElement;
1323
+ };
1324
+
1325
+ declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
1326
+
1327
+ declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
1328
+
1329
+ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
1330
+
1331
+ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
1332
+
1333
+ declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
1334
+
1335
+ declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
1336
+
1337
+ declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
1338
+
1339
+ declare type __VLS_TemplateResult_6 = ReturnType<typeof __VLS_template_6>;
1340
+
1341
+ declare type __VLS_TemplateResult_7 = ReturnType<typeof __VLS_template_7>;
1342
+
1343
+ declare type __VLS_TemplateResult_8 = ReturnType<typeof __VLS_template_8>;
1344
+
1345
+ declare type __VLS_TemplateResult_9 = ReturnType<typeof __VLS_template_9>;
1346
+
1347
+ declare type __VLS_WithTemplateSlots<T, S> = T & {
1348
+ new (): {
1349
+ $slots: S;
1350
+ };
1351
+ };
1352
+
1353
+ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
1354
+ new (): {
1355
+ $slots: S;
1356
+ };
1357
+ };
1358
+
1359
+ declare type __VLS_WithTemplateSlots_11<T, S> = T & {
1360
+ new (): {
1361
+ $slots: S;
1362
+ };
1363
+ };
1364
+
1365
+ declare type __VLS_WithTemplateSlots_2<T, S> = T & {
1366
+ new (): {
1367
+ $slots: S;
1368
+ };
1369
+ };
1370
+
1371
+ declare type __VLS_WithTemplateSlots_3<T, S> = T & {
1372
+ new (): {
1373
+ $slots: S;
1374
+ };
1375
+ };
1376
+
1377
+ declare type __VLS_WithTemplateSlots_4<T, S> = T & {
1378
+ new (): {
1379
+ $slots: S;
1380
+ };
1381
+ };
1382
+
1383
+ declare type __VLS_WithTemplateSlots_5<T, S> = T & {
1384
+ new (): {
1385
+ $slots: S;
1386
+ };
1387
+ };
1388
+
1389
+ declare type __VLS_WithTemplateSlots_6<T, S> = T & {
1390
+ new (): {
1391
+ $slots: S;
1392
+ };
1393
+ };
1394
+
1395
+ declare type __VLS_WithTemplateSlots_7<T, S> = T & {
1396
+ new (): {
1397
+ $slots: S;
1398
+ };
1399
+ };
1400
+
1401
+ declare type __VLS_WithTemplateSlots_8<T, S> = T & {
1402
+ new (): {
1403
+ $slots: S;
1404
+ };
1405
+ };
1406
+
1407
+ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
1408
+ new (): {
1409
+ $slots: S;
1410
+ };
1411
+ };
1412
+
1413
+ export declare const MBreadcrumb: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1414
+
1415
+ export declare const MButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1416
+
1417
+ export declare const MCheckbox: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1418
+ "update:modelValue": (value: boolean) => any;
1419
+ }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
1420
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1421
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1422
+
1423
+ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1424
+ "update:modelValue": (value: string[]) => any;
1425
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
1426
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1427
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1428
+
1429
+ export declare const MDatepicker: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1430
+ "update:modelValue": (value: string | number) => any;
1431
+ }, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
1432
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1433
+ }>, {
1434
+ size: "s" | "m";
1435
+ clearLabel: string;
1436
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1437
+
1438
+ export declare const MDivider: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
1439
+
1440
+ export declare const MDrawer: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1441
+
1442
+ export declare const MField: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1443
+
1444
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1445
+
1446
+ export declare const MFlag: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1447
+
1448
+ export declare const MIconButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
1449
+
1450
+ export declare const MLink: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
1451
+
1452
+ export declare const MLoader: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
1453
+ appearance: "standard" | "accent" | "inverse";
1454
+ size: "s" | "m" | "l";
1455
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1456
+
1457
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1458
+
1459
+ export declare const MModal: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
1460
+
1461
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
1462
+ appearance: "danger" | "accent" | "inverse" | "standard";
1463
+ size: "s" | "m";
1464
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
1465
+
1466
+ export declare const MOverlay: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
1467
+
1468
+ export declare const MPagination: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1469
+ "update:modelValue": (value: number) => any;
1470
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
1471
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1472
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1473
+
1474
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1475
+ "update:modelValue": (value: string | number) => any;
1476
+ }, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
1477
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1478
+ }>, {
1479
+ clearLabel: string;
1480
+ buttonLabel: {
1481
+ show: string;
1482
+ hide: string;
1483
+ };
1484
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1485
+ button: ({
1486
+ $: ComponentInternalInstance;
1487
+ $data: {};
1488
+ $props: {
1489
+ readonly appearance?: "standard" | "accent" | "danger" | "inverse" | undefined;
1490
+ readonly size?: "s" | "m" | "l" | undefined;
1491
+ readonly disabled?: boolean | undefined;
1492
+ readonly ghost?: boolean | undefined;
1493
+ readonly outlined?: boolean | undefined;
1494
+ readonly iconPosition?: "left" | "right" | "only" | undefined;
1495
+ readonly type?: "button" | "reset" | "submit" | undefined;
1496
+ readonly isLoading?: boolean | undefined;
1497
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1498
+ $attrs: {
1499
+ [x: string]: unknown;
1500
+ };
1501
+ $refs: {
1502
+ [x: string]: unknown;
1503
+ };
1504
+ $slots: Readonly<{
1505
+ [name: string]: Slot<any> | undefined;
1506
+ }>;
1507
+ $root: ComponentPublicInstance | null;
1508
+ $parent: ComponentPublicInstance | null;
1509
+ $host: Element | null;
1510
+ $emit: (event: string, ...args: any[]) => void;
1511
+ $el: HTMLButtonElement;
1512
+ $options: ComponentOptionsBase<Readonly<{
1513
+ appearance?: "standard" | "accent" | "danger" | "inverse";
1514
+ size?: "s" | "m" | "l";
1515
+ disabled?: boolean;
1516
+ ghost?: boolean;
1517
+ outlined?: boolean;
1518
+ iconPosition?: "left" | "right" | "only";
1519
+ type?: "button" | "reset" | "submit";
1520
+ isLoading?: boolean;
1521
+ }> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1522
+ appearance: "standard" | "accent" | "danger" | "inverse";
1523
+ size: "s" | "m" | "l";
1524
+ type: "button" | "reset" | "submit";
1525
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1526
+ beforeCreate?: (() => void) | (() => void)[];
1527
+ created?: (() => void) | (() => void)[];
1528
+ beforeMount?: (() => void) | (() => void)[];
1529
+ mounted?: (() => void) | (() => void)[];
1530
+ beforeUpdate?: (() => void) | (() => void)[];
1531
+ updated?: (() => void) | (() => void)[];
1532
+ activated?: (() => void) | (() => void)[];
1533
+ deactivated?: (() => void) | (() => void)[];
1534
+ beforeDestroy?: (() => void) | (() => void)[];
1535
+ beforeUnmount?: (() => void) | (() => void)[];
1536
+ destroyed?: (() => void) | (() => void)[];
1537
+ unmounted?: (() => void) | (() => void)[];
1538
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1539
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1540
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1541
+ };
1542
+ $forceUpdate: () => void;
1543
+ $nextTick: nextTick;
1544
+ $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;
1545
+ } & Readonly<{
1546
+ appearance: "standard" | "accent" | "danger" | "inverse";
1547
+ size: "s" | "m" | "l";
1548
+ type: "button" | "reset" | "submit";
1549
+ }> & Omit<Readonly<{
1550
+ appearance?: "standard" | "accent" | "danger" | "inverse";
1551
+ size?: "s" | "m" | "l";
1552
+ disabled?: boolean;
1553
+ ghost?: boolean;
1554
+ outlined?: boolean;
1555
+ iconPosition?: "left" | "right" | "only";
1556
+ type?: "button" | "reset" | "submit";
1557
+ isLoading?: boolean;
1558
+ }> & Readonly<{}>, "appearance" | "size" | "type"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
1559
+ $slots: Readonly<{
1560
+ default: string;
1561
+ icon?: VNode;
1562
+ }> & {
1563
+ default: string;
1564
+ icon?: VNode;
1565
+ };
1566
+ }) | null;
1567
+ }, HTMLDivElement>;
1568
+
1569
+ export declare const MPincode: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1570
+ "update:modelValue": (value: string) => any;
1571
+ }, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
1572
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1573
+ }>, {
1574
+ length: 4 | 5 | 6;
1575
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1576
+
1577
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1578
+ "update:modelValue": (value: number) => any;
1579
+ }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
1580
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1581
+ }>, {
1582
+ size: "s" | "m";
1583
+ name: string;
1584
+ modelValue: number;
1585
+ step: number;
1586
+ min: number;
1587
+ max: number;
1588
+ incrementlabel: string;
1589
+ decrementLabel: string;
1590
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1591
+
1592
+ export declare const MRadio: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1593
+ "update:modelValue": (value: boolean) => any;
1594
+ }, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
1595
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1596
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1597
+
1598
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1599
+ "update:modelValue": (value: string) => any;
1600
+ }, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{
1601
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1602
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1603
+
1604
+ export declare const MSelect: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1605
+ "update:modelValue": (value: string | number) => any;
1606
+ }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1607
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1608
+ }>, {
1609
+ size: "s" | "m";
1610
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSelectElement>;
1611
+
1612
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
1613
+ status: "info" | "success" | "warning" | "error" | "neutral";
1614
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1615
+
1616
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
1617
+
1618
+ export declare const MTabs: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1619
+ "update:modelValue": (value: number) => any;
1620
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
1621
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1622
+ }>, {
1623
+ modelValue: number;
1624
+ divider: boolean;
1625
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
1626
+ tab: HTMLButtonElement;
1627
+ }, HTMLElement>;
1628
+
1629
+ export declare const MTag: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1630
+ "update:modelValue": (value: boolean) => any;
1631
+ "remove-tag": (id: string) => any;
1632
+ }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
1633
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1634
+ "onRemove-tag"?: ((id: string) => any) | undefined;
1635
+ }>, {
1636
+ type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
1637
+ contextualisedNumber: number;
1638
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1639
+
1640
+ export declare const MTextArea: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1641
+ "update:modelValue": (value: string | number) => any;
1642
+ }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
1643
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1644
+ }>, {
1645
+ rows: number;
1646
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
1647
+
1648
+ export declare const MTextInput: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
1649
+
1650
+ export declare const MToggle: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1651
+ "update:modelValue": (value: boolean) => any;
1652
+ }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
1653
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1654
+ }>, {
1655
+ size: "s" | "m";
1656
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1657
+
1658
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1659
+ "update:modelValue": (value: string[]) => any;
1660
+ }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
1661
+ "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1662
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1663
+
1664
+ export { }