@mozaic-ds/vue 2.13.0 → 2.14.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 (90) hide show
  1. package/dist/mozaic-vue.css +1 -1
  2. package/dist/mozaic-vue.d.ts +1088 -378
  3. package/dist/mozaic-vue.js +2662 -1854
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +5 -5
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +4 -4
  8. package/src/components/actionlistbox/MActionListbox.spec.ts +53 -59
  9. package/src/components/actionlistbox/MActionListbox.stories.ts +22 -1
  10. package/src/components/actionlistbox/MActionListbox.vue +91 -28
  11. package/src/components/actionlistbox/README.md +15 -0
  12. package/src/components/breadcrumb/MBreadcrumb.vue +5 -0
  13. package/src/components/button/README.md +4 -0
  14. package/src/components/checkbox/README.md +2 -0
  15. package/src/components/divider/README.md +4 -0
  16. package/src/components/iconbutton/MIconButton.stories.ts +12 -0
  17. package/src/components/iconbutton/MIconButton.vue +13 -1
  18. package/src/components/iconbutton/README.md +27 -0
  19. package/src/components/loader/README.md +2 -0
  20. package/src/components/navigationindicator/MNavigationIndicator.spec.ts +152 -0
  21. package/src/components/navigationindicator/MNavigationIndicator.stories.ts +41 -0
  22. package/src/components/navigationindicator/MNavigationIndicator.vue +132 -0
  23. package/src/components/navigationindicator/README.md +37 -0
  24. package/src/components/pageheader/MPageHeader.spec.ts +142 -0
  25. package/src/components/pageheader/MPageHeader.stories.ts +125 -0
  26. package/src/components/pageheader/MPageHeader.vue +133 -0
  27. package/src/components/pageheader/README.md +46 -0
  28. package/src/components/popover/MPopover.spec.ts +106 -0
  29. package/src/components/popover/MPopover.stories.ts +126 -0
  30. package/src/components/popover/MPopover.vue +131 -0
  31. package/src/components/popover/README.md +42 -0
  32. package/src/components/radio/README.md +2 -0
  33. package/src/components/select/MSelect.spec.ts +2 -1
  34. package/src/components/select/MSelect.vue +30 -25
  35. package/src/components/sidebar/MSidebar.const.ts +6 -0
  36. package/src/components/sidebar/MSidebar.spec.ts +110 -0
  37. package/src/components/sidebar/MSidebar.stories.ts +108 -0
  38. package/src/components/sidebar/MSidebar.vue +124 -0
  39. package/src/components/sidebar/README.md +59 -0
  40. package/src/components/sidebar/stories/DefaultCase.stories.vue +120 -0
  41. package/src/components/sidebar/stories/README.md +27 -0
  42. package/src/components/sidebar/stories/WithExpandOnly.stories.vue +112 -0
  43. package/src/components/sidebar/stories/WithProfileInfoOnly.stories.vue +119 -0
  44. package/src/components/sidebar/stories/WithSingleLevel.stories.vue +98 -0
  45. package/src/components/sidebar/use-floating-item.composable.ts +135 -0
  46. package/src/components/sidebar/use-floating-item.spec.ts +251 -0
  47. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.spec.ts +151 -0
  48. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.vue +113 -0
  49. package/src/components/sidebarexpandableitem/README.md +36 -0
  50. package/src/components/sidebarfooter/MSidebarFooter.spec.ts +276 -0
  51. package/src/components/sidebarfooter/MSidebarFooter.vue +201 -0
  52. package/src/components/sidebarfooter/README.md +52 -0
  53. package/src/components/sidebarfooter/_MSidebarFooterMenu.vue +64 -0
  54. package/src/components/sidebarheader/MSidebarHeader.vue +36 -0
  55. package/src/components/sidebarheader/README.md +31 -0
  56. package/src/components/sidebarnavitem/MSidebarNavItem.spec.ts +127 -0
  57. package/src/components/sidebarnavitem/MSidebarNavItem.vue +113 -0
  58. package/src/components/sidebarnavitem/README.md +56 -0
  59. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.spec.ts +59 -0
  60. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.vue +52 -0
  61. package/src/components/sidebarshortcutitem/README.md +32 -0
  62. package/src/components/sidebarshortcuts/MSidebarShortcuts.spec.ts +87 -0
  63. package/src/components/sidebarshortcuts/MSidebarShortcuts.vue +101 -0
  64. package/src/components/sidebarshortcuts/README.md +36 -0
  65. package/src/components/statusbadge/README.md +12 -0
  66. package/src/components/textinput/MTextInput.stories.ts +13 -1
  67. package/src/components/textinput/MTextInput.vue +12 -0
  68. package/src/components/textinput/README.md +3 -1
  69. package/src/components/tile/MTile.spec.ts +61 -0
  70. package/src/components/tile/MTile.stories.ts +102 -0
  71. package/src/components/tile/MTile.vue +68 -0
  72. package/src/components/tile/README.md +19 -0
  73. package/src/components/tileclickable/MTileClickable.spec.ts +130 -0
  74. package/src/components/tileclickable/MTileClickable.stories.ts +60 -0
  75. package/src/components/tileclickable/MTileClickable.vue +106 -0
  76. package/src/components/tileclickable/README.md +30 -0
  77. package/src/components/tileexpandable/MTileExpandable.spec.ts +121 -0
  78. package/src/components/tileexpandable/MTileExpandable.stories.ts +50 -0
  79. package/src/components/tileexpandable/MTileExpandable.vue +131 -0
  80. package/src/components/tileexpandable/README.md +36 -0
  81. package/src/components/tileselectable/MTileSelectable.spec.ts +177 -0
  82. package/src/components/tileselectable/MTileSelectable.stories.ts +55 -0
  83. package/src/components/tileselectable/MTileSelectable.vue +142 -0
  84. package/src/components/tileselectable/README.md +44 -0
  85. package/src/components/toaster/README.md +1 -1
  86. package/src/components/tooltip/MTooltip.vue +5 -0
  87. package/src/components/tooltip/README.md +16 -1
  88. package/src/main.ts +12 -2
  89. package/src/utils/use-is-mobile.composable.ts +20 -0
  90. package/src/utils/use-is-mobile.spec.ts +70 -0
@@ -31,11 +31,29 @@ appearance: "standard" | "ghost";
31
31
  behavior: "multiple" | "single";
32
32
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
33
33
 
34
- declare const __VLS_component_10: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
34
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
35
+ appearance: "primary" | "secondary" | "tertiary" | "inverse";
36
+ size: "s" | "m" | "l";
37
+ orientation: "vertical" | "horizontal";
38
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
39
+
40
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
41
+ back: () => any;
42
+ "update:open": (value: boolean) => any;
43
+ }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
44
+ onBack?: (() => any) | undefined;
45
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
46
+ }>, {
47
+ scroll: boolean;
48
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
49
+ titleRef: HTMLHeadingElement;
50
+ }, any>;
35
51
 
36
- declare const __VLS_component_11: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
52
+ declare const __VLS_component_12: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
37
53
 
38
- declare const __VLS_component_12: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
54
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
55
+
56
+ declare const __VLS_component_14: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
39
57
  "update:modelValue": (v: NormalizedFile[]) => any;
40
58
  validation: (validationState: FilesValidationState) => any;
41
59
  }, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
@@ -43,48 +61,106 @@ validation: (validationState: FilesValidationState) => any;
43
61
  onValidation?: ((validationState: FilesValidationState) => any) | undefined;
44
62
  }>, {
45
63
  title: string;
64
+ subtitle: string;
46
65
  hasDragDrop: boolean;
47
66
  showFilesList: boolean;
48
- subtitle: string;
49
67
  uploadButtonLabel: string;
50
68
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
51
69
  fileInput: HTMLInputElement;
52
70
  }, HTMLDivElement>;
53
71
 
54
- declare const __VLS_component_13: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {
72
+ declare const __VLS_component_15: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
55
73
  appearance: "standard" | "accent" | "danger" | "inverse";
56
74
  type: "button" | "reset" | "submit";
57
75
  size: "s" | "m" | "l";
58
76
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
59
77
 
60
- declare const __VLS_component_14: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
78
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
61
79
  appearance: "secondary" | "accent" | "inverse" | "standard";
62
80
  size: "s" | "m";
63
81
  iconPosition: "left" | "right";
64
82
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
65
83
 
66
- declare const __VLS_component_15: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
84
+ declare const __VLS_component_17: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
67
85
  "update:open": (value: boolean) => any;
68
- }, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{
86
+ }, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{
69
87
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
70
88
  }>, {
71
89
  scroll: boolean;
72
90
  closable: boolean;
73
91
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
74
92
 
75
- declare const __VLS_component_16: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
93
+ declare const __VLS_component_18: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
94
+
95
+ declare const __VLS_component_19: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
96
+ back: () => any;
97
+ "toggle-menu": () => any;
98
+ }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
99
+ onBack?: (() => any) | undefined;
100
+ "onToggle-menu"?: (() => any) | undefined;
101
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
102
+
103
+ declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
104
+
105
+ declare const __VLS_component_20: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{}>, {
106
+ appearance: "standard" | "inverse";
107
+ size: "s" | "m" | "l";
108
+ position: "top" | "right" | "bottom" | "left";
109
+ closable: boolean;
110
+ pointer: boolean;
111
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
76
112
 
77
- declare const __VLS_component_17: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
113
+ declare const __VLS_component_21: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
114
+ "update:modelValue": (value: boolean) => any;
78
115
  close: () => any;
79
- }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
116
+ }, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
117
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
118
+ onClose?: (() => any) | undefined;
119
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
120
+
121
+ declare const __VLS_component_22: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
122
+ close: () => any;
123
+ }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
80
124
  onClose?: (() => any) | undefined;
