arvue-ui 0.6.0 → 0.7.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 (102) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/aspect-ratio/aspectRatio.js +24 -0
  3. package/dist/aspect-ratio/aspectRatio.js.map +1 -0
  4. package/dist/autocomplete/autocomplete.js +1 -1
  5. package/dist/autocomplete/autocompleteContent.js +1 -1
  6. package/dist/autocomplete/autocompleteEmpty.js +1 -1
  7. package/dist/autocomplete/autocompleteInput.js +1 -1
  8. package/dist/autocomplete/autocompleteItem.js +3 -1
  9. package/dist/autocomplete/autocompleteItem.js.map +1 -1
  10. package/dist/autocomplete/autocompleteLabel.js +1 -1
  11. package/dist/autocomplete/autocompleteSeparator.js +1 -1
  12. package/dist/combobox/combobox.js +1 -1
  13. package/dist/combobox/comboboxContent.js +1 -1
  14. package/dist/combobox/comboboxEmpty.js +1 -1
  15. package/dist/combobox/comboboxInput.js +1 -1
  16. package/dist/combobox/comboboxItem.js +3 -1
  17. package/dist/combobox/comboboxItem.js.map +1 -1
  18. package/dist/combobox/comboboxLabel.js +1 -1
  19. package/dist/combobox/comboboxSeparator.js +1 -1
  20. package/dist/dialog/dialogContent.js +1 -1
  21. package/dist/dialog/dialogDescription.js +1 -1
  22. package/dist/dialog/dialogFooter.js +1 -1
  23. package/dist/dialog/dialogHeader.js +1 -1
  24. package/dist/dialog/dialogOverlay.js +1 -1
  25. package/dist/dialog/dialogTitle.js +1 -1
  26. package/dist/drawer/drawerContent.js +1 -1
  27. package/dist/drawer/drawerDescription.js +1 -1
  28. package/dist/drawer/drawerFooter.js +1 -1
  29. package/dist/drawer/drawerHeader.js +1 -1
  30. package/dist/drawer/drawerOverlay.js +1 -1
  31. package/dist/drawer/drawerTitle.js +1 -1
  32. package/dist/dropdown-menu/dropdownMenuCheckboxItem.js +1 -1
  33. package/dist/dropdown-menu/dropdownMenuContent.js +1 -1
  34. package/dist/dropdown-menu/dropdownMenuItem.js +1 -1
  35. package/dist/dropdown-menu/dropdownMenuLabel.js +1 -1
  36. package/dist/dropdown-menu/dropdownMenuRadioItem.js +1 -1
  37. package/dist/dropdown-menu/dropdownMenuSeparator.js +1 -1
  38. package/dist/dropdown-menu/dropdownMenuShortcut.js +1 -1
  39. package/dist/dropdown-menu/dropdownMenuSubContent.js +1 -1
  40. package/dist/dropdown-menu/dropdownMenuSubTrigger.js +1 -1
  41. package/dist/index.d.ts +353 -189
  42. package/dist/index.d.ts.map +1 -1
  43. package/dist/index.js +82 -70
  44. package/dist/index.js.map +1 -1
  45. package/dist/select/select.js +37 -0
  46. package/dist/select/select.js.map +1 -0
  47. package/dist/select/selectContent.js +101 -0
  48. package/dist/select/selectContent.js.map +1 -0
  49. package/dist/select/selectGroup.js +23 -0
  50. package/dist/select/selectGroup.js.map +1 -0
  51. package/dist/select/selectItem.js +43 -0
  52. package/dist/select/selectItem.js.map +1 -0
  53. package/dist/select/selectItemText.js +23 -0
  54. package/dist/select/selectItemText.js.map +1 -0
  55. package/dist/select/selectLabel.js +34 -0
  56. package/dist/select/selectLabel.js.map +1 -0
  57. package/dist/select/selectRootPatch.js +24 -0
  58. package/dist/select/selectRootPatch.js.map +1 -0
  59. package/dist/select/selectScrollDownButton.js +33 -0
  60. package/dist/select/selectScrollDownButton.js.map +1 -0
  61. package/dist/select/selectScrollUpButton.js +33 -0
  62. package/dist/select/selectScrollUpButton.js.map +1 -0
  63. package/dist/select/selectSeparator.js +30 -0
  64. package/dist/select/selectSeparator.js.map +1 -0
  65. package/dist/select/selectTrigger.js +41 -0
  66. package/dist/select/selectTrigger.js.map +1 -0
  67. package/dist/select/selectValue.js +34 -0
  68. package/dist/select/selectValue.js.map +1 -0
  69. package/dist/sheet/sheetContent.js +1 -1
  70. package/dist/sheet/sheetFooter.js +1 -1
  71. package/dist/sheet/sheetHeader.js +1 -1
  72. package/dist/style.css +16 -0
  73. package/package.json +1 -1
  74. package/src/aspect-ratio/AspectRatio.vue +20 -0
  75. package/src/aspect-ratio/index.ts +4 -0
  76. package/src/autocomplete/AutocompleteItem.vue +4 -1
  77. package/src/autocomplete/autocomplete-label.css +4 -3
  78. package/src/combobox/ComboboxItem.vue +4 -1
  79. package/src/combobox/combobox-label.css +4 -3
  80. package/src/dropdown-menu/dropdown-menu-label.css +5 -3
  81. package/src/index.ts +2 -0
  82. package/src/select/Select.vue +27 -0
  83. package/src/select/SelectContent.vue +77 -0
  84. package/src/select/SelectGroup.vue +17 -0
  85. package/src/select/SelectItem.vue +46 -0
  86. package/src/select/SelectItemText.vue +17 -0
  87. package/src/select/SelectLabel.vue +31 -0
  88. package/src/select/SelectRootPatch.vue +24 -0
  89. package/src/select/SelectScrollDownButton.vue +33 -0
  90. package/src/select/SelectScrollUpButton.vue +33 -0
  91. package/src/select/SelectSeparator.vue +29 -0
  92. package/src/select/SelectTrigger.vue +40 -0
  93. package/src/select/SelectValue.vue +33 -0
  94. package/src/select/index.ts +46 -0
  95. package/src/select/select-content.css +16 -0
  96. package/src/select/select-item.css +39 -0
  97. package/src/select/select-label.css +7 -0
  98. package/src/select/select-scroll-button.css +8 -0
  99. package/src/select/select-separator.css +5 -0
  100. package/src/select/select-trigger.css +71 -0
  101. package/src/select/select-value.css +6 -0
  102. package/src/sonner/sonner.css +0 -1
package/dist/index.d.ts CHANGED
@@ -1,15 +1,29 @@
1
1
  import { HTMLAttributes } from "vue";
2
- import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxCancelProps as ComboboxCancelProps$1, ComboboxContentEmits as ComboboxContentEmits$1, ComboboxContentProps as ComboboxContentProps$1, ComboboxEmptyProps as ComboboxEmptyProps$1, ComboboxGroupProps as ComboboxGroupProps$1, ComboboxInputEmits as ComboboxInputEmits$1, ComboboxInputProps as ComboboxInputProps$1, ComboboxItemEmits as ComboboxItemEmits$1, ComboboxItemProps as ComboboxItemProps$1, ComboboxLabelProps as ComboboxLabelProps$1, ComboboxPortalProps as ComboboxPortalProps$1, ComboboxRootEmits, ComboboxRootProps, ComboboxSeparatorProps as ComboboxSeparatorProps$1, ComboboxTriggerProps as ComboboxTriggerProps$1, ComboboxViewportProps as ComboboxViewportProps$1, DialogCloseProps as DialogCloseProps$1, DialogContentEmits as DialogContentEmits$1, DialogContentProps as DialogContentProps$1, DialogDescriptionProps as DialogDescriptionProps$1, DialogOverlayProps as DialogOverlayProps$1, DialogRootEmits, DialogRootProps, DialogTitleProps as DialogTitleProps$1, DialogTriggerProps as DialogTriggerProps$1, DropdownMenuCheckboxItemEmits as DropdownMenuCheckboxItemEmits$1, DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemProps$1, DropdownMenuContentEmits as DropdownMenuContentEmits$1, DropdownMenuContentProps as DropdownMenuContentProps$1, DropdownMenuGroupProps as DropdownMenuGroupProps$1, DropdownMenuItemProps as DropdownMenuItemProps$1, DropdownMenuLabelProps as DropdownMenuLabelProps$1, DropdownMenuPortalProps as DropdownMenuPortalProps$1, DropdownMenuRadioGroupEmits as DropdownMenuRadioGroupEmits$1, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupProps$1, DropdownMenuRadioItemEmits as DropdownMenuRadioItemEmits$1, DropdownMenuRadioItemProps as DropdownMenuRadioItemProps$1, DropdownMenuRootEmits, DropdownMenuRootProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorProps$1, DropdownMenuSubContentEmits as DropdownMenuSubContentEmits$1, DropdownMenuSubContentProps as DropdownMenuSubContentProps$1, DropdownMenuSubProps as DropdownMenuSubProps$1, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerProps$1, DropdownMenuTriggerProps as DropdownMenuTriggerProps$1, PrimitiveProps } from "reka-ui";
2
+ import { AspectRatioProps as AspectRatioProps$1, AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxCancelProps as ComboboxCancelProps$1, ComboboxContentEmits as ComboboxContentEmits$1, ComboboxContentProps as ComboboxContentProps$1, ComboboxEmptyProps as ComboboxEmptyProps$1, ComboboxGroupProps as ComboboxGroupProps$1, ComboboxInputEmits as ComboboxInputEmits$1, ComboboxInputProps as ComboboxInputProps$1, ComboboxItemEmits as ComboboxItemEmits$1, ComboboxItemProps as ComboboxItemProps$1, ComboboxLabelProps as ComboboxLabelProps$1, ComboboxPortalProps as ComboboxPortalProps$1, ComboboxRootEmits, ComboboxRootProps, ComboboxSeparatorProps as ComboboxSeparatorProps$1, ComboboxTriggerProps as ComboboxTriggerProps$1, ComboboxViewportProps as ComboboxViewportProps$1, DialogCloseProps as DialogCloseProps$1, DialogContentEmits as DialogContentEmits$1, DialogContentProps as DialogContentProps$1, DialogDescriptionProps as DialogDescriptionProps$1, DialogOverlayProps as DialogOverlayProps$1, DialogRootEmits, DialogRootProps, DialogTitleProps as DialogTitleProps$1, DialogTriggerProps as DialogTriggerProps$1, DropdownMenuCheckboxItemEmits as DropdownMenuCheckboxItemEmits$1, DropdownMenuCheckboxItemProps as DropdownMenuCheckboxItemProps$1, DropdownMenuContentEmits as DropdownMenuContentEmits$1, DropdownMenuContentProps as DropdownMenuContentProps$1, DropdownMenuGroupProps as DropdownMenuGroupProps$1, DropdownMenuItemProps as DropdownMenuItemProps$1, DropdownMenuLabelProps as DropdownMenuLabelProps$1, DropdownMenuPortalProps as DropdownMenuPortalProps$1, DropdownMenuRadioGroupEmits as DropdownMenuRadioGroupEmits$1, DropdownMenuRadioGroupProps as DropdownMenuRadioGroupProps$1, DropdownMenuRadioItemEmits as DropdownMenuRadioItemEmits$1, DropdownMenuRadioItemProps as DropdownMenuRadioItemProps$1, DropdownMenuRootEmits, DropdownMenuRootProps, DropdownMenuSeparatorProps as DropdownMenuSeparatorProps$1, DropdownMenuSubContentEmits as DropdownMenuSubContentEmits$1, DropdownMenuSubContentProps as DropdownMenuSubContentProps$1, DropdownMenuSubProps as DropdownMenuSubProps$1, DropdownMenuSubTriggerProps as DropdownMenuSubTriggerProps$1, DropdownMenuTriggerProps as DropdownMenuTriggerProps$1, PrimitiveProps, SelectContentEmits as SelectContentEmits$1, SelectContentProps as SelectContentProps$1, SelectGroupProps as SelectGroupProps$1, SelectItemProps as SelectItemProps$1, SelectItemTextProps as SelectItemTextProps$1, SelectLabelProps as SelectLabelProps$1, SelectRootEmits, SelectRootProps, SelectScrollDownButtonProps as SelectScrollDownButtonProps$1, SelectScrollUpButtonProps as SelectScrollUpButtonProps$1, SelectSeparatorProps as SelectSeparatorProps$1, SelectTriggerProps as SelectTriggerProps$1, SelectValueProps as SelectValueProps$1 } from "reka-ui";
3
3
  import { DrawerCloseProps as DrawerCloseProps$1, DrawerDescriptionProps as DrawerDescriptionProps$1, DrawerRootEmits, DrawerRootProps, DrawerTitleProps as DrawerTitleProps$1, DrawerTriggerProps as DrawerTriggerProps$1 } from "vaul-vue";
