@mozaic-ds/vue 2.3.0 → 2.5.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 (32) hide show
  1. package/dist/mozaic-vue.css +1 -1
  2. package/dist/mozaic-vue.d.ts +598 -378
  3. package/dist/mozaic-vue.js +1008 -844
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +1 -1
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +4 -4
  8. package/src/components/avatar/MAvatar.spec.ts +49 -0
  9. package/src/components/avatar/MAvatar.stories.ts +53 -0
  10. package/src/components/avatar/MAvatar.vue +47 -0
  11. package/src/components/callout/MCallout.spec.ts +99 -0
  12. package/src/components/callout/MCallout.stories.ts +87 -0
  13. package/src/components/callout/MCallout.vue +66 -0
  14. package/src/components/checkbox/MCheckbox.spec.ts +54 -4
  15. package/src/components/checkbox/MCheckbox.vue +11 -1
  16. package/src/components/checkboxgroup/MCheckboxGroup.vue +2 -0
  17. package/src/components/container/MContainer.spec.ts +44 -0
  18. package/src/components/container/MContainer.stories.ts +32 -0
  19. package/src/components/container/MContainer.vue +35 -0
  20. package/src/components/divider/MDivider.vue +8 -1
  21. package/src/components/drawer/MDrawer.stories.ts +11 -0
  22. package/src/components/loadingoverlay/MLoadingOverlay.stories.ts +11 -0
  23. package/src/components/modal/MModal.stories.ts +11 -0
  24. package/src/components/overlay/MOverlay.stories.ts +11 -0
  25. package/src/components/textinput/MTextInput.spec.ts +2 -2
  26. package/src/components/textinput/MTextInput.stories.ts +9 -3
  27. package/src/components/textinput/MTextInput.vue +2 -4
  28. package/src/components/toaster/MToaster.spec.ts +122 -0
  29. package/src/components/toaster/MToaster.stories.ts +105 -0
  30. package/src/components/toaster/MToaster.vue +181 -0
  31. package/src/components/tooltip/MTooltip.stories.ts +11 -0
  32. package/src/main.ts +4 -0
@@ -21,23 +21,39 @@ import { VNodeProps } from 'vue';
21
21
  import { WatchOptions } from 'vue';
22
22
  import { WatchStopHandle } from 'vue';
23
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";
24
+ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
26
25
  size: "s" | "m" | "l";
27
- type: "button" | "reset" | "submit";
28
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
26
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
27
+
28
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
29
+ size: "s" | "m";
30
+ iconPosition: "left" | "right";
31
+ appearance: "secondary" | "accent" | "inverse" | "standard";
32
+ href: string;
33
+ target: "_self" | "_blank" | "_parent" | "_top";
34
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
35
+
36
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
37
+ "update:open": (value: boolean) => any;
38
+ }, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
39
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
40
+ }>, {
41
+ closable: boolean;
42
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
29
43
 
30
- declare const __VLS_component_10: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
44
+ declare const __VLS_component_12: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
45
+
46
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
31
47
  close: () => any;
32
- }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
48
+ }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
33
49
  onClose?: (() => any) | undefined;