81
125
  }>, {
82
126
  status: "info" | "success" | "warning" | "error";
83
127
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
84
128
 
85
- declare const __VLS_component_18: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
129
+ declare const __VLS_component_23: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {
130
+ appearance: "primary" | "secondary" | "inverse";
131
+ bordered: boolean;
132
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
133
+
134
+ declare const __VLS_component_24: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
135
+ action: () => any;
136
+ }, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{
137
+ onAction?: (() => any) | undefined;
138
+ }>, {
139
+ appearance: "primary" | "secondary" | "inverse";
140
+ iconPosition: "bottom" | "right";
141
+ bordered: boolean;
142
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
143
+
144
+ declare const __VLS_component_25: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{}>, {
145
+ appearance: "primary" | "secondary";
146
+ label: string;
147
+ bordered: boolean;
148
+ trigger: "container" | "icon" | "button";
149
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
150
+
151
+ declare const __VLS_component_26: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
152
+ "update:modelValue": (value: boolean) => any;
153
+ }, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{
154
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
155
+ }>, {
156
+ inputType: "checkbox" | "radio";
157
+ bordered: boolean;
158
+ inputPosition: "left" | "right";
159
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
160
+
161
+ declare const __VLS_component_27: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
86
162
  "update:modelValue": (value: string | number) => any;
87
- }, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
163
+ }, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{
88
164
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
89
165
  }>, {
90
166
  size: "s" | "m";
@@ -92,62 +168,54 @@ clearLabel: string;
92
168
  inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
93
169
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
94
170
 
95
- declare const __VLS_component_19: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
171
+ declare const __VLS_component_28: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
96
172
  "update:open": (value: boolean) => any;
97
- }, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{
173
+ }, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
98
174
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
99
175
  }>, {
100
176
  status: "info" | "success" | "warning" | "error";
101
177
  closable: boolean;
102
178
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
103
179
 
104
- declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
105
-
106
- declare const __VLS_component_20: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
180
+ declare const __VLS_component_29: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{}>, {
107
181
  position: "top" | "bottom" | "left" | "right";
108
182
  pointer: boolean;
109
183
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
110
184
 
111
- declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {
185
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
186
+
187
+ declare const __VLS_component_4: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
188
+ close: () => any;
189
+ }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
190
+ onClose?: (() => any) | undefined;
191
+ }>, {
192
+ position: "top" | "bottom" | "left" | "right";
193
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
194
+ popover: HTMLDivElement;
195
+ }, any>;
196
+
197
+ declare const __VLS_component_5: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {
112
198
  size: "s" | "m" | "l";
113
199
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
114
200
 
115
- declare const __VLS_component_4: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {
201
+ declare const __VLS_component_6: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
116
202
  appearance: "standard" | "accent" | "danger" | "inverse";
117
203
  type: "button" | "reset" | "submit";
118
204
  size: "s" | "m" | "l";
119
205
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
120
206
 
121
- declare const __VLS_component_5: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {
207
+ declare const __VLS_component_7: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
122
208
  appearance: "standard" | "accent" | "tips" | "inverse";
123
209
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
124
210
 
125
- declare const __VLS_component_6: DefineComponent<__VLS_Props_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_9> & Readonly<{}>, {
211
+ declare const __VLS_component_8: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{}>, {
126
212
  previousButtonAriaLabel: string;
127
213
  nextButtonAriaLabel: string;
128
214
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
129
215
  contentContainer: HTMLDivElement;
130
216
  }, HTMLDivElement>;
131
217
 
132
- declare const __VLS_component_7: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
133
-
134
- declare const __VLS_component_8: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {
135
- appearance: "primary" | "secondary" | "tertiary" | "inverse";
136
- orientation: "vertical" | "horizontal";
137
- size: "s" | "m" | "l";
138
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
139
-
140
- declare const __VLS_component_9: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
141
- back: () => any;
142
- "update:open": (value: boolean) => any;
143
- }, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
144
- onBack?: (() => any) | undefined;
145
- "onUpdate:open"?: ((value: boolean) => any) | undefined;
146
- }>, {
147
- scroll: boolean;
148
- }, {}, {}, {}, string, ComponentProvideOptions, false, {
149
- titleRef: HTMLHeadingElement;
150
- }, any>;
218
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
151
219
 
152
220
  /**
153
221
  * An Accordion List is a component that organizes content into collapsible sections, allowing users to show or hide related information within a vertically stacked layout. This structure helps optimize space and improve readability by displaying only relevant content when needed. Accordion Lists are commonly used in FAQs, settings menus, and structured content navigation to enhance user experience and reduce visual clutter.
@@ -168,9 +236,23 @@ declare type __VLS_Props = {
168
236
  };
169
237
 
170
238
  /**
171
- * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options.
239
+ * A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
172
240
  */
173
241
  declare type __VLS_Props_10 = {
242
+ /**
243
+ * Aria label for the previous button.
244
+ */
245
+ previousButtonAriaLabel?: string;
246
+ /**
247
+ * Aria label for the next button.
248
+ */
249
+ nextButtonAriaLabel?: string;
250
+ };
251
+
252
+ /**
253
+ * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options.
254
+ */
255
+ declare type __VLS_Props_11 = {
174
256
  /**
175
257
  * A unique identifier for the checkbox, used to associate the label with the form element.
176
258
  */
@@ -208,7 +290,7 @@ declare type __VLS_Props_10 = {
208
290
  /**
209
291
  * A checkbox is an interactive component used to select or deselect an option, typically within a list of choices. It allows users to make multiple selections independently and is often accompanied by a label for clarity. Checkboxes are commonly used in forms, filters, settings, and preference selections to provide a simple and intuitive way to enable or disable specific options. <br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
210
292
  */
211
- declare type __VLS_Props_11 = {
293
+ declare type __VLS_Props_12 = {
212
294
  /**
213
295
  * The name attribute for the checkbox element, typically used for form submission.
214
296
  */
@@ -235,7 +317,7 @@ declare type __VLS_Props_11 = {
235
317
  inline?: boolean;
236
318
  };
237
319
 
238
- declare type __VLS_Props_12 = {
320
+ declare type __VLS_Props_13 = {
239
321
  /**
240
322
  * Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
241
323
  */
@@ -253,7 +335,7 @@ declare type __VLS_Props_12 = {
253
335
  /**
254
336
  * 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.
255
337
  */
256
- declare type __VLS_Props_13 = {
338
+ declare type __VLS_Props_14 = {
257
339
  /**
258
340
  * Sets the size of the progress bar.
259
341
  */
@@ -279,7 +361,7 @@ declare type __VLS_Props_13 = {
279
361
  /**
280
362
  * The Container component is designed to wrap your page or section content, typically grids or other layout elements. By default, it centers the content with a maximum width to ensure consistent alignment and spacing.
281
363
  */
282
- declare type __VLS_Props_14 = {
364
+ declare type __VLS_Props_15 = {
283
365
  /**
284
366
  * If `true`, the container will take the full width.
285
367
  */
@@ -289,7 +371,7 @@ declare type __VLS_Props_14 = {
289
371
  /**
290
372
  * A date picker is an input component that allows users to select a date from a calendar interface or manually enter a date value. It enhances usability by providing structured date selection, reducing input errors, and ensuring format consistency. Date Pickers are commonly used in forms, booking systems, scheduling tools, and data filtering interfaces to facilitate accurate date entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
291
373
  */
292
- declare type __VLS_Props_15 = {
374
+ declare type __VLS_Props_16 = {
293
375
  /**
294
376
  * A unique identifier for the datepicker element, used to associate the label with the form element.
295
377
  */
@@ -331,7 +413,7 @@ declare type __VLS_Props_15 = {
331
413
  /**
332
414
  * A divider is a visual element used to separate content or sections within an interface. It helps improve readability and organization by creating clear distinctions between groups of information. Dividers can be thin lines, thick separators, or even styled with spacing variations, adapting to different layouts. They are commonly used in menus, lists, forms, and content blocks to create a structured visual hierarchy.
333
415
  */
334
- declare type __VLS_Props_16 = {
416
+ declare type __VLS_Props_17 = {
335
417
  /**
336
418
  * Determines the orientation of the divider.
337
419
  */
@@ -349,7 +431,7 @@ declare type __VLS_Props_16 = {
349
431
  /**
350
432
  * 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.
351
433
  */
352
- declare type __VLS_Props_17 = {
434
+ declare type __VLS_Props_18 = {
353
435
  /**
354
436
  * If `true`, display the drawer.
355
437
  */
@@ -387,7 +469,7 @@ declare type __VLS_Props_17 = {
387
469
  /**
388
470
  * A field label is a text element that identifies the purpose of an input field, providing users with clear guidance on what information to enter. It is typically placed above the input field and may include indicators for required or optional fields. Field Labels improve form usability, accessibility, and data entry accuracy by ensuring users understand the expected input.
389
471
  */
390
- declare type __VLS_Props_18 = {
472
+ declare type __VLS_Props_19 = {
391
473
  /**
392
474
  * A unique identifier for the form field, used to associate the label with the form element.
393
475
  */
@@ -430,10 +512,36 @@ declare type __VLS_Props_18 = {
430
512
  message?: string;
431
513
  };
432
514
 
515
+ declare type __VLS_Props_2 = {
516
+ /**
517
+ * A unique identifier for the accordion item.
518
+ * It links the trigger button (`aria-controls`) to its associated content (`aria-labelledby`),
519
+ * ensuring accessibility and tracking the open/closed state.
520
+ * If no ID is provided, a unique one is generated automatically.
521
+ */
522
+ id: string;
523
+ /**
524
+ * The main heading of the accordion item. This is the primary text visible to users in the collapsed state and acts as the trigger for expanding or collapsing the content.
525
+ */
526
+ title: string;
527
+ /**
528
+ * An optional secondary heading displayed below the title. It provides additional context or detail about the content of the accordion item.
529
+ */
530
+ subtitle?: string;
531
+ /**
532
+ * The main content of the accordion item. This is the information revealed when the accordion is expanded, typically containing text, HTML, or other elements.
533
+ */
534
+ content?: string;
535
+ /**
536
+ * Icon component to display before the item title.
537
+ */
538
+ icon?: Component;
539
+ };
540
+
433
541
  /**
434
542
  * 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.
435
543
  */
436
- declare type __VLS_Props_19 = {
544
+ declare type __VLS_Props_20 = {
437
545
  /**
438
546
  * A unique identifier for the form field, used to associate the label with the form element.
439
547
  */
@@ -464,20 +572,10 @@ declare type __VLS_Props_19 = {
464
572
  message?: string;
465
573
  };
466
574
 
467
- /**
468
- * An action bottom bar is a fixed element positioned at the bottom of the screen or section, providing persistent access to key actions. It is commonly used for confirmations, validations, warnings, or bulk actions in forms, editing workflows, or data management. This component ensures that primary and secondary actions remain visible and accessible, even when scrolling.
469
- */
470
- declare type __VLS_Props_2 = {
471
- /**
472
- * If `true`, adds a shadow to the action bottom bar.
473
- */
474
- shadow?: boolean;
475
- };
476
-
477
575
  /**
478
576
  * 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.
479
577
  */
480
- declare type __VLS_Props_20 = {
578
+ declare type __VLS_Props_21 = {
481
579
  /**
482
580
  * Label of the Flag.
483
581
  */
@@ -491,7 +589,7 @@ declare type __VLS_Props_20 = {
491
589
  /**
492
590
  * Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
493
591
  */
494
- declare type __VLS_Props_21 = {
592
+ declare type __VLS_Props_22 = {
495
593
  /**
496
594
  * Defines the visual style of the icon button.
497
595
  */
@@ -516,12 +614,46 @@ declare type __VLS_Props_21 = {
516
614
  * Specifies the button's HTML `type` attribute.
517
615
  */
518
616
  type?: 'button' | 'reset' | 'submit';
617
+ /**
618
+ * If `true`, a loading state is displayed.
619
+ */
620
+ isLoading?: boolean;
621
+ };
622
+
623
+ /**
624
+ * A KPI Item is used to display Key Performance Indicators (KPIs) within an interface, providing a quick and clear visualization of essential data. It often includes contextual elements such as labels, trends, or status indicators to help users interpret the information at a glance. KPI Items are commonly used in dashboards, reports, and analytics tools to highlight critical metrics and facilitate data-driven decision-making.
625
+ */
626
+ declare type __VLS_Props_23 = {
627
+ /**
628
+ * The current value of the kpi item.
629
+ */
630
+ value: string;
631
+ /**
632
+ * Defines the evolution of the kpi.
633
+ */
634
+ trend?: 'increasing' | 'decreasing' | 'stable';
635
+ /**
636
+ * Label of the kpi item.
637
+ */
638
+ label?: string;
639
+ /**
640
+ * Allows to define the kpi item status.
641
+ */
642
+ status?: 'info' | 'warning' | 'error' | 'success' | 'neutral';
643
+ /**
644
+ * The evolution information defining the kpi.
645
+ */
646
+ information?: string;
647
+ /**
648
+ * Allows to define the kpi item size.
649
+ */
650
+ size?: 's' | 'm' | 'l';
519
651
  };
520
652
 
521
653
  /**
522
654
  * 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.
523
655
  */
524
- declare type __VLS_Props_22 = {
656
+ declare type __VLS_Props_24 = {
525
657
  /**
526
658
  * Allows to define the progress bar size.
527
659
  */
@@ -535,7 +667,7 @@ declare type __VLS_Props_22 = {
535
667
  /**
536
668
  * 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.
537
669
  */
538
- declare type __VLS_Props_23 = {
670
+ declare type __VLS_Props_25 = {
539
671
  /**
540
672
  * The current value of the progress bar.
541
673
  */
@@ -545,7 +677,7 @@ declare type __VLS_Props_23 = {
545
677
  /**
546
678
  * A link is an interactive text element used to navigate between pages, sections, or external resources. It is typically underlined and styled to indicate its clickable nature. Links can be standalone or embedded within text, and they may include icons to reinforce their purpose. They are essential for navigation and content referencing in web and application interfaces.
547
679
  */
548
- declare type __VLS_Props_24 = {
680
+ declare type __VLS_Props_26 = {
549
681
  /**
550
682
  * Position of the icon relative to the text.
551
683
  */
@@ -579,7 +711,7 @@ declare type __VLS_Props_24 = {
579
711
  /**
580
712
  * A loader is a visual indicator used to inform users that a process is in progress, typically during data fetching, page loading, or background operations. It provides feedback that the system is working, helping to manage user expectations and reduce perceived wait time.
581
713
  */
582
- declare type __VLS_Props_25 = {
714
+ declare type __VLS_Props_27 = {
583
715
  /**
584
716
  * Specifies the visual appearance of the loader.
585
717
  */
@@ -597,7 +729,7 @@ declare type __VLS_Props_25 = {
597
729
  /**
598
730
  * 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.
599
731
  */
600
- declare type __VLS_Props_26 = {
732
+ declare type __VLS_Props_28 = {
601
733
  /**
602
734
  * Controls the visibility of the loading overlay.
603
735
  */
@@ -611,7 +743,7 @@ declare type __VLS_Props_26 = {
611
743
  /**
612
744
  * 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.
613
745
  */
614
- declare type __VLS_Props_27 = {
746
+ declare type __VLS_Props_29 = {
615
747
  /**
616
748
  * if `true`, display the modal.
617
749
  */
@@ -638,10 +770,46 @@ declare type __VLS_Props_27 = {
638
770
  closeOnOverlay?: boolean;
639
771
  };
640
772
 
773
+ /**
774
+ * An action bottom bar is a fixed element positioned at the bottom of the screen or section, providing persistent access to key actions. It is commonly used for confirmations, validations, warnings, or bulk actions in forms, editing workflows, or data management. This component ensures that primary and secondary actions remain visible and accessible, even when scrolling.
775
+ */
776
+ declare type __VLS_Props_3 = {
777
+ /**
778
+ * If `true`, adds a shadow to the action bottom bar.
779
+ */
780
+ shadow?: boolean;
781
+ };
782
+
783
+ /**
784
+ * A navigation indicator visually represents the current position within a sequence or step-based process, helping users track progress or navigate through a series of items. It is commonly used in carousels, onboarding flows, or media players. Navigation indicators can be interactive, allowing users to jump between steps, or passive, simply showing progress.
785
+ */
786
+ declare type __VLS_Props_30 = {
787
+ /**
788
+ * The total number of steps to display.
789
+ */
790
+ steps: number;
791
+ /**
792
+ * The index of the currently active step (zero-based).
793
+ */
794
+ modelValue: number;
795
+ /**
796
+ * The current action state of the button. Can be "pause" to show the pause icon or "resume" to show the play icon.
797
+ */
798
+ action?: 'pause' | 'resume';
799
+ /**
800
+ * The text label displayed in the Resume or Pause button.
801
+ */
802
+ label?: string;
803
+ /**
804
+ * If `true`, hides the Resume or Pause button next to the steps.
805
+ */
806
+ player?: boolean;
807
+ };
808
+
641
809
  /**
642
810
  * A Number Badge represents a numeric count, often used to indicate notifications, updates, or items requiring attention. Its distinct appearance makes it easy to spot changes at a glance, ensuring users stay informed without breaking their workflow. Badges are commonly attached to icons, buttons, or tabs to provide contextual awareness.
643
811
  */
644
- declare type __VLS_Props_28 = {
812
+ declare type __VLS_Props_31 = {
645
813
  /**
646
814
  * Content of the badge.
647
815
  */
@@ -659,7 +827,7 @@ declare type __VLS_Props_28 = {
659
827
  /**
660
828
  * An overlay is a semi-transparent layer that appears on top of the main content, typically used to dim the background and focus user attention on a specific element. It is often combined with modals, popovers, or loading states to create a visual separation between the foreground and background. Overlays help prevent unintended interactions while keeping the primary content accessible.
661
829
  */
662
- declare type __VLS_Props_29 = {
830
+ declare type __VLS_Props_32 = {
663
831
  /**
664
832
  * Controls the visibility of the overlay.
665
833
  */
@@ -671,19 +839,39 @@ declare type __VLS_Props_29 = {
671
839
  };
672
840
 
673
841
  /**
674
- * An avatar is a graphical representation of a user, entity, or group, commonly displayed as an image, initials, or an icon. It helps identify individuals or accounts in profiles, comments, chat interfaces, and user lists. Avatars can be customized with different styles, sizes, and fallback options (such as initials or placeholders) to ensure consistency and recognition across interfaces. When multiple users are represented, Avatar groups provide a compact way to display them collectively.
842
+ * The Page Header is a fundamental component that structures the top part of an interface, serving as a cognitive anchor point for users. It establishes page context, facilitates navigation, and provides the main actions available within the current scope.
675
843
  */
676
- declare type __VLS_Props_3 = {
844
+ declare type __VLS_Props_33 = {
677
845
  /**
678
- * Allows to define the avatar size.
846
+ * Main title displayed in the page header.
679
847
  */
680
- size?: 's' | 'm' | 'l';
848
+ title: string;
849
+ /**
850
+ * Enables a drop shadow under the page header.
851
+ */
852
+ shadow?: boolean;
853
+ /**
854
+ * Displays a back icon button in the header.
855
+ */
856
+ backButton?: boolean;
857
+ /**
858
+ * Component status.
859
+ */
860
+ status?: 'info' | 'success' | 'warning' | 'error' | 'neutral';
861
+ /**
862
+ * Label text displayed inside the status badge.
863
+ */
864
+ statusLabel?: string;
865
+ /**
866
+ * Additional information text shown below the title.
867
+ */
868
+ extraInfo?: string;
681
869
  };
682
870
 
683
871
  /**
684
872
  * 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.
685
873
  */
686
- declare type __VLS_Props_30 = {
874
+ declare type __VLS_Props_34 = {
687
875
  /**
688
876
  * A unique identifier for the pagination.
689
877
  */
@@ -713,7 +901,7 @@ declare type __VLS_Props_30 = {
713
901
  /**
714
902
  * 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.
715
903
  */
716
- declare type __VLS_Props_31 = {
904
+ declare type __VLS_Props_35 = {
717
905
  /**
718
906
  * A unique identifier for the password input element, used to associate the label with the form element.
719
907
  */
@@ -762,7 +950,7 @@ declare type __VLS_Props_31 = {
762
950
  /**
763
951
  * A phone number input is a specialized input field designed to capture and validate phone numbers, ensuring correct formatting based on country-specific dialing codes. It often includes a country selector that automatically adjusts the international dialing code. This component improves user experience by standardizing phone number entries, reducing errors, and facilitating global compatibility. It is commonly used in registration forms, authentication flows, and contact information fields.
764
952
  */
765
- declare type __VLS_Props_32 = {
953
+ declare type __VLS_Props_36 = {
766
954
  /**
767
955
  * A unique identifier for the phone number input element, used to associate the label with the form element.
768
956
  */
@@ -816,7 +1004,7 @@ declare type __VLS_Props_32 = {
816
1004
  /**
817
1005
  * A pincode input is a specialized input field used to enter short numeric codes, such as verification codes, security PINs, or authentication tokens. It typically separates each digit into individual fields to improve readability and ease of entry. This component is commonly used in two-factor authentication (2FA), password recovery, and secure access flows, ensuring a structured and user-friendly experience.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
818
1006
  */
819
- declare type __VLS_Props_33 = {
1007
+ declare type __VLS_Props_37 = {
820
1008
  /**
821
1009
  * A unique identifier for the pincode element, used to associate the label with the form element.
822
1010
  */
@@ -848,37 +1036,72 @@ declare type __VLS_Props_33 = {
848
1036
  };
849
1037
 
850
1038
  /**
851
- * A quantity selector is an input component that allows users to increment or decrement a numeric value, typically using plus (+) and minus (−) buttons. It provides a simple and efficient way to adjust quantities without manual typing, ensuring controlled input. This component is commonly used in e-commerce, inventory management, and settings where users need to specify amounts.
1039
+ * A popover is a small overlay that appears above other content, typically triggered by a user interaction such as clicking or hovering over an element. It is used to display contextual information, additional actions, or interactive content without navigating away from the main interface. Popovers often include a title, description, and action buttons, and they automatically close when clicking outside or selecting an action.
852
1040
  */
853
- declare type __VLS_Props_34 = {
1041
+ declare type __VLS_Props_38 = {
854
1042
  /**
855
- * A unique identifier for the quantity selector element, used to associate the label with the form element.
1043
+ * Allows to define the popover appearance.
856
1044
  */
857
- id: string;
1045
+ appearance?: 'standard' | 'inverse';
858
1046
  /**
859
- * The name attribute for the quantity selector element, typically used for form submission.
1047
+ * Defines the preferred position of the popover relative to its activator.
860
1048
  */
861
- name?: string;
1049
+ position?: 'top' | 'right' | 'bottom' | 'left';
862
1050
  /**
863
- * The current value of the quantity selector field.
1051
+ * Controls the visibility of the popover pointer (arrow).
864
1052
  */
865
- modelValue?: number;
1053
+ pointer?: boolean;
866
1054
  /**
867
- * If `true`, applies an invalid state to the quantity selector.
1055
+ * Sets the overall size of the popover.
868
1056
  */
869
- isInvalid?: boolean;
1057
+ size?: 's' | 'm' | 'l';
870
1058
  /**
871
- * If `true`, disables the quantity selector, making it non-interactive.
1059
+ * Displays a close icon button inside the popover.
1060
+ * Clicking the button will close the popover.
872
1061
  */
873
- disabled?: boolean;
1062
+ closable?: boolean;
874
1063
  /**
875
- * Determines the size of the quantity selector.
1064
+ * Title displayed at the top of the popover.
876
1065
  */
877
- size?: 's' | 'm';
1066
+ title?: string;
878
1067
  /**
879
- * Minimum acceptable value for the quantity selector.
1068
+ * Supplementary text displayed below the title.
880
1069
  */
881
- min?: number;
1070
+ description?: string;
1071
+ };
1072
+
1073
+ /**
1074
+ * A quantity selector is an input component that allows users to increment or decrement a numeric value, typically using plus (+) and minus (−) buttons. It provides a simple and efficient way to adjust quantities without manual typing, ensuring controlled input. This component is commonly used in e-commerce, inventory management, and settings where users need to specify amounts.
1075
+ */
1076
+ declare type __VLS_Props_39 = {
1077
+ /**
1078
+ * A unique identifier for the quantity selector element, used to associate the label with the form element.
1079
+ */
1080
+ id: string;
1081
+ /**
1082
+ * The name attribute for the quantity selector element, typically used for form submission.
1083
+ */
1084
+ name?: string;
1085
+ /**
1086
+ * The current value of the quantity selector field.
1087
+ */
1088
+ modelValue?: number;
1089
+ /**
1090
+ * If `true`, applies an invalid state to the quantity selector.
1091
+ */
1092
+ isInvalid?: boolean;
1093
+ /**
1094
+ * If `true`, disables the quantity selector, making it non-interactive.
1095
+ */
1096
+ disabled?: boolean;
1097
+ /**
1098
+ * Determines the size of the quantity selector.
1099
+ */
1100
+ size?: 's' | 'm';
1101
+ /**
1102
+ * Minimum acceptable value for the quantity selector.
1103
+ */
1104
+ min?: number;
882
1105
  /**
883
1106
  * Maximum acceptable value for the quantity selector.
884
1107
  */
@@ -901,10 +1124,49 @@ declare type __VLS_Props_34 = {
901
1124
  decrementLabel?: string;
902
1125
  };
903
1126
 
1127
+ /**
1128
+ * An action list is a contextual menu that presents a list of available actions related to a specific element or interface area. It allows users to quickly access functions such as editing, sharing, deleting, or navigating to sub-actions. Action Lists are commonly triggered by buttons, icons (e.g., three-dot menus), or right-click interactions, ensuring a clean and efficient UI.
1129
+ */
1130
+ declare type __VLS_Props_4 = {
1131
+ /**
1132
+ * title displayed in mobile version.
1133
+ */
1134
+ title?: string;
1135
+ /**
1136
+ * Defines the position of the listbox relative to its trigger or container.
1137
+ */
1138
+ position?: 'top' | 'bottom' | 'left' | 'right';
1139
+ /**
1140
+ * An array of objects that allows you to provide all the data needed to generate the content for each item.
1141
+ */
1142
+ items: Array<{
1143
+ /**
1144
+ * The icon displayed for the item from Mozaic-icon-vue.
1145
+ */
1146
+ icon?: Component;
1147
+ /**
1148
+ * The label displayed for the item.
1149
+ */
1150
+ label: string;
1151
+ /**
1152
+ * If `true`, the item will be disabled.
1153
+ */
1154
+ disabled?: boolean;
1155
+ /**
1156
+ * Allows to define the item appearance.
1157
+ */
1158
+ appearance?: 'standard' | 'danger';
1159
+ /**
1160
+ * Add a divider on top of the item.
1161
+ */
1162
+ divider?: boolean;
1163
+ }>;
1164
+ };
1165
+
904
1166
  /**
905
1167
  * A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.
906
1168
  */
907
- declare type __VLS_Props_35 = {
1169
+ declare type __VLS_Props_40 = {
908
1170
  /**
909
1171
  * A unique identifier for the radio, used to associate the label with the form element.
910
1172
  */
@@ -934,7 +1196,7 @@ declare type __VLS_Props_35 = {
934
1196
  /**
935
1197
  * A radio button is a selection control that allows users to choose a single option from a list of mutually exclusive choices. Unlike checkboxes, only one option can be selected at a time within the same group. Radio Buttons are commonly used in forms, surveys, and settings where a single choice must be made.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#radio-group).
936
1198
  */
937
- declare type __VLS_Props_36 = {
1199
+ declare type __VLS_Props_41 = {
938
1200
  /**
939
1201
  * The name attribute for the radio element, typically used for form submission.
940
1202
  */
@@ -966,7 +1228,7 @@ declare type __VLS_Props_36 = {
966
1228
  /**
967
1229
  * A Segmented Control allows users to switch between multiple options or views within a single container. It provides a compact and efficient way to toggle between sections without requiring a dropdown or separate navigation. Segmented Controls are commonly used in filters, tabbed navigation, and content selection to enhance user interaction and accessibility.
968
1230
  */
969
- declare type __VLS_Props_37 = {
1231
+ declare type __VLS_Props_42 = {
970
1232
  /**
971
1233
  * The selected segment index, bound via v-model.
972
1234
  */
@@ -993,7 +1255,7 @@ declare type __VLS_Props_37 = {
993
1255
  /**
994
1256
  * A select component allows users to choose a single option from a predefined list within a native dropdown menu. It helps simplify input by displaying only relevant choices, reducing the need for manual text entry. Select components are commonly used in forms, settings, and filters where structured selection is required.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#select).
995
1257
  */
996
- declare type __VLS_Props_38 = {
1258
+ declare type __VLS_Props_43 = {
997
1259
  /**
998
1260
  * A unique identifier for the select, used to associate the label with the form element.
999
1261
  */
@@ -1038,10 +1300,20 @@ declare type __VLS_Props_38 = {
1038
1300
  readonly?: boolean;
1039
1301
  };
1040
1302
 
1303
+ /**
1304
+ * A sidebar is a vertical navigation component that provides quick access to key sections and functionalities within an application or website. It contains expandable menus, and shortcuts, allowing users to navigate efficiently while keeping the main content area uncluttered. Sidebars can be collapsible or persistent, adapting to different screen sizes and user preferences. They are commonly used in dashboards, content management systems, and productivity tools.
1305
+ */
1306
+ declare type __VLS_Props_44 = {
1307
+ /**
1308
+ * the state of the expanded sidebar, bound via v-model.
1309
+ */
1310
+ modelValue: boolean;
1311
+ };
1312
+
1041
1313
  /**
1042
1314
  * A Star rating visually represents a score or evaluation and can be used to display a rating or allow users to rate an item, such as a product or service. It serves two main purposes: collecting user feedback by enabling individuals to express their experience and providing social proof by displaying ratings from other users to assist decision-making. Rating Stars are commonly found in e-commerce, review systems, and feedback interfaces, offering a quick and intuitive way to assess quality or satisfaction.
1043
1315
  */
1044
- declare type __VLS_Props_39 = {
1316
+ declare type __VLS_Props_45 = {
1045
1317
  /**
1046
1318
  * Determines whether the rating is interactive or read-only.
1047
1319
  * When true, all user interactions (click, hover, keyboard) are disabled.
@@ -1085,45 +1357,10 @@ declare type __VLS_Props_39 = {
1085
1357
  router?: boolean;
1086
1358
  };
1087
1359
 
1088
- /**
1089
- * An action list is a contextual menu that presents a list of available actions related to a specific element or interface area. It allows users to quickly access functions such as editing, sharing, deleting, or navigating to sub-actions. Action Lists are commonly triggered by buttons, icons (e.g., three-dot menus), or right-click interactions, ensuring a clean and efficient UI.
1090
- */
1091
- declare type __VLS_Props_4 = {
1092
- /**
1093
- * title displayed in mobile version.
1094
- */
1095
- title?: string;
1096
- /**
1097
- * An array of objects that allows you to provide all the data needed to generate the content for each item.
1098
- */
1099
- items: Array<{
1100
- /**
1101
- * The icon displayed for the item from Mozaic-icon-vue.
1102
- */
1103
- icon?: Component;
1104
- /**
1105
- * The label displayed for the item.
1106
- */
1107
- label: string;
1108
- /**
1109
- * If `true`, the item will be disabled.
1110
- */
1111
- disabled?: boolean;
1112
- /**
1113
- * Allows to define the item appearance.
1114
- */
1115
- appearance?: 'standard' | 'danger';
1116
- /**
1117
- * Add a divider on top of the item.
1118
- */
1119
- divider?: boolean;
1120
- }>;
1121
- };
1122
-
1123
1360
  /**
1124
1361
  * A Status Badge is used to indicate the current status of an element, providing a clear and concise visual cue. The status can change dynamically based on updates, events, or conditions within the system. Status Badges help users quickly identify the state of an item, such as an order status, system health, or process completion. They are often color-coded to enhance readability and recognition.
1125
1362
  */
1126
- declare type __VLS_Props_40 = {
1363
+ declare type __VLS_Props_46 = {
1127
1364
  /**
1128
1365
  * Content of the status badge
1129
1366
  */
@@ -1137,7 +1374,7 @@ declare type __VLS_Props_40 = {
1137
1374
  /**
1138
1375
  * A Status dot is a small visual indicator used to represent the state or condition of an element. It is often color-coded to convey different statuses at a glance, such as availability, activity, or urgency. Status Dots are commonly found in user presence indicators, system statuses, or process tracking to provide quick, unobtrusive feedback.
1139
1376
  */
1140
- declare type __VLS_Props_41 = {
1377
+ declare type __VLS_Props_47 = {
1141
1378
  /**
1142
1379
  * Allows to define the status dot type.
1143
1380
  */
@@ -1151,7 +1388,7 @@ declare type __VLS_Props_41 = {
1151
1388
  /**
1152
1389
  * A Status Message is a compact component that combines an icon and concise text to communicate system states or user feedback in limited interface space. The icon and message work together as a unified structure to provide clear, immediate understanding of the current status. Status Messages are designed for contexts where space is constrained but clear communication is essential, offering quick recognition through color-coded icons paired with brief, actionable text.
1153
1390
  */
1154
- declare type __VLS_Props_42 = {
1391
+ declare type __VLS_Props_48 = {
1155
1392
  /**
1156
1393
  * Allows to define the status message style.
1157
1394
  */
@@ -1165,7 +1402,7 @@ declare type __VLS_Props_42 = {
1165
1402
  /**
1166
1403
  * 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.
1167
1404
  */
1168
- declare type __VLS_Props_43 = {
1405
+ declare type __VLS_Props_49 = {
1169
1406
  /**
1170
1407
  * Title of the status notification.
1171
1408
  */
@@ -1185,31 +1422,19 @@ declare type __VLS_Props_43 = {
1185
1422
  };
1186
1423
 
1187
1424
  /**
1188
- * A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
1425
+ * 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.
1189
1426
  */
1190
- declare type __VLS_Props_44 = {
1191
- /**
1192
- * Current step of the stepper compact.
1193
- */
1194
- value?: number;
1195
- /**
1196
- * Maximum number of steps for the stepper compact.
1197
- */
1198
- maxSteps?: number;
1199
- /**
1200
- * Label of the stepper compact.
1201
- */
1202
- label: string;
1427
+ declare type __VLS_Props_5 = {
1203
1428
  /**
1204
- * Description displayed below the label of the stepper compact.
1429
+ * Allows to define the avatar size.
1205
1430
  */
1206
- description?: string;
1431
+ size?: 's' | 'm' | 'l';
1207
1432
  };
1208
1433
 
1209
1434
  /**
1210
1435
  * A stepper bottom bar is a persistent navigation component used to guide users through a multi-step process. It typically includes “Previous” and “Next” buttons, along with optional actions such as “Cancel” or “Validate”, ensuring a structured flow. This component is commonly used in forms, onboarding sequences, and checkout processes, improving usability by keeping navigation actions always accessible.
1211
1436
  */
1212
- declare type __VLS_Props_45 = {
1437
+ declare type __VLS_Props_50 = {
1213
1438
  /**
1214
1439
  * Current step of the stepper compact.
1215
1440
  */
@@ -1243,7 +1468,29 @@ declare type __VLS_Props_45 = {
1243
1468
  /**
1244
1469
  * A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
1245
1470
  */
1246
- declare type __VLS_Props_46 = {
1471
+ declare type __VLS_Props_51 = {
1472
+ /**
1473
+ * Current step of the stepper compact.
1474
+ */
1475
+ value?: number;
1476
+ /**
1477
+ * Maximum number of steps for the stepper compact.
1478
+ */
1479
+ maxSteps?: number;
1480
+ /**
1481
+ * Label of the stepper compact.
1482
+ */
1483
+ label: string;
1484
+ /**
1485
+ * Description displayed below the label of the stepper compact.
1486
+ */
1487
+ description?: string;
1488
+ };
1489
+
1490
+ /**
1491
+ * A stepper is a navigation component that guides users through a sequence of steps in a structured process. It visually represents progress, completed steps, and upcoming steps, helping users understand their position within a workflow. Steppers are commonly used in multi-step forms, onboarding flows, checkout processes, and task completion sequences to improve clarity and reduce cognitive load.
1492
+ */
1493
+ declare type __VLS_Props_52 = {
1247
1494
  /**
1248
1495
  * Current step of the stepper compact.
1249
1496
  */
@@ -1266,7 +1513,7 @@ declare type __VLS_Props_46 = {
1266
1513
  /**
1267
1514
  * 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.
1268
1515
  */
1269
- declare type __VLS_Props_47 = {
1516
+ declare type __VLS_Props_53 = {
1270
1517
  /**
1271
1518
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
1272
1519
  */
@@ -1309,7 +1556,7 @@ declare type __VLS_Props_47 = {
1309
1556
  /**
1310
1557
  * 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).
1311
1558
  */
1312
- declare type __VLS_Props_48 = {
1559
+ declare type __VLS_Props_54 = {
1313
1560
  /**
1314
1561
  * Defines the behavior and layout of the tag.
1315
1562
  */
@@ -1348,10 +1595,108 @@ declare type __VLS_Props_48 = {
1348
1595
  removableLabel?: string;
1349
1596
  };
1350
1597
 
1598
+ /**
1599
+ * A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
1600
+ */
1601
+ declare type __VLS_Props_55 = {
1602
+ /**
1603
+ * Defines the visual style of the tile.
1604
+ */
1605
+ appearance?: 'primary' | 'secondary' | 'inverse';
1606
+ /**
1607
+ * Adds a border around the tile.
1608
+ */
1609
+ bordered?: boolean;
1610
+ };
1611
+
1612
+ /**
1613
+ * A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
1614
+ */
1615
+ declare type __VLS_Props_56 = {
1616
+ /**
1617
+ * Defines the visual style of the tile.
1618
+ */
1619
+ appearance?: 'primary' | 'secondary' | 'inverse';
1620
+ /**
1621
+ * Adds a border around the tile.
1622
+ */
1623
+ bordered?: boolean;
1624
+ /**
1625
+ * If set, the tile becomes an external link (`<a>`).
1626
+ * Used to navigate to a full URL.
1627
+ */
1628
+ href?: string;
1629
+ /**
1630
+ * If set, the tile becomes an internal link (Vue Router route).
1631
+ * Used for navigation within the app.
1632
+ */
1633
+ to?: string;
1634
+ /**
1635
+ * Where to open the link.
1636
+ */
1637
+ target?: '_self' | '_blank' | '_parent' | '_top';
1638
+ /**
1639
+ * Position of the icon relative to the content.
1640
+ */
1641
+ iconPosition?: 'bottom' | 'right';
1642
+ };
1643
+
1644
+ /**
1645
+ * A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
1646
+ */
1647
+ declare type __VLS_Props_57 = {
1648
+ /**
1649
+ * Defines the visual style of the tile.
1650
+ */
1651
+ appearance?: 'primary' | 'secondary';
1652
+ /**
1653
+ * Adds a border around the tile.
1654
+ */
1655
+ bordered?: boolean;
1656
+ /**
1657
+ * Determines how the tile expansion is triggered.
1658
+ */
1659
+ trigger?: 'container' | 'icon' | 'button';
1660
+ /**
1661
+ * Label for the action button (only used when trigger is 'button').
1662
+ */
1663
+ label?: string;
1664
+ };
1665
+
1666
+ /**
1667
+ * A tile is a container component used to group related content and actions within a structured layout. It provides a clickable or static area that can display text, images, icons, or interactive elements. Tiles are commonly used to present key information, navigate to detailed views, or trigger specific actions in dashboards, cards, and grid-based layouts. Their adaptable design allows them to accommodate various content types while maintaining a consistent and organized interface.
1668
+ */
1669
+ declare type __VLS_Props_58 = {
1670
+ /**
1671
+ * The current value of the tile (selected or not).
1672
+ */
1673
+ modelValue: boolean;
1674
+ /**
1675
+ * Adds a border around the tile.
1676
+ */
1677
+ bordered?: boolean;
1678
+ /**
1679
+ * Type of input used for selection.
1680
+ */
1681
+ inputType?: 'checkbox' | 'radio';
1682
+ /**
1683
+ * Position of the input relative to the tile content.
1684
+ */
1685
+ inputPosition?: 'left' | 'right';
1686
+ /**
1687
+ * Vertical alignment of the input.
1688
+ */
1689
+ centered?: boolean;
1690
+ /**
1691
+ * If `true`, hides the input and makes the whole tile selectable.
1692
+ */
1693
+ hideInput?: boolean;
1694
+ };
1695
+
1351
1696
  /**
1352
1697
  * A text area is an input designed for multi-line text entry, allowing users to input longer content compared to a standard text input. It is commonly used for comments, feedback, descriptions, and messaging. Text areas can be resizable or fixed in height, depending on the context, and often include placeholder text, character limits, and validation messages to guide users.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#textarea).
1353
1698
  */
1354
- declare type __VLS_Props_49 = {
1699
+ declare type __VLS_Props_59 = {
1355
1700
  /**
1356
1701
  * A unique identifier for the textarea, used to associate the label with the form element.
1357
1702
  */
@@ -1397,7 +1742,7 @@ declare type __VLS_Props_49 = {
1397
1742
  /**
1398
1743
  * A breadcrumb is a navigation help that displays the hierarchical path of the current page within a website or application. It helps users understand their location and allows them to navigate back to previous levels easily. Breadcrumbs improve usability and accessibility, especially in multi-level websites, dashboards, and e-commerce platforms.
1399
1744
  */
1400
- declare type __VLS_Props_5 = {
1745
+ declare type __VLS_Props_6 = {
1401
1746
  /**
1402
1747
  * Allows to define the breadcrumb appearance.
1403
1748
  */
@@ -1424,7 +1769,7 @@ declare type __VLS_Props_5 = {
1424
1769
  /**
1425
1770
  * A text input is a single-line input that allows users to enter and edit short text-based content. It is commonly used for names, email addresses, search queries, and form entries. Text Inputs often include placeholders, validation rules, and assistive text to guide users and ensure accurate data entry.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field section](/docs/form-elements-field--docs#input).
1426
1771
  */
1427
- declare type __VLS_Props_50 = {
1772
+ declare type __VLS_Props_60 = {
1428
1773
  /**
1429
1774
  * A unique identifier for the input element, used to associate the label with the form element.
1430
1775
  */
@@ -1469,12 +1814,20 @@ declare type __VLS_Props_50 = {
1469
1814
  * The label text for the clear button.
1470
1815
  */
1471
1816
  clearLabel?: string;
1817
+ /**
1818
+ * Displays additional text inside the component, before the input.
1819
+ */
1820
+ prefix?: string;
1821
+ /**
1822
+ * Displays additional text inside the component, after the input.
1823
+ */
1824
+ suffix?: string;
1472
1825
  };
1473
1826
 
1474
1827
  /**
1475
1828
  * 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.
1476
1829
  */
1477
- declare type __VLS_Props_51 = {
1830
+ declare type __VLS_Props_61 = {
1478
1831
  /**
1479
1832
  * If `true`, display the Toaster.
1480
1833
  */
@@ -1508,7 +1861,7 @@ declare type __VLS_Props_51 = {
1508
1861
  /**
1509
1862
  * A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.
1510
1863
  */
1511
- declare type __VLS_Props_52 = {
1864
+ declare type __VLS_Props_62 = {
1512
1865
  /**
1513
1866
  * A unique identifier for the toggle, used to associate the label with the form element.
1514
1867
  */
@@ -1538,7 +1891,7 @@ declare type __VLS_Props_52 = {
1538
1891
  /**
1539
1892
  * A toggle is a switch component that allows users to enable or disable a setting, representing a binary state such as on/off or active/inactive. It provides a quick and intuitive way to control preferences or system settings. Toggles are commonly used in settings menus, dark mode switches, and feature activations, offering an alternative to checkboxes for immediate visual feedback.<br><br> To put a label, requierement text, help text or to apply a valid or invalid message, the examples are available in the [Field Group section](/docs/form-elements-field-group--docs#toggle-group).
1540
1893
  */
1541
- declare type __VLS_Props_53 = {
1894
+ declare type __VLS_Props_63 = {
1542
1895
  /**
1543
1896
  * The name attribute for the toggle element, typically used for form submission.
1544
1897
  */
@@ -1567,7 +1920,7 @@ declare type __VLS_Props_53 = {
1567
1920
  /**
1568
1921
  * 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.
1569
1922
  */
1570
- declare type __VLS_Props_54 = {
1923
+ declare type __VLS_Props_64 = {
1571
1924
  /**
1572
1925
  * A unique identifier for the tooltip, used to describe the tooltip.
1573
1926
  */
@@ -1584,9 +1937,13 @@ declare type __VLS_Props_54 = {
1584
1937
  * If `true`, the tooltip display a pointer.
1585
1938
  */
1586
1939
  pointer?: boolean;
1940
+ /**
1941
+ * Standalone tooltip
1942
+ */
1943
+ standalone?: boolean;
1587
1944
  };
1588
1945
 
1589
- declare type __VLS_Props_6 = {
1946
+ declare type __VLS_Props_7 = {
1590
1947
  /**
1591
1948
  * Specifies the key of the currently selected menu item. It allows the component to highlight or style the corresponding item to indicate it is selected or currently in use.
1592
1949
  */
@@ -1604,7 +1961,7 @@ declare type __VLS_Props_6 = {
1604
1961
  /**
1605
1962
  * Buttons are key interactive elements used to perform actions and can be used as standalone element, or as part of another component. Their appearance depends on the type of action required from the user and the context in which they are used.
1606
1963
  */
1607
- declare type __VLS_Props_7 = {
1964
+ declare type __VLS_Props_8 = {
1608
1965
  /**
1609
1966
  * Defines the visual style of the button.
1610
1967
  */
@@ -1642,7 +1999,7 @@ declare type __VLS_Props_7 = {
1642
1999
  /**
1643
2000
  * 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.
1644
2001
  */
1645
- declare type __VLS_Props_8 = {
2002
+ declare type __VLS_Props_9 = {
1646
2003
  /**
1647
2004
  * Title of the callout.
1648
2005
  */
@@ -1657,23 +2014,9 @@ declare type __VLS_Props_8 = {
1657
2014
  appearance?: 'standard' | 'accent' | 'tips' | 'inverse';
1658
2015
  };
1659
2016
 
1660
- /**
1661
- * A Carousel allows users to browse through multiple items within a horizontal container, using swipe gestures on mobile or navigation controls on desktop. It is primarily used to showcase products, promotions, or visual content, offering an engaging way to explore information in a condensed and interactive format. Carousels help optimize space while keeping content visually appealing and easily accessible.
1662
- */
1663
- declare type __VLS_Props_9 = {
1664
- /**
1665
- * Aria label for the previous button.
1666
- */
1667
- previousButtonAriaLabel?: string;
1668
- /**
1669
- * Aria label for the next button.
1670
- */
1671
- nextButtonAriaLabel?: string;
1672
- };
1673
-
1674
2017
  declare type __VLS_PublicProps = {
1675
2018
  modelValue: number;
1676
- } & __VLS_Props_39;
2019
+ } & __VLS_Props_45;
1677
2020
 
1678
2021
  declare function __VLS_template(): {
1679
2022
  attrs: Partial<{}>;
@@ -1693,6 +2036,50 @@ declare function __VLS_template(): {
1693
2036
  };
1694
2037
 
1695
2038
  declare function __VLS_template_10(): {
2039
+ attrs: Partial<{}>;
2040
+ slots: Readonly<{
2041
+ /**
2042
+ * Use this slot to insert the content who need a vertical divider
2043
+ */
2044
+ default?: VNode;
2045
+ }> & {
2046
+ /**
2047
+ * Use this slot to insert the content who need a vertical divider
2048
+ */
2049
+ default?: VNode;
2050
+ };
2051
+ refs: {};
2052
+ rootEl: HTMLDivElement;
2053
+ };
2054
+
2055
+ declare function __VLS_template_11(): {
2056
+ attrs: Partial<{}>;
2057
+ slots: Readonly<{
2058
+ /**
2059
+ * Use this slot to insert the content of the drawer
2060
+ */
2061
+ default?: VNode;
2062
+ /**
2063
+ * Use this slot to insert buttons in the footer
2064
+ */
2065
+ footer?: VNode;
2066
+ }> & {
2067
+ /**
2068
+ * Use this slot to insert the content of the drawer
2069
+ */
2070
+ default?: VNode;
2071
+ /**
2072
+ * Use this slot to insert buttons in the footer
2073
+ */
2074
+ footer?: VNode;
2075
+ };
2076
+ refs: {
2077
+ titleRef: HTMLHeadingElement;
2078
+ };
2079
+ rootEl: any;
2080
+ };
2081
+
2082
+ declare function __VLS_template_12(): {
1696
2083
  attrs: Partial<{}>;
1697
2084
  slots: Readonly<{
1698
2085
  /**
@@ -1709,7 +2096,7 @@ declare function __VLS_template_10(): {
1709
2096
  rootEl: HTMLDivElement;
1710
2097
  };
1711
2098
 
1712
- declare function __VLS_template_11(): {
2099
+ declare function __VLS_template_13(): {
1713
2100
  attrs: Partial<{}>;
1714
2101
  slots: Readonly<{
1715
2102
  /**
@@ -1726,7 +2113,7 @@ declare function __VLS_template_11(): {
1726
2113
  rootEl: HTMLFieldSetElement;
1727
2114
  };
1728
2115
 
1729
- declare function __VLS_template_12(): {
2116
+ declare function __VLS_template_14(): {
1730
2117
  attrs: Partial<{}>;
1731
2118
  slots: Readonly<{
1732
2119
  /**
@@ -1757,136 +2144,380 @@ declare function __VLS_template_12(): {
1757
2144
  */
1758
2145
  information: VNode;
1759
2146
  /**
1760
- * Slot for providing a custom error message display.
1761
- * Receives:
1762
- * `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
2147
+ * Slot for providing a custom error message display.
2148
+ * Receives:
2149
+ * `{ validationState: { size: boolean; extension: boolean; customValidation: boolean } }`
2150
+ */
2151
+ errorMessage: VNode;
2152
+ };
2153
+ refs: {
2154
+ fileInput: HTMLInputElement;
2155
+ };
2156
+ rootEl: HTMLDivElement;
2157
+ };
2158
+
2159
+ declare function __VLS_template_15(): {
2160
+ attrs: Partial<{}>;
2161
+ slots: Readonly<{
2162
+ /**
2163
+ * Use this slot to insert an icon for the Button.
2164
+ */
2165
+ icon: VNode;
2166
+ }> & {
2167
+ /**
2168
+ * Use this slot to insert an icon for the Button.
2169
+ */
2170
+ icon: VNode;
2171
+ };
2172
+ refs: {};
2173
+ rootEl: HTMLButtonElement;
2174
+ };
2175
+
2176
+ declare function __VLS_template_16(): {
2177
+ attrs: Partial<{}>;
2178
+ slots: Readonly<{
2179
+ /**
2180
+ * Use this slot to insert the textual content of the Link.
2181
+ */
2182
+ default: string;
2183
+ /**
2184
+ * Use this slot to insert an icon for the Link.
2185
+ */
2186
+ icon?: VNode;
2187
+ }> & {
2188
+ /**
2189
+ * Use this slot to insert the textual content of the Link.
2190
+ */
2191
+ default: string;
2192
+ /**
2193
+ * Use this slot to insert an icon for the Link.
2194
+ */
2195
+ icon?: VNode;
2196
+ };
2197
+ refs: {};
2198
+ rootEl: any;
2199
+ };
2200
+
2201
+ declare function __VLS_template_17(): {
2202
+ attrs: Partial<{}>;
2203
+ slots: Readonly<{
2204
+ /**
2205
+ * Use this slot to insert an icon next to the title of the modal.
2206
+ */
2207
+ icon?: VNode;
2208
+ /**
2209
+ * Use this slot to insert the content of the modal.
2210
+ */
2211
+ default?: VNode;
2212
+ /**
2213
+ * Use this slot to insert a link in the footer.
2214
+ */
2215
+ link?: VNode;
2216
+ /**
2217
+ * Use this slot to insert buttons in the footer.
2218
+ */
2219
+ footer?: VNode;
2220
+ }> & {
2221
+ /**
2222
+ * Use this slot to insert an icon next to the title of the modal.
2223
+ */
2224
+ icon?: VNode;
2225
+ /**
2226
+ * Use this slot to insert the content of the modal.
2227
+ */
2228
+ default?: VNode;
2229
+ /**
2230
+ * Use this slot to insert a link in the footer.
2231
+ */
2232
+ link?: VNode;
2233
+ /**
2234
+ * Use this slot to insert buttons in the footer.
2235
+ */
2236
+ footer?: VNode;
2237
+ };
2238
+ refs: {};
2239
+ rootEl: any;
2240
+ };
2241
+
2242
+ declare function __VLS_template_18(): {
2243
+ attrs: Partial<{}>;
2244
+ slots: Readonly<{
2245
+ /**
2246
+ * Use this slot to insert a centered content inside the overlay.
2247
+ */
2248
+ default?: VNode;
2249
+ }> & {
2250
+ /**
2251
+ * Use this slot to insert a centered content inside the overlay.
2252
+ */
2253
+ default?: VNode;
2254
+ };
2255
+ refs: {};
2256
+ rootEl: HTMLDivElement;
2257
+ };
2258
+
2259
+ declare function __VLS_template_19(): {
2260
+ attrs: Partial<{}>;
2261
+ slots: Readonly<{
2262
+ /**
2263
+ * Use this slot to insert action items in the top content.
2264
+ */
2265
+ actions?: VNode;
2266
+ /**
2267
+ * Use this slot to insert any content below the Page Header top content.
2268
+ */
2269
+ content?: VNode;
2270
+ /**
2271
+ * Use this slot to insert a tab in the header.
2272
+ */
2273
+ tabs?: VNode;
2274
+ }> & {
2275
+ /**
2276
+ * Use this slot to insert action items in the top content.
2277
+ */
2278
+ actions?: VNode;
2279
+ /**
2280
+ * Use this slot to insert any content below the Page Header top content.
2281
+ */
2282
+ content?: VNode;
2283
+ /**
2284
+ * Use this slot to insert a tab in the header.
2285
+ */
2286
+ tabs?: VNode;
2287
+ };
2288
+ refs: {};
2289
+ rootEl: HTMLDivElement;
2290
+ };
2291
+
2292
+ declare function __VLS_template_2(): {
2293
+ attrs: Partial<{}>;
2294
+ slots: Readonly<{
2295
+ /**
2296
+ * Use this slot to display custom content.
2297
+ */
2298
+ default: VNode;
2299
+ }> & {
2300
+ /**
2301
+ * Use this slot to display custom content.
2302
+ */
2303
+ default: VNode;
2304
+ };
2305
+ refs: {};
2306
+ rootEl: HTMLDivElement;
2307
+ };
2308
+
2309
+ declare function __VLS_template_20(): {
2310
+ attrs: Partial<{}>;
2311
+ slots: Readonly<{
2312
+ /**
2313
+ * Main content of the popover.
2314
+ */
2315
+ default?: () => VNode[];
2316
+ /**
2317
+ * Activator element that triggers the popover.
2318
+ * Must contain a single <button> or element with [type="button"] attribute.
2319
+ * Receives the popover `id` as a slot prop and must bind it
2320
+ * to the `popovertarget` attribute.
2321
+ */
2322
+ activator?: (props: {
2323
+ id: string;
2324
+ }) => VNode[];
2325
+ /**
2326
+ * Use this slot to insert buttons or link in the footer.
2327
+ */
2328
+ footer?: VNode;
2329
+ }> & {
2330
+ /**
2331
+ * Main content of the popover.
2332
+ */
2333
+ default?: () => VNode[];
2334
+ /**
2335
+ * Activator element that triggers the popover.
2336
+ * Must contain a single <button> or element with [type="button"] attribute.
2337
+ * Receives the popover `id` as a slot prop and must bind it
2338
+ * to the `popovertarget` attribute.
2339
+ */
2340
+ activator?: (props: {
2341
+ id: string;
2342
+ }) => VNode[];
2343
+ /**
2344
+ * Use this slot to insert buttons or link in the footer.
2345
+ */
2346
+ footer?: VNode;
2347
+ };
2348
+ refs: {};
2349
+ rootEl: any;
2350
+ };
2351
+
2352
+ declare function __VLS_template_21(): {
2353
+ attrs: Partial<{}>;
2354
+ slots: Readonly<{
2355
+ /**
2356
+ * Slot for the sidebar header. Should contain an `MSidebarHeader` component.
2357
+ */
2358
+ header: VNode[];
2359
+ /**
2360
+ * Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
2361
+ * with one or more `MSidebarShortcutItem` components inside.
2362
+ */
2363
+ shortcuts: VNode[];
2364
+ /**
2365
+ * Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
2366
+ */
2367
+ nav: VNode[];
2368
+ /**
2369
+ * Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
2370
+ */
2371
+ footer: VNode[];
2372
+ }> & {
2373
+ /**
2374
+ * Slot for the sidebar header. Should contain an `MSidebarHeader` component.
2375
+ */
2376
+ header: VNode[];
2377
+ /**
2378
+ * Slot for sidebar shortcuts. Should contain an `MSidebarShortcuts` component
2379
+ * with one or more `MSidebarShortcutItem` components inside.
2380
+ */
2381
+ shortcuts: VNode[];
2382
+ /**
2383
+ * Slot for the main navigation items. Should contain one or more `MSidebarNavItem` components.
2384
+ */
2385
+ nav: VNode[];
2386
+ /**
2387
+ * Slot for the sidebar footer. Should contain an `MSidebarFooter` component.
1763
2388
  */
1764
- errorMessage: VNode;
2389
+ footer: VNode[];
1765
2390
  };
1766
- refs: {
1767
- fileInput: HTMLInputElement;
1768
- };
1769
- rootEl: HTMLDivElement;
2391
+ refs: {};
2392
+ rootEl: HTMLElement;
1770
2393
  };
1771
2394
 
1772
- declare function __VLS_template_13(): {
2395
+ declare function __VLS_template_22(): {
1773
2396
  attrs: Partial<{}>;
1774
2397
  slots: Readonly<{
1775
2398
  /**
1776
- * Use this slot to insert an icon for the Button.
2399
+ * Use this slot to insert a button or a link in the footer
1777
2400
  */
1778
- icon: VNode;
2401
+ footer?: VNode;
1779
2402
  }> & {
1780
2403
  /**
1781
- * Use this slot to insert an icon for the Button.
2404
+ * Use this slot to insert a button or a link in the footer
1782
2405
  */
1783
- icon: VNode;
2406
+ footer?: VNode;
1784
2407
  };
1785
2408
  refs: {};
1786
- rootEl: HTMLButtonElement;
2409
+ rootEl: HTMLElement;
1787
2410
  };
1788
2411
 
1789
- declare function __VLS_template_14(): {
2412
+ declare function __VLS_template_23(): {
1790
2413
  attrs: Partial<{}>;
1791
2414
  slots: Readonly<{
1792
2415
  /**
1793
- * Use this slot to insert the textual content of the Link.
2416
+ * Default slot for the main content of the tile.
1794
2417
  */
1795
- default: string;
2418
+ default?: VNode[];
1796
2419
  /**
1797
- * Use this slot to insert an icon for the Link.
2420
+ * Named slot for additional content shown below the main content.
1798
2421
  */
1799
- icon?: VNode;
2422
+ details?: VNode[];
2423
+ /**
2424
+ * Named slot for action element, such as a button or link.
2425
+ */
2426
+ action?: VNode[];
1800
2427
  }> & {
1801
2428
  /**
1802
- * Use this slot to insert the textual content of the Link.
2429
+ * Default slot for the main content of the tile.
1803
2430
  */
1804
- default: string;
2431
+ default?: VNode[];
1805
2432
  /**
1806
- * Use this slot to insert an icon for the Link.
2433
+ * Named slot for additional content shown below the main content.
1807
2434
  */
1808
- icon?: VNode;
2435
+ details?: VNode[];
2436
+ /**
2437
+ * Named slot for action element, such as a button or link.
2438
+ */
2439
+ action?: VNode[];
1809
2440
  };
1810
2441
  refs: {};
1811
- rootEl: any;
2442
+ rootEl: HTMLDivElement;
1812
2443
  };
1813
2444
 
1814
- declare function __VLS_template_15(): {
2445
+ declare function __VLS_template_24(): {
1815
2446
  attrs: Partial<{}>;
1816
2447
  slots: Readonly<{
1817
2448
  /**
1818
- * Use this slot to insert an icon next to the title of the modal.
1819
- */
1820
- icon?: VNode;
1821
- /**
1822
- * Use this slot to insert the content of the modal.
1823
- */
1824
- default?: VNode;
1825
- /**
1826
- * Use this slot to insert a link in the footer.
2449
+ * Default slot for the main content of the tile.
1827
2450
  */
1828
- link?: VNode;
2451
+ default?: VNode[];
1829
2452
  /**
1830
- * Use this slot to insert buttons in the footer.
2453
+ * Named slot for the action icon.
1831
2454
  */
1832
- footer?: VNode;
2455
+ icon?: VNode[];
1833
2456
  }> & {
1834
2457
  /**
1835
- * Use this slot to insert an icon next to the title of the modal.
1836
- */
1837
- icon?: VNode;
1838
- /**
1839
- * Use this slot to insert the content of the modal.
1840
- */
1841
- default?: VNode;
1842
- /**
1843
- * Use this slot to insert a link in the footer.
2458
+ * Default slot for the main content of the tile.
1844
2459
  */
1845
- link?: VNode;
2460
+ default?: VNode[];
1846
2461
  /**
1847
- * Use this slot to insert buttons in the footer.
2462
+ * Named slot for the action icon.
1848
2463
  */
1849
- footer?: VNode;
2464
+ icon?: VNode[];
1850
2465
  };
1851
2466
  refs: {};
1852
2467
  rootEl: any;
1853
2468
  };
1854
2469
 
1855
- declare function __VLS_template_16(): {
2470
+ declare function __VLS_template_25(): {
1856
2471
  attrs: Partial<{}>;
1857
2472
  slots: Readonly<{
1858
2473
  /**
1859
- * Use this slot to insert a centered content inside the overlay.
2474
+ * Default slot for the main content of the tile.
1860
2475
  */
1861
- default?: VNode;
2476
+ default?: VNode[];
2477
+ /**
2478
+ * Named slot for expandable content shown when the tile is opened.
2479
+ */
2480
+ details?: VNode[];
1862
2481
  }> & {
1863
2482
  /**
1864
- * Use this slot to insert a centered content inside the overlay.
2483
+ * Default slot for the main content of the tile.
1865
2484
  */
1866
- default?: VNode;
2485
+ default?: VNode[];
2486
+ /**
2487
+ * Named slot for expandable content shown when the tile is opened.
2488
+ */
2489
+ details?: VNode[];
1867
2490
  };
1868
2491
  refs: {};
1869
2492
  rootEl: HTMLDivElement;
1870
2493
  };
1871
2494
 
1872
- declare function __VLS_template_17(): {
2495
+ declare function __VLS_template_26(): {
1873
2496
  attrs: Partial<{}>;
1874
2497
  slots: Readonly<{
1875
2498
  /**
1876
- * Use this slot to insert a button or a link in the footer
2499
+ * Default slot for the main content of the tile.
1877
2500
  */
1878
- footer?: VNode;
2501
+ default?: VNode[];
2502
+ /**
2503
+ * Named slot for additional content shown below the main content.
2504
+ */
2505
+ details?: VNode[];
1879
2506
  }> & {
1880
2507
  /**
1881
- * Use this slot to insert a button or a link in the footer
2508
+ * Default slot for the main content of the tile.
1882
2509
  */
1883
- footer?: VNode;
2510
+ default?: VNode[];
2511
+ /**
2512
+ * Named slot for additional content shown below the main content.
2513
+ */
2514
+ details?: VNode[];
1884
2515
  };
1885
2516
  refs: {};
1886
- rootEl: HTMLElement;
2517
+ rootEl: HTMLDivElement;
1887
2518
  };
1888
2519
 
1889
- declare function __VLS_template_18(): {
2520
+ declare function __VLS_template_27(): {
1890
2521
  attrs: Partial<{}>;
1891
2522
  slots: Readonly<{
1892
2523
  /**
@@ -1903,7 +2534,7 @@ declare function __VLS_template_18(): {
1903
2534
  rootEl: any;
1904
2535
  };
1905
2536
 
1906
- declare function __VLS_template_19(): {
2537
+ declare function __VLS_template_28(): {
1907
2538
  attrs: Partial<{}>;
1908
2539
  slots: Readonly<{
1909
2540
  /**
@@ -1920,7 +2551,24 @@ declare function __VLS_template_19(): {
1920
2551
  rootEl: HTMLElement;
1921
2552
  };
1922
2553
 
1923
- declare function __VLS_template_2(): {
2554
+ declare function __VLS_template_29(): {
2555
+ attrs: Partial<{}>;
2556
+ slots: Readonly<{
2557
+ /**
2558
+ * The tooltip will point to the content of the slot.
2559
+ */
2560
+ default: string;
2561
+ }> & {
2562
+ /**
2563
+ * The tooltip will point to the content of the slot.
2564
+ */
2565
+ default: string;
2566
+ };
2567
+ refs: {};
2568
+ rootEl: HTMLDivElement;
2569
+ };
2570
+
2571
+ declare function __VLS_template_3(): {
1924
2572
  attrs: Partial<{}>;
1925
2573
  slots: Readonly<{
1926
2574
  /**
@@ -1945,24 +2593,26 @@ declare function __VLS_template_2(): {
1945
2593
  rootEl: HTMLDivElement;
1946
2594
  };
1947
2595
 
1948
- declare function __VLS_template_20(): {
2596
+ declare function __VLS_template_4(): {
1949
2597
  attrs: Partial<{}>;
1950
2598
  slots: Readonly<{
1951
2599
  /**
1952
- * The tooltip will point to the content of the slot.
2600
+ * Activator element that triggers the listbox.
1953
2601
  */
1954
- default: string;
2602
+ activator?: VNode[];
1955
2603
  }> & {
1956
2604
  /**
1957
- * The tooltip will point to the content of the slot.
2605
+ * Activator element that triggers the listbox.
1958
2606
  */
1959
- default: string;
2607
+ activator?: VNode[];
1960
2608
  };
1961
- refs: {};
1962
- rootEl: HTMLDivElement;
2609
+ refs: {
2610
+ popover: HTMLDivElement;
2611
+ };
2612
+ rootEl: any;
1963
2613
  };
1964
2614
 
1965
- declare function __VLS_template_3(): {
2615
+ declare function __VLS_template_5(): {
1966
2616
  attrs: Partial<{}>;
1967
2617
  slots: Readonly<{
1968
2618
  /**
@@ -1979,7 +2629,7 @@ declare function __VLS_template_3(): {
1979
2629
  rootEl: HTMLSpanElement;
1980
2630
  };
1981
2631
 
1982
- declare function __VLS_template_4(): {
2632
+ declare function __VLS_template_6(): {
1983
2633
  attrs: Partial<{}>;
1984
2634
  slots: Readonly<{
1985
2635
  /**
@@ -2004,7 +2654,7 @@ declare function __VLS_template_4(): {
2004
2654
  rootEl: HTMLButtonElement;
2005
2655
  };
2006
2656
 
2007
- declare function __VLS_template_5(): {
2657
+ declare function __VLS_template_7(): {
2008
2658
  attrs: Partial<{}>;
2009
2659
  slots: Readonly<{
2010
2660
  /**
@@ -2029,7 +2679,7 @@ declare function __VLS_template_5(): {
2029
2679
  rootEl: HTMLElement;
2030
2680
  };
2031
2681
 
2032
- declare function __VLS_template_6(): {
2682
+ declare function __VLS_template_8(): {
2033
2683
  attrs: Partial<{}>;
2034
2684
  slots: Readonly<{
2035
2685
  /**
@@ -2056,7 +2706,7 @@ declare function __VLS_template_6(): {
2056
2706
  rootEl: HTMLDivElement;
2057
2707
  };
2058
2708
 
2059
- declare function __VLS_template_7(): {
2709
+ declare function __VLS_template_9(): {
2060
2710
  attrs: Partial<{}>;
2061
2711
  slots: Readonly<{
2062
2712
  /**
@@ -2073,50 +2723,6 @@ declare function __VLS_template_7(): {
2073
2723
  rootEl: HTMLDivElement;
2074
2724
  };
2075
2725
 
2076
- declare function __VLS_template_8(): {
2077
- attrs: Partial<{}>;
2078
- slots: Readonly<{
2079
- /**
2080
- * Use this slot to insert the content who need a vertical divider
2081
- */
2082
- default?: VNode;
2083
- }> & {
2084
- /**
2085
- * Use this slot to insert the content who need a vertical divider
2086
- */
2087
- default?: VNode;
2088
- };
2089
- refs: {};
2090
- rootEl: HTMLDivElement;
2091
- };
2092
-
2093
- declare function __VLS_template_9(): {
2094
- attrs: Partial<{}>;
2095
- slots: Readonly<{
2096
- /**
2097
- * Use this slot to insert the content of the drawer
2098
- */
2099
- default?: VNode;
2100
- /**
2101
- * Use this slot to insert buttons in the footer
2102
- */
2103
- footer?: VNode;
2104
- }> & {
2105
- /**
2106
- * Use this slot to insert the content of the drawer
2107
- */
2108
- default?: VNode;
2109
- /**
2110
- * Use this slot to insert buttons in the footer
2111
- */
2112
- footer?: VNode;
2113
- };
2114
- refs: {
2115
- titleRef: HTMLHeadingElement;
2116
- };
2117
- rootEl: any;
2118
- };
2119
-
2120
2726
  declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
2121
2727
 
2122
2728
  declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
@@ -2143,6 +2749,24 @@ declare type __VLS_TemplateResult_2 = ReturnType<typeof __VLS_template_2>;
2143
2749
 
2144
2750
  declare type __VLS_TemplateResult_20 = ReturnType<typeof __VLS_template_20>;
2145
2751
 
2752
+ declare type __VLS_TemplateResult_21 = ReturnType<typeof __VLS_template_21>;
2753
+
2754
+ declare type __VLS_TemplateResult_22 = ReturnType<typeof __VLS_template_22>;
2755
+
2756
+ declare type __VLS_TemplateResult_23 = ReturnType<typeof __VLS_template_23>;
2757
+
2758
+ declare type __VLS_TemplateResult_24 = ReturnType<typeof __VLS_template_24>;
2759
+
2760
+ declare type __VLS_TemplateResult_25 = ReturnType<typeof __VLS_template_25>;
2761
+
2762
+ declare type __VLS_TemplateResult_26 = ReturnType<typeof __VLS_template_26>;
2763
+
2764
+ declare type __VLS_TemplateResult_27 = ReturnType<typeof __VLS_template_27>;
2765
+
2766
+ declare type __VLS_TemplateResult_28 = ReturnType<typeof __VLS_template_28>;
2767
+
2768
+ declare type __VLS_TemplateResult_29 = ReturnType<typeof __VLS_template_29>;
2769
+
2146
2770
  declare type __VLS_TemplateResult_3 = ReturnType<typeof __VLS_template_3>;
2147
2771
 
2148
2772
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
@@ -2235,6 +2859,60 @@ declare type __VLS_WithTemplateSlots_20<T, S> = T & {
2235
2859
  };
2236
2860
  };
2237
2861
 
2862
+ declare type __VLS_WithTemplateSlots_21<T, S> = T & {
2863
+ new (): {
2864
+ $slots: S;
2865
+ };
2866
+ };
2867
+
2868
+ declare type __VLS_WithTemplateSlots_22<T, S> = T & {
2869
+ new (): {
2870
+ $slots: S;
2871
+ };
2872
+ };
2873
+
2874
+ declare type __VLS_WithTemplateSlots_23<T, S> = T & {
2875
+ new (): {
2876
+ $slots: S;
2877
+ };
2878
+ };
2879
+
2880
+ declare type __VLS_WithTemplateSlots_24<T, S> = T & {
2881
+ new (): {
2882
+ $slots: S;
2883
+ };
2884
+ };
2885
+
2886
+ declare type __VLS_WithTemplateSlots_25<T, S> = T & {
2887
+ new (): {
2888
+ $slots: S;
2889
+ };
2890
+ };
2891
+
2892
+ declare type __VLS_WithTemplateSlots_26<T, S> = T & {
2893
+ new (): {
2894
+ $slots: S;
2895
+ };
2896
+ };
2897
+
2898
+ declare type __VLS_WithTemplateSlots_27<T, S> = T & {
2899
+ new (): {
2900
+ $slots: S;
2901
+ };
2902
+ };
2903
+
2904
+ declare type __VLS_WithTemplateSlots_28<T, S> = T & {
2905
+ new (): {
2906
+ $slots: S;
2907
+ };
2908
+ };
2909
+
2910
+ declare type __VLS_WithTemplateSlots_29<T, S> = T & {
2911
+ new (): {
2912
+ $slots: S;
2913
+ };
2914
+ };
2915
+
2238
2916
  declare type __VLS_WithTemplateSlots_3<T, S> = T & {
2239
2917
  new (): {
2240
2918
  $slots: S;
@@ -2362,63 +3040,65 @@ declare type FileUploaderProps = {
2362
3040
 
2363
3041
  export declare const MAccordionList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
2364
3042
 
2365
- export declare const MActionBottomBar: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
3043
+ export declare const MAccordionListItem: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
2366
3044
 
2367
- export declare const MActionListbox: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3045
+ export declare const MActionBottomBar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
2368
3046
 
2369
- export declare const MAvatar: __VLS_WithTemplateSlots_3<typeof __VLS_component_3, __VLS_TemplateResult_3["slots"]>;
3047
+ export declare const MActionListbox: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
2370
3048
 
2371
- export declare const MBreadcrumb: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3049
+ export declare const MAvatar: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
2372
3050
 
2373
- export declare const MBuiltInMenu: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3051
+ export declare const MBreadcrumb: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3052
+
3053
+ export declare const MBuiltInMenu: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2374
3054
  "update:modelValue": (value: number) => any;
2375
- }, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{
3055
+ }, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{
2376
3056
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2377
3057
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2378
3058
 
2379
- export declare const MButton: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
3059
+ export declare const MButton: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
2380
3060
 
2381
- export declare const MCallout: __VLS_WithTemplateSlots_5<typeof __VLS_component_5, __VLS_TemplateResult_5["slots"]>;
3061
+ export declare const MCallout: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
2382
3062
 
2383
- export declare const MCarousel: __VLS_WithTemplateSlots_6<typeof __VLS_component_6, __VLS_TemplateResult_6["slots"]>;
3063
+ export declare const MCarousel: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
2384
3064
 
2385
- export declare const MCheckbox: DefineComponent<__VLS_Props_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3065
+ export declare const MCheckbox: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2386
3066
  "update:modelValue": (value: boolean) => any;
2387
- }, string, PublicProps, Readonly<__VLS_Props_10> & Readonly<{
3067
+ }, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
2388
3068
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2389
3069
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2390
3070
 
2391
- export declare const MCheckboxGroup: DefineComponent<__VLS_Props_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3071
+ export declare const MCheckboxGroup: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2392
3072
  "update:modelValue": (value: string[]) => any;
2393
- }, string, PublicProps, Readonly<__VLS_Props_11> & Readonly<{
3073
+ }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
2394
3074
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
2395
3075
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2396
3076
 
2397
- export declare const MCheckListMenu: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3077
+ export declare const MCheckListMenu: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2398
3078
  "update:modelValue": (value: number) => any;
2399
- }, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{
3079
+ }, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
2400
3080
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2401
3081
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2402
3082
 
2403
- export declare const MCircularProgressbar: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {
3083
+ export declare const MCircularProgressbar: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {
2404
3084
  type: "percentage" | "content";
2405
3085
  value: number;
2406
3086
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2407
3087
 
2408
- export declare const MContainer: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
3088
+ export declare const MContainer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
2409
3089
 
2410
- export declare const MDatepicker: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3090
+ export declare const MDatepicker: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2411
3091
  "update:modelValue": (value: string | number) => any;
2412
- }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
3092
+ }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
2413
3093
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2414
3094
  }>, {
2415
3095
  size: "s" | "m";
2416
3096
  clearLabel: string;
2417
3097
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2418
3098
 
2419
- export declare const MDivider: __VLS_WithTemplateSlots_8<typeof __VLS_component_8, __VLS_TemplateResult_8["slots"]>;
3099
+ export declare const MDivider: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
2420
3100
 
2421
- export declare const MDrawer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
3101
+ export declare const MDrawer: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
2422
3102
 
2423
3103
  /**
2424
3104
  * A built-in menu is a structured list of navigational or interactive options, typically displayed as a vertical stack. It allows users to browse categories, access settings, or navigate through different sections of an interface.
@@ -2431,51 +3111,69 @@ declare type MenuItem = {
2431
3111
  target?: '_self' | '_blank' | '_parent' | '_top';
2432
3112
  };
2433
3113
 
2434
- export declare const MField: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
3114
+ export declare const MField: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
3115
+
3116
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
2435
3117
 
2436
- export declare const MFieldGroup: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
3118
+ export declare const MFileUploader: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
2437
3119
 
2438
- export declare const MFileUploader: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
3120
+ export declare const MFlag: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2439
3121
 
2440
- export declare const MFlag: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3122
+ export declare const MIconButton: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
2441
3123
 
2442
- export declare const MIconButton: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
3124
+ export declare const MKpiItem: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
3125
+ size: "s" | "m" | "l";
3126
+ status: "info" | "warning" | "error" | "success" | "neutral";
3127
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2443
3128
 
2444
- export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {
3129
+ export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
2445
3130
  value: number;
2446
3131
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2447
3132
 
2448
- export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
3133
+ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
2449
3134
  value: number;
2450
3135
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2451
3136
 
2452
- export declare const MLink: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
3137
+ export declare const MLink: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
2453
3138
 
2454
- export declare const MLoader: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
3139
+ export declare const MLoader: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
2455
3140
  appearance: "standard" | "accent" | "inverse";
2456
3141
  size: "xs" | "s" | "m" | "l";
2457
3142
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2458
3143
 
2459
- export declare const MLoadingOverlay: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3144
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2460
3145
 
2461
- export declare const MModal: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
3146
+ export declare const MModal: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
3147
+
3148
+ export declare const MNavigationIndicator: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3149
+ "update:modelValue": (value: number) => any;
3150
+ action: () => any;
3151
+ }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
3152
+ "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3153
+ onAction?: (() => any) | undefined;
3154
+ }>, {
3155
+ action: "pause" | "resume";
3156
+ player: boolean;
3157
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2462
3158
 
2463
- export declare const MNumberBadge: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
3159
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{}>, {
2464
3160
  appearance: "danger" | "accent" | "inverse" | "standard";
2465
3161
  size: "s" | "m";
2466
3162
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2467
3163
 
2468
- export declare const MOverlay: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
3164
+ export declare const MOverlay: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
2469
3165
 
2470
- export declare const MPagination: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3166
+ export declare const MPageHeader: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
3167
+
3168
+ export declare const MPagination: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2471
3169
  "update:modelValue": (value: number) => any;
2472
- }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
3170
+ }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
2473
3171
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2474
3172
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2475
3173
 
2476
- export declare const MPasswordInput: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3174
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2477
3175
  "update:modelValue": (value: string | number) => any;
2478
- }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
3176
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
2479
3177
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2480
3178
  }>, {
2481
3179
  clearLabel: string;
@@ -2568,10 +3266,10 @@ icon?: VNode;
2568
3266
  }) | null;
2569
3267
  }, any>;
2570
3268
 
2571
- export declare const MPhoneNumber: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3269
+ export declare const MPhoneNumber: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2572
3270
  "update:modelValue": (value: string) => any;
2573
3271
  valid: (isValid: boolean) => any;
2574
- }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
3272
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
2575
3273
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2576
3274
  onValid?: ((isValid: boolean) => any) | undefined;
2577
3275
  }>, {
@@ -2583,17 +3281,19 @@ flag: boolean;
2583
3281
  locale: string;
2584
3282
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2585
3283
 
2586
- export declare const MPincode: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3284
+ export declare const MPincode: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2587
3285
  "update:modelValue": (value: string) => any;
2588
- }, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{
3286
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
2589
3287
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2590
3288
  }>, {
2591
3289
  length: 4 | 5 | 6;
2592
3290
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2593
3291
 
2594
- export declare const MQuantitySelector: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3292
+ export declare const MPopover: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
3293
+
3294
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2595
3295
  "update:modelValue": (value: number) => any;
2596
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
3296
+ }, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
2597
3297
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2598
3298
  }>, {
2599
3299
  modelValue: number;
@@ -2606,35 +3306,37 @@ incrementlabel: string;
2606
3306
  decrementLabel: string;
2607
3307
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2608
3308
 
2609
- export declare const MRadio: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3309
+ export declare const MRadio: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2610
3310
  "update:modelValue": (value: boolean) => any;
2611
- }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
3311
+ }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
2612
3312
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2613
3313
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2614
3314
 
2615
- export declare const MRadioGroup: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3315
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2616
3316
  "update:modelValue": (value: string) => any;
2617
- }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
3317
+ }, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
2618
3318
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
2619
3319
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2620
3320
 
2621
- export declare const MSegmentedControl: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3321
+ export declare const MSegmentedControl: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2622
3322
  "update:modelValue": (value: number) => any;
2623
- }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
3323
+ }, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
2624
3324
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2625
3325
  }>, {
2626
3326
  modelValue: number;
2627
3327
  size: "s" | "m";
2628
3328
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2629
3329
 
2630
- export declare const MSelect: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3330
+ export declare const MSelect: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2631
3331
  "update:modelValue": (value: string | number) => any;
2632
- }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
3332
+ }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
2633
3333
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2634
3334
  }>, {
2635
3335
  size: "s" | "m";
2636
3336
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2637
3337
 
3338
+ export declare const MSidebar: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
3339
+
2638
3340
  export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2639
3341
  "update:modelValue": (value: number) => any;
2640
3342
  }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
@@ -2646,25 +3348,25 @@ readonly: boolean;
2646
3348
  compact: boolean;
2647
3349
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2648
3350
 
2649
- export declare const MStatusBadge: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{}>, {
3351
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {
2650
3352
  status: "info" | "success" | "warning" | "error" | "neutral";
2651
3353
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2652
3354
 
2653
- export declare const MStatusDot: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{}>, {
3355
+ export declare const MStatusDot: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {
2654
3356
  status: "info" | "success" | "warning" | "error" | "neutral";
2655
3357
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
2656
3358
 
2657
- export declare const MStatusMessage: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{}>, {
3359
+ export declare const MStatusMessage: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {
2658
3360
  status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
2659
3361
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2660
3362
 
2661
- export declare const MStatusNotification: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
3363
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
2662
3364
 
2663
- export declare const MStepperBottomBar: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3365
+ export declare const MStepperBottomBar: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2664
3366
  "update:modelValue": (value: number) => any;
2665
3367
  cancel: () => any;
2666
3368
  validate: () => any;
2667
- }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
3369
+ }, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
2668
3370
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2669
3371
  onCancel?: (() => any) | undefined;
2670
3372
  onValidate?: (() => any) | undefined;
@@ -2678,12 +3380,12 @@ nextLabel: string;
2678
3380
  validateLabel: string;
2679
3381
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2680
3382
 
2681
- export declare const MStepperCompact: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{}>, {
3383
+ export declare const MStepperCompact: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{}>, {
2682
3384
  value: number;
2683
3385
  maxSteps: number;
2684
3386
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2685
3387
 
2686
- export declare const MStepperInline: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {
3388
+ export declare const MStepperInline: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{}>, {
2687
3389
  steps: Array<{
2688
3390
  /**
2689
3391
  * Label of the step.
@@ -2697,9 +3399,9 @@ additionalInfo?: string;
2697
3399
  currentStep: number;
2698
3400
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
2699
3401
 
2700
- export declare const MTabs: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3402
+ export declare const MTabs: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2701
3403
  "update:modelValue": (value: number) => any;
2702
- }, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
3404
+ }, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
2703
3405
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
2704
3406
  }>, {
2705
3407
  modelValue: number;
@@ -2708,10 +3410,10 @@ divider: boolean;
2708
3410
  tab: HTMLButtonElement;
2709
3411
  }, HTMLElement>;
2710
3412
 
2711
- export declare const MTag: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3413
+ export declare const MTag: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2712
3414
  "update:modelValue": (value: boolean) => any;
2713
3415
  "remove-tag": (id: string) => any;
2714
- }, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
3416
+ }, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{
2715
3417
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2716
3418
  "onRemove-tag"?: ((id: string) => any) | undefined;
2717
3419
  }>, {
@@ -2720,33 +3422,41 @@ contextualisedNumber: number;
2720
3422
  removableLabel: string;
2721
3423
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2722
3424
 
2723
- export declare const MTextArea: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3425
+ export declare const MTextArea: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2724
3426
  "update:modelValue": (value: string | number) => any;
2725
- }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
3427
+ }, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{
2726
3428
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
2727
3429
  }>, {
2728
3430
  rows: number;
2729
3431
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2730
3432
 
2731
- export declare const MTextInput: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
3433
+ export declare const MTextInput: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
3434
+
3435
+ export declare const MTile: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
2732
3436
 
2733
- export declare const MToaster: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
3437
+ export declare const MTileClickable: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
2734
3438
 
2735
- export declare const MToggle: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3439
+ export declare const MTileExpandable: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
3440
+
3441
+ export declare const MTileSelectable: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
3442
+
3443
+ export declare const MToaster: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
3444
+
3445
+ export declare const MToggle: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2736
3446
  "update:modelValue": (value: boolean) => any;
2737
- }, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{
3447
+ }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
2738
3448
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
2739
3449
  }>, {
2740
3450
  size: "s" | "m";
2741
3451
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
2742
3452
 
2743
- export declare const MToggleGroup: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3453
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
2744
3454
  "update:modelValue": (value: string[]) => any;
2745
- }, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{
3455
+ }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
2746
3456
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
2747
3457
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
2748
3458
 
2749
- export declare const MTooltip: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
3459
+ export declare const MTooltip: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
2750
3460
 
2751
3461
  declare type NormalizedFile = {
2752
3462
  name: string;