4
4
  import { ToasterProps, toast } from "vue-sonner";
5
5
 
6
+ //#region src/aspect-ratio/AspectRatio.vue.d.ts
7
+ interface AspectRatioProps extends AspectRatioProps$1 {}
8
+ declare const _default: typeof __VLS_export$80;
9
+ declare const __VLS_export$80: __VLS_WithSlots$73<import("vue").DefineComponent<AspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AspectRatioProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
10
+ default?: (props: {
11
+ aspect: number;
12
+ }) => any;
13
+ }>;
14
+ type __VLS_WithSlots$73<T, S> = T & {
15
+ new (): {
16
+ $slots: S;
17
+ };
18
+ }; //# sourceMappingURL=AspectRatio.vue.d.ts.map
19
+ //#endregion
6
20
  //#region src/autocomplete/Autocomplete.vue.d.ts
7
21
  interface AutocompleteProps extends AutocompleteRootProps {
8
22
  class?: HTMLAttributes['class'];
9
23
  }
10
24
  interface AutocompleteEmits extends AutocompleteRootEmits {}
11
- declare const _default: typeof __VLS_export$68;
12
- declare const __VLS_export$68: __VLS_WithSlots$64<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
+ declare const _default$1: typeof __VLS_export$79;
26
+ declare const __VLS_export$79: __VLS_WithSlots$72<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13
27
  "update:open": (value: boolean) => any;
14
28
  "update:modelValue": (value: string) => any;
15
29
  highlight: (payload: {
@@ -29,7 +43,7 @@ declare const __VLS_export$68: __VLS_WithSlots$64<import("vue").DefineComponent<
29
43
  modelValue: string;
30
44
  }) => any;
31
45
  }>;