34
50
  }>, {
35
51
  status: "info" | "success" | "warning" | "error";
36
52
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
37
53
 
38
- declare const __VLS_component_11: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
54
+ declare const __VLS_component_14: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
39
55
  "update:modelValue": (value: string | number) => any;
40
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
56
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
41
57
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
42
58
  }>, {
43
59
  size: "s" | "m";
@@ -45,84 +61,160 @@ clearLabel: string;
45
61
  inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
46
62
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
47
63
 
48
- declare const __VLS_component_12: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{}>, {
64
+ declare const __VLS_component_15: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
65
+ "update:open": (value: boolean) => any;
66
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
67
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
68
+ }>, {
69
+ status: "info" | "success" | "warning" | "error";
70
+ closable: boolean;
71
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
72
+
73
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
49
74
  position: "top" | "bottom" | "left" | "right";
50
75
  pointer: boolean;
51
76
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
52
77
 
53
- declare const __VLS_component_2: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
78
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
79
+ size: "s" | "m" | "l";
80
+ type: "button" | "reset" | "submit";
81
+ appearance: "standard" | "accent" | "danger" | "inverse";
82
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
83
+
84
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
85
+ appearance: "standard" | "accent" | "tips" | "inverse";
86
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
87
+
88
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
89
+
90
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
54
91
  size: "s" | "m" | "l";
55
92
  style: "primary" | "secondary" | "tertiary" | "inverse";
56
93
  orientation: "vertical" | "horizontal";
57
94
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
58
95
 
59
- declare const __VLS_component_3: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
96
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
60
97
  back: () => any;
61
98
  "update:open": (value: boolean) => any;
62
- }, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{
99
+ }, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
63
100
  onBack?: (() => any) | undefined;
64
101
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
65
102
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
66
103
 
67
- declare const __VLS_component_4: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
104
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
68
105
 
69
- declare const __VLS_component_5: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
106
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
70
107
 
71
- declare const __VLS_component_6: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {
72
- appearance: "standard" | "accent" | "danger" | "inverse";
108
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {
73
109
  size: "s" | "m" | "l";
74
110
  type: "button" | "reset" | "submit";
111
+ appearance: "standard" | "accent" | "danger" | "inverse";
75
112
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
76
113
 
77
- declare const __VLS_component_7: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & 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>;
114
+ /**
115
+ * An avatar is a graphical representation of a user, entity, or group, commonly displayed as an image, initials, or an icon. It helps identify individuals or accounts in profiles, comments, chat interfaces, and user lists. Avatars can be customized with different styles, sizes, and fallback options (such as initials or placeholders) to ensure consistency and recognition across interfaces. When multiple users are represented, Avatar groups provide a compact way to display them collectively.
116
+ */
117
+ declare type __VLS_Props = {
118
+ /**
119
+ * Allows to define the avatar size
120
+ */
121
+ size?: 's' | 'm' | 'l';
122
+ };
84
123
 
85
- declare const __VLS_component_8: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
86
- "update:open": (value: boolean) => any;
87
- }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
88
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
89
- }>, {
90
- closable: boolean;
91
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
124
+ /**
125
+ * A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
126
+ */
127
+ declare type __VLS_Props_10 = {
128
+ /**
129
+ * Determines the orientation of the divider
130
+ */
131
+ orientation?: 'vertical' | 'horizontal';
132
+ /**
133
+ * Determines the style of the divider
134
+ */
135
+ style?: 'primary' | 'secondary' | 'tertiary' | 'inverse';
136
+ /**
137
+ * Determines the size of the divider
138
+ */
139
+ size?: 's' | 'm' | 'l';
140
+ };
92
141
 
93
- declare const __VLS_component_9: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
142
+ /**
143
+ * 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.
144
+ */
145
+ declare type __VLS_Props_11 = {
146
+ /**
147
+ * If `true`, display the drawer.
148
+ */
149
+ open?: boolean;
150
+ /**
151
+ * Position of the drawer
152
+ */
153
+ position?: 'left' | 'right';
154
+ /**
155
+ * If `true`, the drawer have a bigger width.
156
+ */
157
+ extended?: boolean;
158
+ /**
159
+ * If `true`, display the back button.
160
+ */
161
+ back?: boolean;
162
+ /**
163
+ * Title of the drawer
164
+ */
165
+ title: string;
166
+ /**
167
+ * Title of the content of the drawer
168
+ */
169
+ contentTitle?: string;
170
+ };
94
171
 
95
172
  /**
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.
173
+ * This component creates a structured form field with a label, optional help text, error and validation message handling.
97
174
  */
98
- declare type __VLS_Props = {
175
+ declare type __VLS_Props_12 = {
99
176
  /**
100
- * Allows to define the breadcrumb style
177
+ * A unique identifier for the form field, used to associate the label with the form element.
101
178
  */
102
- appearance?: 'standard' | 'inverse';
179
+ id: string;
103
180
  /**
104
- * Links of the breadcrumb
181
+ * The text displayed as the label for the form field.
105
182
  */
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
- }>;
183
+ label: string;
184
+ /**
185
+ * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
186
+ */
187
+ requirementText?: string;
188
+ /**
189
+ * Text shown below the form field to provide additional context or instructions for the user.
190
+ */
191
+ helpText?: string;
192
+ /**
193
+ * 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._
194
+ */
195
+ helpId?: string;
196
+ /**
197
+ * If `true`, applies a valid state to the form field.
198
+ */
199
+ isValid?: boolean;
200
+ /**
201
+ * If `true`, applies an invalid state to the form field.
202
+ */
203
+ isInvalid?: boolean;
204
+ /**
205
+ * 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._
206
+ */
207
+ messageId?: string;
208
+ /**
209
+ * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
210
+ */
211
+ message?: string;
120
212
  };
121
213
 
122
214
  /**
123
215
  * 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.
124
216
  */
125
- declare type __VLS_Props_10 = {
217
+ declare type __VLS_Props_13 = {
126
218
  /**
127
219
  * A unique identifier for the form field, used to associate the label with the form element.
128
220
  */
@@ -156,7 +248,7 @@ declare type __VLS_Props_10 = {
156
248
  /**
157
249
  * 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.
158
250
  */
159
- declare type __VLS_Props_11 = {
251
+ declare type __VLS_Props_14 = {
160
252
  /**
161
253
  * Label of the Flag
162
254
  */
@@ -170,7 +262,7 @@ declare type __VLS_Props_11 = {
170
262
  /**
171
263
  * Icon Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
172
264
  */
173
- declare type __VLS_Props_12 = {
265
+ declare type __VLS_Props_15 = {
174
266
  /**
175
267
  * Defines the visual style of the icon button.
176
268
  */
@@ -200,7 +292,7 @@ declare type __VLS_Props_12 = {
200
292
  /**
201
293
  * A link is a component used exclusively to navigate to internal or external webpages or to anchors in the current page.
202
294
  */
203
- declare type __VLS_Props_13 = {
295
+ declare type __VLS_Props_16 = {
204
296
  /**
205
297
  * Position of the icon relative to the text.
206
298
  */
@@ -234,7 +326,7 @@ declare type __VLS_Props_13 = {
234
326
  /**
235
327
  * A loader indicates that content or data is being loaded or processed, providing visual feedback to users during wait times.
236
328
  */
237
- declare type __VLS_Props_14 = {
329
+ declare type __VLS_Props_17 = {
238
330
  /**
239
331
  * Specifies the visual appearance of the loader.
240
332
  */
@@ -252,7 +344,7 @@ declare type __VLS_Props_14 = {
252
344
  /**
253
345
  * 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.
254
346
  */
255
- declare type __VLS_Props_15 = {
347
+ declare type __VLS_Props_18 = {
256
348
  /**
257
349
  * Controls the visibility of the loading overlay.
258
350
  */
@@ -266,7 +358,7 @@ declare type __VLS_Props_15 = {
266
358
  /**
267
359
  * 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.
268
360
  */
269
- declare type __VLS_Props_16 = {
361
+ declare type __VLS_Props_19 = {
270
362
  /**
271
363
  * if `true`, display the modal.
272
364
  */
@@ -285,10 +377,37 @@ declare type __VLS_Props_16 = {
285
377
  closable?: boolean;
286
378
  };
287
379
 
380
+ /**
381
+ * 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.
382
+ */
383
+ declare type __VLS_Props_2 = {
384
+ /**
385
+ * Allows to define the breadcrumb style
386
+ */
387
+ appearance?: 'standard' | 'inverse';
388
+ /**
389
+ * Links of the breadcrumb
390
+ */
391
+ links: Array<{
392
+ /**
393
+ * The label displayed for the link.
394
+ */
395
+ label: string;
396
+ /**
397
+ * URL for the link (for external links or the `to` prop for `router-link`).
398
+ */
399
+ href: string;
400
+ /**
401
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
402
+ */
403
+ router?: boolean;
404
+ }>;
405
+ };
406
+
288
407
  /**
289
408
  * A badge indicates the status of an entity and can evolve at any time.
290
409
  */
291
- declare type __VLS_Props_17 = {
410
+ declare type __VLS_Props_20 = {
292
411
  /**
293
412
  * Content of the badge
294
413
  */
@@ -306,7 +425,7 @@ declare type __VLS_Props_17 = {
306
425
  /**
307
426
  * 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.
308
427
  */
309
- declare type __VLS_Props_18 = {
428
+ declare type __VLS_Props_21 = {
310
429
  /**
311
430
  * Controls the visibility of the overlay.
312
431
  */
@@ -320,7 +439,7 @@ declare type __VLS_Props_18 = {
320
439
  /**
321
440
  * 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.
322
441
  */
323
- declare type __VLS_Props_19 = {
442
+ declare type __VLS_Props_22 = {
324
443
  /**
325
444
  * A unique identifier for the pagination.
326
445
  */
@@ -347,48 +466,10 @@ declare type __VLS_Props_19 = {
347
466
  selectLabel?: string;
348
467
  };
349
468
 
350
- /**
351
- * Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
352
- */
353
- declare type __VLS_Props_2 = {
354
- /**
355
- * Defines the visual style of the button.
356
- */
357
- appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
358
- /**
359
- * Determines the size of the button.
360
- */
361
- size?: 's' | 'm' | 'l';
362
- /**
363
- * If `true`, disables the button, making it non-interactive.
364
- */
365
- disabled?: boolean;
366
- /**
367
- * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
368
- */
369
- ghost?: boolean;
370
- /**
371
- * If `true`, the button gets an outlined style, usually with just the border and no solid background.
372
- */
373
- outlined?: boolean;
374
- /**
375
- * Controls the positioning of an icon in the button.
376
- */
377
- iconPosition?: 'left' | 'right' | 'only';
378
- /**
379
- * Specifies the button's HTML `type` attribute.
380
- */
381
- type?: 'button' | 'reset' | 'submit';
382
- /**
383
- * If `true`, a loading state is displayed.
384
- */
385
- isLoading?: boolean;
386
- };
387
-
388
469
  /**
389
470
  * 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.
390
471
  */
391
- declare type __VLS_Props_20 = {
472
+ declare type __VLS_Props_23 = {
392
473
  /**
393
474
  * A unique identifier for the password input element, used to associate the label with the form element.
394
475
  */
@@ -437,7 +518,7 @@ declare type __VLS_Props_20 = {
437
518
  /**
438
519
  * 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.
439
520
  */
440
- declare type __VLS_Props_21 = {
521
+ declare type __VLS_Props_24 = {
441
522
  /**
442
523
  * A unique identifier for the pincode element, used to associate the label with the form element.
443
524
  */
@@ -471,7 +552,7 @@ declare type __VLS_Props_21 = {
471
552
  /**
472
553
  * A linear progress bar (Buffer) visually represents the progress of a task along a horizontal track, often indicating both current progress and a secondary buffered state. This type of progress bar is commonly used for loading processes, file uploads, or streaming indicators, where part of the task is completed while another portion is preloaded or buffered. It provides users with real-time feedback on task advancement.
473
554
  */
474
- declare type __VLS_Props_22 = {
555
+ declare type __VLS_Props_25 = {
475
556
  /**
476
557
  * Allows to define the progress bar size
477
558
  */
@@ -485,7 +566,7 @@ declare type __VLS_Props_22 = {
485
566
  /**
486
567
  * A linear progress bar (Percentage) visually represents the completion of a task along a horizontal track, displaying the exact progress in percentage within the bar. It is commonly used for file uploads, installations, form completion, or any process requiring user awareness of progress. The percentage label provides clear and immediate feedback, helping users track progress with precision.
487
568
  */
488
- declare type __VLS_Props_23 = {
569
+ declare type __VLS_Props_26 = {
489
570
  /**
490
571
  * The current value of the progress bar.
491
572
  */
@@ -495,7 +576,7 @@ declare type __VLS_Props_23 = {
495
576
  /**
496
577
  * 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.
497
578
  */
498
- declare type __VLS_Props_24 = {
579
+ declare type __VLS_Props_27 = {
499
580
  /**
500
581
  * A unique identifier for the quantity selector element, used to associate the label with the form element.
501
582
  */
@@ -549,7 +630,7 @@ declare type __VLS_Props_24 = {
549
630
  /**
550
631
  * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
551
632
  */
552
- declare type __VLS_Props_25 = {
633
+ declare type __VLS_Props_28 = {
553
634
  /**
554
635
  * A unique identifier for the radio, used to associate the label with the form element.
555
636
  */
@@ -579,7 +660,7 @@ declare type __VLS_Props_25 = {
579
660
  /**
580
661
  * A radio button is used to offer a unique choice to your user in a form. Unlike checkboxes, it can not be used alone.
581
662
  */
582
- declare type __VLS_Props_26 = {
663
+ declare type __VLS_Props_29 = {
583
664
  /**
584
665
  * The name attribute for the radio element, typically used for form submission.
585
666
  */
@@ -608,10 +689,48 @@ declare type __VLS_Props_26 = {
608
689
  inline?: boolean;
609
690
  };
610
691
 
692
+ /**
693
+ * Buttons are used to trigger actions. Their appearance is depending on the type of action required from the user, or the context.
694
+ */
695
+ declare type __VLS_Props_3 = {
696
+ /**
697
+ * Defines the visual style of the button.
698
+ */
699
+ appearance?: 'standard' | 'accent' | 'danger' | 'inverse';
700
+ /**
701
+ * Determines the size of the button.
702
+ */
703
+ size?: 's' | 'm' | 'l';
704
+ /**
705
+ * If `true`, disables the button, making it non-interactive.
706
+ */
707
+ disabled?: boolean;
708
+ /**
709
+ * If `true`, applies a "ghost" style to the button, typically a transparent background with a border.
710
+ */
711
+ ghost?: boolean;
712
+ /**
713
+ * If `true`, the button gets an outlined style, usually with just the border and no solid background.
714
+ */
715
+ outlined?: boolean;
716
+ /**
717
+ * Controls the positioning of an icon in the button.
718
+ */
719
+ iconPosition?: 'left' | 'right' | 'only';
720
+ /**
721
+ * Specifies the button's HTML `type` attribute.
722
+ */
723
+ type?: 'button' | 'reset' | 'submit';
724
+ /**
725
+ * If `true`, a loading state is displayed.
726
+ */
727
+ isLoading?: boolean;
728
+ };
729
+
611
730
  /**
612
731
  * A select is a form element for multi-line text input, ideal for longer content like comments or descriptions.
613
732
  */
614
- declare type __VLS_Props_27 = {
733
+ declare type __VLS_Props_30 = {
615
734
  /**
616
735
  * A unique identifier for the select, used to associate the label with the form element.
617
736
  */
@@ -659,7 +778,7 @@ declare type __VLS_Props_27 = {
659
778
  /**
660
779
  * A status badge indicates the status of an entity and can evolve at any time.
661
780
  */
662
- declare type __VLS_Props_28 = {
781
+ declare type __VLS_Props_31 = {
663
782
  /**
664
783
  * Content of the Status Badge
665
784
  */
@@ -673,7 +792,7 @@ declare type __VLS_Props_28 = {
673
792
  /**
674
793
  * 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.
675
794
  */
676
- declare type __VLS_Props_29 = {
795
+ declare type __VLS_Props_32 = {
677
796
  /**
678
797
  * Title of the Status Notification
679
798
  */
@@ -692,44 +811,10 @@ declare type __VLS_Props_29 = {
692
811
  closable?: boolean;
693
812
  };
694
813
 
695
- /**
696
- * 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.
697
- */
698
- declare type __VLS_Props_3 = {
699
- /**
700
- * A unique identifier for the checkbox, used to associate the label with the form element.
701
- */
702
- id: string;
703
- /**
704
- * The name attribute for the checkbox element, typically used for form submission.
705
- */
706
- name?: string;
707
- /**
708
- * The text label displayed next to the checkbox.
709
- */
710
- label?: string;
711
- /**
712
- * The checkbox's checked state, bound via v-model.
713
- */
714
- modelValue?: boolean;
715
- /**
716
- * Sets the checkbox to an indeterminate state (partially selected).
717
- */
718
- indeterminate?: boolean;
719
- /**
720
- * If `true`, applies an invalid state to the checkbox.
721
- */
722
- isInvalid?: boolean;
723
- /**
724
- * If `true`, disables the checkbox, making it non-interactive.
725
- */
726
- disabled?: boolean;
727
- };
728
-
729
814
  /**
730
815
  * 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.
731
816
  */
732
- declare type __VLS_Props_30 = {
817
+ declare type __VLS_Props_33 = {
733
818
  /**
734
819
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
735
820
  */
@@ -768,7 +853,7 @@ declare type __VLS_Props_30 = {
768
853
  /**
769
854
  * 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).
770
855
  */
771
- declare type __VLS_Props_31 = {
856
+ declare type __VLS_Props_34 = {
772
857
  /**
773
858
  * Defines the behavior and layout of the tag.
774
859
  */
@@ -810,7 +895,7 @@ declare type __VLS_Props_31 = {
810
895
  /**
811
896
  * A textarea is a form element for multi-line text input, ideal for longer content like comments or descriptions.
812
897
  */
813
- declare type __VLS_Props_32 = {
898
+ declare type __VLS_Props_35 = {
814
899
  /**
815
900
  * A unique identifier for the textarea, used to associate the label with the form element.
816
901
  */
@@ -856,7 +941,7 @@ declare type __VLS_Props_32 = {
856
941
  /**
857
942
  * Inputs are used to create input fields with text on a single line. Their states depends on the user interaction or the context.
858
943
  */
859
- declare type __VLS_Props_33 = {
944
+ declare type __VLS_Props_36 = {
860
945
  /**
861
946
  * A unique identifier for the input element, used to associate the label with the form element.
862
947
  */
@@ -903,10 +988,44 @@ declare type __VLS_Props_33 = {
903
988
  clearLabel?: string;
904
989
  };
905
990
 
991
+ /**
992
+ * A toaster is a temporary notification that appears briefly on the screen to provide feedback or updates without interrupting the user’s workflow. It is commonly used for success messages, warnings, errors, or informational updates. Toasters can disappear automatically after a few seconds, be dismissed manually via a close button, or be removed when the user performs a relevant action. They typically include an icon, a short message, and an optional close button for better usability.
993
+ */
994
+ declare type __VLS_Props_37 = {
995
+ /**
996
+ * if `true`, display the Toaster.
997
+ */
998
+ open?: boolean;
999
+ /**
1000
+ * Position of the toaster
1001
+ */
1002
+ position?: 'top' | 'bottom' | 'top-center' | 'bottom-center';
1003
+ /**
1004
+ * Description of the toaster.
1005
+ */
1006
+ description: string;
1007
+ /**
1008
+ * Allows to define the toaster style.
1009
+ */
1010
+ status?: 'info' | 'success' | 'warning' | 'error';
1011
+ /**
1012
+ * if `true`, display the close button.
1013
+ */
1014
+ closable?: boolean;
1015
+ /**
1016
+ * if `true`, display the progress bar of the duration.
1017
+ */
1018
+ progress?: boolean;
1019
+ /**
1020
+ * Duration of the toaster
1021
+ */
1022
+ timeout?: number;
1023
+ };
1024
+
906
1025
  /**
907
1026
  * 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.
908
1027
  */
909
- declare type __VLS_Props_34 = {
1028
+ declare type __VLS_Props_38 = {
910
1029
  /**
911
1030
  * A unique identifier for the toggle, used to associate the label with the form element.
912
1031
  */
@@ -936,7 +1055,7 @@ declare type __VLS_Props_34 = {
936
1055
  /**
937
1056
  * 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.
938
1057
  */
939
- declare type __VLS_Props_35 = {
1058
+ declare type __VLS_Props_39 = {
940
1059
  /**
941
1060
  * A unique identifier for the tooltip, used to describe the tooltip.
942
1061
  */
@@ -955,10 +1074,48 @@ declare type __VLS_Props_35 = {
955
1074
  pointer?: boolean;
956
1075
  };
957
1076
 
1077
+ /**
1078
+ * 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.
1079
+ */
1080
+ declare type __VLS_Props_4 = {
1081
+ /**
1082
+ * A unique identifier for the checkbox, used to associate the label with the form element.
1083
+ */
1084
+ id: string;
1085
+ /**
1086
+ * The name attribute for the checkbox element, typically used for form submission.
1087
+ */
1088
+ name?: string;
1089
+ /**
1090
+ * The text label displayed next to the checkbox.
1091
+ */
1092
+ label?: string;
1093
+ /**
1094
+ * The checkbox's checked state, bound via v-model.
1095
+ */
1096
+ modelValue?: boolean;
1097
+ /**
1098
+ * Sets the checkbox to an indeterminate state (partially selected).
1099
+ */
1100
+ indeterminate?: boolean;
1101
+ /**
1102
+ * If `true`, applies an invalid state to the checkbox.
1103
+ */
1104
+ isInvalid?: boolean;
1105
+ /**
1106
+ * If `true`, disables the checkbox, making it non-interactive.
1107
+ */
1108
+ disabled?: boolean;
1109
+ /**
1110
+ * If `true`, indent the checkbox.
1111
+ */
1112
+ indented?: boolean;
1113
+ };
1114
+
958
1115
  /**
959
1116
  * 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.
960
1117
  */
961
- declare type __VLS_Props_36 = {
1118
+ declare type __VLS_Props_40 = {
962
1119
  /**
963
1120
  * The name attribute for the toggle element, typically used for form submission.
964
1121
  */
@@ -988,7 +1145,7 @@ declare type __VLS_Props_36 = {
988
1145
  /**
989
1146
  * 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.
990
1147
  */
991
- declare type __VLS_Props_4 = {
1148
+ declare type __VLS_Props_5 = {
992
1149
  /**
993
1150
  * The name attribute for the checkbox element, typically used for form submission.
994
1151
  */
@@ -1007,6 +1164,7 @@ declare type __VLS_Props_4 = {
1007
1164
  value: string;
1008
1165
  disabled?: boolean;
1009
1166
  isInvalid?: boolean;
1167
+ indented?: boolean;
1010
1168
  }>;
1011
1169
  /**
1012
1170
  * If `true`, make the form element of the group inline.
@@ -1017,7 +1175,7 @@ declare type __VLS_Props_4 = {
1017
1175
  /**
1018
1176
  * A circular progress bar visually represents progress toward a goal or completion of a process using a circular shape. It is commonly used to indicate task completion or performance metrics. The progress is displayed as a partially filled ring, often accompanied by a percentage or status indicator. Circular Progress Bars are useful for providing users with real-time feedback on ongoing actions without taking up significant screen space.
1019
1177
  */
1020
- declare type __VLS_Props_5 = {
1178
+ declare type __VLS_Props_6 = {
1021
1179
  /**
1022
1180
  * Allows to define the progress bar size
1023
1181
  */
@@ -1040,10 +1198,38 @@ declare type __VLS_Props_5 = {
1040
1198
  additionalInfo?: string;
1041
1199
  };
1042
1200
 
1201
+ /**
1202
+ * A callout is used to highlight additional information that can assist users with tips, extra details, or helpful guidance, without signaling a critical status or alert. Unlike notifications, callouts are not triggered by user actions and do not correspond to specific system states. They are designed to enhance the user experience by providing contextually relevant information that supports comprehension and usability.
1203
+ */
1204
+ declare type __VLS_Props_7 = {
1205
+ /**
1206
+ * Title of the callout
1207
+ */
1208
+ title: string;
1209
+ /**
1210
+ * Description of the callout
1211
+ */
1212
+ description: string;
1213
+ /**
1214
+ * Allows to define the callout style
1215
+ */
1216
+ appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
1217
+ };
1218
+
1219
+ /**
1220
+ * A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
1221
+ */
1222
+ declare type __VLS_Props_8 = {
1223
+ /**
1224
+ * Determines the orientation of the divider
1225
+ */
1226
+ fluid?: boolean;
1227
+ };
1228
+
1043
1229
  /**
1044
1230
  * 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.
1045
1231
  */
1046
- declare type __VLS_Props_6 = {
1232
+ declare type __VLS_Props_9 = {
1047
1233
  /**
1048
1234
  * A unique identifier for the datepicker element, used to associate the label with the form element.
1049
1235
  */
@@ -1082,122 +1268,107 @@ declare type __VLS_Props_6 = {
1082
1268
  clearLabel?: string;
1083
1269
  };
1084
1270
 
1085
- /**
1086
- * A Divider serves as a visual divider to separate content, providing a clear distinction between sections.
1087
- */
1088
- declare type __VLS_Props_7 = {
1089
- /**
1090
- * Determines the orientation of the divider
1091
- */
1092
- orientation?: 'vertical' | 'horizontal';
1093
- /**
1094
- * Determines the style of the divider
1095
- */
1096
- style?: 'primary' | 'secondary' | 'tertiary' | 'inverse';
1097
- /**
1098
- * Determines the size of the divider
1099
- */
1100
- size?: 's' | 'm' | 'l';
1101
- };
1102
-
1103
- /**
1104
- * 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.
1105
- */
1106
- declare type __VLS_Props_8 = {
1107
- /**
1108
- * If `true`, display the drawer.
1109
- */
1110
- open?: boolean;
1111
- /**
1112
- * Position of the drawer
1113
- */
1114
- position?: 'left' | 'right';
1115
- /**
1116
- * If `true`, the drawer have a bigger width.
1117
- */
1118
- extended?: boolean;
1119
- /**
1120
- * If `true`, display the back button.
1121
- */
1122
- back?: boolean;
1123
- /**
1124
- * Title of the drawer
1125
- */
1126
- title: string;
1127
- /**
1128
- * Title of the content of the drawer
1129
- */
1130
- contentTitle?: string;
1271
+ declare function __VLS_template(): {
1272
+ attrs: Partial<{}>;
1273
+ slots: Readonly<{
1274
+ /**
1275
+ * Use this slot to insert the image, icon or intials of the avatar
1276
+ */
1277
+ default: VNode;
1278
+ }> & {
1279
+ /**
1280
+ * Use this slot to insert the image, icon or intials of the avatar
1281
+ */
1282
+ default: VNode;
1283
+ };
1284
+ refs: {};
1285
+ rootEl: HTMLSpanElement;
1131
1286
  };
1132
1287
 
1133
- /**
1134
- * This component creates a structured form field with a label, optional help text, error and validation message handling.
1135
- */
1136
- declare type __VLS_Props_9 = {
1137
- /**
1138
- * A unique identifier for the form field, used to associate the label with the form element.
1139
- */
1140
- id: string;
1141
- /**
1142
- * The text displayed as the label for the form field.
1143
- */
1144
- label: string;
1145
- /**
1146
- * Additional text displayed alongside the label, typically used to indicate if the form field is required or optional
1147
- */
1148
- requirementText?: string;
1149
- /**
1150
- * Text shown below the form field to provide additional context or instructions for the user.
1151
- */
1152
- helpText?: string;
1153
- /**
1154
- * 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._
1155
- */
1156
- helpId?: string;
1157
- /**
1158
- * If `true`, applies a valid state to the form field.
1159
- */
1160
- isValid?: boolean;
1161
- /**
1162
- * If `true`, applies an invalid state to the form field.
1163
- */
1164
- isInvalid?: boolean;
1165
- /**
1166
- * 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._
1167
- */
1168
- messageId?: string;
1169
- /**
1170
- * message displayed when the form field has a valid or invalid state, usually indicating validation or errors.
1171
- */
1172
- message?: string;
1288
+ declare function __VLS_template_10(): {
1289
+ attrs: Partial<{}>;
1290
+ slots: Readonly<{
1291
+ /**
1292
+ * Use this slot to insert the textual content of the Link
1293
+ */
1294
+ default: string;
1295
+ /**
1296
+ * Use this slot to insert an icon for the Link
1297
+ */
1298
+ icon?: VNode;
1299
+ }> & {
1300
+ /**
1301
+ * Use this slot to insert the textual content of the Link
1302
+ */
1303
+ default: string;
1304
+ /**
1305
+ * Use this slot to insert an icon for the Link
1306
+ */
1307
+ icon?: VNode;
1308
+ };
1309
+ refs: {};
1310
+ rootEl: any;
1173
1311
  };
1174
1312
 
1175
- declare function __VLS_template(): {
1313
+ declare function __VLS_template_11(): {
1176
1314
  attrs: Partial<{}>;
1177
1315
  slots: Readonly<{
1178
1316
  /**
1179
- * The content displayed in the button.
1317
+ * Use this slot to insert an icon next to the title of the modal
1180
1318
  */
1181
- default: string;
1319
+ icon?: VNode;
1182
1320
  /**
1183
- * Use this slot to insert an icon for the Button
1321
+ * Use this slot to insert the content of the modal
1184
1322
  */
1185
- icon?: VNode;
1186
- }> & {
1323
+ default?: VNode;
1187
1324
  /**
1188
- * The content displayed in the button.
1325
+ * Use this slot to insert a link in the footer
1189
1326
  */
1190
- default: string;
1327
+ link?: VNode;
1191
1328
  /**
1192
- * Use this slot to insert an icon for the Button
1329
+ * Use this slot to insert buttons in the footer
1330
+ */
1331
+ footer?: VNode;
1332
+ }> & {
1333
+ /**
1334
+ * Use this slot to insert an icon next to the title of the modal
1193
1335
  */
1194
1336
  icon?: VNode;
1337
+ /**
1338
+ * Use this slot to insert the content of the modal
1339
+ */
1340
+ default?: VNode;
1341
+ /**
1342
+ * Use this slot to insert a link in the footer
1343
+ */
1344
+ link?: VNode;
1345
+ /**
1346
+ * Use this slot to insert buttons in the footer
1347
+ */
1348
+ footer?: VNode;
1195
1349
  };
1196
1350
  refs: {};
1197
- rootEl: HTMLButtonElement;
1351
+ rootEl: HTMLDivElement;
1198
1352
  };
1199
1353
 
1200
- declare function __VLS_template_10(): {
1354
+ declare function __VLS_template_12(): {
1355
+ attrs: Partial<{}>;
1356
+ slots: Readonly<{
1357
+ /**
1358
+ * Use this slot to insert a centered content inside the overlay
1359
+ */
1360
+ default?: VNode;
1361
+ }> & {
1362
+ /**
1363
+ * Use this slot to insert a centered content inside the overlay
1364
+ */
1365
+ default?: VNode;
1366
+ };
1367
+ refs: {};
1368
+ rootEl: HTMLDivElement;
1369
+ };
1370
+
1371
+ declare function __VLS_template_13(): {
1201
1372
  attrs: Partial<{}>;
1202
1373
  slots: Readonly<{
1203
1374
  /**
@@ -1214,7 +1385,7 @@ declare function __VLS_template_10(): {
1214
1385
  rootEl: HTMLElement;
1215
1386
  };
1216
1387
 
1217
- declare function __VLS_template_11(): {
1388
+ declare function __VLS_template_14(): {
1218
1389
  attrs: Partial<{}>;
1219
1390
  slots: Readonly<{
1220
1391
  /**
@@ -1231,7 +1402,24 @@ declare function __VLS_template_11(): {
1231
1402
  rootEl: HTMLDivElement;
1232
1403
  };
1233
1404
 
1234
- declare function __VLS_template_12(): {
1405
+ declare function __VLS_template_15(): {
1406
+ attrs: Partial<{}>;
1407
+ slots: Readonly<{
1408
+ /**
1409
+ * Use this slot to insert a button or a link in the toaster
1410
+ */
1411
+ action?: VNode;
1412
+ }> & {
1413
+ /**
1414
+ * Use this slot to insert a button or a link in the toaster
1415
+ */
1416
+ action?: VNode;
1417
+ };
1418
+ refs: {};
1419
+ rootEl: HTMLElement;
1420
+ };
1421
+
1422
+ declare function __VLS_template_16(): {
1235
1423
  attrs: Partial<{}>;
1236
1424
  slots: Readonly<{
1237
1425
  /**
@@ -1250,50 +1438,66 @@ declare function __VLS_template_12(): {
1250
1438
 
1251
1439
  declare function __VLS_template_2(): {
1252
1440
  attrs: Partial<{}>;
1253
- slots: {
1254
- default?(_: {}): any;
1441
+ slots: Readonly<{
1442
+ /**
1443
+ * The content displayed in the button.
1444
+ */
1445
+ default: string;
1446
+ /**
1447
+ * Use this slot to insert an icon for the Button
1448
+ */
1449
+ icon?: VNode;
1450
+ }> & {
1451
+ /**
1452
+ * The content displayed in the button.
1453
+ */
1454
+ default: string;
1455
+ /**
1456
+ * Use this slot to insert an icon for the Button
1457
+ */
1458
+ icon?: VNode;
1255
1459
  };
1256
1460
  refs: {};
1257
- rootEl: HTMLDivElement;
1461
+ rootEl: HTMLButtonElement;
1258
1462
  };
1259
1463
 
1260
1464
  declare function __VLS_template_3(): {
1261
1465
  attrs: Partial<{}>;
1262
1466
  slots: Readonly<{
1263
1467
  /**
1264
- * Use this slot to insert the content of the drawer
1468
+ * Use this slot to insert an icon
1265
1469
  */
1266
- default?: VNode;
1470
+ icon?: VNode;
1267
1471
  /**
1268
- * Use this slot to insert buttons in the footer
1472
+ * Use this slot to insert a button or a link in the footer of the callout
1269
1473
  */
1270
1474
  footer?: VNode;
1271
1475
  }> & {
1272
1476
  /**
1273
- * Use this slot to insert the content of the drawer
1477
+ * Use this slot to insert an icon
1274
1478
  */
1275
- default?: VNode;
1479
+ icon?: VNode;
1276
1480
  /**
1277
- * Use this slot to insert buttons in the footer
1481
+ * Use this slot to insert a button or a link in the footer of the callout
1278
1482
  */
1279
1483
  footer?: VNode;
1280
1484
  };
1281
1485
  refs: {};
1282
- rootEl: HTMLDivElement;
1486
+ rootEl: HTMLElement;
1283
1487
  };
1284
1488
 
1285
1489
  declare function __VLS_template_4(): {
1286
1490
  attrs: Partial<{}>;
1287
1491
  slots: Readonly<{
1288
1492
  /**
1289
- * Use this slot to insert the form element of your choice
1493
+ * Use this slot to insert the content of the container
1290
1494
  */
1291
- default: VNode;
1495
+ default?: VNode;
1292
1496
  }> & {
1293
1497
  /**
1294
- * Use this slot to insert the form element of your choice
1498
+ * Use this slot to insert the content of the container
1295
1499
  */
1296
- default: VNode;
1500
+ default?: VNode;
1297
1501
  };
1298
1502
  refs: {};
1299
1503
  rootEl: HTMLDivElement;
@@ -1303,117 +1507,93 @@ declare function __VLS_template_5(): {
1303
1507
  attrs: Partial<{}>;
1304
1508
  slots: Readonly<{
1305
1509
  /**
1306
- * Use this slot to insert the form element of your choice
1510
+ * Use this slot to insert the content who need a vertical divider
1307
1511
  */
1308
- default: VNode;
1512
+ default?: VNode;
1309
1513
  }> & {
1310
1514
  /**
1311
- * Use this slot to insert the form element of your choice
1515
+ * Use this slot to insert the content who need a vertical divider
1312
1516
  */
1313
- default: VNode;
1517
+ default?: VNode;
1314
1518
  };
1315
1519
  refs: {};
1316
- rootEl: HTMLFieldSetElement;
1520
+ rootEl: HTMLDivElement;
1317
1521
  };
1318
1522
 
1319
1523
  declare function __VLS_template_6(): {
1320
1524
  attrs: Partial<{}>;
1321
1525
  slots: Readonly<{
1322
1526
  /**
1323
- * Use this slot to insert the form element of your choice
1527
+ * Use this slot to insert the content of the drawer
1324
1528
  */
1325
- icon: VNode;
1529
+ default?: VNode;
1530
+ /**
1531
+ * Use this slot to insert buttons in the footer
1532
+ */
1533
+ footer?: VNode;
1326
1534
  }> & {
1327
1535
  /**
1328
- * Use this slot to insert the form element of your choice
1536
+ * Use this slot to insert the content of the drawer
1329
1537
  */
1330
- icon: VNode;
1538
+ default?: VNode;
1539
+ /**
1540
+ * Use this slot to insert buttons in the footer
1541
+ */
1542
+ footer?: VNode;
1331
1543
  };
1332
1544
  refs: {};
1333
- rootEl: HTMLButtonElement;
1545
+ rootEl: HTMLDivElement;
1334
1546
  };
1335
1547
 
1336
1548
  declare function __VLS_template_7(): {
1337
1549
  attrs: Partial<{}>;
1338
1550
  slots: Readonly<{
1339
1551
  /**
1340
- * Use this slot to insert the textual content of the Link
1341
- */
1342
- default: string;
1343
- /**
1344
- * Use this slot to insert an icon for the Link
1552
+ * Use this slot to insert the form element of your choice
1345
1553
  */
1346
- icon?: VNode;
1554
+ default: VNode;
1347
1555
  }> & {
1348
1556
  /**
1349
- * Use this slot to insert the textual content of the Link
1350
- */
1351
- default: string;
1352
- /**
1353
- * Use this slot to insert an icon for the Link
1557
+ * Use this slot to insert the form element of your choice
1354
1558
  */
1355
- icon?: VNode;
1559
+ default: VNode;
1356
1560
  };
1357
1561
  refs: {};
1358
- rootEl: any;
1562
+ rootEl: HTMLDivElement;
1359
1563
  };
1360
1564
 
1361
1565
  declare function __VLS_template_8(): {
1362
1566
  attrs: Partial<{}>;
1363
1567
  slots: Readonly<{
1364
1568
  /**
1365
- * Use this slot to insert an icon next to the title of the modal
1366
- */
1367
- icon?: VNode;
1368
- /**
1369
- * Use this slot to insert the content of the modal
1370
- */
1371
- default?: VNode;
1372
- /**
1373
- * Use this slot to insert a link in the footer
1374
- */
1375
- link?: VNode;
1376
- /**
1377
- * Use this slot to insert buttons in the footer
1569
+ * Use this slot to insert the form element of your choice
1378
1570
  */
1379
- footer?: VNode;
1571
+ default: VNode;
1380
1572
  }> & {
1381
1573
  /**
1382
- * Use this slot to insert an icon next to the title of the modal
1383
- */
1384
- icon?: VNode;
1385
- /**
1386
- * Use this slot to insert the content of the modal
1387
- */
1388
- default?: VNode;
1389
- /**
1390
- * Use this slot to insert a link in the footer
1391
- */
1392
- link?: VNode;
1393
- /**
1394
- * Use this slot to insert buttons in the footer
1574
+ * Use this slot to insert the form element of your choice
1395
1575
  */
1396
- footer?: VNode;
1576
+ default: VNode;
1397
1577
  };
1398
1578
  refs: {};
1399
- rootEl: HTMLDivElement;
1579
+ rootEl: HTMLFieldSetElement;
1400
1580
  };
1401
1581
 
1402
1582
  declare function __VLS_template_9(): {
1403
1583
  attrs: Partial<{}>;
1404
1584
  slots: Readonly<{
1405
1585
  /**
1406
- * Use this slot to insert a centered content inside the overlay
1586
+ * Use this slot to insert the form element of your choice
1407
1587
  */
1408
- default?: VNode;
1588
+ icon: VNode;
1409
1589
  }> & {
1410
1590
  /**
1411
- * Use this slot to insert a centered content inside the overlay
1591
+ * Use this slot to insert the form element of your choice
1412
1592
  */
1413
- default?: VNode;
1593
+ icon: VNode;
1414
1594
  };
1415
1595
  refs: {};
1416
- rootEl: HTMLDivElement;
1596
+ rootEl: HTMLButtonElement;
1417
1597
  };
1418
1598
 
1419
1599
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
@@ -1424,6 +1604,14 @@ declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
1424
1604
 
1425
1605
  declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
1426
1606
 
1607
+ declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
1608
+
1609
+ declare type __VLS_TemplateResult_14 = ReturnType<typeof __VLS_template_14>;
1610
+
1611
+ declare type __VLS_TemplateResult_15 = ReturnType<typeof __VLS_template_15>;
1612
+
1613
+ declare type __VLS_TemplateResult_16 = ReturnType<typeof __VLS_template_16>;
1614
+
1427
1615
  declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
1428
1616
 
1429
1617
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
@@ -1464,6 +1652,30 @@ declare type __VLS_WithTemplateSlots_12<T, S> = T & {
1464
1652
  };
1465
1653
  };
1466
1654
 
1655
+ declare type __VLS_WithTemplateSlots_13<T, S> = T & {
1656
+ new (): {
1657
+ $slots: S;
1658
+ };
1659
+ };
1660
+
1661
+ declare type __VLS_WithTemplateSlots_14<T, S> = T & {
1662
+ new (): {
1663
+ $slots: S;
1664
+ };
1665
+ };
1666
+
1667
+ declare type __VLS_WithTemplateSlots_15<T, S> = T & {
1668
+ new (): {
1669
+ $slots: S;
1670
+ };
1671
+ };
1672
+
1673
+ declare type __VLS_WithTemplateSlots_16<T, S> = T & {
1674
+ new (): {
1675
+ $slots: S;
1676
+ };
1677
+ };
1678
+
1467
1679
  declare type __VLS_WithTemplateSlots_2<T, S> = T & {
1468
1680
  new (): {
1469
1681
  $slots: S;
@@ -1512,83 +1724,89 @@ declare type __VLS_WithTemplateSlots_9<T, S> = T & {
1512
1724
  };
1513
1725
  };
1514
1726
 
1515
- export declare const MBreadcrumb: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1727
+ export declare const MAvatar: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1728
+
1729
+ export declare const MBreadcrumb: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1516
1730
 
1517
- export declare const MButton: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
1731
+ export declare const MButton: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
1518
1732
 
1519
- export declare const MCheckbox: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1733
+ export declare const MCallout: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1734
+
1735
+ export declare const MCheckbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1520
1736
  "update:modelValue": (value: boolean) => any;
1521
- }, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{
1737
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
1522
1738
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1523
1739
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1524
1740
 
1525
- export declare const MCheckboxGroup: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1741
+ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1526
1742
  "update:modelValue": (value: string[]) => any;
1527
- }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
1743
+ }, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{
1528
1744
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1529
1745
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1530
1746
 
1531
- export declare const MCircularProgressbar: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
1747
+ export declare const MCircularProgressbar: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {
1532
1748
  type: "percentage" | "content";
1533
1749
  value: number;
1534
1750
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1535
1751
 
1536
- export declare const MDatepicker: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1752
+ export declare const MContainer: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1753
+
1754
+ export declare const MDatepicker: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1537
1755
  "update:modelValue": (value: string | number) => any;
1538
- }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
1756
+ }, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{
1539
1757
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1540
1758
  }>, {
1541
1759
  size: "s" | "m";
1542
1760
  clearLabel: string;
1543
1761
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1544
1762
 
1545
- export declare const MDivider: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
1763
+ export declare const MDivider: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1546
1764
 
1547
- export declare const MDrawer: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
1765
+ export declare const MDrawer: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
1548
1766
 
1549
- export declare const MField: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
1767
+ export declare const MField: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
1550
1768
 
1551
- export declare const MFieldGroup: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
1769
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
1552
1770
 
1553
- export declare const MFlag: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1771
+ export declare const MFlag: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1554
1772
 
1555
- export declare const MIconButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
1773
+ export declare const MIconButton: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
1556
1774
 
1557
- export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
1775
+ export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
1558
1776
  value: number;
1559
1777
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1560
1778
 
1561
- export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
1779
+ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
1562
1780
  value: number;
1563
1781
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1564
1782
 
1565
- export declare const MLink: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
1783
+ export declare const MLink: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
1566
1784
 
1567
- export declare const MLoader: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
1568
- appearance: "standard" | "accent" | "inverse";
1785
+ export declare const MLoader: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1569
1786
  size: "s" | "m" | "l";
1787
+ appearance: "standard" | "accent" | "inverse";
1570
1788
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1571
1789
 
1572
- export declare const MLoadingOverlay: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1790
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1573
1791
 
1574
- export declare const MModal: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
1792
+ export declare const MModal: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
1575
1793
 
1576
- export declare const MNumberBadge: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
1577
- appearance: "danger" | "accent" | "inverse" | "standard";
1794
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {
1578
1795
  size: "s" | "m";
1796
+ appearance: "danger" | "accent" | "inverse" | "standard";
1579
1797
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
1580
1798
 
1581
- export declare const MOverlay: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
1799
+ export declare const MOverlay: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
1582
1800
 
1583
- export declare const MPagination: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1801
+ export declare const MPagination: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1584
1802
  "update:modelValue": (value: number) => any;
1585
- }, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
1803
+ }, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
1586
1804
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1587
1805
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
1588
1806
 
1589
- export declare const MPasswordInput: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1807
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1590
1808
  "update:modelValue": (value: string | number) => any;
1591
- }, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{
1809
+ }, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{
1592
1810
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1593
1811
  }>, {
1594
1812
  clearLabel: string;
@@ -1634,9 +1852,9 @@ iconPosition?: "left" | "right" | "only";
1634
1852
  type?: "button" | "reset" | "submit";
1635
1853
  isLoading?: boolean;
1636
1854
  }> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1637
- appearance: "standard" | "accent" | "danger" | "inverse";
1638
1855
  size: "s" | "m" | "l";
1639
1856
  type: "button" | "reset" | "submit";
1857
+ appearance: "standard" | "accent" | "danger" | "inverse";
1640
1858
  }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1641
1859
  beforeCreate?: (() => void) | (() => void)[];
1642
1860
  created?: (() => void) | (() => void)[];
@@ -1658,9 +1876,9 @@ $forceUpdate: () => void;
1658
1876
  $nextTick: nextTick;
1659
1877
  $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;
1660
1878
  } & Readonly<{
1661
- appearance: "standard" | "accent" | "danger" | "inverse";
1662
1879
  size: "s" | "m" | "l";
1663
1880
  type: "button" | "reset" | "submit";
1881
+ appearance: "standard" | "accent" | "danger" | "inverse";
1664
1882
  }> & Omit<Readonly<{
1665
1883
  appearance?: "standard" | "accent" | "danger" | "inverse";
1666
1884
  size?: "s" | "m" | "l";
@@ -1670,7 +1888,7 @@ outlined?: boolean;
1670
1888
  iconPosition?: "left" | "right" | "only";
1671
1889
  type?: "button" | "reset" | "submit";
1672
1890
  isLoading?: boolean;
1673
- }> & Readonly<{}>, "appearance" | "size" | "type"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
1891
+ }> & Readonly<{}>, "size" | "type" | "appearance"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
1674
1892
  $slots: Readonly<{
1675
1893
  default: string;
1676
1894
  icon?: VNode;
@@ -1681,17 +1899,17 @@ icon?: VNode;
1681
1899
  }) | null;
1682
1900
  }, HTMLDivElement>;
1683
1901
 
1684
- export declare const MPincode: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1902
+ export declare const MPincode: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1685
1903
  "update:modelValue": (value: string) => any;
1686
- }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
1904
+ }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1687
1905
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1688
1906
  }>, {
1689
1907
  length: 4 | 5 | 6;
1690
1908
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1691
1909
 
1692
- export declare const MQuantitySelector: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1910
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1693
1911
  "update:modelValue": (value: number) => any;
1694
- }, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{
1912
+ }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
1695
1913
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1696
1914
  }>, {
1697
1915
  size: "s" | "m";
@@ -1704,35 +1922,35 @@ incrementlabel: string;
1704
1922
  decrementLabel: string;
1705
1923
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1706
1924
 
1707
- export declare const MRadio: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1925
+ export declare const MRadio: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1708
1926
  "update:modelValue": (value: boolean) => any;
1709
- }, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{
1927
+ }, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{
1710
1928
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1711
1929
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1712
1930
 
1713
- export declare const MRadioGroup: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1931
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1714
1932
  "update:modelValue": (value: string) => any;
1715
- }, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{
1933
+ }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
1716
1934
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
1717
1935
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1718
1936
 
1719
- export declare const MSelect: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1937
+ export declare const MSelect: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1720
1938
  "update:modelValue": (value: string | number) => any;
1721
- }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
1939
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
1722
1940
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1723
1941
  }>, {
1724
1942
  size: "s" | "m";
1725
1943
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSelectElement>;
1726
1944
 
1727
- export declare const MStatusBadge: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
1945
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
1728
1946
  status: "info" | "success" | "warning" | "error" | "neutral";
1729
1947
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1730
1948
 
1731
- export declare const MStatusNotification: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
1949
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
1732
1950
 
1733
- export declare const MTabs: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1951
+ export declare const MTabs: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1734
1952
  "update:modelValue": (value: number) => any;
1735
- }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
1953
+ }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
1736
1954
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
1737
1955
  }>, {
1738
1956
  modelValue: number;
@@ -1741,10 +1959,10 @@ divider: boolean;
1741
1959
  tab: HTMLButtonElement;
1742
1960
  }, HTMLElement>;
1743
1961
 
1744
- export declare const MTag: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1962
+ export declare const MTag: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1745
1963
  "update:modelValue": (value: boolean) => any;
1746
1964
  "remove-tag": (id: string) => any;
1747
- }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
1965
+ }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
1748
1966
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1749
1967
  "onRemove-tag"?: ((id: string) => any) | undefined;
1750
1968
  }>, {
@@ -1752,30 +1970,32 @@ type: "informative" | "interactive" | "contextualised" | "removable" | "selectab
1752
1970
  contextualisedNumber: number;
1753
1971
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
1754
1972
 
1755
- export declare const MTextArea: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1973
+ export declare const MTextArea: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1756
1974
  "update:modelValue": (value: string | number) => any;
1757
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
1975
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
1758
1976
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
1759
1977
  }>, {
1760
1978
  rows: number;
1761
1979
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
1762
1980
 
1763
- export declare const MTextInput: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
1981
+ export declare const MTextInput: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
1982
+
1983
+ export declare const MToaster: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
1764
1984
 
1765
- export declare const MToggle: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1985
+ export declare const MToggle: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1766
1986
  "update:modelValue": (value: boolean) => any;
1767
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
1987
+ }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
1768
1988
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
1769
1989
  }>, {
1770
1990
  size: "s" | "m";
1771
1991
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1772
1992
 
1773
- export declare const MToggleGroup: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1993
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
1774
1994
  "update:modelValue": (value: string[]) => any;
1775
- }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
1995
+ }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
1776
1996
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
1777
1997
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
1778
1998
 
1779
- export declare const MTooltip: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
1999
+ export declare const MTooltip: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
1780
2000
 
1781
2001
  export { }