@mozaic-ds/vue 2.15.0 → 2.17.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 (125) hide show
  1. package/dist/mozaic-vue.css +2 -1
  2. package/dist/mozaic-vue.d.ts +1040 -408
  3. package/dist/mozaic-vue.js +17183 -6742
  4. package/dist/mozaic-vue.js.map +1 -1
  5. package/dist/mozaic-vue.umd.cjs +26 -6
  6. package/dist/mozaic-vue.umd.cjs.map +1 -1
  7. package/package.json +11 -5
  8. package/src/components/BrandPresets.mdx +2 -2
  9. package/src/components/ComponentsMapping.mdx +98 -0
  10. package/src/components/accordionlist/MAccordionList.figma.ts +43 -0
  11. package/src/components/accordionlistitem/MAccordionListItem.figma.ts +27 -0
  12. package/src/components/actionbottombar/MActionBottomBar.figma.ts +24 -0
  13. package/src/components/actionlistbox/MActionListbox.figma.ts +30 -0
  14. package/src/components/actionlistbox/MActionListbox.spec.ts +14 -0
  15. package/src/components/actionlistbox/MActionListbox.stories.ts +15 -8
  16. package/src/components/actionlistbox/MActionListbox.vue +13 -1
  17. package/src/components/actionlistbox/README.md +2 -1
  18. package/src/components/avatar/MAvatar.figma.ts +31 -0
  19. package/src/components/breadcrumb/MBreadcrumb.figma.ts +31 -0
  20. package/src/components/builtinmenu/MBuiltInMenu.figma.ts +23 -0
  21. package/src/components/button/MButton.figma.ts +41 -0
  22. package/src/components/button/README.md +2 -0
  23. package/src/components/callout/MCallout.figma.ts +29 -0
  24. package/src/components/carousel/MCarousel.figma.ts +32 -0
  25. package/src/components/checkbox/MCheckbox.figma.ts +45 -0
  26. package/src/components/checkboxgroup/MCheckboxGroup.figma.ts +30 -0
  27. package/src/components/checklistmenu/MCheckListMenu.figma.ts +29 -0
  28. package/src/components/circularprogressbar/MCircularProgressbar.figma.ts +31 -0
  29. package/src/components/combobox/MCombobox.figma.ts +48 -0
  30. package/src/components/combobox/MCombobox.spec.ts +246 -0
  31. package/src/components/combobox/MCombobox.stories.ts +190 -0
  32. package/src/components/combobox/MCombobox.vue +286 -0
  33. package/src/components/combobox/README.md +52 -0
  34. package/src/components/container/MContainer.figma.ts +30 -0
  35. package/src/components/datatable/DataTable.stories.ts +277 -0
  36. package/src/components/datatable/DataTableCells.stories.ts +251 -0
  37. package/src/components/datatable/DataTableEmpty.stories.ts +102 -0
  38. package/src/components/datatable/DataTableExpandable.stories.ts +95 -0
  39. package/src/components/datatable/DataTableNested.stories.ts +96 -0
  40. package/src/components/datatable/DataTableSelectable.stories.ts +124 -0
  41. package/src/components/datatable/DataTableSortable.stories.ts +164 -0
  42. package/src/components/datatable/MDataTable.types.ts +54 -0
  43. package/src/components/datatable/assets/styles.scss +10 -0
  44. package/src/components/datatable/datatable.mdx +62 -0
  45. package/src/components/datatable/tools/data.js +8 -0
  46. package/src/components/datatable/tools/data.json +2018 -0
  47. package/src/components/datatable/utils.js +19 -0
  48. package/src/components/datepicker/MDatepicker.figma.ts +20 -0
  49. package/src/components/divider/MDivider.figma.ts +30 -0
  50. package/src/components/drawer/MDrawer.figma.ts +37 -0
  51. package/src/components/drawer/README.md +1 -1
  52. package/src/components/field/MField.figma.ts +30 -0
  53. package/src/components/field/MField.stories.ts +105 -0
  54. package/src/components/fileuploader/MFileUploader.figma.ts +23 -0
  55. package/src/components/fileuploaderitem/MFileUploaderItem.figma.ts +27 -0
  56. package/src/components/flag/MFlag.figma.ts +26 -0
  57. package/src/components/iconbutton/MIconButton.figma.ts +54 -0
  58. package/src/components/kpiitem/MKpiItem.figma.ts +33 -0
  59. package/src/components/linearprogressbarbuffer/MLinearProgressbarBuffer.figma.ts +31 -0
  60. package/src/components/linearprogressbarpercentage/MLinearProgressbarPercentage.figma.ts +26 -0
  61. package/src/components/link/MLink.figma.ts +32 -0
  62. package/src/components/loader/MLoader.figma.ts +30 -0
  63. package/src/components/loadingoverlay/MLoadingOverlay.figma.ts +18 -0
  64. package/src/components/modal/MModal.figma.ts +27 -0
  65. package/src/components/navigationindicator/MNavigationIndicator.figma.ts +24 -0
  66. package/src/components/numberbadge/MNumberBadge.figma.ts +31 -0
  67. package/src/components/optionListbox/MOptionListbox.figma.ts +36 -0
  68. package/src/components/optionListbox/MOptionListbox.spec.ts +527 -0
  69. package/src/components/optionListbox/MOptionListbox.vue +470 -0
  70. package/src/components/optionListbox/README.md +63 -0
  71. package/src/components/overlay/MOverlay.figma.ts +20 -0
  72. package/src/components/pageheader/MPageHeader.figma.ts +21 -0
  73. package/src/components/pagination/MPagination.figma.ts +34 -0
  74. package/src/components/passwordinput/MPasswordInput.figma.ts +30 -0
  75. package/src/components/phonenumber/MPhoneNumber.figma.ts +47 -0
  76. package/src/components/pincode/MPincode.figma.ts +41 -0
  77. package/src/components/pincode/MPincode.spec.ts +1 -4
  78. package/src/components/pincode/MPincode.vue +11 -15
  79. package/src/components/popover/MPopover.figma.ts +42 -0
  80. package/src/components/quantityselector/MQuantitySelector.figma.ts +50 -0
  81. package/src/components/radio/MRadio.figma.ts +40 -0
  82. package/src/components/radiogroup/MRadioGroup.figma.ts +30 -0
  83. package/src/components/segmentedcontrol/MSegmentedControl.figma.ts +33 -0
  84. package/src/components/select/MSelect.figma.ts +49 -0
  85. package/src/components/sidebar/MSidebar.figma.ts +28 -0
  86. package/src/components/sidebarexpandableitem/MSidebarExpandableItem.figma.ts +19 -0
  87. package/src/components/sidebarfooter/MSidebarFooter.figma.ts +21 -0
  88. package/src/components/sidebarheader/MSidebarHeader.figma.ts +18 -0
  89. package/src/components/sidebarnavitem/MSidebarNavItem.figma.ts +23 -0
  90. package/src/components/sidebarshortcutitem/MSidebarShortcutItem.figma.ts +20 -0
  91. package/src/components/starrating/MStarRating.figma.ts +35 -0
  92. package/src/components/statusbadge/MStatusBadge.figma.ts +27 -0
  93. package/src/components/statusdot/MStatusDot.figma.ts +31 -0
  94. package/src/components/statusmessage/MStatusMessage.figma.ts +28 -0
  95. package/src/components/statusmessage/MStatusMessage.spec.ts +15 -0
  96. package/src/components/statusmessage/MStatusMessage.stories.ts +4 -0
  97. package/src/components/statusmessage/MStatusMessage.vue +7 -0
  98. package/src/components/statusmessage/README.md +2 -0
  99. package/src/components/statusnotification/MStatusNotification.figma.ts +29 -0
  100. package/src/components/stepperbottombar/MStepperBottomBar.figma.ts +20 -0
  101. package/src/components/steppercompact/MStepperCompact.figma.ts +21 -0
  102. package/src/components/stepperinline/MStepperInline.figma.ts +23 -0
  103. package/src/components/stepperstacked/MStepperStacked.figma.ts +23 -0
  104. package/src/components/stepperstacked/MStepperStacked.spec.ts +162 -0
  105. package/src/components/stepperstacked/MStepperStacked.stories.ts +57 -0
  106. package/src/components/stepperstacked/MStepperStacked.vue +106 -0
  107. package/src/components/stepperstacked/README.md +15 -0
  108. package/src/components/tabs/MTabs.figma.ts +33 -0
  109. package/src/components/tag/MTag.figma.ts +26 -0
  110. package/src/components/tag/MTag.stories.ts +13 -3
  111. package/src/components/tag/MTag.vue +11 -1
  112. package/src/components/tag/README.md +6 -0
  113. package/src/components/textarea/MTextArea.figma.ts +28 -0
  114. package/src/components/textinput/MTextInput.figma.ts +51 -0
  115. package/src/components/textinput/MTextInput.vue +13 -1
  116. package/src/components/textinput/README.md +15 -1
  117. package/src/components/tile/MTile.figma.ts +31 -0
  118. package/src/components/tileclickable/MTileClickable.figma.ts +31 -0
  119. package/src/components/tileexpandable/MTileExpandable.figma.ts +31 -0
  120. package/src/components/tileselectable/MTileSelectable.figma.ts +29 -0
  121. package/src/components/toaster/MToaster.figma.ts +25 -0
  122. package/src/components/toggle/MToggle.figma.ts +39 -0
  123. package/src/components/togglegroup/MToggleGroup.figma.ts +30 -0
  124. package/src/components/tooltip/MTooltip.figma.ts +29 -0
  125. package/src/main.ts +1 -0
@@ -1,4 +1,5 @@
1
1
  import { AllowedComponentProps } from 'vue';
2
+ import { Attrs } from 'vue';
2
3
  import { Component } from 'vue';
3
4
  import { ComponentCustomProperties } from 'vue';
4
5
  import { ComponentCustomProps } from 'vue';
@@ -15,8 +16,8 @@ import { GlobalDirectives } from 'vue';
15
16
  import { nextTick } from 'vue';
16
17
  import { OnCleanup } from '@vue/reactivity';
17
18
  import { PublicProps } from 'vue';
19
+ import { Ref } from 'vue';
18
20
  import { ShallowRef } from 'vue';
19
- import { ShallowUnwrapRef } from 'vue';
20
21
  import { Slot } from 'vue';
21
22
  import { VNode } from 'vue';
22
23
  import { VNodeProps } from 'vue';
@@ -32,29 +33,31 @@ appearance: "standard" | "ghost";
32
33
  behavior: "multiple" | "single";
33
34
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
34
35
 
35
- declare const __VLS_component_10: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {
36
+ declare const __VLS_component_10: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
37
+
38
+ declare const __VLS_component_11: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {
36
39
  appearance: "primary" | "secondary" | "tertiary" | "inverse";
37
40
  size: "s" | "m" | "l";
38
41
  orientation: "vertical" | "horizontal";
39
42
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
40
43
 
41
- declare const __VLS_component_11: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
42
- back: () => any;
44
+ declare const __VLS_component_12: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
43
45
  "update:open": (value: boolean) => any;
44
- }, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{
45
- onBack?: (() => any) | undefined;
46
+ back: () => any;
47
+ }, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{
46
48
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
49
+ onBack?: (() => any) | undefined;
47
50
  }>, {
48
51
  scroll: boolean;
49
52
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
50
53
  titleRef: HTMLHeadingElement;
51
54
  }, any>;
52
55
 
53
- declare const __VLS_component_12: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
56
+ declare const __VLS_component_13: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
54
57
 
55
- declare const __VLS_component_13: DefineComponent<__VLS_Props_20, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_20> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
58
+ declare const __VLS_component_14: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLFieldSetElement>;
56
59
 
57
- declare const __VLS_component_14: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
60
+ declare const __VLS_component_15: DefineComponent<FileUploaderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
58
61
  "update:modelValue": (v: NormalizedFile[]) => any;
59
62
  validation: (validationState: FilesValidationState) => any;
60
63
  }, string, PublicProps, Readonly<FileUploaderProps> & Readonly<{
@@ -70,49 +73,49 @@ uploadButtonLabel: string;
70
73
  fileInput: HTMLInputElement;
71
74
  }, HTMLDivElement>;
72
75
 
73
- declare const __VLS_component_15: DefineComponent<__VLS_Props_21, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
76
+ declare const __VLS_component_16: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
74
77
  delete: () => any;
75
- }, string, PublicProps, Readonly<__VLS_Props_21> & Readonly<{
78
+ }, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{
76
79
  onDelete?: (() => any) | undefined;
77
80
  }>, {
78
81
  format: "inline" | "stacked";
79
82
  deleteButtonLabel: string;
80
83
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
81
84
 
82
- declare const __VLS_component_16: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {
85
+ declare const __VLS_component_17: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
83
86
  appearance: "standard" | "accent" | "danger" | "inverse";
84
87
  type: "button" | "reset" | "submit";
85
88
  size: "s" | "m" | "l";
86
89
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
87
90
 
88
- declare const __VLS_component_17: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
91
+ declare const __VLS_component_18: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
89
92
  appearance: "secondary" | "accent" | "inverse" | "standard";
90
93
  size: "s" | "m";
91
94
  iconPosition: "left" | "right";
92
95
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
93
96
 
94
- declare const __VLS_component_18: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
97
+ declare const __VLS_component_19: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
95
98
  "update:open": (value: boolean) => any;
96
- }, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{
99
+ }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
97
100
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
98
101
  }>, {
99
102
  scroll: boolean;
100
103
  closable: boolean;
101
104
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
102
105
 
103
- declare const __VLS_component_19: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
104
-
105
106
  declare const __VLS_component_2: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
106
107
 
107
- declare const __VLS_component_20: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
108
+ declare const __VLS_component_20: DefineComponent<__VLS_Props_34, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
109
+
110
+ declare const __VLS_component_21: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
108
111
  back: () => any;
109
112
  "toggle-menu": () => any;
110
- }, string, PublicProps, Readonly<__VLS_Props_34> & Readonly<{
113
+ }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
111
114
  onBack?: (() => any) | undefined;
112
115
  "onToggle-menu"?: (() => any) | undefined;
113
116
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
114
117
 