32
- type __VLS_WithSlots$64<T, S> = T & {
46
+ type __VLS_WithSlots$72<T, S> = T & {
33
47
  new (): {
34
48
  $slots: S;
35
49
  };
@@ -37,11 +51,11 @@ type __VLS_WithSlots$64<T, S> = T & {
37
51
  //#endregion
38
52
  //#region src/autocomplete/AutocompleteAnchor.vue.d.ts
39
53
  interface AutocompleteAnchorProps extends ComboboxAnchorProps$1 {}
40
- declare const _default$1: typeof __VLS_export$67;
41
- declare const __VLS_export$67: __VLS_WithSlots$63<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
54
+ declare const _default$2: typeof __VLS_export$78;
55
+ declare const __VLS_export$78: __VLS_WithSlots$71<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
42
56
  default?: (props: {}) => any;
43
57
  }>;
44
- type __VLS_WithSlots$63<T, S> = T & {
58
+ type __VLS_WithSlots$71<T, S> = T & {
45
59
  new (): {
46
60
  $slots: S;
47
61
  };
@@ -49,11 +63,11 @@ type __VLS_WithSlots$63<T, S> = T & {
49
63
  //#endregion
50
64
  //#region src/autocomplete/AutocompleteCancel.vue.d.ts
51
65
  interface AutocompleteCancelProps extends ComboboxCancelProps$1 {}
52
- declare const _default$2: typeof __VLS_export$66;
53
- declare const __VLS_export$66: __VLS_WithSlots$62<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
66
+ declare const _default$3: typeof __VLS_export$77;
67
+ declare const __VLS_export$77: __VLS_WithSlots$70<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
54
68
  default?: (props: {}) => any;
55
69
  }>;
56
- type __VLS_WithSlots$62<T, S> = T & {
70
+ type __VLS_WithSlots$70<T, S> = T & {
57
71
  new (): {
58
72
  $slots: S;
59
73
  };
@@ -64,8 +78,8 @@ interface AutocompleteContentProps extends Omit<ComboboxContentProps$1, 'positio
64
78
  class?: HTMLAttributes['class'];
65
79
  }
66
80
  interface AutocompleteContentEmits extends ComboboxContentEmits$1 {}
67
- declare const _default$3: typeof __VLS_export$65;
68
- declare const __VLS_export$65: __VLS_WithSlots$61<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
81
+ declare const _default$4: typeof __VLS_export$76;
82
+ declare const __VLS_export$76: __VLS_WithSlots$69<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
69
83
  escapeKeyDown: (event: KeyboardEvent) => any;
70
84
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
71
85
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -80,7 +94,7 @@ declare const __VLS_export$65: __VLS_WithSlots$61<import("vue").DefineComponent<
80
94
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
81
95
  default?: (props: {}) => any;
82
96
  }>;
83
- type __VLS_WithSlots$61<T, S> = T & {
97
+ type __VLS_WithSlots$69<T, S> = T & {
84
98
  new (): {
85
99
  $slots: S;
86
100
  };
@@ -90,11 +104,11 @@ type __VLS_WithSlots$61<T, S> = T & {
90
104
  interface AutocompleteEmptyProps extends ComboboxEmptyProps$1 {
91
105
  class?: HTMLAttributes['class'];
92
106
  }
93
- declare const _default$4: typeof __VLS_export$64;
94
- declare const __VLS_export$64: __VLS_WithSlots$60<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
107
+ declare const _default$5: typeof __VLS_export$75;
108
+ declare const __VLS_export$75: __VLS_WithSlots$68<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
95
109
  default?: (props: {}) => any;
96
110
  }>;
97
- type __VLS_WithSlots$60<T, S> = T & {
111
+ type __VLS_WithSlots$68<T, S> = T & {
98
112
  new (): {
99
113
  $slots: S;
100
114
  };
@@ -102,11 +116,11 @@ type __VLS_WithSlots$60<T, S> = T & {
102
116
  //#endregion
103
117
  //#region src/autocomplete/AutocompleteGroup.vue.d.ts
104
118
  interface AutocompleteGroupProps extends ComboboxGroupProps$1 {}
105
- declare const _default$5: typeof __VLS_export$63;
106
- declare const __VLS_export$63: __VLS_WithSlots$59<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
119
+ declare const _default$6: typeof __VLS_export$74;
120
+ declare const __VLS_export$74: __VLS_WithSlots$67<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
107
121
  default?: (props: {}) => any;
108
122
  }>;
109
- type __VLS_WithSlots$59<T, S> = T & {
123
+ type __VLS_WithSlots$67<T, S> = T & {
110
124
  new (): {
111
125
  $slots: S;
112
126
  };
@@ -120,8 +134,8 @@ interface AutocompleteInputProps extends AutocompleteInputProps$1 {
120
134
  interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
121
135
  'cancel': [void];
122
136
  }
123
- declare const _default$6: typeof __VLS_export$62;
124
- declare const __VLS_export$62: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
137
+ declare const _default$7: typeof __VLS_export$73;
138
+ declare const __VLS_export$73: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
125
139
  "update:modelValue": (args_0: string) => any;
126
140
  cancel: (args_0: void) => any;
127
141
  }, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
@@ -137,15 +151,15 @@ interface AutocompleteItemProps extends ComboboxItemProps$1 {
137
151
  class?: HTMLAttributes['class'];
138
152
  }
139
153
  interface AutocompleteItemEmits extends ComboboxItemEmits$1 {}
140
- declare const _default$7: typeof __VLS_export$61;
141
- declare const __VLS_export$61: __VLS_WithSlots$58<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
154
+ declare const _default$8: typeof __VLS_export$72;
155
+ declare const __VLS_export$72: __VLS_WithSlots$66<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
142
156
  select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
143
157
  }, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
144
158
  onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
145
159
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
146
160
  default?: (props: {}) => any;
147
161
  }>;
148
- type __VLS_WithSlots$58<T, S> = T & {
162
+ type __VLS_WithSlots$66<T, S> = T & {
149
163
  new (): {
150
164
  $slots: S;
151
165
  };
@@ -155,11 +169,11 @@ type __VLS_WithSlots$58<T, S> = T & {
155
169
  interface AutocompleteLabelProps extends ComboboxLabelProps$1 {
156
170
  class?: HTMLAttributes['class'];
157
171
  }
158
- declare const _default$8: typeof __VLS_export$60;
159
- declare const __VLS_export$60: __VLS_WithSlots$57<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
172
+ declare const _default$9: typeof __VLS_export$71;
173
+ declare const __VLS_export$71: __VLS_WithSlots$65<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
160
174
  default?: (props: {}) => any;
161
175
  }>;
162
- type __VLS_WithSlots$57<T, S> = T & {
176
+ type __VLS_WithSlots$65<T, S> = T & {
163
177
  new (): {
164
178
  $slots: S;
165
179
  };
@@ -167,11 +181,11 @@ type __VLS_WithSlots$57<T, S> = T & {
167
181
  //#endregion
168
182
  //#region src/autocomplete/AutocompletePortal.vue.d.ts
169
183
  interface AutocompletePortalProps extends ComboboxPortalProps$1 {}
170
- declare const _default$9: typeof __VLS_export$59;
171
- declare const __VLS_export$59: __VLS_WithSlots$56<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
184
+ declare const _default$10: typeof __VLS_export$70;
185
+ declare const __VLS_export$70: __VLS_WithSlots$64<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
172
186
  default?: (props: {}) => any;
173
187
  }>;
174
- type __VLS_WithSlots$56<T, S> = T & {
188
+ type __VLS_WithSlots$64<T, S> = T & {
175
189
  new (): {
176
190
  $slots: S;
177
191
  };
@@ -181,11 +195,11 @@ type __VLS_WithSlots$56<T, S> = T & {
181
195
  interface AutocompleteSeparatorProps extends ComboboxSeparatorProps$1 {
182
196
  class?: HTMLAttributes['class'];
183
197
  }
184
- declare const _default$10: typeof __VLS_export$58;
185
- declare const __VLS_export$58: __VLS_WithSlots$55<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
198
+ declare const _default$11: typeof __VLS_export$69;
199
+ declare const __VLS_export$69: __VLS_WithSlots$63<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
186
200
  default?: (props: {}) => any;
187
201
  }>;
188
- type __VLS_WithSlots$55<T, S> = T & {
202
+ type __VLS_WithSlots$63<T, S> = T & {
189
203
  new (): {
190
204
  $slots: S;
191
205
  };
@@ -193,11 +207,11 @@ type __VLS_WithSlots$55<T, S> = T & {
193
207
  //#endregion
194
208
  //#region src/autocomplete/AutocompleteTrigger.vue.d.ts
195
209
  interface AutocompleteTriggerProps extends ComboboxTriggerProps$1 {}
196
- declare const _default$11: typeof __VLS_export$57;
197
- declare const __VLS_export$57: __VLS_WithSlots$54<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
210
+ declare const _default$12: typeof __VLS_export$68;
211
+ declare const __VLS_export$68: __VLS_WithSlots$62<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
198
212
  default?: (props: {}) => any;
199
213
  }>;
200
- type __VLS_WithSlots$54<T, S> = T & {
214
+ type __VLS_WithSlots$62<T, S> = T & {
201
215
  new (): {
202
216
  $slots: S;
203
217
  };
@@ -205,11 +219,11 @@ type __VLS_WithSlots$54<T, S> = T & {
205
219
  //#endregion
206
220
  //#region src/autocomplete/AutocompleteViewport.vue.d.ts
207
221
  interface AutocompleteViewportProps extends ComboboxViewportProps$1 {}
208
- declare const _default$12: typeof __VLS_export$56;
209
- declare const __VLS_export$56: __VLS_WithSlots$53<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
222
+ declare const _default$13: typeof __VLS_export$67;
223
+ declare const __VLS_export$67: __VLS_WithSlots$61<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
210
224
  default?: (props: {}) => any;
211
225
  }>;
212
- type __VLS_WithSlots$53<T, S> = T & {
226
+ type __VLS_WithSlots$61<T, S> = T & {
213
227
  new (): {
214
228
  $slots: S;
215
229
  };
@@ -220,8 +234,8 @@ interface ComboboxProps extends ComboboxRootProps {
220
234
  class?: HTMLAttributes['class'];
221
235
  }
222
236
  interface ComboboxEmits extends ComboboxRootEmits {}
223
- declare const _default$13: typeof __VLS_export$55;
224
- declare const __VLS_export$55: __VLS_WithSlots$52<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
237
+ declare const _default$14: typeof __VLS_export$66;
238
+ declare const __VLS_export$66: __VLS_WithSlots$60<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
225
239
  "update:open": (value: boolean) => any;
226
240
  "update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
227
241
  highlight: (payload: {
@@ -241,7 +255,7 @@ declare const __VLS_export$55: __VLS_WithSlots$52<import("vue").DefineComponent<
241
255
  modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null;
242
256
  }) => any;
243
257
  }>;
244
- type __VLS_WithSlots$52<T, S> = T & {
258
+ type __VLS_WithSlots$60<T, S> = T & {
245
259
  new (): {
246
260
  $slots: S;
247
261
  };
@@ -249,11 +263,11 @@ type __VLS_WithSlots$52<T, S> = T & {
249
263
  //#endregion
250
264
  //#region src/combobox/ComboboxAnchor.vue.d.ts
251
265
  interface ComboboxAnchorProps extends ComboboxAnchorProps$1 {}
252
- declare const _default$14: typeof __VLS_export$54;
253
- declare const __VLS_export$54: __VLS_WithSlots$51<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
266
+ declare const _default$15: typeof __VLS_export$65;
267
+ declare const __VLS_export$65: __VLS_WithSlots$59<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
254
268
  default?: (props: {}) => any;
255
269
  }>;
256
- type __VLS_WithSlots$51<T, S> = T & {
270
+ type __VLS_WithSlots$59<T, S> = T & {
257
271
  new (): {
258
272
  $slots: S;
259
273
  };
@@ -261,11 +275,11 @@ type __VLS_WithSlots$51<T, S> = T & {
261
275
  //#endregion
262
276
  //#region src/combobox/ComboboxCancel.vue.d.ts
263
277
  interface ComboboxCancelProps extends ComboboxCancelProps$1 {}
264
- declare const _default$15: typeof __VLS_export$53;
265
- declare const __VLS_export$53: __VLS_WithSlots$50<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
278
+ declare const _default$16: typeof __VLS_export$64;
279
+ declare const __VLS_export$64: __VLS_WithSlots$58<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
266
280
  default?: (props: {}) => any;
267
281
  }>;
268
- type __VLS_WithSlots$50<T, S> = T & {
282
+ type __VLS_WithSlots$58<T, S> = T & {
269
283
  new (): {
270
284
  $slots: S;
271
285
  };
@@ -276,8 +290,8 @@ interface ComboboxContentProps extends Omit<ComboboxContentProps$1, 'position'>
276
290
  class?: HTMLAttributes['class'];
277
291
  }
278
292
  interface ComboboxContentEmits extends ComboboxContentEmits$1 {}
279
- declare const _default$16: typeof __VLS_export$52;
280
- declare const __VLS_export$52: __VLS_WithSlots$49<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
293
+ declare const _default$17: typeof __VLS_export$63;
294
+ declare const __VLS_export$63: __VLS_WithSlots$57<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
281
295
  escapeKeyDown: (event: KeyboardEvent) => any;
282
296
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
283
297
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -292,7 +306,7 @@ declare const __VLS_export$52: __VLS_WithSlots$49<import("vue").DefineComponent<
292
306
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
293
307
  default?: (props: {}) => any;
294
308
  }>;
295
- type __VLS_WithSlots$49<T, S> = T & {
309
+ type __VLS_WithSlots$57<T, S> = T & {
296
310
  new (): {
297
311
  $slots: S;
298
312
  };
@@ -302,11 +316,11 @@ type __VLS_WithSlots$49<T, S> = T & {
302
316
  interface ComboboxEmptyProps extends ComboboxEmptyProps$1 {
303
317
  class?: HTMLAttributes['class'];
304
318
  }
305
- declare const _default$17: typeof __VLS_export$51;
306
- declare const __VLS_export$51: __VLS_WithSlots$48<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
319
+ declare const _default$18: typeof __VLS_export$62;
320
+ declare const __VLS_export$62: __VLS_WithSlots$56<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
307
321
  default?: (props: {}) => any;
308
322
  }>;
309
- type __VLS_WithSlots$48<T, S> = T & {
323
+ type __VLS_WithSlots$56<T, S> = T & {
310
324
  new (): {
311
325
  $slots: S;
312
326
  };
@@ -314,11 +328,11 @@ type __VLS_WithSlots$48<T, S> = T & {
314
328
  //#endregion
315
329
  //#region src/combobox/ComboboxGroup.vue.d.ts
316
330
  interface ComboboxGroupProps extends ComboboxGroupProps$1 {}
317
- declare const _default$18: typeof __VLS_export$50;
318
- declare const __VLS_export$50: __VLS_WithSlots$47<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
331
+ declare const _default$19: typeof __VLS_export$61;
332
+ declare const __VLS_export$61: __VLS_WithSlots$55<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
319
333
  default?: (props: {}) => any;
320
334
  }>;
321
- type __VLS_WithSlots$47<T, S> = T & {
335
+ type __VLS_WithSlots$55<T, S> = T & {
322
336
  new (): {
323
337
  $slots: S;
324
338
  };
@@ -332,8 +346,8 @@ interface ComboboxInputProps extends ComboboxInputProps$1 {
332
346
  interface ComboboxInputEmits extends ComboboxInputEmits$1 {
333
347
  'cancel': [void];
334
348
  }
335
- declare const _default$19: typeof __VLS_export$49;
336
- declare const __VLS_export$49: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
349
+ declare const _default$20: typeof __VLS_export$60;
350
+ declare const __VLS_export$60: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
337
351
  "update:modelValue": (args_0: string) => any;
338
352
  cancel: (args_0: void) => any;
339
353
  }, string, import("vue").PublicProps, Readonly<ComboboxInputProps> & Readonly<{
@@ -349,15 +363,15 @@ interface ComboboxItemProps extends ComboboxItemProps$1 {
349
363
  class?: HTMLAttributes['class'];
350
364
  }
351
365
  interface ComboboxItemEmits extends ComboboxItemEmits$1 {}
352
- declare const _default$20: typeof __VLS_export$48;
353
- declare const __VLS_export$48: __VLS_WithSlots$46<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
366
+ declare const _default$21: typeof __VLS_export$59;
367
+ declare const __VLS_export$59: __VLS_WithSlots$54<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
354
368
  select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
355
369
  }, string, import("vue").PublicProps, Readonly<ComboboxItemProps> & Readonly<{
356
370
  onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
357
371
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
358
372
  default?: (props: {}) => any;
359
373
  }>;
360
- type __VLS_WithSlots$46<T, S> = T & {
374
+ type __VLS_WithSlots$54<T, S> = T & {
361
375
  new (): {
362
376
  $slots: S;
363
377
  };
@@ -367,11 +381,11 @@ type __VLS_WithSlots$46<T, S> = T & {
367
381
  interface ComboboxLabelProps extends ComboboxLabelProps$1 {
368
382
  class?: HTMLAttributes['class'];
369
383
  }
370
- declare const _default$21: typeof __VLS_export$47;
371
- declare const __VLS_export$47: __VLS_WithSlots$45<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
384
+ declare const _default$22: typeof __VLS_export$58;
385
+ declare const __VLS_export$58: __VLS_WithSlots$53<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
372
386
  default?: (props: {}) => any;
373
387
  }>;
374
- type __VLS_WithSlots$45<T, S> = T & {
388
+ type __VLS_WithSlots$53<T, S> = T & {
375
389
  new (): {
376
390
  $slots: S;
377
391
  };
@@ -379,11 +393,11 @@ type __VLS_WithSlots$45<T, S> = T & {
379
393
  //#endregion
380
394
  //#region src/combobox/ComboboxPortal.vue.d.ts
381
395
  interface ComboboxPortalProps extends ComboboxPortalProps$1 {}
382
- declare const _default$22: typeof __VLS_export$46;
383
- declare const __VLS_export$46: __VLS_WithSlots$44<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
396
+ declare const _default$23: typeof __VLS_export$57;
397
+ declare const __VLS_export$57: __VLS_WithSlots$52<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
384
398
  default?: (props: {}) => any;
385
399
  }>;
386
- type __VLS_WithSlots$44<T, S> = T & {
400
+ type __VLS_WithSlots$52<T, S> = T & {
387
401
  new (): {
388
402
  $slots: S;
389
403
  };
@@ -393,11 +407,11 @@ type __VLS_WithSlots$44<T, S> = T & {
393
407
  interface ComboboxSeparatorProps extends ComboboxSeparatorProps$1 {
394
408
  class?: HTMLAttributes['class'];
395
409
  }
396
- declare const _default$23: typeof __VLS_export$45;
397
- declare const __VLS_export$45: __VLS_WithSlots$43<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
410
+ declare const _default$24: typeof __VLS_export$56;
411
+ declare const __VLS_export$56: __VLS_WithSlots$51<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
398
412
  default?: (props: {}) => any;
399
413
  }>;
400
- type __VLS_WithSlots$43<T, S> = T & {
414
+ type __VLS_WithSlots$51<T, S> = T & {
401
415
  new (): {
402
416
  $slots: S;
403
417
  };
@@ -405,11 +419,11 @@ type __VLS_WithSlots$43<T, S> = T & {
405
419
  //#endregion
406
420
  //#region src/combobox/ComboboxTrigger.vue.d.ts
407
421
  interface ComboboxTriggerProps extends ComboboxTriggerProps$1 {}
408
- declare const _default$24: typeof __VLS_export$44;
409
- declare const __VLS_export$44: __VLS_WithSlots$42<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
422
+ declare const _default$25: typeof __VLS_export$55;
423
+ declare const __VLS_export$55: __VLS_WithSlots$50<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
410
424
  default?: (props: {}) => any;
411
425
  }>;
412
- type __VLS_WithSlots$42<T, S> = T & {
426
+ type __VLS_WithSlots$50<T, S> = T & {
413
427
  new (): {
414
428
  $slots: S;
415
429
  };
@@ -417,11 +431,11 @@ type __VLS_WithSlots$42<T, S> = T & {
417
431
  //#endregion
418
432
  //#region src/combobox/ComboboxViewport.vue.d.ts
419
433
  interface ComboboxViewportProps extends ComboboxViewportProps$1 {}
420
- declare const _default$25: typeof __VLS_export$43;
421
- declare const __VLS_export$43: __VLS_WithSlots$41<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
434
+ declare const _default$26: typeof __VLS_export$54;
435
+ declare const __VLS_export$54: __VLS_WithSlots$49<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
422
436
  default?: (props: {}) => any;
423
437
  }>;
424
- type __VLS_WithSlots$41<T, S> = T & {
438
+ type __VLS_WithSlots$49<T, S> = T & {
425
439
  new (): {
426
440
  $slots: S;
427
441
  };
@@ -432,8 +446,8 @@ interface DialogProps extends DialogRootProps {
432
446
  class?: HTMLAttributes['class'];
433
447
  }
434
448
  interface DialogEmits extends DialogRootEmits {}
435
- declare const _default$26: typeof __VLS_export$42;
436
- declare const __VLS_export$42: __VLS_WithSlots$40<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
449
+ declare const _default$27: typeof __VLS_export$53;
450
+ declare const __VLS_export$53: __VLS_WithSlots$48<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
437
451
  "update:open": (value: boolean) => any;
438
452
  }, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
439
453
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -443,7 +457,7 @@ declare const __VLS_export$42: __VLS_WithSlots$40<import("vue").DefineComponent<
443
457
  close: () => void;
444
458
  }) => any;
445
459
  }>;
446
- type __VLS_WithSlots$40<T, S> = T & {
460
+ type __VLS_WithSlots$48<T, S> = T & {
447
461
  new (): {
448
462
  $slots: S;
449
463
  };
@@ -451,13 +465,13 @@ type __VLS_WithSlots$40<T, S> = T & {
451
465
  //#endregion
452
466
  //#region src/dialog/DialogClose.vue.d.ts
453
467
  interface DialogCloseProps extends DialogCloseProps$1 {}
454
- declare const _default$27: typeof __VLS_export$41;
455
- declare const __VLS_export$41: __VLS_WithSlots$39<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
468
+ declare const _default$28: typeof __VLS_export$52;
469
+ declare const __VLS_export$52: __VLS_WithSlots$47<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
456
470
  as: import("reka-ui").AsTag | import("vue").Component;
457
471
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
458
472
  default?: (props: {}) => any;
459
473
  }>;
460
- type __VLS_WithSlots$39<T, S> = T & {
474
+ type __VLS_WithSlots$47<T, S> = T & {
461
475
  new (): {
462
476
  $slots: S;
463
477
  };
@@ -469,8 +483,8 @@ interface DialogContentProps extends DialogContentProps$1 {
469
483
  showCloseButton?: boolean;
470
484
  }
471
485
  interface DialogContentEmits extends DialogContentEmits$1 {}
472
- declare const _default$28: typeof __VLS_export$40;
473
- declare const __VLS_export$40: __VLS_WithSlots$38<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
486
+ declare const _default$29: typeof __VLS_export$51;
487
+ declare const __VLS_export$51: __VLS_WithSlots$46<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
474
488
  escapeKeyDown: (event: KeyboardEvent) => any;
475
489
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
476
490
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -489,7 +503,7 @@ declare const __VLS_export$40: __VLS_WithSlots$38<import("vue").DefineComponent<
489
503
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
490
504
  default?: (props: {}) => any;
491
505
  }>;
492
- type __VLS_WithSlots$38<T, S> = T & {
506
+ type __VLS_WithSlots$46<T, S> = T & {
493
507
  new (): {
494
508
  $slots: S;
495
509
  };
@@ -499,13 +513,13 @@ type __VLS_WithSlots$38<T, S> = T & {
499
513
  interface DialogDescriptionProps extends DialogDescriptionProps$1 {
500
514
  class?: HTMLAttributes['class'];
501
515
  }
502
- declare const _default$29: typeof __VLS_export$39;
503
- declare const __VLS_export$39: __VLS_WithSlots$37<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
516
+ declare const _default$30: typeof __VLS_export$50;
517
+ declare const __VLS_export$50: __VLS_WithSlots$45<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
504
518
  as: import("reka-ui").AsTag | import("vue").Component;
505
519
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
506
520
  default?: (props: {}) => any;
507
521
  }>;
508
- type __VLS_WithSlots$37<T, S> = T & {
522
+ type __VLS_WithSlots$45<T, S> = T & {
509
523
  new (): {
510
524
  $slots: S;
511
525
  };
@@ -515,11 +529,11 @@ type __VLS_WithSlots$37<T, S> = T & {
515
529
  interface DialogFooterProps extends PrimitiveProps {
516
530
  class?: HTMLAttributes['class'];
517
531
  }
518
- declare const _default$30: typeof __VLS_export$38;
519
- declare const __VLS_export$38: __VLS_WithSlots$36<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
532
+ declare const _default$31: typeof __VLS_export$49;
533
+ declare const __VLS_export$49: __VLS_WithSlots$44<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
520
534
  default?: (props: {}) => any;
521
535
  }>;
522
- type __VLS_WithSlots$36<T, S> = T & {
536
+ type __VLS_WithSlots$44<T, S> = T & {
523
537
  new (): {
524
538
  $slots: S;
525
539
  };
@@ -529,11 +543,11 @@ type __VLS_WithSlots$36<T, S> = T & {
529
543
  interface DialogHeaderProps extends PrimitiveProps {
530
544
  class?: HTMLAttributes['class'];
531
545
  }
532
- declare const _default$31: typeof __VLS_export$37;
533
- declare const __VLS_export$37: __VLS_WithSlots$35<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
546
+ declare const _default$32: typeof __VLS_export$48;
547
+ declare const __VLS_export$48: __VLS_WithSlots$43<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
534
548
  default?: (props: {}) => any;
535
549
  }>;
536
- type __VLS_WithSlots$35<T, S> = T & {
550
+ type __VLS_WithSlots$43<T, S> = T & {
537
551
  new (): {
538
552
  $slots: S;
539
553
  };
@@ -543,11 +557,11 @@ type __VLS_WithSlots$35<T, S> = T & {
543
557
  interface DialogOverlayProps extends DialogOverlayProps$1 {
544
558
  class?: HTMLAttributes['class'];
545
559
  }
546
- declare const _default$32: typeof __VLS_export$36;
547
- declare const __VLS_export$36: __VLS_WithSlots$34<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
560
+ declare const _default$33: typeof __VLS_export$47;
561
+ declare const __VLS_export$47: __VLS_WithSlots$42<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
548
562
  default?: (props: {}) => any;
549
563
  }>;
550
- type __VLS_WithSlots$34<T, S> = T & {
564
+ type __VLS_WithSlots$42<T, S> = T & {
551
565
  new (): {
552
566
  $slots: S;
553
567
  };
@@ -557,13 +571,13 @@ type __VLS_WithSlots$34<T, S> = T & {
557
571
  interface DialogTitleProps extends DialogTitleProps$1 {
558
572
  class?: HTMLAttributes['class'];
559
573
  }
560
- declare const _default$33: typeof __VLS_export$35;
561
- declare const __VLS_export$35: __VLS_WithSlots$33<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
574
+ declare const _default$34: typeof __VLS_export$46;
575
+ declare const __VLS_export$46: __VLS_WithSlots$41<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
562
576
  as: import("reka-ui").AsTag | import("vue").Component;
563
577
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
564
578
  default?: (props: {}) => any;
565
579
  }>;
566
- type __VLS_WithSlots$33<T, S> = T & {
580
+ type __VLS_WithSlots$41<T, S> = T & {
567
581
  new (): {
568
582
  $slots: S;
569
583
  };
@@ -571,11 +585,11 @@ type __VLS_WithSlots$33<T, S> = T & {
571
585
  //#endregion
572
586
  //#region src/dialog/DialogTrigger.vue.d.ts
573
587
  interface DialogTriggerProps extends DialogTriggerProps$1 {}
574
- declare const _default$34: typeof __VLS_export$34;
575
- declare const __VLS_export$34: __VLS_WithSlots$32<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
588
+ declare const _default$35: typeof __VLS_export$45;
589
+ declare const __VLS_export$45: __VLS_WithSlots$40<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
576
590
  default?: (props: {}) => any;
577
591
  }>;
578
- type __VLS_WithSlots$32<T, S> = T & {
592
+ type __VLS_WithSlots$40<T, S> = T & {
579
593
  new (): {
580
594
  $slots: S;
581
595
  };
@@ -586,8 +600,8 @@ interface DrawerProps extends DialogRootProps {
586
600
  class?: HTMLAttributes['class'];
587
601
  }
588
602
  interface DrawerEmits extends DialogRootEmits {}
589
- declare const _default$35: typeof __VLS_export$33;
590
- declare const __VLS_export$33: __VLS_WithSlots$31<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
603
+ declare const _default$36: typeof __VLS_export$44;
604
+ declare const __VLS_export$44: __VLS_WithSlots$39<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
591
605
  "update:open": (value: boolean) => any;
592
606
  }, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
593
607
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -597,7 +611,7 @@ declare const __VLS_export$33: __VLS_WithSlots$31<import("vue").DefineComponent<
597
611
  close: () => void;
598
612
  }) => any;
599
613
  }>;
600
- type __VLS_WithSlots$31<T, S> = T & {
614
+ type __VLS_WithSlots$39<T, S> = T & {
601
615
  new (): {
602
616
  $slots: S;
603
617
  };
@@ -605,13 +619,13 @@ type __VLS_WithSlots$31<T, S> = T & {
605
619
  //#endregion
606
620
  //#region src/drawer/DrawerClose.vue.d.ts
607
621
  interface DrawerCloseProps extends DialogCloseProps$1 {}
608
- declare const _default$36: typeof __VLS_export$32;
609
- declare const __VLS_export$32: __VLS_WithSlots$30<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
622
+ declare const _default$37: typeof __VLS_export$43;
623
+ declare const __VLS_export$43: __VLS_WithSlots$38<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
610
624
  as: import("reka-ui").AsTag | import("vue").Component;
611
625
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
612
626
  default?: (props: {}) => any;
613
627
  }>;
614
- type __VLS_WithSlots$30<T, S> = T & {
628
+ type __VLS_WithSlots$38<T, S> = T & {
615
629
  new (): {
616
630
  $slots: S;
617
631
  };
@@ -624,8 +638,8 @@ interface DrawerContentProps extends DialogContentProps$1 {
624
638
  side?: 'top' | 'right' | 'bottom' | 'left';
625
639
  showCloseButton?: boolean;
626
640
  }
627
- declare const _default$37: typeof __VLS_export$31;
628
- declare const __VLS_export$31: __VLS_WithSlots$29<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
641
+ declare const _default$38: typeof __VLS_export$42;
642
+ declare const __VLS_export$42: __VLS_WithSlots$37<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
629
643
  escapeKeyDown: (event: KeyboardEvent) => any;
630
644
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
631
645
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -640,12 +654,12 @@ declare const __VLS_export$31: __VLS_WithSlots$29<import("vue").DefineComponent<
640
654
  onOpenAutoFocus?: ((event: Event) => any) | undefined;
641
655
  onCloseAutoFocus?: ((event: Event) => any) | undefined;
642
656
  }>, {
643
- side: "top" | "right" | "bottom" | "left";
644
657
  showCloseButton: boolean;
658
+ side: "top" | "right" | "bottom" | "left";
645
659
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
646
660
  default?: (props: {}) => any;
647
661
  }>;
648
- type __VLS_WithSlots$29<T, S> = T & {
662
+ type __VLS_WithSlots$37<T, S> = T & {
649
663
  new (): {
650
664
  $slots: S;
651
665
  };
@@ -655,13 +669,13 @@ type __VLS_WithSlots$29<T, S> = T & {
655
669
  interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
656
670
  class?: HTMLAttributes['class'];
657
671
  }
658
- declare const _default$38: typeof __VLS_export$30;
659
- declare const __VLS_export$30: __VLS_WithSlots$28<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
672
+ declare const _default$39: typeof __VLS_export$41;
673
+ declare const __VLS_export$41: __VLS_WithSlots$36<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
660
674
  as: import("reka-ui").AsTag | import("vue").Component;
661
675
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
662
676
  default?: (props: {}) => any;
663
677
  }>;
664
- type __VLS_WithSlots$28<T, S> = T & {
678
+ type __VLS_WithSlots$36<T, S> = T & {
665
679
  new (): {
666
680
  $slots: S;
667
681
  };
@@ -671,11 +685,11 @@ type __VLS_WithSlots$28<T, S> = T & {
671
685
  interface DrawerFooterProps extends PrimitiveProps {
672
686
  class?: HTMLAttributes['class'];
673
687
  }
674
- declare const _default$39: typeof __VLS_export$29;
675
- declare const __VLS_export$29: __VLS_WithSlots$27<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
688
+ declare const _default$40: typeof __VLS_export$40;
689
+ declare const __VLS_export$40: __VLS_WithSlots$35<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
676
690
  default?: (props: {}) => any;
677
691
  }>;
678
- type __VLS_WithSlots$27<T, S> = T & {
692
+ type __VLS_WithSlots$35<T, S> = T & {
679
693
  new (): {
680
694
  $slots: S;
681
695
  };
@@ -685,11 +699,11 @@ type __VLS_WithSlots$27<T, S> = T & {
685
699
  interface DrawerHeaderProps extends PrimitiveProps {
686
700
  class?: HTMLAttributes['class'];
687
701
  }
688
- declare const _default$40: typeof __VLS_export$28;
689
- declare const __VLS_export$28: __VLS_WithSlots$26<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
702
+ declare const _default$41: typeof __VLS_export$39;
703
+ declare const __VLS_export$39: __VLS_WithSlots$34<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
690
704
  default?: (props: {}) => any;
691
705
  }>;
692
- type __VLS_WithSlots$26<T, S> = T & {
706
+ type __VLS_WithSlots$34<T, S> = T & {
693
707
  new (): {
694
708
  $slots: S;
695
709
  };
@@ -699,11 +713,11 @@ type __VLS_WithSlots$26<T, S> = T & {
699
713
  interface DrawerOverlayProps extends DialogOverlayProps$1 {
700
714
  class?: HTMLAttributes['class'];
701
715
  }
702
- declare const _default$41: typeof __VLS_export$27;
703
- declare const __VLS_export$27: __VLS_WithSlots$25<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
716
+ declare const _default$42: typeof __VLS_export$38;
717
+ declare const __VLS_export$38: __VLS_WithSlots$33<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
704
718
  default?: (props: {}) => any;
705
719
  }>;
706
- type __VLS_WithSlots$25<T, S> = T & {
720
+ type __VLS_WithSlots$33<T, S> = T & {
707
721
  new (): {
708
722
  $slots: S;
709
723
  };
@@ -713,13 +727,13 @@ type __VLS_WithSlots$25<T, S> = T & {
713
727
  interface DrawerTitleProps extends DialogTitleProps$1 {
714
728
  class?: HTMLAttributes['class'];
715
729
  }
716
- declare const _default$42: typeof __VLS_export$26;
717
- declare const __VLS_export$26: __VLS_WithSlots$24<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
730
+ declare const _default$43: typeof __VLS_export$37;
731
+ declare const __VLS_export$37: __VLS_WithSlots$32<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
718
732
  as: import("reka-ui").AsTag | import("vue").Component;
719
733
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
720
734
  default?: (props: {}) => any;
721
735
  }>;
722
- type __VLS_WithSlots$24<T, S> = T & {
736
+ type __VLS_WithSlots$32<T, S> = T & {
723
737
  new (): {
724
738
  $slots: S;
725
739
  };
@@ -727,11 +741,11 @@ type __VLS_WithSlots$24<T, S> = T & {
727
741
  //#endregion
728
742
  //#region src/drawer/DrawerTrigger.vue.d.ts
729
743
  interface DrawerTriggerProps extends DialogTriggerProps$1 {}
730
- declare const _default$43: typeof __VLS_export$25;
731
- declare const __VLS_export$25: __VLS_WithSlots$23<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
744
+ declare const _default$44: typeof __VLS_export$36;
745
+ declare const __VLS_export$36: __VLS_WithSlots$31<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
732
746
  default?: (props: {}) => any;
733
747
  }>;
734
- type __VLS_WithSlots$23<T, S> = T & {
748
+ type __VLS_WithSlots$31<T, S> = T & {
735
749
  new (): {
736
750
  $slots: S;
737
751
  };
@@ -740,8 +754,8 @@ type __VLS_WithSlots$23<T, S> = T & {
740
754
  //#region src/dropdown-menu/DropdownMenu.vue.d.ts
741
755
  interface DropdownMenuProps extends DropdownMenuRootProps {}
742
756
  interface DropdownMenuEmits extends DropdownMenuRootEmits {}
743
- declare const _default$44: typeof __VLS_export$24;
744
- declare const __VLS_export$24: __VLS_WithSlots$22<import("vue").DefineComponent<DropdownMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
757
+ declare const _default$45: typeof __VLS_export$35;
758
+ declare const __VLS_export$35: __VLS_WithSlots$30<import("vue").DefineComponent<DropdownMenuProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
745
759
  "update:open": (payload: boolean) => any;
746
760
  }, string, import("vue").PublicProps, Readonly<DropdownMenuProps> & Readonly<{
747
761
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
@@ -750,7 +764,7 @@ declare const __VLS_export$24: __VLS_WithSlots$22<import("vue").DefineComponent<
750
764
  open: boolean;
751
765
  }) => any;
752
766
  }>;
753
- type __VLS_WithSlots$22<T, S> = T & {
767
+ type __VLS_WithSlots$30<T, S> = T & {
754
768
  new (): {
755
769
  $slots: S;
756
770
  };
@@ -761,8 +775,8 @@ interface DropdownMenuCheckboxItemProps extends DropdownMenuCheckboxItemProps$1
761
775
  class?: HTMLAttributes['class'];
762
776
  }
763
777
  interface DropdownMenuCheckboxItemEmits extends DropdownMenuCheckboxItemEmits$1 {}
764
- declare const _default$45: typeof __VLS_export$23;
765
- declare const __VLS_export$23: __VLS_WithSlots$21<import("vue").DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
778
+ declare const _default$46: typeof __VLS_export$34;
779
+ declare const __VLS_export$34: __VLS_WithSlots$29<import("vue").DefineComponent<DropdownMenuCheckboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
766
780
  "update:modelValue": (payload: boolean) => any;
767
781
  select: (event: Event) => any;
768
782
  }, string, import("vue").PublicProps, Readonly<DropdownMenuCheckboxItemProps> & Readonly<{
@@ -771,7 +785,7 @@ declare const __VLS_export$23: __VLS_WithSlots$21<import("vue").DefineComponent<
771
785
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
772
786
  default?: (props: {}) => any;
773
787
  }>;
774
- type __VLS_WithSlots$21<T, S> = T & {
788
+ type __VLS_WithSlots$29<T, S> = T & {
775
789
  new (): {
776
790
  $slots: S;
777
791
  };
@@ -782,8 +796,8 @@ interface DropdownMenuContentProps extends DropdownMenuContentProps$1 {
782
796
  class?: HTMLAttributes['class'];
783
797
  }
784
798
  interface DropdownMenuContentEmits extends DropdownMenuContentEmits$1 {}
785
- declare const _default$46: typeof __VLS_export$22;
786
- declare const __VLS_export$22: __VLS_WithSlots$20<import("vue").DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
799
+ declare const _default$47: typeof __VLS_export$33;
800
+ declare const __VLS_export$33: __VLS_WithSlots$28<import("vue").DefineComponent<DropdownMenuContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
787
801
  escapeKeyDown: (event: KeyboardEvent) => any;
788
802
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
789
803
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -800,7 +814,7 @@ declare const __VLS_export$22: __VLS_WithSlots$20<import("vue").DefineComponent<
800
814
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
801
815
  default?: (props: {}) => any;
802
816
  }>;
803
- type __VLS_WithSlots$20<T, S> = T & {
817
+ type __VLS_WithSlots$28<T, S> = T & {
804
818
  new (): {
805
819
  $slots: S;
806
820
  };
@@ -808,11 +822,11 @@ type __VLS_WithSlots$20<T, S> = T & {
808
822
  //#endregion
809
823
  //#region src/dropdown-menu/DropdownMenuGroup.vue.d.ts
810
824
  interface DropdownMenuGroupProps extends DropdownMenuGroupProps$1 {}
811
- declare const _default$47: typeof __VLS_export$21;
812
- declare const __VLS_export$21: __VLS_WithSlots$19<import("vue").DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
825
+ declare const _default$48: typeof __VLS_export$32;
826
+ declare const __VLS_export$32: __VLS_WithSlots$27<import("vue").DefineComponent<DropdownMenuGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
813
827
  default?: (props: {}) => any;
814
828
  }>;
815
- type __VLS_WithSlots$19<T, S> = T & {
829
+ type __VLS_WithSlots$27<T, S> = T & {
816
830
  new (): {
817
831
  $slots: S;
818
832
  };
@@ -823,11 +837,11 @@ interface DropdownMenuItemProps extends DropdownMenuItemProps$1 {
823
837
  class?: HTMLAttributes['class'];
824
838
  inset?: boolean;
825
839
  }
826
- declare const _default$48: typeof __VLS_export$20;
827
- declare const __VLS_export$20: __VLS_WithSlots$18<import("vue").DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
840
+ declare const _default$49: typeof __VLS_export$31;
841
+ declare const __VLS_export$31: __VLS_WithSlots$26<import("vue").DefineComponent<DropdownMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
828
842
  default?: (props: {}) => any;
829
843
  }>;
830
- type __VLS_WithSlots$18<T, S> = T & {
844
+ type __VLS_WithSlots$26<T, S> = T & {
831
845
  new (): {
832
846
  $slots: S;
833
847
  };
@@ -838,11 +852,11 @@ interface DropdownMenuLabelProps extends DropdownMenuLabelProps$1 {
838
852
  class?: HTMLAttributes['class'];
839
853
  inset?: boolean;
840
854
  }
841
- declare const _default$49: typeof __VLS_export$19;
842
- declare const __VLS_export$19: __VLS_WithSlots$17<import("vue").DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
855
+ declare const _default$50: typeof __VLS_export$30;
856
+ declare const __VLS_export$30: __VLS_WithSlots$25<import("vue").DefineComponent<DropdownMenuLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
843
857
  default?: (props: {}) => any;
844
858
  }>;
845
- type __VLS_WithSlots$17<T, S> = T & {
859
+ type __VLS_WithSlots$25<T, S> = T & {
846
860
  new (): {
847
861
  $slots: S;
848
862
  };
@@ -850,11 +864,11 @@ type __VLS_WithSlots$17<T, S> = T & {
850
864
  //#endregion
851
865
  //#region src/dropdown-menu/DropdownMenuPortal.vue.d.ts
852
866
  interface DropdownMenuPortalProps extends DropdownMenuPortalProps$1 {}
853
- declare const _default$50: typeof __VLS_export$18;
854
- declare const __VLS_export$18: __VLS_WithSlots$16<import("vue").DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
867
+ declare const _default$51: typeof __VLS_export$29;
868
+ declare const __VLS_export$29: __VLS_WithSlots$24<import("vue").DefineComponent<DropdownMenuPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
855
869
  default?: (props: {}) => any;
856
870
  }>;
857
- type __VLS_WithSlots$16<T, S> = T & {
871
+ type __VLS_WithSlots$24<T, S> = T & {
858
872
  new (): {
859
873
  $slots: S;
860
874
  };
@@ -863,15 +877,15 @@ type __VLS_WithSlots$16<T, S> = T & {
863
877
  //#region src/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts
864
878
  interface DropdownMenuRadioGroupProps extends DropdownMenuRadioGroupProps$1 {}
865
879
  interface DropdownMenuRadioGroupEmits extends DropdownMenuRadioGroupEmits$1 {}
866
- declare const _default$51: typeof __VLS_export$17;
867
- declare const __VLS_export$17: __VLS_WithSlots$15<import("vue").DefineComponent<DropdownMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
880
+ declare const _default$52: typeof __VLS_export$28;
881
+ declare const __VLS_export$28: __VLS_WithSlots$23<import("vue").DefineComponent<DropdownMenuRadioGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
868
882
  "update:modelValue": (payload: import("reka-ui").AcceptableValue) => any;
869
883
  }, string, import("vue").PublicProps, Readonly<DropdownMenuRadioGroupProps> & Readonly<{
870
884
  "onUpdate:modelValue"?: ((payload: import("reka-ui").AcceptableValue) => any) | undefined;
871
885
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
872
886
  default?: (props: {}) => any;
873
887
  }>;
874
- type __VLS_WithSlots$15<T, S> = T & {
888
+ type __VLS_WithSlots$23<T, S> = T & {
875
889
  new (): {
876
890
  $slots: S;
877
891
  };
@@ -882,15 +896,15 @@ interface DropdownMenuRadioItemProps extends DropdownMenuRadioItemProps$1 {
882
896
  class?: HTMLAttributes['class'];
883
897
  }
884
898
  interface DropdownMenuRadioItemEmits extends DropdownMenuRadioItemEmits$1 {}
885
- declare const _default$52: typeof __VLS_export$16;
886
- declare const __VLS_export$16: __VLS_WithSlots$14<import("vue").DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
899
+ declare const _default$53: typeof __VLS_export$27;
900
+ declare const __VLS_export$27: __VLS_WithSlots$22<import("vue").DefineComponent<DropdownMenuRadioItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
887
901
  select: (event: Event) => any;
888
902
  }, string, import("vue").PublicProps, Readonly<DropdownMenuRadioItemProps> & Readonly<{
889
903
  onSelect?: ((event: Event) => any) | undefined;
890
904
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
891
905
  default?: (props: {}) => any;
892
906
  }>;
893
- type __VLS_WithSlots$14<T, S> = T & {
907
+ type __VLS_WithSlots$22<T, S> = T & {
894
908
  new (): {
895
909
  $slots: S;
896
910
  };
@@ -900,20 +914,20 @@ type __VLS_WithSlots$14<T, S> = T & {
900
914
  interface DropdownMenuSeparatorProps extends DropdownMenuSeparatorProps$1 {
901
915
  class?: HTMLAttributes['class'];
902
916
  }
903
- declare const _default$53: typeof __VLS_export$15;
904
- declare const __VLS_export$15: import("vue").DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=DropdownMenuSeparator.vue.d.ts.map
917
+ declare const _default$54: typeof __VLS_export$26;
918
+ declare const __VLS_export$26: import("vue").DefineComponent<DropdownMenuSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=DropdownMenuSeparator.vue.d.ts.map
905
919
  //#endregion
906
920
  //#region src/dropdown-menu/DropdownMenuShortcut.vue.d.ts
907
921
  interface DropdownMenuShortcutProps extends PrimitiveProps {
908
922
  class?: HTMLAttributes['class'];
909
923
  }
910
- declare const _default$54: typeof __VLS_export$14;
911
- declare const __VLS_export$14: __VLS_WithSlots$13<import("vue").DefineComponent<DropdownMenuShortcutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuShortcutProps> & Readonly<{}>, {
924
+ declare const _default$55: typeof __VLS_export$25;
925
+ declare const __VLS_export$25: __VLS_WithSlots$21<import("vue").DefineComponent<DropdownMenuShortcutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuShortcutProps> & Readonly<{}>, {
912
926
  as: import("reka-ui").AsTag | import("vue").Component;
913
927
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
914
928
  default?: (props: {}) => any;
915
929
  }>;
916
- type __VLS_WithSlots$13<T, S> = T & {
930
+ type __VLS_WithSlots$21<T, S> = T & {
917
931
  new (): {
918
932
  $slots: S;
919
933
  };
@@ -921,8 +935,8 @@ type __VLS_WithSlots$13<T, S> = T & {
921
935
  //#endregion
922
936
  //#region src/dropdown-menu/DropdownMenuSub.vue.d.ts
923
937
  interface DropdownMenuSubProps extends DropdownMenuSubProps$1 {}
924
- declare const _default$55: typeof __VLS_export$13;
925
- declare const __VLS_export$13: __VLS_WithSlots$12<import("vue").DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
938
+ declare const _default$56: typeof __VLS_export$24;
939
+ declare const __VLS_export$24: __VLS_WithSlots$20<import("vue").DefineComponent<DropdownMenuSubProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
926
940
  "update:open": (payload: boolean) => any;
927
941
  }, string, import("vue").PublicProps, Readonly<DropdownMenuSubProps> & Readonly<{
928
942
  "onUpdate:open"?: ((payload: boolean) => any) | undefined;
@@ -931,7 +945,7 @@ declare const __VLS_export$13: __VLS_WithSlots$12<import("vue").DefineComponent<
931
945
  open: boolean;
932
946
  }) => any;
933
947
  }>;
934
- type __VLS_WithSlots$12<T, S> = T & {
948
+ type __VLS_WithSlots$20<T, S> = T & {
935
949
  new (): {
936
950
  $slots: S;
937
951
  };
@@ -942,8 +956,8 @@ interface DropdownMenuSubContentProps extends DropdownMenuSubContentProps$1 {
942
956
  class?: HTMLAttributes['class'];
943
957
  }
944
958
  interface DropdownMenuSubContentEmits extends DropdownMenuSubContentEmits$1 {}
945
- declare const _default$56: typeof __VLS_export$12;
946
- declare const __VLS_export$12: __VLS_WithSlots$11<import("vue").DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
959
+ declare const _default$57: typeof __VLS_export$23;
960
+ declare const __VLS_export$23: __VLS_WithSlots$19<import("vue").DefineComponent<DropdownMenuSubContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
947
961
  escapeKeyDown: (event: KeyboardEvent) => any;
948
962
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
949
963
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -964,7 +978,7 @@ declare const __VLS_export$12: __VLS_WithSlots$11<import("vue").DefineComponent<
964
978
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
965
979
  default?: (props: {}) => any;
966
980
  }>;
967
- type __VLS_WithSlots$11<T, S> = T & {
981
+ type __VLS_WithSlots$19<T, S> = T & {
968
982
  new (): {
969
983
  $slots: S;
970
984
  };
@@ -975,11 +989,11 @@ interface DropdownMenuSubTriggerProps extends DropdownMenuSubTriggerProps$1 {
975
989
  class?: HTMLAttributes['class'];
976
990
  inset?: boolean;
977
991
  }
978
- declare const _default$57: typeof __VLS_export$11;
979
- declare const __VLS_export$11: __VLS_WithSlots$10<import("vue").DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
992
+ declare const _default$58: typeof __VLS_export$22;
993
+ declare const __VLS_export$22: __VLS_WithSlots$18<import("vue").DefineComponent<DropdownMenuSubTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuSubTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
980
994
  default?: (props: {}) => any;
981
995
  }>;
982
- type __VLS_WithSlots$10<T, S> = T & {
996
+ type __VLS_WithSlots$18<T, S> = T & {
983
997
  new (): {
984
998
  $slots: S;
985
999
  };
@@ -987,32 +1001,182 @@ type __VLS_WithSlots$10<T, S> = T & {
987
1001
  //#endregion
988
1002
  //#region src/dropdown-menu/DropdownMenuTrigger.vue.d.ts
989
1003
  interface DropdownMenuTriggerProps extends DropdownMenuTriggerProps$1 {}
990
- declare const _default$58: typeof __VLS_export$10;
991
- declare const __VLS_export$10: __VLS_WithSlots$9<import("vue").DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1004
+ declare const _default$59: typeof __VLS_export$21;
1005
+ declare const __VLS_export$21: __VLS_WithSlots$17<import("vue").DefineComponent<DropdownMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DropdownMenuTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
992
1006
  default?: (props: {}) => any;
993
1007
  }>;
994
- type __VLS_WithSlots$9<T, S> = T & {
1008
+ type __VLS_WithSlots$17<T, S> = T & {
995
1009
  new (): {
996
1010
  $slots: S;
997
1011
  };
998
1012
  }; //# sourceMappingURL=DropdownMenuTrigger.vue.d.ts.map
999
1013
  //#endregion
1014
+ //#region src/select/Select.vue.d.ts
1015
+ interface SelectProps extends SelectRootProps {}
1016
+ interface SelectEmits extends SelectRootEmits {}
1017
+ declare const _default$60: typeof __VLS_export$20;
1018
+ declare const __VLS_export$20: __VLS_WithSlots$16<import("vue").DefineComponent<SelectProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1019
+ "update:open": (value: boolean) => any;
1020
+ "update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
1021
+ }, string, import("vue").PublicProps, Readonly<SelectProps> & Readonly<{
1022
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
1023
+ "onUpdate:modelValue"?: ((value: import("reka-ui").AcceptableValue) => any) | undefined;
1024
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1025
+ default?: (props: {
1026
+ modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null | undefined;
1027
+ open: boolean;
1028
+ }) => any;
1029
+ }>;
1030
+ type __VLS_WithSlots$16<T, S> = T & {
1031
+ new (): {
1032
+ $slots: S;
1033
+ };
1034
+ }; //# sourceMappingURL=Select.vue.d.ts.map
1035
+ //#endregion
1036
+ //#region src/select/SelectContent.vue.d.ts
1037
+ interface SelectContentProps extends Omit<SelectContentProps$1, 'position'> {
1038
+ class?: HTMLAttributes['class'];
1039
+ }
1040
+ interface SelectContentEmits extends SelectContentEmits$1 {}
1041
+ declare const _default$61: typeof __VLS_export$19;
1042
+ declare const __VLS_export$19: __VLS_WithSlots$15<import("vue").DefineComponent<SelectContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1043
+ escapeKeyDown: (event: KeyboardEvent) => any;
1044
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
1045
+ closeAutoFocus: (event: Event) => any;
1046
+ }, string, import("vue").PublicProps, Readonly<SelectContentProps> & Readonly<{
1047
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
1048
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
1049
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
1050
+ }>, {
1051
+ sideOffset: number;
1052
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1053
+ default?: (props: {}) => any;
1054
+ }>;
1055
+ type __VLS_WithSlots$15<T, S> = T & {
1056
+ new (): {
1057
+ $slots: S;
1058
+ };
1059
+ }; //# sourceMappingURL=SelectContent.vue.d.ts.map
1060
+ //#endregion
1061
+ //#region src/select/SelectGroup.vue.d.ts
1062
+ interface SelectGroupProps extends SelectGroupProps$1 {}
1063
+ declare const _default$62: typeof __VLS_export$18;
1064
+ declare const __VLS_export$18: __VLS_WithSlots$14<import("vue").DefineComponent<SelectGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1065
+ default?: (props: {}) => any;
1066
+ }>;
1067
+ type __VLS_WithSlots$14<T, S> = T & {
1068
+ new (): {
1069
+ $slots: S;
1070
+ };
1071
+ }; //# sourceMappingURL=SelectGroup.vue.d.ts.map
1072
+ //#endregion
1073
+ //#region src/select/SelectItem.vue.d.ts
1074
+ interface SelectItemProps extends SelectItemProps$1 {
1075
+ class?: HTMLAttributes['class'];
1076
+ }
1077
+ declare const _default$63: typeof __VLS_export$17;
1078
+ declare const __VLS_export$17: __VLS_WithSlots$13<import("vue").DefineComponent<SelectItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1079
+ default?: (props: {}) => any;
1080
+ }>;
1081
+ type __VLS_WithSlots$13<T, S> = T & {
1082
+ new (): {
1083
+ $slots: S;
1084
+ };
1085
+ }; //# sourceMappingURL=SelectItem.vue.d.ts.map
1086
+ //#endregion
1087
+ //#region src/select/SelectItemText.vue.d.ts
1088
+ interface SelectItemTextProps extends SelectItemTextProps$1 {}
1089
+ declare const _default$64: typeof __VLS_export$16;
1090
+ declare const __VLS_export$16: __VLS_WithSlots$12<import("vue").DefineComponent<SelectItemTextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectItemTextProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1091
+ default?: (props: {}) => any;
1092
+ }>;
1093
+ type __VLS_WithSlots$12<T, S> = T & {
1094
+ new (): {
1095
+ $slots: S;
1096
+ };
1097
+ }; //# sourceMappingURL=SelectItemText.vue.d.ts.map
1098
+ //#endregion
1099
+ //#region src/select/SelectLabel.vue.d.ts
1100
+ interface SelectLabelProps extends SelectLabelProps$1 {
1101
+ class?: HTMLAttributes['class'];
1102
+ }
1103
+ declare const _default$65: typeof __VLS_export$15;
1104
+ declare const __VLS_export$15: __VLS_WithSlots$11<import("vue").DefineComponent<SelectLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1105
+ default?: (props: {}) => any;
1106
+ }>;
1107
+ type __VLS_WithSlots$11<T, S> = T & {
1108
+ new (): {
1109
+ $slots: S;
1110
+ };
1111
+ }; //# sourceMappingURL=SelectLabel.vue.d.ts.map
1112
+ //#endregion
1113
+ //#region src/select/SelectScrollDownButton.vue.d.ts
1114
+ interface SelectScrollDownButtonProps extends SelectScrollDownButtonProps$1 {
1115
+ class?: HTMLAttributes['class'];
1116
+ }
1117
+ declare const _default$66: typeof __VLS_export$14;
1118
+ declare const __VLS_export$14: import("vue").DefineComponent<SelectScrollDownButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectScrollDownButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectScrollDownButton.vue.d.ts.map
1119
+ //#endregion
1120
+ //#region src/select/SelectScrollUpButton.vue.d.ts
1121
+ interface SelectScrollUpButtonProps extends SelectScrollUpButtonProps$1 {
1122
+ class?: HTMLAttributes['class'];
1123
+ }
1124
+ declare const _default$67: typeof __VLS_export$13;
1125
+ declare const __VLS_export$13: import("vue").DefineComponent<SelectScrollUpButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectScrollUpButtonProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectScrollUpButton.vue.d.ts.map
1126
+ //#endregion
1127
+ //#region src/select/SelectSeparator.vue.d.ts
1128
+ interface SelectSeparatorProps extends SelectSeparatorProps$1 {
1129
+ class?: HTMLAttributes['class'];
1130
+ }
1131
+ declare const _default$68: typeof __VLS_export$12;
1132
+ declare const __VLS_export$12: import("vue").DefineComponent<SelectSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=SelectSeparator.vue.d.ts.map
1133
+ //#endregion
1134
+ //#region src/select/SelectTrigger.vue.d.ts
1135
+ interface SelectTriggerProps extends SelectTriggerProps$1 {
1136
+ class?: HTMLAttributes['class'];
1137
+ }
1138
+ declare const _default$69: typeof __VLS_export$11;
1139
+ declare const __VLS_export$11: __VLS_WithSlots$10<import("vue").DefineComponent<SelectTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectTriggerProps> & Readonly<{}>, {
1140
+ as: import("reka-ui").AsTag | import("vue").Component;
1141
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1142
+ default?: (props: {}) => any;
1143
+ }>;
1144
+ type __VLS_WithSlots$10<T, S> = T & {
1145
+ new (): {
1146
+ $slots: S;
1147
+ };
1148
+ }; //# sourceMappingURL=SelectTrigger.vue.d.ts.map
1149
+ //#endregion
1150
+ //#region src/select/SelectValue.vue.d.ts
1151
+ interface SelectValueProps extends SelectValueProps$1 {
1152
+ class?: HTMLAttributes['class'];
1153
+ }
1154
+ declare const _default$70: typeof __VLS_export$10;
1155
+ declare const __VLS_export$10: __VLS_WithSlots$9<import("vue").DefineComponent<SelectValueProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SelectValueProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1156
+ default?: (props: {}) => any;
1157
+ }>;
1158
+ type __VLS_WithSlots$9<T, S> = T & {
1159
+ new (): {
1160
+ $slots: S;
1161
+ };
1162
+ }; //# sourceMappingURL=SelectValue.vue.d.ts.map
1163
+ //#endregion
1000
1164
  //#region src/sheet/Sheet.vue.d.ts
1001
1165
  interface SheetEmits extends DrawerRootEmits {}
1002
1166
  interface SheetProps extends DrawerRootProps {
1003
1167
  class?: HTMLAttributes['class'];
1004
1168
  }
1005
- declare const _default$59: typeof __VLS_export$9;
1169
+ declare const _default$71: typeof __VLS_export$9;
1006
1170
  declare const __VLS_export$9: __VLS_WithSlots$8<import("vue").DefineComponent<SheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
1007
- "update:open": (open: boolean) => any;
1008
1171
  drag: (percentageDragged: number) => any;
1172
+ "update:open": (open: boolean) => any;
1009
1173
  release: (open: boolean) => any;
1010
1174
  close: () => any;
1011
1175
  "update:activeSnapPoint": (val: string | number) => any;
1012
1176
  animationEnd: (open: boolean) => any;
1013
1177
  }, string, import("vue").PublicProps, Readonly<SheetProps> & Readonly<{
1014
- "onUpdate:open"?: ((open: boolean) => any) | undefined;
1015
1178
  onDrag?: ((percentageDragged: number) => any) | undefined;
1179
+ "onUpdate:open"?: ((open: boolean) => any) | undefined;
1016
1180
  onRelease?: ((open: boolean) => any) | undefined;
1017
1181
  onClose?: (() => any) | undefined;
1018
1182
  "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
@@ -1030,7 +1194,7 @@ type __VLS_WithSlots$8<T, S> = T & {
1030
1194
  //#endregion
1031
1195
  //#region src/sheet/SheetClose.vue.d.ts
1032
1196
  interface SheetCloseProps extends DrawerCloseProps$1 {}
1033
- declare const _default$60: typeof __VLS_export$8;
1197
+ declare const _default$72: typeof __VLS_export$8;
1034
1198
  declare const __VLS_export$8: __VLS_WithSlots$7<import("vue").DefineComponent<SheetCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetCloseProps> & Readonly<{}>, {
1035
1199
  as: import("reka-ui").AsTag | import("vue").Component;
1036
1200
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1048,7 +1212,7 @@ interface SheetContentProps extends DialogContentProps$1 {
1048
1212
  class?: HTMLAttributes['class'];
1049
1213
  showHandle?: boolean;
1050
1214
  }
1051
- declare const _default$61: typeof __VLS_export$7;
1215
+ declare const _default$73: typeof __VLS_export$7;
1052
1216
  declare const __VLS_export$7: __VLS_WithSlots$6<import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
1053
1217
  escapeKeyDown: (event: KeyboardEvent) => any;
1054
1218
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -1078,7 +1242,7 @@ type __VLS_WithSlots$6<T, S> = T & {
1078
1242
  interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
1079
1243
  class?: HTMLAttributes['class'];
1080
1244
  }
1081
- declare const _default$62: typeof __VLS_export$6;
1245
+ declare const _default$74: typeof __VLS_export$6;
1082
1246
  declare const __VLS_export$6: __VLS_WithSlots$5<import("vue").DefineComponent<SheetDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetDescriptionProps> & Readonly<{}>, {
1083
1247
  as: import("reka-ui").AsTag | import("vue").Component;
1084
1248
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1094,7 +1258,7 @@ type __VLS_WithSlots$5<T, S> = T & {
1094
1258
  interface SheetFooterProps extends PrimitiveProps {
1095
1259
  class?: HTMLAttributes['class'];
1096
1260
  }
1097
- declare const _default$63: typeof __VLS_export$5;
1261
+ declare const _default$75: typeof __VLS_export$5;
1098
1262
  declare const __VLS_export$5: __VLS_WithSlots$4<import("vue").DefineComponent<SheetFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1099
1263
  default?: (props: {}) => any;
1100
1264
  }>;
@@ -1108,7 +1272,7 @@ type __VLS_WithSlots$4<T, S> = T & {
1108
1272
  interface SheetHeaderProps extends PrimitiveProps {
1109
1273
  class?: HTMLAttributes['class'];
1110
1274
  }
1111
- declare const _default$64: typeof __VLS_export$4;
1275
+ declare const _default$76: typeof __VLS_export$4;
1112
1276
  declare const __VLS_export$4: __VLS_WithSlots$3<import("vue").DefineComponent<SheetHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1113
1277
  default?: (props: {}) => any;
1114
1278
  }>;
@@ -1122,7 +1286,7 @@ type __VLS_WithSlots$3<T, S> = T & {
1122
1286
  interface SheetOverlayProps extends DialogOverlayProps$1 {
1123
1287
  class?: HTMLAttributes['class'];
1124
1288
  }
1125
- declare const _default$65: typeof __VLS_export$3;
1289
+ declare const _default$77: typeof __VLS_export$3;
1126
1290
  declare const __VLS_export$3: __VLS_WithSlots$2<import("vue").DefineComponent<SheetOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1127
1291
  default?: (props: {}) => any;
1128
1292
  }>;
@@ -1136,7 +1300,7 @@ type __VLS_WithSlots$2<T, S> = T & {
1136
1300
  interface SheetTitleProps extends DrawerTitleProps$1 {
1137
1301
  class?: HTMLAttributes['class'];
1138
1302
  }
1139
- declare const _default$66: typeof __VLS_export$2;
1303
+ declare const _default$78: typeof __VLS_export$2;
1140
1304
  declare const __VLS_export$2: __VLS_WithSlots$1<import("vue").DefineComponent<SheetTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTitleProps> & Readonly<{}>, {
1141
1305
  as: import("reka-ui").AsTag | import("vue").Component;
1142
1306
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -1150,7 +1314,7 @@ type __VLS_WithSlots$1<T, S> = T & {
1150
1314
  //#endregion
1151
1315
  //#region src/sheet/SheetTrigger.vue.d.ts
1152
1316
  interface SheetTriggerProps extends DrawerTriggerProps$1 {}
1153
- declare const _default$67: typeof __VLS_export$1;
1317
+ declare const _default$79: typeof __VLS_export$1;
1154
1318
  declare const __VLS_export$1: __VLS_WithSlots<import("vue").DefineComponent<SheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
1155
1319
  default?: (props: {}) => any;
1156
1320
  }>;
@@ -1162,10 +1326,10 @@ type __VLS_WithSlots<T, S> = T & {
1162
1326
  //#endregion
1163
1327
  //#region src/sonner/Sonner.vue.d.ts
1164
1328
  interface SonnerProps extends ToasterProps {}
1165
- declare const _default$68: typeof __VLS_export;
1329
+ declare const _default$80: typeof __VLS_export;
1166
1330
  declare const __VLS_export: import("vue").DefineComponent<SonnerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SonnerProps> & Readonly<{}>, {
1167
1331
  richColors: boolean;
1168
1332
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=Sonner.vue.d.ts.map
1169
1333
  //#endregion
1170
- export { __VLS_export$68 as Autocomplete, __VLS_export$67 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$66 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$65 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$64 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$63 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$62 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$61 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$60 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$59 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$58 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$57 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$56 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$55 as Combobox, __VLS_export$54 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$53 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$52 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$51 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$50 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$49 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$48 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$47 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$46 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$45 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$44 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$43 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$42 as Dialog, __VLS_export$41 as DialogClose, type DialogCloseProps, __VLS_export$40 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$39 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$38 as DialogFooter, type DialogFooterProps, __VLS_export$37 as DialogHeader, type DialogHeaderProps, __VLS_export$36 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$35 as DialogTitle, type DialogTitleProps, __VLS_export$34 as DialogTrigger, type DialogTriggerProps, __VLS_export$33 as Drawer, __VLS_export$32 as DrawerClose, type DrawerCloseProps, __VLS_export$31 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$30 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$29 as DrawerFooter, type DrawerFooterProps, __VLS_export$28 as DrawerHeader, type DrawerHeaderProps, __VLS_export$27 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$26 as DrawerTitle, type DrawerTitleProps, __VLS_export$25 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$24 as DropdownMenu, __VLS_export$23 as DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemEmits, type DropdownMenuCheckboxItemProps, __VLS_export$22 as DropdownMenuContent, type DropdownMenuContentEmits, type DropdownMenuContentProps, type DropdownMenuEmits, __VLS_export$21 as DropdownMenuGroup, type DropdownMenuGroupProps, __VLS_export$20 as DropdownMenuItem, type DropdownMenuItemProps, __VLS_export$19 as DropdownMenuLabel, type DropdownMenuLabelProps, __VLS_export$18 as DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, __VLS_export$17 as DropdownMenuRadioGroup, type DropdownMenuRadioGroupEmits, type DropdownMenuRadioGroupProps, __VLS_export$16 as DropdownMenuRadioItem, type DropdownMenuRadioItemEmits, type DropdownMenuRadioItemProps, __VLS_export$15 as DropdownMenuSeparator, type DropdownMenuSeparatorProps, __VLS_export$14 as DropdownMenuShortcut, type DropdownMenuShortcutProps, __VLS_export$13 as DropdownMenuSub, __VLS_export$12 as DropdownMenuSubContent, type DropdownMenuSubContentEmits, type DropdownMenuSubContentProps, type DropdownMenuSubProps, __VLS_export$11 as DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, __VLS_export$10 as DropdownMenuTrigger, type DropdownMenuTriggerProps, __VLS_export$9 as Sheet, __VLS_export$8 as SheetClose, type SheetCloseProps, __VLS_export$7 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$6 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$5 as SheetFooter, type SheetFooterProps, __VLS_export$4 as SheetHeader, type SheetHeaderProps, __VLS_export$3 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$2 as SheetTitle, type SheetTitleProps, __VLS_export$1 as SheetTrigger, type SheetTriggerProps, _default$68 as Sonner, type SonnerProps, toast };
1334
+ export { __VLS_export$80 as AspectRatio, type AspectRatioProps, __VLS_export$79 as Autocomplete, __VLS_export$78 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$77 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$76 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$75 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$74 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$73 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$72 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$71 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$70 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$69 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$68 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$67 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$66 as Combobox, __VLS_export$65 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$64 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$63 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$62 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$61 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$60 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$59 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$58 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$57 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$56 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$55 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$54 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$53 as Dialog, __VLS_export$52 as DialogClose, type DialogCloseProps, __VLS_export$51 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$50 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$49 as DialogFooter, type DialogFooterProps, __VLS_export$48 as DialogHeader, type DialogHeaderProps, __VLS_export$47 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$46 as DialogTitle, type DialogTitleProps, __VLS_export$45 as DialogTrigger, type DialogTriggerProps, __VLS_export$44 as Drawer, __VLS_export$43 as DrawerClose, type DrawerCloseProps, __VLS_export$42 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$41 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$40 as DrawerFooter, type DrawerFooterProps, __VLS_export$39 as DrawerHeader, type DrawerHeaderProps, __VLS_export$38 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$37 as DrawerTitle, type DrawerTitleProps, __VLS_export$36 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$35 as DropdownMenu, __VLS_export$34 as DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemEmits, type DropdownMenuCheckboxItemProps, __VLS_export$33 as DropdownMenuContent, type DropdownMenuContentEmits, type DropdownMenuContentProps, type DropdownMenuEmits, __VLS_export$32 as DropdownMenuGroup, type DropdownMenuGroupProps, __VLS_export$31 as DropdownMenuItem, type DropdownMenuItemProps, __VLS_export$30 as DropdownMenuLabel, type DropdownMenuLabelProps, __VLS_export$29 as DropdownMenuPortal, type DropdownMenuPortalProps, type DropdownMenuProps, __VLS_export$28 as DropdownMenuRadioGroup, type DropdownMenuRadioGroupEmits, type DropdownMenuRadioGroupProps, __VLS_export$27 as DropdownMenuRadioItem, type DropdownMenuRadioItemEmits, type DropdownMenuRadioItemProps, __VLS_export$26 as DropdownMenuSeparator, type DropdownMenuSeparatorProps, __VLS_export$25 as DropdownMenuShortcut, type DropdownMenuShortcutProps, __VLS_export$24 as DropdownMenuSub, __VLS_export$23 as DropdownMenuSubContent, type DropdownMenuSubContentEmits, type DropdownMenuSubContentProps, type DropdownMenuSubProps, __VLS_export$22 as DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, __VLS_export$21 as DropdownMenuTrigger, type DropdownMenuTriggerProps, __VLS_export$20 as Select, __VLS_export$19 as SelectContent, type SelectContentEmits, type SelectContentProps, type SelectEmits, __VLS_export$18 as SelectGroup, type SelectGroupProps, __VLS_export$17 as SelectItem, type SelectItemProps, __VLS_export$16 as SelectItemText, type SelectItemTextProps, __VLS_export$15 as SelectLabel, type SelectLabelProps, type SelectProps, __VLS_export$14 as SelectScrollDownButton, type SelectScrollDownButtonProps, __VLS_export$13 as SelectScrollUpButton, type SelectScrollUpButtonProps, __VLS_export$12 as SelectSeparator, type SelectSeparatorProps, __VLS_export$11 as SelectTrigger, type SelectTriggerProps, __VLS_export$10 as SelectValue, type SelectValueProps, __VLS_export$9 as Sheet, __VLS_export$8 as SheetClose, type SheetCloseProps, __VLS_export$7 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$6 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$5 as SheetFooter, type SheetFooterProps, __VLS_export$4 as SheetHeader, type SheetHeaderProps, __VLS_export$3 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$2 as SheetTitle, type SheetTitleProps, __VLS_export$1 as SheetTrigger, type SheetTriggerProps, _default$80 as Sonner, type SonnerProps, toast };
1171
1335
  //# sourceMappingURL=index.d.ts.map