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