115
- declare const __VLS_component_21: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{}>, {
118
+ declare const __VLS_component_22: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{}>, {
116
119
  appearance: "standard" | "inverse";
117
120
  size: "s" | "m" | "l";
118
121
  position: "top" | "right" | "bottom" | "left";
@@ -120,22 +123,22 @@ closable: boolean;
120
123
  pointer: boolean;
121
124
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
122
125
 
123
- declare const __VLS_component_22: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
126
+ declare const __VLS_component_23: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
124
127
  "update:modelValue": (value: boolean) => any;
125
128
  close: () => any;
126
- }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
129
+ }, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{
127
130
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
128
131
  onClose?: (() => any) | undefined;
129
132
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
130
133
 
131
- declare const __VLS_component_23: DefineComponent<__VLS_Props_46, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_46> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
134
+ declare const __VLS_component_24: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
132
135
  trigger: HTMLButtonElement;
133
136
  listbox: HTMLDivElement;
134
137
  }, any>;
135
138
 
136
- declare const __VLS_component_24: DefineComponent<__VLS_Props_47, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
139
+ declare const __VLS_component_25: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
137
140
  "log-out": () => any;
138
- }, string, PublicProps, Readonly<__VLS_Props_47> & Readonly<{
141
+ }, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{
139
142
  "onLog-out"?: (() => any) | undefined;
140
143
  }>, {
141
144
  logOutLabel: string;
@@ -151,9 +154,7 @@ readonly onListboxKeydown: (event: KeyboardEvent) => void;
151
154
  readonly hideFloatingItem: () => void;
152
155
  readonly "onLog-out"?: (() => any) | undefined;
153
156
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
154
- $attrs: {
155
- [x: string]: unknown;
156
- };
157
+ $attrs: Attrs;
157
158
  $refs: {
158
159
  [x: string]: unknown;
159
160
  } & {
@@ -205,9 +206,9 @@ onListboxKeydown: (event: KeyboardEvent) => void;
205
206
  hideFloatingItem: () => void;
206
207
  }> & Readonly<{
207
208
  "onLog-out"?: (() => any) | undefined;
208
- }>, "container"> & ShallowUnwrapRef< {
209
- container: Readonly<ShallowRef<HTMLDivElement | null>>;
210
- }> & {} & ComponentCustomProperties & {} & {
209
+ }>, "container"> & {
210
+ container: HTMLDivElement | null;
211
+ } & {} & ComponentCustomProperties & {} & {
211
212
  $slots: {
212
213
  default?(_: {}): any;
213
214
  };
@@ -215,37 +216,55 @@ default?(_: {}): any;
215
216
  trigger: HTMLButtonElement;
216
217
  }, HTMLElement>;
217
218
 
218
- declare const __VLS_component_25: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
219
+ declare const __VLS_component_26: DefineComponent<__VLS_Props_52, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_52> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
219
220
  trigger: HTMLButtonElement;
220
221
  listbox: HTMLDivElement;
221
222
  }, any>;
222
223
 
223
- declare const __VLS_component_26: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
224
+ declare const __VLS_component_27: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
224
225
  close: () => any;
225
- }, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{
226
+ }, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{
226
227
  onClose?: (() => any) | undefined;
227
228
  }>, {
228
229
  status: "info" | "success" | "warning" | "error";
229
230
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
230
231
 
231
- declare const __VLS_component_27: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
232
+ declare const __VLS_component_28: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
233
+ "update:modelValue": (value: boolean) => any;
234
+ "remove-tag": (id: string) => any;
235
+ }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
236
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
237
+ "onRemove-tag"?: ((id: string) => any) | undefined;
238
+ }>, {
239
+ type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
240
+ contextualisedNumber: number;
241
+ removableLabel: string;
242
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
243
+
244
+ declare const __VLS_component_29: DefineComponent<__VLS_Props_64, {
245
+ focus: typeof focus_2;
246
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
232
247
  "update:modelValue": (value: string | number) => any;
233
- }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
248
+ }, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{
234
249
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
235
250
  }>, {
236
251
  size: "s" | "m";
237
- clearLabel: string;
238
252
  inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
239
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
253
+ clearLabel: string;
254
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
255
+ textInput: HTMLInputElement;
256
+ }, any>;
257
+
258
+ declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
240
259
 
241
- declare const __VLS_component_28: DefineComponent<__VLS_Props_64, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_64> & Readonly<{}>, {
260
+ declare const __VLS_component_30: DefineComponent<__VLS_Props_65, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{}>, {
242
261
  appearance: "primary" | "secondary" | "inverse";
243
262
  bordered: boolean;
244
263
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
245
264
 
246
- declare const __VLS_component_29: DefineComponent<__VLS_Props_65, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
265
+ declare const __VLS_component_31: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
247
266
  action: () => any;
248
- }, string, PublicProps, Readonly<__VLS_Props_65> & Readonly<{
267
+ }, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{
249
268
  onAction?: (() => any) | undefined;
250
269
  }>, {
251
270
  appearance: "primary" | "secondary" | "inverse";
@@ -253,18 +272,16 @@ iconPosition: "bottom" | "right";
253
272
  bordered: boolean;
254
273
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
255
274
 
256
- declare const __VLS_component_3: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
257
-
258
- declare const __VLS_component_30: DefineComponent<__VLS_Props_66, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_66> & Readonly<{}>, {
275
+ declare const __VLS_component_32: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{}>, {
259
276
  appearance: "primary" | "secondary";
260
277
  label: string;
261
278
  trigger: "container" | "icon" | "button";
262
279
  bordered: boolean;
263
280
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
264
281
 
265
- declare const __VLS_component_31: DefineComponent<__VLS_Props_67, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
282
+ declare const __VLS_component_33: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
266
283
  "update:modelValue": (value: boolean) => any;
267
- }, string, PublicProps, Readonly<__VLS_Props_67> & Readonly<{
284
+ }, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{
268
285
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
269
286
  }>, {
270
287
  inputType: "checkbox" | "radio";
@@ -272,24 +289,26 @@ bordered: boolean;
272
289
  inputPosition: "left" | "right";
273
290
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
274
291
 
275
- declare const __VLS_component_32: DefineComponent<__VLS_Props_68, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
292
+ declare const __VLS_component_34: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
276
293
  "update:open": (value: boolean) => any;
277
- }, string, PublicProps, Readonly<__VLS_Props_68> & Readonly<{
294
+ }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
278
295
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
279
296
  }>, {
280
297
  status: "info" | "success" | "warning" | "error";
281
298
  closable: boolean;
282
299
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
283
300
 
284
- declare const __VLS_component_33: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{}>, {
301
+ declare const __VLS_component_35: DefineComponent<__VLS_Props_72, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_72> & Readonly<{}>, {
285
302
  position: "top" | "bottom" | "left" | "right";
286
303
  pointer: boolean;
287
304
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
288
305
 
289
306
  declare const __VLS_component_4: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
290
307
  close: () => any;
308
+ action: (value: string | number) => any;
291
309
  }, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{
292
310
  onClose?: (() => any) | undefined;
311
+ onAction?: ((value: string | number) => any) | undefined;
293
312
  }>, {
294
313
  position: "top" | "bottom" | "left" | "right";
295
314
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
@@ -317,7 +336,251 @@ nextButtonAriaLabel: string;
317
336
  contentContainer: HTMLDivElement;
318
337
  }, HTMLDivElement>;
319
338
 
320
- declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
339
+ declare const __VLS_component_9: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
340
+ "update:modelValue": (value: string | number | (string | number)[] | null) => any;
341
+ "update:open": (value: boolean) => any;
342
+ }, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{
343
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
344
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
345
+ }>, {
346
+ size: "s" | "m";
347
+ placeholder: string;
348
+ clearLabel: string;
349
+ searchPlaceholder: string;
350
+ selectLabel: string;
351
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
352
+ combobox: HTMLDivElement;
353
+ comboboxControl: HTMLButtonElement;
354
+ listbox: ({
355
+ $: ComponentInternalInstance;
356
+ $data: {};
357
+ $props: {
358
+ readonly modelValue: string | number | null | (string | number)[];
359
+ readonly id: string;
360
+ readonly open?: boolean | undefined;
361
+ readonly multiple?: boolean | undefined;
362
+ readonly readonly?: boolean | undefined;
363
+ readonly search?: boolean | undefined;
364
+ readonly actions?: boolean | undefined;
365
+ readonly checkableSections?: boolean | undefined;
366
+ readonly searchPlaceholder?: string | undefined;
367
+ readonly selectLabel?: string | undefined;
368
+ readonly clearLabel?: string | undefined;
369
+ readonly options: Array<ListboxOption>;
370
+ readonly "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
371
+ readonly onOpen?: (() => any) | undefined;
372
+ readonly onClose?: (() => any) | undefined;
373
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
374
+ $attrs: Attrs;
375
+ $refs: {
376
+ [x: string]: unknown;
377
+ } & {
378
+ listboxEl: HTMLDivElement;
379
+ textInput: ({
380
+ $: ComponentInternalInstance;
381
+ $data: {};
382
+ $props: {
383
+ readonly id: string;
384
+ readonly name?: string | undefined;
385
+ readonly modelValue?: string | number | undefined;
386
+ readonly placeholder?: string | undefined;
387
+ readonly inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text" | undefined;
388
+ readonly isInvalid?: boolean | undefined;
389
+ readonly disabled?: boolean | undefined;
390
+ readonly size?: "s" | "m" | undefined;
391
+ readonly readonly?: boolean | undefined;
392
+ readonly isClearable?: boolean | undefined;
393
+ readonly clearLabel?: string | undefined;
394
+ readonly prefix?: string | undefined;
395
+ readonly suffix?: string | undefined;
396
+ readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
397
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
398
+ $attrs: Attrs;
399
+ $refs: {
400
+ [x: string]: unknown;
401
+ } & {
402
+ textInput: HTMLInputElement;
403
+ };
404
+ $slots: Readonly<{
405
+ [name: string]: Slot<any> | undefined;
406
+ }>;
407
+ $root: ComponentPublicInstance | null;
408
+ $parent: ComponentPublicInstance | null;
409
+ $host: Element | null;
410
+ $emit: (event: "update:modelValue", value: string | number) => void;
411
+ $el: any;
412
+ $options: ComponentOptionsBase<Readonly<{
413
+ id: string;
414
+ name?: string;
415
+ modelValue?: string | number;
416
+ placeholder?: string;
417
+ inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
418
+ isInvalid?: boolean;
419
+ disabled?: boolean;
420
+ size?: "s" | "m";
421
+ readonly?: boolean;
422
+ isClearable?: boolean;
423
+ clearLabel?: string;
424
+ prefix?: string;
425
+ suffix?: string;
426
+ }> & Readonly<{
427
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
428
+ }>, {
429
+ focus: () => void;
430
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
431
+ "update:modelValue": (value: string | number) => any;
432
+ }, string, {
433
+ size: "s" | "m";
434
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
435
+ clearLabel: string;
436
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
437
+ beforeCreate?: (() => void) | (() => void)[];
438
+ created?: (() => void) | (() => void)[];
439
+ beforeMount?: (() => void) | (() => void)[];
440
+ mounted?: (() => void) | (() => void)[];
441
+ beforeUpdate?: (() => void) | (() => void)[];
442
+ updated?: (() => void) | (() => void)[];
443
+ activated?: (() => void) | (() => void)[];
444
+ deactivated?: (() => void) | (() => void)[];
445
+ beforeDestroy?: (() => void) | (() => void)[];
446
+ beforeUnmount?: (() => void) | (() => void)[];
447
+ destroyed?: (() => void) | (() => void)[];
448
+ unmounted?: (() => void) | (() => void)[];
449
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
450
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
451
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
452
+ };
453
+ $forceUpdate: () => void;
454
+ $nextTick: nextTick;
455
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
456
+ } & Readonly<{
457
+ size: "s" | "m";
458
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
459
+ clearLabel: string;
460
+ }> & Omit<Readonly<{
461
+ id: string;
462
+ name?: string;
463
+ modelValue?: string | number;
464
+ placeholder?: string;
465
+ inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
466
+ isInvalid?: boolean;
467
+ disabled?: boolean;
468
+ size?: "s" | "m";
469
+ readonly?: boolean;
470
+ isClearable?: boolean;
471
+ clearLabel?: string;
472
+ prefix?: string;
473
+ suffix?: string;
474
+ }> & Readonly<{
475
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
476
+ }>, "focus" | ("size" | "inputType" | "clearLabel")> & {
477
+ focus: () => void;
478
+ } & {} & ComponentCustomProperties & {} & {
479
+ $slots: Readonly<{
480
+ icon?: VNode;
481
+ }> & {
482
+ icon?: VNode;
483
+ };
484
+ }) | null;
485
+ };
486
+ $slots: Readonly<{
487
+ [name: string]: Slot<any> | undefined;
488
+ }>;
489
+ $root: ComponentPublicInstance | null;
490
+ $parent: ComponentPublicInstance | null;
491
+ $host: Element | null;
492
+ $emit: ((event: "update:modelValue", value: string | number | (string | number)[] | null) => void) & ((event: "open") => void) & ((event: "close") => void);
493
+ $el: HTMLDivElement;
494
+ $options: ComponentOptionsBase<Readonly<{
495
+ modelValue: string | number | null | (string | number)[];
496
+ id: string;
497
+ open?: boolean;
498
+ multiple?: boolean;
499
+ readonly?: boolean;
500
+ search?: boolean;
501
+ actions?: boolean;
502
+ checkableSections?: boolean;
503
+ searchPlaceholder?: string;
504
+ selectLabel?: string;
505
+ clearLabel?: string;
506
+ options: Array<ListboxOption>;
507
+ }> & Readonly<{
508
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
509
+ onOpen?: (() => any) | undefined;
510
+ onClose?: (() => any) | undefined;
511
+ }>, {
512
+ handleKeydown: (event: KeyboardEvent) => void;
513
+ toggleValue: (item?: ListboxOption) => void;
514
+ clearSelection: () => void;
515
+ listboxEl: Readonly<ShallowRef<HTMLDivElement | null>>;
516
+ activeIndex: Ref<number, number>;
517
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
518
+ "update:modelValue": (value: string | number | (string | number)[] | null) => any;
519
+ open: () => any;
520
+ close: () => any;
521
+ }, string, {
522
+ clearLabel: string;
523
+ searchPlaceholder: string;
524
+ selectLabel: string;
525
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
526
+ beforeCreate?: (() => void) | (() => void)[];
527
+ created?: (() => void) | (() => void)[];
528
+ beforeMount?: (() => void) | (() => void)[];
529
+ mounted?: (() => void) | (() => void)[];
530
+ beforeUpdate?: (() => void) | (() => void)[];
531
+ updated?: (() => void) | (() => void)[];
532
+ activated?: (() => void) | (() => void)[];
533
+ deactivated?: (() => void) | (() => void)[];
534
+ beforeDestroy?: (() => void) | (() => void)[];
535
+ beforeUnmount?: (() => void) | (() => void)[];
536
+ destroyed?: (() => void) | (() => void)[];
537
+ unmounted?: (() => void) | (() => void)[];
538
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
539
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
540
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
541
+ };
542
+ $forceUpdate: () => void;
543
+ $nextTick: nextTick;
544
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
545
+ } & Readonly<{
546
+ clearLabel: string;
547
+ searchPlaceholder: string;
548
+ selectLabel: string;
549
+ }> & Omit<Readonly<{
550
+ modelValue: string | number | null | (string | number)[];
551
+ id: string;
552
+ open?: boolean;
553
+ multiple?: boolean;
554
+ readonly?: boolean;
555
+ search?: boolean;
556
+ actions?: boolean;
557
+ checkableSections?: boolean;
558
+ searchPlaceholder?: string;
559
+ selectLabel?: string;
560
+ clearLabel?: string;
561
+ options: Array<ListboxOption>;
562
+ }> & Readonly<{
563
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
564
+ onOpen?: (() => any) | undefined;
565
+ onClose?: (() => any) | undefined;
566
+ }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & {
567
+ handleKeydown: (event: KeyboardEvent) => void;
568
+ toggleValue: (item?: ListboxOption) => void;
569
+ clearSelection: () => void;
570
+ listboxEl: HTMLDivElement | null;
571
+ activeIndex: number;
572
+ } & {} & ComponentCustomProperties & {} & {
573
+ $slots: Readonly<{
574
+ item(props: {
575
+ item: ListboxOption;
576
+ }): VNode;
577
+ }> & {
578
+ item(props: {
579
+ item: ListboxOption;
580
+ }): VNode;
581
+ };
582
+ }) | null;
583
+ }, HTMLDivElement>;
321
584
 
322
585
  /**
323
586
  * 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.
@@ -461,9 +724,79 @@ declare type __VLS_Props_14 = {
461
724
  };
462
725
 
463
726
  /**
464
- * 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.
727
+ * A combobox is an input field that allows users to select an option from a dropdown list or enter a custom value. It combines the functionality of a text input and a dropdown menu, providing flexibility and ease of use in forms and user interfaces.
465
728
  */
466
729
  declare type __VLS_Props_15 = {
730
+ /**
731
+ * The current selected value(s) of the combobox.
732
+ */
733
+ modelValue: string | number | null | (string | number)[];
734
+ /**
735
+ * Enable multiple selection mode.
736
+ */
737
+ multiple?: boolean;
738
+ /**
739
+ * Size of the combobox: small ('s') or medium ('m').
740
+ */
741
+ size?: 's' | 'm';
742
+ /**
743
+ * Disable the combobox input.
744
+ */
745
+ disabled?: boolean;
746
+ /**
747
+ * Make the combobox read-only.
748
+ */
749
+ readonly?: boolean;
750
+ /**
751
+ * Mark the combobox as invalid.
752
+ */
753
+ invalid?: boolean;
754
+ /**
755
+ * Show a clear selection button.
756
+ */
757
+ clearable?: boolean;
758
+ /**
759
+ * Enable the search input inside the listbox.
760
+ */
761
+ search?: boolean;
762
+ /**
763
+ * Show select all / clear buttons when multiple.
764
+ */
765
+ actions?: boolean;
766
+ /**
767
+ * Enable checkable section headers in the listbox.
768
+ */
769
+ checkableSections?: boolean;
770
+ /**
771
+ * Placeholder text when no value is selected.
772
+ */
773
+ placeholder?: string;
774
+ /**
775
+ * Label for the selected items counter.
776
+ */
777
+ counterLabel?: string;
778
+ /**
779
+ * Placeholder text for the search input.
780
+ */
781
+ searchPlaceholder?: string;
782
+ /**
783
+ * Label for the "Select all" button.
784
+ */
785
+ selectLabel?: string;
786
+ /**
787
+ * Label for the "Clear selection" button.
788
+ */
789
+ clearLabel?: string;
790
+ /**
791
+ * Array of options to display in the listbox.
792
+ */
793
+ options: Array<ListboxOption>;
794
+ };
795
+
796
+ /**
797
+ * 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.
798
+ */
799
+ declare type __VLS_Props_16 = {
467
800
  /**
468
801
  * If `true`, the container will take the full width.
469
802
  */
@@ -473,7 +806,7 @@ declare type __VLS_Props_15 = {
473
806
  /**
474
807
  * 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).
475
808
  */
476
- declare type __VLS_Props_16 = {
809
+ declare type __VLS_Props_17 = {
477
810
  /**
478
811
  * A unique identifier for the datepicker element, used to associate the label with the form element.
479
812
  */
@@ -515,7 +848,7 @@ declare type __VLS_Props_16 = {
515
848
  /**
516
849
  * 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.
517
850
  */
518
- declare type __VLS_Props_17 = {
851
+ declare type __VLS_Props_18 = {
519
852
  /**
520
853
  * Determines the orientation of the divider.
521
854
  */
@@ -533,7 +866,7 @@ declare type __VLS_Props_17 = {
533
866
  /**
534
867
  * 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.
535
868
  */
536
- declare type __VLS_Props_18 = {
869
+ declare type __VLS_Props_19 = {
537
870
  /**
538
871
  * If `true`, display the drawer.
539
872
  */
@@ -568,10 +901,36 @@ declare type __VLS_Props_18 = {
568
901
  closeOnOverlay?: boolean;
569
902
  };
570
903
 
904
+ declare type __VLS_Props_2 = {
905
+ /**
906
+ * A unique identifier for the accordion item.
907
+ * It links the trigger button (`aria-controls`) to its associated content (`aria-labelledby`),
908
+ * ensuring accessibility and tracking the open/closed state.
909
+ * If no ID is provided, a unique one is generated automatically.
910
+ */
911
+ id: string;
912
+ /**
913
+ * 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.
914
+ */
915
+ title: string;
916
+ /**
917
+ * An optional secondary heading displayed below the title. It provides additional context or detail about the content of the accordion item.
918
+ */
919
+ subtitle?: string;
920
+ /**
921
+ * The main content of the accordion item. This is the information revealed when the accordion is expanded, typically containing text, HTML, or other elements.
922
+ */
923
+ content?: string;
924
+ /**
925
+ * Icon component to display before the item title.
926
+ */
927
+ icon?: Component;
928
+ };
929
+
571
930
  /**
572
931
  * 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.
573
932
  */
574
- declare type __VLS_Props_19 = {
933
+ declare type __VLS_Props_20 = {
575
934
  /**
576
935
  * A unique identifier for the form field, used to associate the label with the form element.
577
936
  */
@@ -614,36 +973,10 @@ declare type __VLS_Props_19 = {
614
973
  message?: string;
615
974
  };
616
975
 
617
- declare type __VLS_Props_2 = {
618
- /**
619
- * A unique identifier for the accordion item.
620
- * It links the trigger button (`aria-controls`) to its associated content (`aria-labelledby`),
621
- * ensuring accessibility and tracking the open/closed state.
622
- * If no ID is provided, a unique one is generated automatically.
623
- */
624
- id: string;
625
- /**
626
- * 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.
627
- */
628
- title: string;
629
- /**
630
- * An optional secondary heading displayed below the title. It provides additional context or detail about the content of the accordion item.
631
- */
632
- subtitle?: string;
633
- /**
634
- * The main content of the accordion item. This is the information revealed when the accordion is expanded, typically containing text, HTML, or other elements.
635
- */
636
- content?: string;
637
- /**
638
- * Icon component to display before the item title.
639
- */
640
- icon?: Component;
641
- };
642
-
643
976
  /**
644
977
  * 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.
645
978
  */
646
- declare type __VLS_Props_20 = {
979
+ declare type __VLS_Props_21 = {
647
980
  /**
648
981
  * A unique identifier for the form field, used to associate the label with the form element.
649
982
  */
@@ -677,7 +1010,7 @@ declare type __VLS_Props_20 = {
677
1010
  /**
678
1011
  * A file uploader allows users to upload one or multiple files by either dragging and dropping files into a dedicated area or selecting them manually through their local folders. It provides real-time feedback on upload progress and file status, including file name, size, and success or error indicators. File uploaders are commonly used in forms, content management systems, and document submission processes to facilitate seamless file handling.
679
1012
  */
680
- declare type __VLS_Props_21 = {
1013
+ declare type __VLS_Props_22 = {
681
1014
  /**
682
1015
  * Represents the file to be displayed in the file uploader item.
683
1016
  */
@@ -707,7 +1040,7 @@ declare type __VLS_Props_21 = {
707
1040
  /**
708
1041
  * 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.
709
1042
  */
710
- declare type __VLS_Props_22 = {
1043
+ declare type __VLS_Props_23 = {
711
1044
  /**
712
1045
  * Label of the Flag.
713
1046
  */
@@ -721,7 +1054,7 @@ declare type __VLS_Props_22 = {
721
1054
  /**
722
1055
  * 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.
723
1056
  */
724
- declare type __VLS_Props_23 = {
1057
+ declare type __VLS_Props_24 = {
725
1058
  /**
726
1059
  * Defines the visual style of the icon button.
727
1060
  */
@@ -755,7 +1088,7 @@ declare type __VLS_Props_23 = {
755
1088
  /**
756
1089
  * 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.
757
1090
  */
758
- declare type __VLS_Props_24 = {
1091
+ declare type __VLS_Props_25 = {
759
1092
  /**
760
1093
  * The current value of the kpi item.
761
1094
  */
@@ -785,7 +1118,7 @@ declare type __VLS_Props_24 = {
785
1118
  /**
786
1119
  * 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.
787
1120
  */
788
- declare type __VLS_Props_25 = {
1121
+ declare type __VLS_Props_26 = {
789
1122
  /**
790
1123
  * Allows to define the progress bar size.
791
1124
  */
@@ -799,7 +1132,7 @@ declare type __VLS_Props_25 = {
799
1132
  /**
800
1133
  * 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.
801
1134
  */
802
- declare type __VLS_Props_26 = {
1135
+ declare type __VLS_Props_27 = {
803
1136
  /**
804
1137
  * The current value of the progress bar.
805
1138
  */
@@ -809,7 +1142,7 @@ declare type __VLS_Props_26 = {
809
1142
  /**
810
1143
  * 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.
811
1144
  */
812
- declare type __VLS_Props_27 = {
1145
+ declare type __VLS_Props_28 = {
813
1146
  /**
814
1147
  * Position of the icon relative to the text.
815
1148
  */
@@ -843,7 +1176,7 @@ declare type __VLS_Props_27 = {
843
1176
  /**
844
1177
  * 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.
845
1178
  */
846
- declare type __VLS_Props_28 = {
1179
+ declare type __VLS_Props_29 = {
847
1180
  /**
848
1181
  * Specifies the visual appearance of the loader.
849
1182
  */
@@ -858,10 +1191,20 @@ declare type __VLS_Props_28 = {
858
1191
  text?: string;
859
1192
  };
860
1193
 
1194
+ /**
1195
+ * 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.
1196
+ */
1197
+ declare type __VLS_Props_3 = {
1198
+ /**
1199
+ * If `true`, adds a shadow to the action bottom bar.
1200
+ */
1201
+ shadow?: boolean;
1202
+ };
1203
+
861
1204
  /**
862
1205
  * 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.
863
1206
  */
864
- declare type __VLS_Props_29 = {
1207
+ declare type __VLS_Props_30 = {
865
1208
  /**
866
1209
  * Controls the visibility of the loading overlay.
867
1210
  */
@@ -872,20 +1215,10 @@ declare type __VLS_Props_29 = {
872
1215
  text?: string;
873
1216
  };
874
1217
 
875
- /**
876
- * 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.
877
- */
878
- declare type __VLS_Props_3 = {
879
- /**
880
- * If `true`, adds a shadow to the action bottom bar.
881
- */
882
- shadow?: boolean;
883
- };
884
-
885
1218
  /**
886
1219
  * 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.
887
1220
  */
888
- declare type __VLS_Props_30 = {
1221
+ declare type __VLS_Props_31 = {
889
1222
  /**
890
1223
  * if `true`, display the modal.
891
1224
  */
@@ -915,7 +1248,7 @@ declare type __VLS_Props_30 = {
915
1248
  /**
916
1249
  * 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.
917
1250
  */
918
- declare type __VLS_Props_31 = {
1251
+ declare type __VLS_Props_32 = {
919
1252
  /**
920
1253
  * The total number of steps to display.
921
1254
  */
@@ -941,7 +1274,7 @@ declare type __VLS_Props_31 = {
941
1274
  /**
942
1275
  * 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.
943
1276
  */
944
- declare type __VLS_Props_32 = {
1277
+ declare type __VLS_Props_33 = {
945
1278
  /**
946
1279
  * Content of the badge.
947
1280
  */
@@ -959,7 +1292,7 @@ declare type __VLS_Props_32 = {
959
1292
  /**
960
1293
  * 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.
961
1294
  */
962
- declare type __VLS_Props_33 = {
1295
+ declare type __VLS_Props_34 = {
963
1296
  /**
964
1297
  * Controls the visibility of the overlay.
965
1298
  */
@@ -973,7 +1306,7 @@ declare type __VLS_Props_33 = {
973
1306
  /**
974
1307
  * 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.
975
1308
  */
976
- declare type __VLS_Props_34 = {
1309
+ declare type __VLS_Props_35 = {
977
1310
  /**
978
1311
  * Main title displayed in the page header.
979
1312
  */
@@ -1003,7 +1336,7 @@ declare type __VLS_Props_34 = {
1003
1336
  /**
1004
1337
  * 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.
1005
1338
  */
1006
- declare type __VLS_Props_35 = {
1339
+ declare type __VLS_Props_36 = {
1007
1340
  /**
1008
1341
  * A unique identifier for the pagination.
1009
1342
  */
@@ -1033,7 +1366,7 @@ declare type __VLS_Props_35 = {
1033
1366
  /**
1034
1367
  * 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.
1035
1368
  */
1036
- declare type __VLS_Props_36 = {
1369
+ declare type __VLS_Props_37 = {
1037
1370
  /**
1038
1371
  * A unique identifier for the password input element, used to associate the label with the form element.
1039
1372
  */
@@ -1082,7 +1415,7 @@ declare type __VLS_Props_36 = {
1082
1415
  /**
1083
1416
  * 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.
1084
1417
  */
1085
- declare type __VLS_Props_37 = {
1418
+ declare type __VLS_Props_38 = {
1086
1419
  /**
1087
1420
  * A unique identifier for the phone number input element, used to associate the label with the form element.
1088
1421
  */
@@ -1134,72 +1467,37 @@ declare type __VLS_Props_37 = {
1134
1467
  };
1135
1468
 
1136
1469
  /**
1137
- * 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).
1138
- */
1139
- declare type __VLS_Props_38 = {
1140
- /**
1141
- * A unique identifier for the pincode element, used to associate the label with the form element.
1142
- */
1143
- id: string;
1144
- /**
1145
- * The number of input displayed in the pincode element.
1146
- */
1147
- length?: 4 | 5 | 6;
1148
- /**
1149
- * The name attribute for the pincode element, typically used for form submission.
1150
- */
1151
- name?: string;
1152
- /**
1153
- * The current value of the pincode field.
1154
- */
1155
- modelValue?: string | number;
1156
- /**
1157
- * If `true`, applies an invalid state to the pincode.
1158
- */
1159
- isInvalid?: boolean;
1160
- /**
1161
- * If `true`, disables the pincode, making it non-interactive.
1162
- */
1163
- disabled?: boolean;
1164
- /**
1165
- * If `true`, the pincode is read-only (cannot be edited).
1166
- */
1167
- readonly?: boolean;
1168
- };
1169
-
1170
- /**
1171
- * 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.
1470
+ * 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).
1172
1471
  */
1173
1472
  declare type __VLS_Props_39 = {
1174
1473
  /**
1175
- * Allows to define the popover appearance.
1474
+ * A unique identifier for the pincode element, used to associate the label with the form element.
1176
1475
  */
1177
- appearance?: 'standard' | 'inverse';
1476
+ id: string;
1178
1477
  /**
1179
- * Defines the preferred position of the popover relative to its activator.
1478
+ * The number of input displayed in the pincode element.
1180
1479
  */
1181
- position?: 'top' | 'right' | 'bottom' | 'left';
1480
+ length?: 4 | 5 | 6;
1182
1481
  /**
1183
- * Controls the visibility of the popover pointer (arrow).
1482
+ * The name attribute for the pincode element, typically used for form submission.
1184
1483
  */
1185
- pointer?: boolean;
1484
+ name?: string;
1186
1485
  /**
1187
- * Sets the overall size of the popover.
1486
+ * The current value of the pincode field.
1188
1487
  */
1189
- size?: 's' | 'm' | 'l';
1488
+ modelValue?: string | number;
1190
1489
  /**
1191
- * Displays a close icon button inside the popover.
1192
- * Clicking the button will close the popover.
1490
+ * If `true`, applies an invalid state to the pincode.
1193
1491
  */
1194
- closable?: boolean;
1492
+ isInvalid?: boolean;
1195
1493
  /**
1196
- * Title displayed at the top of the popover.
1494
+ * If `true`, disables the pincode, making it non-interactive.
1197
1495
  */
1198
- title?: string;
1496
+ disabled?: boolean;
1199
1497
  /**
1200
- * Supplementary text displayed below the title.
1498
+ * If `true`, the pincode is read-only (cannot be edited).
1201
1499
  */
1202
- description?: string;
1500
+ readonly?: boolean;
1203
1501
  };
1204
1502
 
1205
1503
  /**
@@ -1218,6 +1516,10 @@ declare type __VLS_Props_4 = {
1218
1516
  * An array of objects that allows you to provide all the data needed to generate the content for each item.
1219
1517
  */
1220
1518
  items: Array<{
1519
+ /**
1520
+ * Unique identifier for the item.
1521
+ */
1522
+ id?: string;
1221
1523
  /**
1222
1524
  * The icon displayed for the item from Mozaic-icon-vue.
1223
1525
  */
@@ -1242,9 +1544,44 @@ declare type __VLS_Props_4 = {
1242
1544
  };
1243
1545
 
1244
1546
  /**
1245
- * 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.
1547
+ * 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.
1246
1548
  */
1247
1549
  declare type __VLS_Props_40 = {
1550
+ /**
1551
+ * Allows to define the popover appearance.
1552
+ */
1553
+ appearance?: 'standard' | 'inverse';
1554
+ /**
1555
+ * Defines the preferred position of the popover relative to its activator.
1556
+ */
1557
+ position?: 'top' | 'right' | 'bottom' | 'left';
1558
+ /**
1559
+ * Controls the visibility of the popover pointer (arrow).
1560
+ */
1561
+ pointer?: boolean;
1562
+ /**
1563
+ * Sets the overall size of the popover.
1564
+ */
1565
+ size?: 's' | 'm' | 'l';
1566
+ /**
1567
+ * Displays a close icon button inside the popover.
1568
+ * Clicking the button will close the popover.
1569
+ */
1570
+ closable?: boolean;
1571
+ /**
1572
+ * Title displayed at the top of the popover.
1573
+ */
1574
+ title?: string;
1575
+ /**
1576
+ * Supplementary text displayed below the title.
1577
+ */
1578
+ description?: string;
1579
+ };
1580
+
1581
+ /**
1582
+ * 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.
1583
+ */
1584
+ declare type __VLS_Props_41 = {
1248
1585
  /**
1249
1586
  * A unique identifier for the quantity selector element, used to associate the label with the form element.
1250
1587
  */
@@ -1298,7 +1635,7 @@ declare type __VLS_Props_40 = {
1298
1635
  /**
1299
1636
  * 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.
1300
1637
  */
1301
- declare type __VLS_Props_41 = {
1638
+ declare type __VLS_Props_42 = {
1302
1639
  /**
1303
1640
  * A unique identifier for the radio, used to associate the label with the form element.
1304
1641
  */
@@ -1328,7 +1665,7 @@ declare type __VLS_Props_41 = {
1328
1665
  /**
1329
1666
  * 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).
1330
1667
  */
1331
- declare type __VLS_Props_42 = {
1668
+ declare type __VLS_Props_43 = {
1332
1669
  /**
1333
1670
  * The name attribute for the radio element, typically used for form submission.
1334
1671
  */
@@ -1360,7 +1697,7 @@ declare type __VLS_Props_42 = {
1360
1697
  /**
1361
1698
  * 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.
1362
1699
  */
1363
- declare type __VLS_Props_43 = {
1700
+ declare type __VLS_Props_44 = {
1364
1701
  /**
1365
1702
  * Defines the currently active tab.
1366
1703
  *
@@ -1394,7 +1731,7 @@ declare type __VLS_Props_43 = {
1394
1731
  /**
1395
1732
  * 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).
1396
1733
  */
1397
- declare type __VLS_Props_44 = {
1734
+ declare type __VLS_Props_45 = {
1398
1735
  /**
1399
1736
  * A unique identifier for the select, used to associate the label with the form element.
1400
1737
  */
@@ -1442,7 +1779,7 @@ declare type __VLS_Props_44 = {
1442
1779
  /**
1443
1780
  * 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.
1444
1781
  */
1445
- declare type __VLS_Props_45 = {
1782
+ declare type __VLS_Props_46 = {
1446
1783
  /**
1447
1784
  * the state of the expanded sidebar, bound via v-model.
1448
1785
  */
@@ -1452,7 +1789,7 @@ declare type __VLS_Props_45 = {
1452
1789
  /**
1453
1790
  * SidebarExpandableItem is a component that renders a sidebar item which can either expand to show a nested submenu or display a floating menu when the sidebar is collapsed. It supports optional icons, keyboard navigation, and accessibility attributes, and allows for custom submenu items via slots.
1454
1791
  */
1455
- declare type __VLS_Props_46 = {
1792
+ declare type __VLS_Props_47 = {
1456
1793
  /**
1457
1794
  * The text displayed for the sidebar item in its expanded state.
1458
1795
  */
@@ -1470,7 +1807,7 @@ declare type __VLS_Props_46 = {
1470
1807
  /**
1471
1808
  * SidebarFooter is a component that renders the footer of a sidebar. It can display a user profile with an optional avatar, title, subtitle, and link, and includes a button to expand or collapse the sidebar.
1472
1809
  */
1473
- declare type __VLS_Props_47 = {
1810
+ declare type __VLS_Props_48 = {
1474
1811
  /**
1475
1812
  * The main text or name displayed in the sidebar footer profile.
1476
1813
  */
@@ -1496,7 +1833,7 @@ declare type __VLS_Props_47 = {
1496
1833
  /**
1497
1834
  * SidebarHeader is a component that renders the header of a sidebar, displaying a logo and a main title.
1498
1835
  */
1499
- declare type __VLS_Props_48 = {
1836
+ declare type __VLS_Props_49 = {
1500
1837
  /**
1501
1838
  * The main title text displayed in the sidebar header.
1502
1839
  */
@@ -1507,10 +1844,20 @@ declare type __VLS_Props_48 = {
1507
1844
  logo: string;
1508
1845
  };
1509
1846
 
1847
+ /**
1848
+ * 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.
1849
+ */
1850
+ declare type __VLS_Props_5 = {
1851
+ /**
1852
+ * Allows to define the avatar size.
1853
+ */
1854
+ size?: 's' | 'm' | 'l';
1855
+ };
1856
+
1510
1857
  /**
1511
1858
  * SidebarNavItem is a component that renders a sidebar navigation item with optional icon support. It handles active, locked, and external states, shows tooltips or floating items when the sidebar is collapsed, and supports click events.
1512
1859
  */
1513
- declare type __VLS_Props_49 = {
1860
+ declare type __VLS_Props_50 = {
1514
1861
  tag?: string;
1515
1862
  /**
1516
1863
  * The text label displayed for the navigation item.
@@ -1538,20 +1885,10 @@ declare type __VLS_Props_49 = {
1538
1885
  active?: boolean;
1539
1886
  };
1540
1887
 
1541
- /**
1542
- * 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.
1543
- */
1544
- declare type __VLS_Props_5 = {
1545
- /**
1546
- * Allows to define the avatar size.
1547
- */
1548
- size?: 's' | 'm' | 'l';
1549
- };
1550
-
1551
1888
  /**
1552
1889
  * SidebarShortcutItem is a component that renders a sidebar shortcut link with an optional icon and label, providing quick access to a specific URL.
1553
1890
  */
1554
- declare type __VLS_Props_50 = {
1891
+ declare type __VLS_Props_51 = {
1555
1892
  /**
1556
1893
  * The text label displayed for the shortcut item.
1557
1894
  */
@@ -1569,7 +1906,7 @@ declare type __VLS_Props_50 = {
1569
1906
  /**
1570
1907
  * SidebarShortcuts is a component that displays a list of sidebar shortcut items. It supports stacked or grid layouts, shows a floating overlay when the sidebar is collapsed, and allows custom shortcut items via slots.
1571
1908
  */
1572
- declare type __VLS_Props_51 = {
1909
+ declare type __VLS_Props_52 = {
1573
1910
  /**
1574
1911
  * Determines the layout of the sidebar shortcuts. When true, the shortcuts are displayed in a vertical stacked list. When false or not provided, the shortcuts are arranged in a grid layout.
1575
1912
  */
@@ -1579,7 +1916,7 @@ declare type __VLS_Props_51 = {
1579
1916
  /**
1580
1917
  * 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.
1581
1918
  */
1582
- declare type __VLS_Props_52 = {
1919
+ declare type __VLS_Props_53 = {
1583
1920
  /**
1584
1921
  * Determines whether the rating is interactive or read-only.
1585
1922
  * When true, all user interactions (click, hover, keyboard) are disabled.
@@ -1626,7 +1963,7 @@ declare type __VLS_Props_52 = {
1626
1963
  /**
1627
1964
  * 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.
1628
1965
  */
1629
- declare type __VLS_Props_53 = {
1966
+ declare type __VLS_Props_54 = {
1630
1967
  /**
1631
1968
  * Content of the status badge
1632
1969
  */
@@ -1640,7 +1977,7 @@ declare type __VLS_Props_53 = {
1640
1977
  /**
1641
1978
  * 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.
1642
1979
  */
1643
- declare type __VLS_Props_54 = {
1980
+ declare type __VLS_Props_55 = {
1644
1981
  /**
1645
1982
  * Allows to define the status dot type.
1646
1983
  */
@@ -1654,11 +1991,16 @@ declare type __VLS_Props_54 = {
1654
1991
  /**
1655
1992
  * 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.
1656
1993
  */
1657
- declare type __VLS_Props_55 = {
1994
+ declare type __VLS_Props_56 = {
1658
1995
  /**
1659
1996
  * Allows to define the status message style.
1660
1997
  */
1661
1998
  status?: 'info' | 'success' | 'warning' | 'error' | 'neutral' | 'inprogress';
1999
+ /**
2000
+ * Allows to define the status message appearance.
2001
+ * The accent status is used to highlight a specific message.
2002
+ */
2003
+ appearance?: 'standard' | 'accent';
1662
2004
  /**
1663
2005
  * Label of the status message.
1664
2006
  */
@@ -1668,7 +2010,7 @@ declare type __VLS_Props_55 = {
1668
2010
  /**
1669
2011
  * 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.
1670
2012
  */
1671
- declare type __VLS_Props_56 = {
2013
+ declare type __VLS_Props_57 = {
1672
2014
  /**
1673
2015
  * Title of the status notification.
1674
2016
  */
@@ -1690,7 +2032,7 @@ declare type __VLS_Props_56 = {
1690
2032
  /**
1691
2033
  * 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.
1692
2034
  */
1693
- declare type __VLS_Props_57 = {
2035
+ declare type __VLS_Props_58 = {
1694
2036
  /**
1695
2037
  * Current step of the stepper compact.
1696
2038
  */
@@ -1724,7 +2066,7 @@ declare type __VLS_Props_57 = {
1724
2066
  /**
1725
2067
  * 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.
1726
2068
  */
1727
- declare type __VLS_Props_58 = {
2069
+ declare type __VLS_Props_59 = {
1728
2070
  /**
1729
2071
  * Current step of the stepper compact.
1730
2072
  */
@@ -1744,67 +2086,67 @@ declare type __VLS_Props_58 = {
1744
2086
  };
1745
2087
 
1746
2088
  /**
1747
- * 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.
2089
+ * 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.
1748
2090
  */
1749
- declare type __VLS_Props_59 = {
2091
+ declare type __VLS_Props_6 = {
1750
2092
  /**
1751
- * Defines the currently active step.
1752
- *
1753
- * - If a `number` is provided, it represents the 1-based position of the step
1754
- * in the `steps` array (e.g. `1` for the first step).
1755
- * - If a `string` is provided, it must match the `id` of one of the steps.
2093
+ * Allows to define the breadcrumb appearance.
1756
2094
  */
1757
- currentStep?: string | number;
2095
+ appearance?: 'standard' | 'inverse';
1758
2096
  /**
1759
- * Steps of the stepper inline.
2097
+ * Links of the breadcrumb.
1760
2098
  */
1761
- steps?: Array<{
2099
+ links: Array<{
1762
2100
  /**
1763
- * Uniquer identifier for the step.
2101
+ * The label displayed for the link.
1764
2102
  */
1765
- id?: string;
2103
+ label: string;
1766
2104
  /**
1767
- * Label of the step.
2105
+ * URL for the link (for external links or the `to` prop for `router-link`).
1768
2106
  */
1769
- label: string;
2107
+ href: string;
1770
2108
  /**
1771
- * Optional additional information under the label.
2109
+ * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
1772
2110
  */
1773
- additionalInfo?: string;
2111
+ router?: boolean;
1774
2112
  }>;
1775
2113
  };
1776
2114
 
1777
2115
  /**
1778
- * 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.
2116
+ * 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.
1779
2117
  */
1780
- declare type __VLS_Props_6 = {
2118
+ declare type __VLS_Props_60 = {
1781
2119
  /**
1782
- * Allows to define the breadcrumb appearance.
2120
+ * Defines the currently active step.
2121
+ *
2122
+ * - If a `number` is provided, it represents the 1-based position of the step
2123
+ * in the `steps` array (e.g. `1` for the first step).
2124
+ * - If a `string` is provided, it must match the `id` of one of the steps.
1783
2125
  */
1784
- appearance?: 'standard' | 'inverse';
2126
+ currentStep?: string | number;
1785
2127
  /**
1786
- * Links of the breadcrumb.
2128
+ * Steps of the stepper inline.
1787
2129
  */
1788
- links: Array<{
2130
+ steps?: Array<{
1789
2131
  /**
1790
- * The label displayed for the link.
2132
+ * Uniquer identifier for the step.
1791
2133
  */
1792
- label: string;
2134
+ id?: string;
1793
2135
  /**
1794
- * URL for the link (for external links or the `to` prop for `router-link`).
2136
+ * Label of the step.
1795
2137
  */
1796
- href: string;
2138
+ label: string;
1797
2139
  /**
1798
- * If `true`, the link will be rendered as a `router-link` for internal navigation (Vue Router).
2140
+ * Optional additional information under the label.
1799
2141
  */
1800
- router?: boolean;
2142
+ additionalInfo?: string;
1801
2143
  }>;
1802
2144
  };
1803
2145
 
1804
2146
  /**
1805
2147
  * 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.
1806
2148
  */
1807
- declare type __VLS_Props_60 = {
2149
+ declare type __VLS_Props_61 = {
1808
2150
  /**
1809
2151
  * A description indicating the purpose of the set of tabs. Useful for improving the accessibility of the component.
1810
2152
  */
@@ -1854,7 +2196,7 @@ declare type __VLS_Props_60 = {
1854
2196
  /**
1855
2197
  * 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).
1856
2198
  */
1857
- declare type __VLS_Props_61 = {
2199
+ declare type __VLS_Props_62 = {
1858
2200
  /**
1859
2201
  * Defines the behavior and layout of the tag.
1860
2202
  */
@@ -1896,7 +2238,7 @@ declare type __VLS_Props_61 = {
1896
2238
  /**
1897
2239
  * 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).
1898
2240
  */
1899
- declare type __VLS_Props_62 = {
2241
+ declare type __VLS_Props_63 = {
1900
2242
  /**
1901
2243
  * A unique identifier for the textarea, used to associate the label with the form element.
1902
2244
  */
@@ -1942,7 +2284,7 @@ declare type __VLS_Props_62 = {
1942
2284
  /**
1943
2285
  * 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).
1944
2286
  */
1945
- declare type __VLS_Props_63 = {
2287
+ declare type __VLS_Props_64 = {
1946
2288
  /**
1947
2289
  * A unique identifier for the input element, used to associate the label with the form element.
1948
2290
  */
@@ -2000,7 +2342,7 @@ declare type __VLS_Props_63 = {
2000
2342
  /**
2001
2343
  * 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.
2002
2344
  */
2003
- declare type __VLS_Props_64 = {
2345
+ declare type __VLS_Props_65 = {
2004
2346
  /**
2005
2347
  * Defines the visual style of the tile.
2006
2348
  */
@@ -2014,7 +2356,7 @@ declare type __VLS_Props_64 = {
2014
2356
  /**
2015
2357
  * 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.
2016
2358
  */
2017
- declare type __VLS_Props_65 = {
2359
+ declare type __VLS_Props_66 = {
2018
2360
  /**
2019
2361
  * Defines the visual style of the tile.
2020
2362
  */
@@ -2046,7 +2388,7 @@ declare type __VLS_Props_65 = {
2046
2388
  /**
2047
2389
  * 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.
2048
2390
  */
2049
- declare type __VLS_Props_66 = {
2391
+ declare type __VLS_Props_67 = {
2050
2392
  /**
2051
2393
  * Defines the visual style of the tile.
2052
2394
  */
@@ -2068,7 +2410,7 @@ declare type __VLS_Props_66 = {
2068
2410
  /**
2069
2411
  * 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.
2070
2412
  */
2071
- declare type __VLS_Props_67 = {
2413
+ declare type __VLS_Props_68 = {
2072
2414
  /**
2073
2415
  * The current value of the tile (selected or not).
2074
2416
  */
@@ -2098,7 +2440,7 @@ declare type __VLS_Props_67 = {
2098
2440
  /**
2099
2441
  * 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.
2100
2442
  */
2101
- declare type __VLS_Props_68 = {
2443
+ declare type __VLS_Props_69 = {
2102
2444
  /**
2103
2445
  * If `true`, display the Toaster.
2104
2446
  */
@@ -2129,10 +2471,25 @@ declare type __VLS_Props_68 = {
2129
2471
  timeout?: number;
2130
2472
  };
2131
2473
 
2474
+ declare type __VLS_Props_7 = {
2475
+ /**
2476
+ * 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.
2477
+ */
2478
+ modelValue?: number;
2479
+ /**
2480
+ * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
2481
+ */
2482
+ items: MenuItem[];
2483
+ /**
2484
+ * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2485
+ */
2486
+ outlined?: boolean;
2487
+ };
2488
+
2132
2489
  /**
2133
2490
  * 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.
2134
2491
  */
2135
- declare type __VLS_Props_69 = {
2492
+ declare type __VLS_Props_70 = {
2136
2493
  /**
2137
2494
  * A unique identifier for the toggle, used to associate the label with the form element.
2138
2495
  */
@@ -2159,25 +2516,10 @@ declare type __VLS_Props_69 = {
2159
2516
  disabled?: boolean;
2160
2517
  };
2161
2518
 
2162
- declare type __VLS_Props_7 = {
2163
- /**
2164
- * 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.
2165
- */
2166
- modelValue?: number;
2167
- /**
2168
- * Defines the menu items, each of which can include an icon and act as a button, link, or router-link.
2169
- */
2170
- items: MenuItem[];
2171
- /**
2172
- * When enabled, adds a visible border around the wrapper to highlight or separate its content.
2173
- */
2174
- outlined?: boolean;
2175
- };
2176
-
2177
2519
  /**
2178
2520
  * 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).
2179
2521
  */
2180
- declare type __VLS_Props_70 = {
2522
+ declare type __VLS_Props_71 = {
2181
2523
  /**
2182
2524
  * The name attribute for the toggle element, typically used for form submission.
2183
2525
  */
@@ -2206,7 +2548,7 @@ declare type __VLS_Props_70 = {
2206
2548
  /**
2207
2549
  * 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.
2208
2550
  */
2209
- declare type __VLS_Props_71 = {
2551
+ declare type __VLS_Props_72 = {
2210
2552
  /**
2211
2553
  * A unique identifier for the tooltip, used to describe the tooltip.
2212
2554
  */
@@ -2287,26 +2629,43 @@ declare type __VLS_Props_9 = {
2287
2629
 
2288
2630
  declare type __VLS_PublicProps = {
2289
2631
  modelValue: number;
2290
- } & __VLS_Props_52;
2632
+ } & __VLS_Props_53;
2291
2633
 
2292
2634
  declare function __VLS_template(): {
2293
2635
  attrs: Partial<{}>;
2294
2636
  slots: Readonly<{
2295
2637
  /**
2296
- * Use this slot to display accordion items.
2638
+ * Use this slot to display accordion items.
2639
+ */
2640
+ default: VNode;
2641
+ }> & {
2642
+ /**
2643
+ * Use this slot to display accordion items.
2644
+ */
2645
+ default: VNode;
2646
+ };
2647
+ refs: {};
2648
+ rootEl: HTMLDivElement;
2649
+ };
2650
+
2651
+ declare function __VLS_template_10(): {
2652
+ attrs: Partial<{}>;
2653
+ slots: Readonly<{
2654
+ /**
2655
+ * Use this slot to insert the content of the container.
2297
2656
  */
2298
- default: VNode;
2657
+ default?: VNode;
2299
2658
  }> & {
2300
2659
  /**
2301
- * Use this slot to display accordion items.
2660
+ * Use this slot to insert the content of the container.
2302
2661
  */
2303
- default: VNode;
2662
+ default?: VNode;
2304
2663
  };
2305
2664
  refs: {};
2306
2665
  rootEl: HTMLDivElement;
2307
2666
  };
2308
2667
 
2309
- declare function __VLS_template_10(): {
2668
+ declare function __VLS_template_11(): {
2310
2669
  attrs: Partial<{}>;
2311
2670
  slots: Readonly<{
2312
2671
  /**
@@ -2323,7 +2682,7 @@ declare function __VLS_template_10(): {
2323
2682
  rootEl: HTMLDivElement;
2324
2683
  };
2325
2684
 
2326
- declare function __VLS_template_11(): {
2685
+ declare function __VLS_template_12(): {
2327
2686
  attrs: Partial<{}>;
2328
2687
  slots: Readonly<{
2329
2688
  /**
@@ -2350,7 +2709,7 @@ declare function __VLS_template_11(): {
2350
2709
  rootEl: any;
2351
2710
  };
2352
2711
 
2353
- declare function __VLS_template_12(): {
2712
+ declare function __VLS_template_13(): {
2354
2713
  attrs: Partial<{}>;
2355
2714
  slots: Readonly<{
2356
2715
  /**
@@ -2367,7 +2726,7 @@ declare function __VLS_template_12(): {
2367
2726
  rootEl: HTMLDivElement;
2368
2727
  };
2369
2728
 
2370
- declare function __VLS_template_13(): {
2729
+ declare function __VLS_template_14(): {
2371
2730
  attrs: Partial<{}>;
2372
2731
  slots: Readonly<{
2373
2732
  /**
@@ -2384,7 +2743,7 @@ declare function __VLS_template_13(): {
2384
2743
  rootEl: HTMLFieldSetElement;
2385
2744
  };
2386
2745
 
2387
- declare function __VLS_template_14(): {
2746
+ declare function __VLS_template_15(): {
2388
2747
  attrs: Partial<{}>;
2389
2748
  slots: Readonly<{
2390
2749
  /**
@@ -2427,7 +2786,7 @@ declare function __VLS_template_14(): {
2427
2786
  rootEl: HTMLDivElement;
2428
2787
  };
2429
2788
 
2430
- declare function __VLS_template_15(): {
2789
+ declare function __VLS_template_16(): {
2431
2790
  attrs: Partial<{}>;
2432
2791
  slots: Readonly<{
2433
2792
  /**
@@ -2462,7 +2821,7 @@ declare function __VLS_template_15(): {
2462
2821
  rootEl: HTMLDivElement;
2463
2822
  };
2464
2823
 
2465
- declare function __VLS_template_16(): {
2824
+ declare function __VLS_template_17(): {
2466
2825
  attrs: Partial<{}>;
2467
2826
  slots: Readonly<{
2468
2827
  /**
@@ -2479,7 +2838,7 @@ declare function __VLS_template_16(): {
2479
2838
  rootEl: HTMLButtonElement;
2480
2839
  };
2481
2840
 
2482
- declare function __VLS_template_17(): {
2841
+ declare function __VLS_template_18(): {
2483
2842
  attrs: Partial<{}>;
2484
2843
  slots: Readonly<{
2485
2844
  /**
@@ -2504,7 +2863,7 @@ declare function __VLS_template_17(): {
2504
2863
  rootEl: any;
2505
2864
  };
2506
2865
 
2507
- declare function __VLS_template_18(): {
2866
+ declare function __VLS_template_19(): {
2508
2867
  attrs: Partial<{}>;
2509
2868
  slots: Readonly<{
2510
2869
  /**
@@ -2545,41 +2904,41 @@ declare function __VLS_template_18(): {
2545
2904
  rootEl: any;
2546
2905
  };
2547
2906
 
2548
- declare function __VLS_template_19(): {
2907
+ declare function __VLS_template_2(): {
2549
2908
  attrs: Partial<{}>;
2550
2909
  slots: Readonly<{
2551
2910
  /**
2552
- * Use this slot to insert a centered content inside the overlay.
2911
+ * Use this slot to display custom content.
2553
2912
  */
2554
- default?: VNode;
2913
+ default: VNode;
2555
2914
  }> & {
2556
2915
  /**
2557
- * Use this slot to insert a centered content inside the overlay.
2916
+ * Use this slot to display custom content.
2558
2917
  */
2559
- default?: VNode;
2918
+ default: VNode;
2560
2919
  };
2561
2920
  refs: {};
2562
2921
  rootEl: HTMLDivElement;
2563
2922
  };
2564
2923
 
2565
- declare function __VLS_template_2(): {
2924
+ declare function __VLS_template_20(): {
2566
2925
  attrs: Partial<{}>;
2567
2926
  slots: Readonly<{
2568
2927
  /**
2569
- * Use this slot to display custom content.
2928
+ * Use this slot to insert a centered content inside the overlay.
2570
2929
  */
2571
- default: VNode;
2930
+ default?: VNode;
2572
2931
  }> & {
2573
2932
  /**
2574
- * Use this slot to display custom content.
2933
+ * Use this slot to insert a centered content inside the overlay.
2575
2934
  */
2576
- default: VNode;
2935
+ default?: VNode;
2577
2936
  };
2578
2937
  refs: {};
2579
2938
  rootEl: HTMLDivElement;
2580
2939
  };
2581
2940
 
2582
- declare function __VLS_template_20(): {
2941
+ declare function __VLS_template_21(): {
2583
2942
  attrs: Partial<{}>;
2584
2943
  slots: Readonly<{
2585
2944
  /**
@@ -2612,7 +2971,7 @@ declare function __VLS_template_20(): {
2612
2971
  rootEl: HTMLDivElement;
2613
2972
  };
2614
2973
 
2615
- declare function __VLS_template_21(): {
2974
+ declare function __VLS_template_22(): {
2616
2975
  attrs: Partial<{}>;
2617
2976
  slots: Readonly<{
2618
2977
  /**
@@ -2655,7 +3014,7 @@ declare function __VLS_template_21(): {
2655
3014
  rootEl: any;
2656
3015
  };
2657
3016
 
2658
- declare function __VLS_template_22(): {
3017
+ declare function __VLS_template_23(): {
2659
3018
  attrs: Partial<{}>;
2660
3019
  slots: Readonly<{
2661
3020
  /**
@@ -2698,7 +3057,7 @@ declare function __VLS_template_22(): {
2698
3057
  rootEl: HTMLElement;
2699
3058
  };
2700
3059
 
2701
- declare function __VLS_template_23(): {
3060
+ declare function __VLS_template_24(): {
2702
3061
  attrs: Partial<{}>;
2703
3062
  slots: Readonly<{
2704
3063
  /**
@@ -2718,7 +3077,7 @@ declare function __VLS_template_23(): {
2718
3077
  rootEl: any;
2719
3078
  };
2720
3079
 
2721
- declare function __VLS_template_24(): {
3080
+ declare function __VLS_template_25(): {
2722
3081
  attrs: Partial<{}>;
2723
3082
  slots: Readonly<{
2724
3083
  /**
@@ -2742,9 +3101,7 @@ declare function __VLS_template_24(): {
2742
3101
  readonly hideFloatingItem: () => void;
2743
3102
  readonly "onLog-out"?: (() => any) | undefined;
2744
3103
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2745
- $attrs: {
2746
- [x: string]: unknown;
2747
- };
3104
+ $attrs: Attrs;
2748
3105
  $refs: {
2749
3106
  [x: string]: unknown;
2750
3107
  } & {
@@ -2796,9 +3153,9 @@ declare function __VLS_template_24(): {
2796
3153
  hideFloatingItem: () => void;
2797
3154
  }> & Readonly<{
2798
3155
  "onLog-out"?: (() => any) | undefined;
2799
- }>, "container"> & ShallowUnwrapRef< {
2800
- container: Readonly<ShallowRef<HTMLDivElement | null>>;
2801
- }> & {} & ComponentCustomProperties & {} & {
3156
+ }>, "container"> & {
3157
+ container: HTMLDivElement | null;
3158
+ } & {} & ComponentCustomProperties & {} & {
2802
3159
  $slots: {
2803
3160
  default?(_: {}): any;
2804
3161
  };
@@ -2808,7 +3165,7 @@ declare function __VLS_template_24(): {
2808
3165
  rootEl: HTMLElement;
2809
3166
  };
2810
3167
 
2811
- declare function __VLS_template_25(): {
3168
+ declare function __VLS_template_26(): {
2812
3169
  attrs: Partial<{}>;
2813
3170
  slots: Readonly<{
2814
3171
  /**
@@ -2828,7 +3185,7 @@ declare function __VLS_template_25(): {
2828
3185
  rootEl: any;
2829
3186
  };
2830
3187
 
2831
- declare function __VLS_template_26(): {
3188
+ declare function __VLS_template_27(): {
2832
3189
  attrs: Partial<{}>;
2833
3190
  slots: Readonly<{
2834
3191
  /**
@@ -2845,7 +3202,24 @@ declare function __VLS_template_26(): {
2845
3202
  rootEl: HTMLElement;
2846
3203
  };
2847
3204
 
2848
- declare function __VLS_template_27(): {
3205
+ declare function __VLS_template_28(): {
3206
+ attrs: Partial<{}>;
3207
+ slots: Readonly<{
3208
+ /**
3209
+ * Use this slot to insert an icon in the tag.
3210
+ */
3211
+ icon?: VNode;
3212
+ }> & {
3213
+ /**
3214
+ * Use this slot to insert an icon in the tag.
3215
+ */
3216
+ icon?: VNode;
3217
+ };
3218
+ refs: {};
3219
+ rootEl: any;
3220
+ };
3221
+
3222
+ declare function __VLS_template_29(): {
2849
3223
  attrs: Partial<{}>;
2850
3224
  slots: Readonly<{
2851
3225
  /**
@@ -2858,11 +3232,38 @@ declare function __VLS_template_27(): {
2858
3232
  */
2859
3233
  icon?: VNode;
2860
3234
  };
2861
- refs: {};
3235
+ refs: {
3236
+ textInput: HTMLInputElement;
3237
+ };
2862
3238
  rootEl: any;
2863
3239
  };
2864
3240
 
2865
- declare function __VLS_template_28(): {
3241
+ declare function __VLS_template_3(): {
3242
+ attrs: Partial<{}>;
3243
+ slots: Readonly<{
3244
+ /**
3245
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
3246
+ */
3247
+ left: VNode[];
3248
+ /**
3249
+ * Use this slot to insert buttons of the action bottom bar.
3250
+ */
3251
+ right?: VNode[];
3252
+ }> & {
3253
+ /**
3254
+ * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
3255
+ */
3256
+ left: VNode[];
3257
+ /**
3258
+ * Use this slot to insert buttons of the action bottom bar.
3259
+ */
3260
+ right?: VNode[];
3261
+ };
3262
+ refs: {};
3263
+ rootEl: HTMLDivElement;
3264
+ };
3265
+
3266
+ declare function __VLS_template_30(): {
2866
3267
  attrs: Partial<{}>;
2867
3268
  slots: Readonly<{
2868
3269
  /**
@@ -2895,7 +3296,7 @@ declare function __VLS_template_28(): {
2895
3296
  rootEl: HTMLDivElement;
2896
3297
  };
2897
3298
 
2898
- declare function __VLS_template_29(): {
3299
+ declare function __VLS_template_31(): {
2899
3300
  attrs: Partial<{}>;
2900
3301
  slots: Readonly<{
2901
3302
  /**
@@ -2920,32 +3321,7 @@ declare function __VLS_template_29(): {
2920
3321
  rootEl: any;
2921
3322
  };
2922
3323
 
2923
- declare function __VLS_template_3(): {
2924
- attrs: Partial<{}>;
2925
- slots: Readonly<{
2926
- /**
2927
- * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
2928
- */
2929
- left: VNode[];
2930
- /**
2931
- * Use this slot to insert buttons of the action bottom bar.
2932
- */
2933
- right?: VNode[];
2934
- }> & {
2935
- /**
2936
- * The content displayed left side of the action bottom bar (e.g. StatusNotification or any element).
2937
- */
2938
- left: VNode[];
2939
- /**
2940
- * Use this slot to insert buttons of the action bottom bar.
2941
- */
2942
- right?: VNode[];
2943
- };
2944
- refs: {};
2945
- rootEl: HTMLDivElement;
2946
- };
2947
-
2948
- declare function __VLS_template_30(): {
3324
+ declare function __VLS_template_32(): {
2949
3325
  attrs: Partial<{}>;
2950
3326
  slots: Readonly<{
2951
3327
  /**
@@ -2970,7 +3346,7 @@ declare function __VLS_template_30(): {
2970
3346
  rootEl: HTMLDivElement;
2971
3347
  };
2972
3348
 
2973
- declare function __VLS_template_31(): {
3349
+ declare function __VLS_template_33(): {
2974
3350
  attrs: Partial<{}>;
2975
3351
  slots: Readonly<{
2976
3352
  /**
@@ -2995,7 +3371,7 @@ declare function __VLS_template_31(): {
2995
3371
  rootEl: HTMLDivElement;
2996
3372
  };
2997
3373
 
2998
- declare function __VLS_template_32(): {
3374
+ declare function __VLS_template_34(): {
2999
3375
  attrs: Partial<{}>;
3000
3376
  slots: Readonly<{
3001
3377
  /**
@@ -3012,7 +3388,7 @@ declare function __VLS_template_32(): {
3012
3388
  rootEl: HTMLElement;
3013
3389
  };
3014
3390
 
3015
- declare function __VLS_template_33(): {
3391
+ declare function __VLS_template_35(): {
3016
3392
  attrs: Partial<{}>;
3017
3393
  slots: Readonly<{
3018
3394
  /**
@@ -3146,16 +3522,252 @@ declare function __VLS_template_9(): {
3146
3522
  attrs: Partial<{}>;
3147
3523
  slots: Readonly<{
3148
3524
  /**
3149
- * Use this slot to insert the content of the container.
3525
+ * Use this slot to customize the content of each item.
3150
3526
  */
3151
- default?: VNode;
3527
+ item(props: {
3528
+ item: ListboxOption;
3529
+ }): VNode;
3152
3530
  }> & {
3153
3531
  /**
3154
- * Use this slot to insert the content of the container.
3532
+ * Use this slot to customize the content of each item.
3155
3533
  */
3156
- default?: VNode;
3534
+ item(props: {
3535
+ item: ListboxOption;
3536
+ }): VNode;
3537
+ };
3538
+ refs: {
3539
+ combobox: HTMLDivElement;
3540
+ comboboxControl: HTMLButtonElement;
3541
+ listbox: ({
3542
+ $: ComponentInternalInstance;
3543
+ $data: {};
3544
+ $props: {
3545
+ readonly modelValue: string | number | null | (string | number)[];
3546
+ readonly id: string;
3547
+ readonly open?: boolean | undefined;
3548
+ readonly multiple?: boolean | undefined;
3549
+ readonly readonly?: boolean | undefined;
3550
+ readonly search?: boolean | undefined;
3551
+ readonly actions?: boolean | undefined;
3552
+ readonly checkableSections?: boolean | undefined;
3553
+ readonly searchPlaceholder?: string | undefined;
3554
+ readonly selectLabel?: string | undefined;
3555
+ readonly clearLabel?: string | undefined;
3556
+ readonly options: Array<ListboxOption>;
3557
+ readonly "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
3558
+ readonly onOpen?: (() => any) | undefined;
3559
+ readonly onClose?: (() => any) | undefined;
3560
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
3561
+ $attrs: Attrs;
3562
+ $refs: {
3563
+ [x: string]: unknown;
3564
+ } & {
3565
+ listboxEl: HTMLDivElement;
3566
+ textInput: ({
3567
+ $: ComponentInternalInstance;
3568
+ $data: {};
3569
+ $props: {
3570
+ readonly id: string;
3571
+ readonly name?: string | undefined;
3572
+ readonly modelValue?: string | number | undefined;
3573
+ readonly placeholder?: string | undefined;
3574
+ readonly inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text" | undefined;
3575
+ readonly isInvalid?: boolean | undefined;
3576
+ readonly disabled?: boolean | undefined;
3577
+ readonly size?: "s" | "m" | undefined;
3578
+ readonly readonly?: boolean | undefined;
3579
+ readonly isClearable?: boolean | undefined;
3580
+ readonly clearLabel?: string | undefined;
3581
+ readonly prefix?: string | undefined;
3582
+ readonly suffix?: string | undefined;
3583
+ readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3584
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
3585
+ $attrs: Attrs;
3586
+ $refs: {
3587
+ [x: string]: unknown;
3588
+ } & {
3589
+ textInput: HTMLInputElement;
3590
+ };
3591
+ $slots: Readonly<{
3592
+ [name: string]: Slot<any> | undefined;
3593
+ }>;
3594
+ $root: ComponentPublicInstance | null;
3595
+ $parent: ComponentPublicInstance | null;
3596
+ $host: Element | null;
3597
+ $emit: (event: "update:modelValue", value: string | number) => void;
3598
+ $el: any;
3599
+ $options: ComponentOptionsBase<Readonly<{
3600
+ id: string;
3601
+ name?: string;
3602
+ modelValue?: string | number;
3603
+ placeholder?: string;
3604
+ inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
3605
+ isInvalid?: boolean;
3606
+ disabled?: boolean;
3607
+ size?: "s" | "m";
3608
+ readonly?: boolean;
3609
+ isClearable?: boolean;
3610
+ clearLabel?: string;
3611
+ prefix?: string;
3612
+ suffix?: string;
3613
+ }> & Readonly<{
3614
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3615
+ }>, {
3616
+ focus: () => void;
3617
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3618
+ "update:modelValue": (value: string | number) => any;
3619
+ }, string, {
3620
+ size: "s" | "m";
3621
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
3622
+ clearLabel: string;
3623
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3624
+ beforeCreate?: (() => void) | (() => void)[];
3625
+ created?: (() => void) | (() => void)[];
3626
+ beforeMount?: (() => void) | (() => void)[];
3627
+ mounted?: (() => void) | (() => void)[];
3628
+ beforeUpdate?: (() => void) | (() => void)[];
3629
+ updated?: (() => void) | (() => void)[];
3630
+ activated?: (() => void) | (() => void)[];
3631
+ deactivated?: (() => void) | (() => void)[];
3632
+ beforeDestroy?: (() => void) | (() => void)[];
3633
+ beforeUnmount?: (() => void) | (() => void)[];
3634
+ destroyed?: (() => void) | (() => void)[];
3635
+ unmounted?: (() => void) | (() => void)[];
3636
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3637
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3638
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3639
+ };
3640
+ $forceUpdate: () => void;
3641
+ $nextTick: nextTick;
3642
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3643
+ } & Readonly<{
3644
+ size: "s" | "m";
3645
+ inputType: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
3646
+ clearLabel: string;
3647
+ }> & Omit<Readonly<{
3648
+ id: string;
3649
+ name?: string;
3650
+ modelValue?: string | number;
3651
+ placeholder?: string;
3652
+ inputType?: "date" | "email" | "number" | "password" | "search" | "tel" | "text";
3653
+ isInvalid?: boolean;
3654
+ disabled?: boolean;
3655
+ size?: "s" | "m";
3656
+ readonly?: boolean;
3657
+ isClearable?: boolean;
3658
+ clearLabel?: string;
3659
+ prefix?: string;
3660
+ suffix?: string;
3661
+ }> & Readonly<{
3662
+ "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3663
+ }>, "focus" | ("size" | "inputType" | "clearLabel")> & {
3664
+ focus: () => void;
3665
+ } & {} & ComponentCustomProperties & {} & {
3666
+ $slots: Readonly<{
3667
+ icon?: VNode;
3668
+ }> & {
3669
+ icon?: VNode;
3670
+ };
3671
+ }) | null;
3672
+ };
3673
+ $slots: Readonly<{
3674
+ [name: string]: Slot<any> | undefined;
3675
+ }>;
3676
+ $root: ComponentPublicInstance | null;
3677
+ $parent: ComponentPublicInstance | null;
3678
+ $host: Element | null;
3679
+ $emit: ((event: "update:modelValue", value: string | number | (string | number)[] | null) => void) & ((event: "open") => void) & ((event: "close") => void);
3680
+ $el: HTMLDivElement;
3681
+ $options: ComponentOptionsBase<Readonly<{
3682
+ modelValue: string | number | null | (string | number)[];
3683
+ id: string;
3684
+ open?: boolean;
3685
+ multiple?: boolean;
3686
+ readonly?: boolean;
3687
+ search?: boolean;
3688
+ actions?: boolean;
3689
+ checkableSections?: boolean;
3690
+ searchPlaceholder?: string;
3691
+ selectLabel?: string;
3692
+ clearLabel?: string;
3693
+ options: Array<ListboxOption>;
3694
+ }> & Readonly<{
3695
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
3696
+ onOpen?: (() => any) | undefined;
3697
+ onClose?: (() => any) | undefined;
3698
+ }>, {
3699
+ handleKeydown: (event: KeyboardEvent) => void;
3700
+ toggleValue: (item?: ListboxOption) => void;
3701
+ clearSelection: () => void;
3702
+ listboxEl: Readonly<ShallowRef<HTMLDivElement | null>>;
3703
+ activeIndex: Ref<number, number>;
3704
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3705
+ "update:modelValue": (value: string | number | (string | number)[] | null) => any;
3706
+ open: () => any;
3707
+ close: () => any;
3708
+ }, string, {
3709
+ clearLabel: string;
3710
+ searchPlaceholder: string;
3711
+ selectLabel: string;
3712
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3713
+ beforeCreate?: (() => void) | (() => void)[];
3714
+ created?: (() => void) | (() => void)[];
3715
+ beforeMount?: (() => void) | (() => void)[];
3716
+ mounted?: (() => void) | (() => void)[];
3717
+ beforeUpdate?: (() => void) | (() => void)[];
3718
+ updated?: (() => void) | (() => void)[];
3719
+ activated?: (() => void) | (() => void)[];
3720
+ deactivated?: (() => void) | (() => void)[];
3721
+ beforeDestroy?: (() => void) | (() => void)[];
3722
+ beforeUnmount?: (() => void) | (() => void)[];
3723
+ destroyed?: (() => void) | (() => void)[];
3724
+ unmounted?: (() => void) | (() => void)[];
3725
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3726
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3727
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3728
+ };
3729
+ $forceUpdate: () => void;
3730
+ $nextTick: nextTick;
3731
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
3732
+ } & Readonly<{
3733
+ clearLabel: string;
3734
+ searchPlaceholder: string;
3735
+ selectLabel: string;
3736
+ }> & Omit<Readonly<{
3737
+ modelValue: string | number | null | (string | number)[];
3738
+ id: string;
3739
+ open?: boolean;
3740
+ multiple?: boolean;
3741
+ readonly?: boolean;
3742
+ search?: boolean;
3743
+ actions?: boolean;
3744
+ checkableSections?: boolean;
3745
+ searchPlaceholder?: string;
3746
+ selectLabel?: string;
3747
+ clearLabel?: string;
3748
+ options: Array<ListboxOption>;
3749
+ }> & Readonly<{
3750
+ "onUpdate:modelValue"?: ((value: string | number | (string | number)[] | null) => any) | undefined;
3751
+ onOpen?: (() => any) | undefined;
3752
+ onClose?: (() => any) | undefined;
3753
+ }>, "listboxEl" | "handleKeydown" | "toggleValue" | "clearSelection" | "activeIndex" | ("clearLabel" | "searchPlaceholder" | "selectLabel")> & {
3754
+ handleKeydown: (event: KeyboardEvent) => void;
3755
+ toggleValue: (item?: ListboxOption) => void;
3756
+ clearSelection: () => void;
3757
+ listboxEl: HTMLDivElement | null;
3758
+ activeIndex: number;
3759
+ } & {} & ComponentCustomProperties & {} & {
3760
+ $slots: Readonly<{
3761
+ item(props: {
3762
+ item: ListboxOption;
3763
+ }): VNode;
3764
+ }> & {
3765
+ item(props: {
3766
+ item: ListboxOption;
3767
+ }): VNode;
3768
+ };
3769
+ }) | null;
3157
3770
  };
3158
- refs: {};
3159
3771
  rootEl: HTMLDivElement;
3160
3772
  };
3161
3773
 
@@ -3213,6 +3825,10 @@ declare type __VLS_TemplateResult_32 = ReturnType<typeof __VLS_template_32>;
3213
3825
 
3214
3826
  declare type __VLS_TemplateResult_33 = ReturnType<typeof __VLS_template_33>;
3215
3827
 
3828
+ declare type __VLS_TemplateResult_34 = ReturnType<typeof __VLS_template_34>;
3829
+
3830
+ declare type __VLS_TemplateResult_35 = ReturnType<typeof __VLS_template_35>;
3831
+
3216
3832
  declare type __VLS_TemplateResult_4 = ReturnType<typeof __VLS_template_4>;
3217
3833
 
3218
3834
  declare type __VLS_TemplateResult_5 = ReturnType<typeof __VLS_template_5>;
@@ -3387,6 +4003,18 @@ declare type __VLS_WithTemplateSlots_33<T, S> = T & {
3387
4003
  };
3388
4004
  };
3389
4005
 
4006
+ declare type __VLS_WithTemplateSlots_34<T, S> = T & {
4007
+ new (): {
4008
+ $slots: S;
4009
+ };
4010
+ };
4011
+
4012
+ declare type __VLS_WithTemplateSlots_35<T, S> = T & {
4013
+ new (): {
4014
+ $slots: S;
4015
+ };
4016
+ };
4017
+
3390
4018
  declare type __VLS_WithTemplateSlots_4<T, S> = T & {
3391
4019
  new (): {
3392
4020
  $slots: S;
@@ -3506,6 +4134,19 @@ declare type FileUploaderProps = {
3506
4134
  uploadButtonLabel?: string;
3507
4135
  };
3508
4136
 
4137
+ declare function focus_2(): void;
4138
+
4139
+ /**
4140
+ * An Option Listbox is a customizable, accessible listbox component designed to power dropdowns and comboboxes with advanced selection capabilities. It supports single or multiple selection, optional search, grouped options with section headers, and full keyboard navigation.
4141
+ */
4142
+ declare type ListboxOption = {
4143
+ label: string;
4144
+ content?: string;
4145
+ value?: string | number;
4146
+ disabled?: boolean;
4147
+ type?: 'option' | 'section';
4148
+ };
4149
+
3509
4150
  export declare const MAccordionList: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
3510
4151
 
3511
4152
  export declare const MAccordionListItem: __VLS_WithTemplateSlots_2<typeof __VLS_component_2, __VLS_TemplateResult_2["slots"]>;
@@ -3553,20 +4194,22 @@ type: "percentage" | "content";
3553
4194
  value: number;
3554
4195
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3555
4196
 
3556
- export declare const MContainer: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
4197
+ export declare const MCombobox: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
3557
4198
 
3558
- export declare const MDatepicker: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4199
+ export declare const MContainer: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
4200
+
4201
+ export declare const MDatepicker: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3559
4202
  "update:modelValue": (value: string | number) => any;
3560
- }, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{
4203
+ }, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
3561
4204
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3562
4205
  }>, {
3563
4206
  size: "s" | "m";
3564
4207
  clearLabel: string;
3565
4208
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3566
4209
 
3567
- export declare const MDivider: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
4210
+ export declare const MDivider: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
3568
4211
 
3569
- export declare const MDrawer: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
4212
+ export declare const MDrawer: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
3570
4213
 
3571
4214
  /**
3572
4215
  * 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.
@@ -3579,46 +4222,46 @@ declare type MenuItem = {
3579
4222
  target?: '_self' | '_blank' | '_parent' | '_top';
3580
4223
  };
3581
4224
 
3582
- export declare const MField: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
4225
+ export declare const MField: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
3583
4226
 
3584
- export declare const MFieldGroup: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
4227
+ export declare const MFieldGroup: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
3585
4228
 
3586
- export declare const MFileUploader: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
4229
+ export declare const MFileUploader: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
3587
4230
 
3588
- export declare const MFileUploaderItem: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
4231
+ export declare const MFileUploaderItem: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
3589
4232
 
3590
- export declare const MFlag: DefineComponent<__VLS_Props_22, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_22> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
4233
+ export declare const MFlag: DefineComponent<__VLS_Props_23, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_23> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3591
4234
 
3592
- export declare const MIconButton: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
4235
+ export declare const MIconButton: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
3593
4236
 
3594
- export declare const MKpiItem: DefineComponent<__VLS_Props_24, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_24> & Readonly<{}>, {
4237
+ export declare const MKpiItem: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
3595
4238
  size: "s" | "m" | "l";
3596
4239
  status: "info" | "warning" | "error" | "success" | "neutral";
3597
4240
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3598
4241
 
3599
- export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_25, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_25> & Readonly<{}>, {
4242
+ export declare const MLinearProgressbarBuffer: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
3600
4243
  value: number;
3601
4244
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3602
4245
 
3603
- export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_26, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_26> & Readonly<{}>, {
4246
+ export declare const MLinearProgressbarPercentage: DefineComponent<__VLS_Props_27, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_27> & Readonly<{}>, {
3604
4247
  value: number;
3605
4248
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3606
4249
 
3607
- export declare const MLink: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
4250
+ export declare const MLink: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
3608
4251
 
3609
- export declare const MLoader: DefineComponent<__VLS_Props_28, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_28> & Readonly<{}>, {
4252
+ export declare const MLoader: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {
3610
4253
  appearance: "standard" | "accent" | "inverse";
3611
4254
  size: "xs" | "s" | "m" | "l";
3612
4255
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3613
4256
 
3614
- export declare const MLoadingOverlay: DefineComponent<__VLS_Props_29, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_29> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4257
+ export declare const MLoadingOverlay: DefineComponent<__VLS_Props_30, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_30> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3615
4258
 
3616
- export declare const MModal: __VLS_WithTemplateSlots_18<typeof __VLS_component_18, __VLS_TemplateResult_18["slots"]>;
4259
+ export declare const MModal: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
3617
4260
 
3618
- export declare const MNavigationIndicator: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4261
+ export declare const MNavigationIndicator: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3619
4262
  "update:modelValue": (value: number) => any;
3620
4263
  action: () => any;
3621
- }, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
4264
+ }, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{
3622
4265
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3623
4266
  onAction?: (() => any) | undefined;
3624
4267
  }>, {
@@ -3626,24 +4269,24 @@ action: "pause" | "resume";
3626
4269
  player: boolean;
3627
4270
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3628
4271
 
3629
- export declare const MNumberBadge: DefineComponent<__VLS_Props_32, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_32> & Readonly<{}>, {
4272
+ export declare const MNumberBadge: DefineComponent<__VLS_Props_33, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_33> & Readonly<{}>, {
3630
4273
  appearance: "danger" | "accent" | "inverse" | "standard";
3631
4274
  size: "s" | "m";
3632
4275
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
3633
4276
 
3634
- export declare const MOverlay: __VLS_WithTemplateSlots_19<typeof __VLS_component_19, __VLS_TemplateResult_19["slots"]>;
4277
+ export declare const MOverlay: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
3635
4278
 
3636
- export declare const MPageHeader: __VLS_WithTemplateSlots_20<typeof __VLS_component_20, __VLS_TemplateResult_20["slots"]>;
4279
+ export declare const MPageHeader: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
3637
4280
 
3638
- export declare const MPagination: DefineComponent<__VLS_Props_35, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4281
+ export declare const MPagination: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3639
4282
  "update:modelValue": (value: number) => any;
3640
- }, string, PublicProps, Readonly<__VLS_Props_35> & Readonly<{
4283
+ }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
3641
4284
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3642
4285
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3643
4286
 
3644
- export declare const MPasswordInput: DefineComponent<__VLS_Props_36, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4287
+ export declare const MPasswordInput: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3645
4288
  "update:modelValue": (value: string | number) => any;
3646
- }, string, PublicProps, Readonly<__VLS_Props_36> & Readonly<{
4289
+ }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
3647
4290
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3648
4291
  }>, {
3649
4292
  clearLabel: string;
@@ -3665,9 +4308,7 @@ readonly iconPosition?: "left" | "right" | "only" | undefined;
3665
4308
  readonly type?: "button" | "reset" | "submit" | undefined;
3666
4309
  readonly isLoading?: boolean | undefined;
3667
4310
  } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
3668
- $attrs: {
3669
- [x: string]: unknown;
3670
- };
4311
+ $attrs: Attrs;
3671
4312
  $refs: {
3672
4313
  [x: string]: unknown;
3673
4314
  };
@@ -3725,7 +4366,7 @@ outlined?: boolean;
3725
4366
  iconPosition?: "left" | "right" | "only";
3726
4367
  type?: "button" | "reset" | "submit";
3727
4368
  isLoading?: boolean;
3728
- }> & Readonly<{}>, "appearance" | "type" | "size"> & ShallowUnwrapRef< {}> & {} & ComponentCustomProperties & {} & {
4369
+ }> & Readonly<{}>, "appearance" | "type" | "size"> & {} & ComponentCustomProperties & {} & {
3729
4370
  $slots: Readonly<{
3730
4371
  default: string;
3731
4372
  icon?: VNode;
@@ -3736,34 +4377,34 @@ icon?: VNode;
3736
4377
  }) | null;
3737
4378
  }, any>;
3738
4379
 
3739
- export declare const MPhoneNumber: DefineComponent<__VLS_Props_37, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
4380
+ export declare const MPhoneNumber: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3740
4381
  "update:modelValue": (value: string) => any;
3741
4382
  valid: (isValid: boolean) => any;
3742
- }, string, PublicProps, Readonly<__VLS_Props_37> & Readonly<{
4383
+ }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
3743
4384
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
3744
4385
  onValid?: ((isValid: boolean) => any) | undefined;
3745
4386
  }>, {
3746
4387
  modelValue: string;
3747
4388
  size: "s" | "m";
3748
- defaultCountry: CountryCode;
3749
4389
  prefix: boolean;
4390
+ defaultCountry: CountryCode;
3750
4391
  flag: boolean;
3751
4392
  locale: string;
3752
4393
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3753
4394
 
3754
- export declare const MPincode: DefineComponent<__VLS_Props_38, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4395
+ export declare const MPincode: DefineComponent<__VLS_Props_39, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3755
4396
  "update:modelValue": (value: string) => any;
3756
- }, string, PublicProps, Readonly<__VLS_Props_38> & Readonly<{
4397
+ }, string, PublicProps, Readonly<__VLS_Props_39> & Readonly<{
3757
4398
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
3758
4399
  }>, {
3759
4400
  length: 4 | 5 | 6;
3760
4401
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3761
4402
 
3762
- export declare const MPopover: __VLS_WithTemplateSlots_21<typeof __VLS_component_21, __VLS_TemplateResult_21["slots"]>;
4403
+ export declare const MPopover: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
3763
4404
 
3764
- export declare const MQuantitySelector: DefineComponent<__VLS_Props_40, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4405
+ export declare const MQuantitySelector: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3765
4406
  "update:modelValue": (value: number) => any;
3766
- }, string, PublicProps, Readonly<__VLS_Props_40> & Readonly<{
4407
+ }, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
3767
4408
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3768
4409
  }>, {
3769
4410
  modelValue: number;
@@ -3776,55 +4417,55 @@ incrementlabel: string;
3776
4417
  decrementLabel: string;
3777
4418
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3778
4419
 
3779
- export declare const MRadio: DefineComponent<__VLS_Props_41, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4420
+ export declare const MRadio: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3780
4421
  "update:modelValue": (value: boolean) => any;
3781
- }, string, PublicProps, Readonly<__VLS_Props_41> & Readonly<{
4422
+ }, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
3782
4423
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3783
4424
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3784
4425
 
3785
- export declare const MRadioGroup: DefineComponent<__VLS_Props_42, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4426
+ export declare const MRadioGroup: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3786
4427
  "update:modelValue": (value: string) => any;
3787
- }, string, PublicProps, Readonly<__VLS_Props_42> & Readonly<{
4428
+ }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
3788
4429
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
3789
4430
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3790
4431
 
3791
- export declare const MSegmentedControl: DefineComponent<__VLS_Props_43, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4432
+ export declare const MSegmentedControl: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3792
4433
  "update:modelValue": (value?: string | number | undefined) => any;
3793
- }, string, PublicProps, Readonly<__VLS_Props_43> & Readonly<{
4434
+ }, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
3794
4435
  "onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
3795
4436
  }>, {
3796
4437
  modelValue: string | number;
3797
4438
  size: "s" | "m";
3798
4439
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3799
4440
 
3800
- export declare const MSelect: DefineComponent<__VLS_Props_44, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4441
+ export declare const MSelect: DefineComponent<__VLS_Props_45, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3801
4442
  "update:modelValue": (value: string | number) => any;
3802
- }, string, PublicProps, Readonly<__VLS_Props_44> & Readonly<{
4443
+ }, string, PublicProps, Readonly<__VLS_Props_45> & Readonly<{
3803
4444
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3804
4445
  }>, {
3805
4446
  size: "s" | "m";
3806
4447
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3807
4448
 
3808
- export declare const MSidebar: __VLS_WithTemplateSlots_22<typeof __VLS_component_22, __VLS_TemplateResult_22["slots"]>;
4449
+ export declare const MSidebar: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
3809
4450
 
3810
- export declare const MSidebarExpandableItem: __VLS_WithTemplateSlots_23<typeof __VLS_component_23, __VLS_TemplateResult_23["slots"]>;
4451
+ export declare const MSidebarExpandableItem: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
3811
4452
 
3812
- export declare const MSidebarFooter: __VLS_WithTemplateSlots_24<typeof __VLS_component_24, __VLS_TemplateResult_24["slots"]>;
4453
+ export declare const MSidebarFooter: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
3813
4454
 
3814
- export declare const MSidebarHeader: DefineComponent<__VLS_Props_48, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_48> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
4455
+ export declare const MSidebarHeader: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3815
4456
 
3816
- export declare const MSidebarNavItem: DefineComponent<__VLS_Props_49, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4457
+ export declare const MSidebarNavItem: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3817
4458
  click: (value: MouseEvent) => any;
3818
- }, string, PublicProps, Readonly<__VLS_Props_49> & Readonly<{
4459
+ }, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{
3819
4460
  onClick?: ((value: MouseEvent) => any) | undefined;
3820
4461
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
3821
4462
  trigger: unknown;
3822
4463
  tooltip: HTMLDivElement;
3823
4464
  }, any>;
3824
4465
 
3825
- export declare const MSidebarShortcutItem: DefineComponent<__VLS_Props_50, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_50> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
4466
+ export declare const MSidebarShortcutItem: DefineComponent<__VLS_Props_51, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_51> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLLIElement>;
3826
4467
 
3827
- export declare const MSidebarShortcuts: __VLS_WithTemplateSlots_25<typeof __VLS_component_25, __VLS_TemplateResult_25["slots"]>;
4468
+ export declare const MSidebarShortcuts: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
3828
4469
 
3829
4470
  export declare const MStarRating: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3830
4471
  "update:modelValue": (value: number) => any;
@@ -3837,44 +4478,45 @@ readonly: boolean;
3837
4478
  compact: boolean;
3838
4479
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3839
4480
 
3840
- export declare const MStatusBadge: DefineComponent<__VLS_Props_53, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_53> & Readonly<{}>, {
4481
+ export declare const MStatusBadge: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
3841
4482
  status: "info" | "success" | "warning" | "error" | "neutral";
3842
4483
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3843
4484
 
3844
- export declare const MStatusDot: DefineComponent<__VLS_Props_54, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_54> & Readonly<{}>, {
4485
+ export declare const MStatusDot: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {
3845
4486
  status: "info" | "success" | "warning" | "error" | "neutral";
3846
4487
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
3847
4488
 
3848
- export declare const MStatusMessage: DefineComponent<__VLS_Props_55, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_55> & Readonly<{}>, {
4489
+ export declare const MStatusMessage: DefineComponent<__VLS_Props_56, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_56> & Readonly<{}>, {
4490
+ appearance: "standard" | "accent";
3849
4491
  status: "info" | "success" | "warning" | "error" | "neutral" | "inprogress";
3850
4492
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3851
4493
 
3852
- export declare const MStatusNotification: __VLS_WithTemplateSlots_26<typeof __VLS_component_26, __VLS_TemplateResult_26["slots"]>;
4494
+ export declare const MStatusNotification: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
3853
4495
 
3854
- export declare const MStepperBottomBar: DefineComponent<__VLS_Props_57, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4496
+ export declare const MStepperBottomBar: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3855
4497
  "update:modelValue": (value: number) => any;
3856
4498
  cancel: () => any;
3857
4499
  validate: () => any;
3858
- }, string, PublicProps, Readonly<__VLS_Props_57> & Readonly<{
4500
+ }, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{
3859
4501
  "onUpdate:modelValue"?: ((value: number) => any) | undefined;
3860
4502
  onCancel?: (() => any) | undefined;
3861
4503
  onValidate?: (() => any) | undefined;
3862
4504
  }>, {
3863
4505
  modelValue: number;
3864
- steps: number;
3865
4506
  cancel: boolean;
4507
+ steps: number;
3866
4508
  cancelLabel: string;
3867
4509
  previousLabel: string;
3868
4510
  nextLabel: string;
3869
4511
  validateLabel: string;
3870
4512
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3871
4513
 
3872
- export declare const MStepperCompact: DefineComponent<__VLS_Props_58, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_58> & Readonly<{}>, {
4514
+ export declare const MStepperCompact: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{}>, {
3873
4515
  value: number;
3874
4516
  maxSteps: number;
3875
4517
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3876
4518
 
3877
- export declare const MStepperInline: DefineComponent<__VLS_Props_59, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_59> & Readonly<{}>, {
4519
+ export declare const MStepperInline: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{}>, {
3878
4520
  steps: Array<{
3879
4521
  /**
3880
4522
  * Uniquer identifier for the step.
@@ -3892,9 +4534,9 @@ additionalInfo?: string;
3892
4534
  currentStep: string | number;
3893
4535
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
3894
4536
 
3895
- export declare const MTabs: DefineComponent<__VLS_Props_60, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4537
+ export declare const MTabs: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3896
4538
  "update:modelValue": (value?: string | number | undefined) => any;
3897
- }, string, PublicProps, Readonly<__VLS_Props_60> & Readonly<{
4539
+ }, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
3898
4540
  "onUpdate:modelValue"?: ((value?: string | number | undefined) => any) | undefined;
3899
4541
  }>, {
3900
4542
  modelValue: string | number;
@@ -3903,53 +4545,43 @@ divider: boolean;
3903
4545
  tab: HTMLButtonElement;
3904
4546
  }, HTMLElement>;
3905
4547
 
3906
- export declare const MTag: DefineComponent<__VLS_Props_61, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3907
- "update:modelValue": (value: boolean) => any;
3908
- "remove-tag": (id: string) => any;
3909
- }, string, PublicProps, Readonly<__VLS_Props_61> & Readonly<{
3910
- "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3911
- "onRemove-tag"?: ((id: string) => any) | undefined;
3912
- }>, {
3913
- type: "informative" | "interactive" | "contextualised" | "removable" | "selectable";
3914
- contextualisedNumber: number;
3915
- removableLabel: string;
3916
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
4548
+ export declare const MTag: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
3917
4549
 
3918
- export declare const MTextArea: DefineComponent<__VLS_Props_62, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4550
+ export declare const MTextArea: DefineComponent<__VLS_Props_63, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3919
4551
  "update:modelValue": (value: string | number) => any;
3920
- }, string, PublicProps, Readonly<__VLS_Props_62> & Readonly<{
4552
+ }, string, PublicProps, Readonly<__VLS_Props_63> & Readonly<{
3921
4553
  "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
3922
4554
  }>, {
3923
4555
  rows: number;
3924
4556
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3925
4557
 
3926
- export declare const MTextInput: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
4558
+ export declare const MTextInput: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
3927
4559
 
3928
- export declare const MTile: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
4560
+ export declare const MTile: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
3929
4561
 
3930
- export declare const MTileClickable: __VLS_WithTemplateSlots_29<typeof __VLS_component_29, __VLS_TemplateResult_29["slots"]>;
4562
+ export declare const MTileClickable: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
3931
4563
 
3932
- export declare const MTileExpandable: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
4564
+ export declare const MTileExpandable: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
3933
4565
 
3934
- export declare const MTileSelectable: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
4566
+ export declare const MTileSelectable: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
3935
4567
 
3936
- export declare const MToaster: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
4568
+ export declare const MToaster: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
3937
4569
 
3938
- export declare const MToggle: DefineComponent<__VLS_Props_69, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4570
+ export declare const MToggle: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3939
4571
  "update:modelValue": (value: boolean) => any;
3940
- }, string, PublicProps, Readonly<__VLS_Props_69> & Readonly<{
4572
+ }, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
3941
4573
  "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
3942
4574
  }>, {
3943
4575
  size: "s" | "m";
3944
4576
  }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3945
4577
 
3946
- export declare const MToggleGroup: DefineComponent<__VLS_Props_70, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
4578
+ export declare const MToggleGroup: DefineComponent<__VLS_Props_71, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
3947
4579
  "update:modelValue": (value: string[]) => any;
3948
- }, string, PublicProps, Readonly<__VLS_Props_70> & Readonly<{
4580
+ }, string, PublicProps, Readonly<__VLS_Props_71> & Readonly<{
3949
4581
  "onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
3950
4582
  }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
3951
4583
 
3952
- export declare const MTooltip: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
4584
+ export declare const MTooltip: __VLS_WithTemplateSlots_35<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
3953
4585
 
3954
4586
  declare type NormalizedFile = {
3955
4587
  name: string;