arvue-ui 0.3.2 → 0.4.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 (58) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/combobox/combobox.js +56 -0
  3. package/dist/combobox/combobox.js.map +1 -0
  4. package/dist/combobox/comboboxAnchor.js +24 -0
  5. package/dist/combobox/comboboxAnchor.js.map +1 -0
  6. package/dist/combobox/comboboxCancel.js +23 -0
  7. package/dist/combobox/comboboxCancel.js.map +1 -0
  8. package/dist/combobox/comboboxContent.js +73 -0
  9. package/dist/combobox/comboboxContent.js.map +1 -0
  10. package/dist/combobox/comboboxEmpty.js +33 -0
  11. package/dist/combobox/comboboxEmpty.js.map +1 -0
  12. package/dist/combobox/comboboxGroup.js +23 -0
  13. package/dist/combobox/comboboxGroup.js.map +1 -0
  14. package/dist/combobox/comboboxInput.js +67 -0
  15. package/dist/combobox/comboboxInput.js.map +1 -0
  16. package/dist/combobox/comboboxItem.js +36 -0
  17. package/dist/combobox/comboboxItem.js.map +1 -0
  18. package/dist/combobox/comboboxLabel.js +34 -0
  19. package/dist/combobox/comboboxLabel.js.map +1 -0
  20. package/dist/combobox/comboboxPortal.js +25 -0
  21. package/dist/combobox/comboboxPortal.js.map +1 -0
  22. package/dist/combobox/comboboxSeparator.js +33 -0
  23. package/dist/combobox/comboboxSeparator.js.map +1 -0
  24. package/dist/combobox/comboboxTrigger.js +24 -0
  25. package/dist/combobox/comboboxTrigger.js.map +1 -0
  26. package/dist/combobox/comboboxViewport.js +24 -0
  27. package/dist/combobox/comboboxViewport.js.map +1 -0
  28. package/dist/index.d.ts +295 -85
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +55 -1277
  31. package/dist/index.js.map +1 -1
  32. package/dist/style.css +14 -0
  33. package/package.json +1 -1
  34. package/src/autocomplete/autocomplete-content.css +4 -0
  35. package/src/autocomplete/autocomplete-input.css +5 -0
  36. package/src/autocomplete/autocomplete.css +1 -0
  37. package/src/combobox/Combobox.vue +36 -0
  38. package/src/combobox/ComboboxAnchor.vue +17 -0
  39. package/src/combobox/ComboboxCancel.vue +17 -0
  40. package/src/combobox/ComboboxContent.vue +46 -0
  41. package/src/combobox/ComboboxEmpty.vue +31 -0
  42. package/src/combobox/ComboboxGroup.vue +17 -0
  43. package/src/combobox/ComboboxInput.vue +69 -0
  44. package/src/combobox/ComboboxItem.vue +35 -0
  45. package/src/combobox/ComboboxLabel.vue +31 -0
  46. package/src/combobox/ComboboxPortal.vue +17 -0
  47. package/src/combobox/ComboboxSeparator.vue +31 -0
  48. package/src/combobox/ComboboxTrigger.vue +17 -0
  49. package/src/combobox/ComboboxViewport.vue +17 -0
  50. package/src/combobox/combobox-content.css +11 -0
  51. package/src/combobox/combobox-empty.css +7 -0
  52. package/src/combobox/combobox-input.css +10 -0
  53. package/src/combobox/combobox-item.css +14 -0
  54. package/src/combobox/combobox-label.css +6 -0
  55. package/src/combobox/combobox-separator.css +5 -0
  56. package/src/combobox/combobox.css +5 -0
  57. package/src/combobox/index.ts +56 -0
  58. package/src/index.ts +1 -0
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { HTMLAttributes } from "vue";
2
- import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps, ComboboxArrowProps, ComboboxCancelProps, ComboboxContentEmits, ComboboxContentProps, ComboboxEmptyProps, ComboboxGroupProps, ComboboxItemEmits, ComboboxItemProps, ComboboxLabelProps, ComboboxPortalProps, ComboboxSeparatorProps, ComboboxTriggerProps, ComboboxViewportProps, 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, PrimitiveProps } from "reka-ui";
2
+ import { AutocompleteInputEmits as AutocompleteInputEmits$1, AutocompleteInputProps as AutocompleteInputProps$1, AutocompleteRootEmits, AutocompleteRootProps, ComboboxAnchorProps as ComboboxAnchorProps$1, ComboboxArrowProps, 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, PrimitiveProps } 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
 
5
5
  //#region src/autocomplete/Autocomplete.vue.d.ts
@@ -7,8 +7,8 @@ interface AutocompleteProps extends AutocompleteRootProps {
7
7
  class?: HTMLAttributes['class'];
8
8
  }
9
9
  interface AutocompleteEmits extends AutocompleteRootEmits {}
10
- declare const _default: typeof __VLS_export$40;
11
- declare const __VLS_export$40: __VLS_WithSlots$39<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ declare const _default: typeof __VLS_export$53;
11
+ declare const __VLS_export$53: __VLS_WithSlots$51<import("vue").DefineComponent<AutocompleteProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
12
12
  "update:open": (value: boolean) => any;
13
13
  "update:modelValue": (value: string) => any;
14
14
  highlight: (payload: {
@@ -28,19 +28,19 @@ declare const __VLS_export$40: __VLS_WithSlots$39<import("vue").DefineComponent<
28
28
  modelValue: string;
29
29
  }) => any;
30
30
  }>;
31
- type __VLS_WithSlots$39<T, S> = T & {
31
+ type __VLS_WithSlots$51<T, S> = T & {
32
32
  new (): {
33
33
  $slots: S;
34
34
  };
35
35
  }; //# sourceMappingURL=Autocomplete.vue.d.ts.map
36
36
  //#endregion
37
37
  //#region src/autocomplete/AutocompleteAnchor.vue.d.ts
38
- interface AutocompleteAnchorProps extends ComboboxAnchorProps {}
39
- declare const _default$1: typeof __VLS_export$39;
40
- declare const __VLS_export$39: __VLS_WithSlots$38<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
38
+ interface AutocompleteAnchorProps extends ComboboxAnchorProps$1 {}
39
+ declare const _default$1: typeof __VLS_export$52;
40
+ declare const __VLS_export$52: __VLS_WithSlots$50<import("vue").DefineComponent<AutocompleteAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
41
41
  default?: (props: {}) => any;
42
42
  }>;
43
- type __VLS_WithSlots$38<T, S> = T & {
43
+ type __VLS_WithSlots$50<T, S> = T & {
44
44
  new (): {
45
45
  $slots: S;
46
46
  };
@@ -48,35 +48,35 @@ type __VLS_WithSlots$38<T, S> = T & {
48
48
  //#endregion
49
49
  //#region src/autocomplete/AutocompleteArrow.vue.d.ts
50
50
  interface AutocompleteArrowProps extends ComboboxArrowProps {}
51
- declare const _default$2: typeof __VLS_export$38;
52
- declare const __VLS_export$38: __VLS_WithSlots$37<import("vue").DefineComponent<AutocompleteArrowProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
51
+ declare const _default$2: typeof __VLS_export$51;
52
+ declare const __VLS_export$51: __VLS_WithSlots$49<import("vue").DefineComponent<AutocompleteArrowProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteArrowProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
53
53
  default?: (props: {}) => any;
54
54
  }>;
55
- type __VLS_WithSlots$37<T, S> = T & {
55
+ type __VLS_WithSlots$49<T, S> = T & {
56
56
  new (): {
57
57
  $slots: S;
58
58
  };
59
59
  }; //# sourceMappingURL=AutocompleteArrow.vue.d.ts.map
60
60
  //#endregion
61
61
  //#region src/autocomplete/AutocompleteCancel.vue.d.ts
62
- interface AutocompleteCancelProps extends ComboboxCancelProps {}
63
- declare const _default$3: typeof __VLS_export$37;
64
- declare const __VLS_export$37: __VLS_WithSlots$36<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
62
+ interface AutocompleteCancelProps extends ComboboxCancelProps$1 {}
63
+ declare const _default$3: typeof __VLS_export$50;
64
+ declare const __VLS_export$50: __VLS_WithSlots$48<import("vue").DefineComponent<AutocompleteCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
65
65
  default?: (props: {}) => any;
66
66
  }>;
67
- type __VLS_WithSlots$36<T, S> = T & {
67
+ type __VLS_WithSlots$48<T, S> = T & {
68
68
  new (): {
69
69
  $slots: S;
70
70
  };
71
71
  }; //# sourceMappingURL=AutocompleteCancel.vue.d.ts.map
72
72
  //#endregion
73
73
  //#region src/autocomplete/AutocompleteContent.vue.d.ts
74
- interface AutocompleteContentProps extends Omit<ComboboxContentProps, 'position'> {
74
+ interface AutocompleteContentProps extends Omit<ComboboxContentProps$1, 'position'> {
75
75
  class?: HTMLAttributes['class'];
76
76
  }
77
- interface AutocompleteContentEmits extends ComboboxContentEmits {}
78
- declare const _default$4: typeof __VLS_export$36;
79
- declare const __VLS_export$36: __VLS_WithSlots$35<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
77
+ interface AutocompleteContentEmits extends ComboboxContentEmits$1 {}
78
+ declare const _default$4: typeof __VLS_export$49;
79
+ declare const __VLS_export$49: __VLS_WithSlots$47<import("vue").DefineComponent<AutocompleteContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
80
80
  escapeKeyDown: (event: KeyboardEvent) => any;
81
81
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
82
82
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -89,33 +89,33 @@ declare const __VLS_export$36: __VLS_WithSlots$35<import("vue").DefineComponent<
89
89
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
90
90
  default?: (props: {}) => any;
91
91
  }>;
92
- type __VLS_WithSlots$35<T, S> = T & {
92
+ type __VLS_WithSlots$47<T, S> = T & {
93
93
  new (): {
94
94
  $slots: S;
95
95
  };
96
96
  }; //# sourceMappingURL=AutocompleteContent.vue.d.ts.map
97
97
  //#endregion
98
98
  //#region src/autocomplete/AutocompleteEmpty.vue.d.ts
99
- interface AutocompleteEmptyProps extends ComboboxEmptyProps {
99
+ interface AutocompleteEmptyProps extends ComboboxEmptyProps$1 {
100
100
  class?: HTMLAttributes['class'];
101
101
  }
102
- declare const _default$5: typeof __VLS_export$35;
103
- declare const __VLS_export$35: __VLS_WithSlots$34<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
102
+ declare const _default$5: typeof __VLS_export$48;
103
+ declare const __VLS_export$48: __VLS_WithSlots$46<import("vue").DefineComponent<AutocompleteEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
104
104
  default?: (props: {}) => any;
105
105
  }>;
106
- type __VLS_WithSlots$34<T, S> = T & {
106
+ type __VLS_WithSlots$46<T, S> = T & {
107
107
  new (): {
108
108
  $slots: S;
109
109
  };
110
110
  }; //# sourceMappingURL=AutocompleteEmpty.vue.d.ts.map
111
111
  //#endregion
112
112
  //#region src/autocomplete/AutocompleteGroup.vue.d.ts
113
- interface AutocompleteGroupProps extends ComboboxGroupProps {}
114
- declare const _default$6: typeof __VLS_export$34;
115
- declare const __VLS_export$34: __VLS_WithSlots$33<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
113
+ interface AutocompleteGroupProps extends ComboboxGroupProps$1 {}
114
+ declare const _default$6: typeof __VLS_export$47;
115
+ declare const __VLS_export$47: __VLS_WithSlots$45<import("vue").DefineComponent<AutocompleteGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
116
116
  default?: (props: {}) => any;
117
117
  }>;
118
- type __VLS_WithSlots$33<T, S> = T & {
118
+ type __VLS_WithSlots$45<T, S> = T & {
119
119
  new (): {
120
120
  $slots: S;
121
121
  };
@@ -129,107 +129,317 @@ interface AutocompleteInputProps extends AutocompleteInputProps$1 {
129
129
  interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
130
130
  'cancel': [void];
131
131
  }
132
- declare const _default$7: typeof __VLS_export$33;
133
- declare const __VLS_export$33: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
134
- cancel: (args_0: void) => any;
132
+ declare const _default$7: typeof __VLS_export$46;
133
+ declare const __VLS_export$46: import("vue").DefineComponent<AutocompleteInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
135
134
  "update:modelValue": (args_0: string) => any;
135
+ cancel: (args_0: void) => any;
136
136
  }, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
137
- onCancel?: ((args_0?: void | undefined) => any) | undefined;
138
137
  "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
138
+ onCancel?: ((args_0?: void | undefined) => any) | undefined;
139
139
  }>, {
140
140
  showTriggerButton: boolean;
141
141
  showCancelButton: boolean;
142
142
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=AutocompleteInput.vue.d.ts.map
143
143
  //#endregion
144
144
  //#region src/autocomplete/AutocompleteItem.vue.d.ts
145
- interface AutocompleteItemProps extends ComboboxItemProps {
145
+ interface AutocompleteItemProps extends ComboboxItemProps$1 {
146
146
  class?: HTMLAttributes['class'];
147
147
  }
148
- interface AutocompleteItemEmits extends ComboboxItemEmits {}
149
- declare const _default$8: typeof __VLS_export$32;
150
- declare const __VLS_export$32: __VLS_WithSlots$32<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
148
+ interface AutocompleteItemEmits extends ComboboxItemEmits$1 {}
149
+ declare const _default$8: typeof __VLS_export$45;
150
+ declare const __VLS_export$45: __VLS_WithSlots$44<import("vue").DefineComponent<AutocompleteItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
151
151
  select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
152
152
  }, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
153
153
  onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
154
154
  }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
155
155
  default?: (props: {}) => any;
156
156
  }>;
157
- type __VLS_WithSlots$32<T, S> = T & {
157
+ type __VLS_WithSlots$44<T, S> = T & {
158
158
  new (): {
159
159
  $slots: S;
160
160
  };
161
161
  }; //# sourceMappingURL=AutocompleteItem.vue.d.ts.map
162
162
  //#endregion
163
163
  //#region src/autocomplete/AutocompleteLabel.vue.d.ts
164
- interface AutocompleteLabelProps extends ComboboxLabelProps {
164
+ interface AutocompleteLabelProps extends ComboboxLabelProps$1 {
165
165
  class?: HTMLAttributes['class'];
166
166
  }
167
- declare const _default$9: typeof __VLS_export$31;
168
- declare const __VLS_export$31: __VLS_WithSlots$31<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
167
+ declare const _default$9: typeof __VLS_export$44;
168
+ declare const __VLS_export$44: __VLS_WithSlots$43<import("vue").DefineComponent<AutocompleteLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
169
169
  default?: (props: {}) => any;
170
170
  }>;
171
- type __VLS_WithSlots$31<T, S> = T & {
171
+ type __VLS_WithSlots$43<T, S> = T & {
172
172
  new (): {
173
173
  $slots: S;
174
174
  };
175
175
  }; //# sourceMappingURL=AutocompleteLabel.vue.d.ts.map
176
176
  //#endregion
177
177
  //#region src/autocomplete/AutocompletePortal.vue.d.ts
178
- interface AutocompletePortalProps extends ComboboxPortalProps {}
179
- declare const _default$10: typeof __VLS_export$30;
180
- declare const __VLS_export$30: __VLS_WithSlots$30<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
178
+ interface AutocompletePortalProps extends ComboboxPortalProps$1 {}
179
+ declare const _default$10: typeof __VLS_export$43;
180
+ declare const __VLS_export$43: __VLS_WithSlots$42<import("vue").DefineComponent<AutocompletePortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompletePortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
181
181
  default?: (props: {}) => any;
182
182
  }>;
183
- type __VLS_WithSlots$30<T, S> = T & {
183
+ type __VLS_WithSlots$42<T, S> = T & {
184
184
  new (): {
185
185
  $slots: S;
186
186
  };
187
187
  }; //# sourceMappingURL=AutocompletePortal.vue.d.ts.map
188
188
  //#endregion
189
189
  //#region src/autocomplete/AutocompleteSeparator.vue.d.ts
190
- interface AutocompleteSeparatorProps extends ComboboxSeparatorProps {
190
+ interface AutocompleteSeparatorProps extends ComboboxSeparatorProps$1 {
191
191
  class?: HTMLAttributes['class'];
192
192
  }
193
- declare const _default$11: typeof __VLS_export$29;
194
- declare const __VLS_export$29: __VLS_WithSlots$29<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
193
+ declare const _default$11: typeof __VLS_export$42;
194
+ declare const __VLS_export$42: __VLS_WithSlots$41<import("vue").DefineComponent<AutocompleteSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
195
195
  default?: (props: {}) => any;
196
196
  }>;
197
- type __VLS_WithSlots$29<T, S> = T & {
197
+ type __VLS_WithSlots$41<T, S> = T & {
198
198
  new (): {
199
199
  $slots: S;
200
200
  };
201
201
  }; //# sourceMappingURL=AutocompleteSeparator.vue.d.ts.map
202
202
  //#endregion
203
203
  //#region src/autocomplete/AutocompleteTrigger.vue.d.ts
204
- interface AutocompleteTriggerProps extends ComboboxTriggerProps {}
205
- declare const _default$12: typeof __VLS_export$28;
206
- declare const __VLS_export$28: __VLS_WithSlots$28<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
204
+ interface AutocompleteTriggerProps extends ComboboxTriggerProps$1 {}
205
+ declare const _default$12: typeof __VLS_export$41;
206
+ declare const __VLS_export$41: __VLS_WithSlots$40<import("vue").DefineComponent<AutocompleteTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
207
207
  default?: (props: {}) => any;
208
208
  }>;
209
- type __VLS_WithSlots$28<T, S> = T & {
209
+ type __VLS_WithSlots$40<T, S> = T & {
210
210
  new (): {
211
211
  $slots: S;
212
212
  };
213
213
  }; //# sourceMappingURL=AutocompleteTrigger.vue.d.ts.map
214
214
  //#endregion
215
215
  //#region src/autocomplete/AutocompleteViewport.vue.d.ts
216
- interface AutocompleteViewportProps extends ComboboxViewportProps {}
217
- declare const _default$13: typeof __VLS_export$27;
218
- declare const __VLS_export$27: __VLS_WithSlots$27<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
216
+ interface AutocompleteViewportProps extends ComboboxViewportProps$1 {}
217
+ declare const _default$13: typeof __VLS_export$40;
218
+ declare const __VLS_export$40: __VLS_WithSlots$39<import("vue").DefineComponent<AutocompleteViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<AutocompleteViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
219
219
  default?: (props: {}) => any;
220
220
  }>;
221
- type __VLS_WithSlots$27<T, S> = T & {
221
+ type __VLS_WithSlots$39<T, S> = T & {
222
222
  new (): {
223
223
  $slots: S;
224
224
  };
225
225
  }; //# sourceMappingURL=AutocompleteViewport.vue.d.ts.map
226
226
  //#endregion
227
+ //#region src/combobox/Combobox.vue.d.ts
228
+ interface ComboboxProps extends ComboboxRootProps {
229
+ class?: HTMLAttributes['class'];
230
+ }
231
+ interface ComboboxEmits extends ComboboxRootEmits {}
232
+ declare const _default$14: typeof __VLS_export$39;
233
+ declare const __VLS_export$39: __VLS_WithSlots$38<import("vue").DefineComponent<ComboboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
234
+ "update:open": (value: boolean) => any;
235
+ "update:modelValue": (value: import("reka-ui").AcceptableValue) => any;
236
+ highlight: (payload: {
237
+ ref: HTMLElement;
238
+ value: import("reka-ui").AcceptableValue;
239
+ } | undefined) => any;
240
+ }, string, import("vue").PublicProps, Readonly<ComboboxProps> & Readonly<{
241
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
242
+ "onUpdate:modelValue"?: ((value: import("reka-ui").AcceptableValue) => any) | undefined;
243
+ onHighlight?: ((payload: {
244
+ ref: HTMLElement;
245
+ value: import("reka-ui").AcceptableValue;
246
+ } | undefined) => any) | undefined;
247
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
248
+ default?: (props: {
249
+ open: boolean;
250
+ modelValue: string | number | bigint | Record<string, any> | (string | number | bigint | Record<string, any> | null)[] | null;
251
+ }) => any;
252
+ }>;
253
+ type __VLS_WithSlots$38<T, S> = T & {
254
+ new (): {
255
+ $slots: S;
256
+ };
257
+ }; //# sourceMappingURL=Combobox.vue.d.ts.map
258
+ //#endregion
259
+ //#region src/combobox/ComboboxAnchor.vue.d.ts
260
+ interface ComboboxAnchorProps extends ComboboxAnchorProps$1 {}
261
+ declare const _default$15: typeof __VLS_export$38;
262
+ declare const __VLS_export$38: __VLS_WithSlots$37<import("vue").DefineComponent<ComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxAnchorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
263
+ default?: (props: {}) => any;
264
+ }>;
265
+ type __VLS_WithSlots$37<T, S> = T & {
266
+ new (): {
267
+ $slots: S;
268
+ };
269
+ }; //# sourceMappingURL=ComboboxAnchor.vue.d.ts.map
270
+ //#endregion
271
+ //#region src/combobox/ComboboxCancel.vue.d.ts
272
+ interface ComboboxCancelProps extends ComboboxCancelProps$1 {}
273
+ declare const _default$16: typeof __VLS_export$37;
274
+ declare const __VLS_export$37: __VLS_WithSlots$36<import("vue").DefineComponent<ComboboxCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxCancelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
275
+ default?: (props: {}) => any;
276
+ }>;
277
+ type __VLS_WithSlots$36<T, S> = T & {
278
+ new (): {
279
+ $slots: S;
280
+ };
281
+ }; //# sourceMappingURL=ComboboxCancel.vue.d.ts.map
282
+ //#endregion
283
+ //#region src/combobox/ComboboxContent.vue.d.ts
284
+ interface ComboboxContentProps extends Omit<ComboboxContentProps$1, 'position'> {
285
+ class?: HTMLAttributes['class'];
286
+ }
287
+ interface ComboboxContentEmits extends ComboboxContentEmits$1 {}
288
+ declare const _default$17: typeof __VLS_export$36;
289
+ declare const __VLS_export$36: __VLS_WithSlots$35<import("vue").DefineComponent<ComboboxContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
290
+ escapeKeyDown: (event: KeyboardEvent) => any;
291
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
292
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
293
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
294
+ }, string, import("vue").PublicProps, Readonly<ComboboxContentProps> & Readonly<{
295
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
296
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
297
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
298
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
299
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
300
+ default?: (props: {}) => any;
301
+ }>;
302
+ type __VLS_WithSlots$35<T, S> = T & {
303
+ new (): {
304
+ $slots: S;
305
+ };
306
+ }; //# sourceMappingURL=ComboboxContent.vue.d.ts.map
307
+ //#endregion
308
+ //#region src/combobox/ComboboxEmpty.vue.d.ts
309
+ interface ComboboxEmptyProps extends ComboboxEmptyProps$1 {
310
+ class?: HTMLAttributes['class'];
311
+ }
312
+ declare const _default$18: typeof __VLS_export$35;
313
+ declare const __VLS_export$35: __VLS_WithSlots$34<import("vue").DefineComponent<ComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxEmptyProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
314
+ default?: (props: {}) => any;
315
+ }>;
316
+ type __VLS_WithSlots$34<T, S> = T & {
317
+ new (): {
318
+ $slots: S;
319
+ };
320
+ }; //# sourceMappingURL=ComboboxEmpty.vue.d.ts.map
321
+ //#endregion
322
+ //#region src/combobox/ComboboxGroup.vue.d.ts
323
+ interface ComboboxGroupProps extends ComboboxGroupProps$1 {}
324
+ declare const _default$19: typeof __VLS_export$34;
325
+ declare const __VLS_export$34: __VLS_WithSlots$33<import("vue").DefineComponent<ComboboxGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
326
+ default?: (props: {}) => any;
327
+ }>;
328
+ type __VLS_WithSlots$33<T, S> = T & {
329
+ new (): {
330
+ $slots: S;
331
+ };
332
+ }; //# sourceMappingURL=ComboboxGroup.vue.d.ts.map
333
+ //#endregion
334
+ //#region src/combobox/ComboboxInput.vue.d.ts
335
+ interface ComboboxInputProps extends ComboboxInputProps$1 {
336
+ showTriggerButton?: boolean;
337
+ showCancelButton?: boolean;
338
+ }
339
+ interface ComboboxInputEmits extends ComboboxInputEmits$1 {
340
+ 'cancel': [void];
341
+ }
342
+ declare const _default$20: typeof __VLS_export$33;
343
+ declare const __VLS_export$33: import("vue").DefineComponent<ComboboxInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
344
+ "update:modelValue": (args_0: string) => any;
345
+ cancel: (args_0: void) => any;
346
+ }, string, import("vue").PublicProps, Readonly<ComboboxInputProps> & Readonly<{
347
+ "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
348
+ onCancel?: ((args_0?: void | undefined) => any) | undefined;
349
+ }>, {
350
+ showTriggerButton: boolean;
351
+ showCancelButton: boolean;
352
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=ComboboxInput.vue.d.ts.map
353
+ //#endregion
354
+ //#region src/combobox/ComboboxItem.vue.d.ts
355
+ interface ComboboxItemProps extends ComboboxItemProps$1 {
356
+ class?: HTMLAttributes['class'];
357
+ }
358
+ interface ComboboxItemEmits extends ComboboxItemEmits$1 {}
359
+ declare const _default$21: typeof __VLS_export$32;
360
+ declare const __VLS_export$32: __VLS_WithSlots$32<import("vue").DefineComponent<ComboboxItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
361
+ select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
362
+ }, string, import("vue").PublicProps, Readonly<ComboboxItemProps> & Readonly<{
363
+ onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
364
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
365
+ default?: (props: {}) => any;
366
+ }>;
367
+ type __VLS_WithSlots$32<T, S> = T & {
368
+ new (): {
369
+ $slots: S;
370
+ };
371
+ }; //# sourceMappingURL=ComboboxItem.vue.d.ts.map
372
+ //#endregion
373
+ //#region src/combobox/ComboboxLabel.vue.d.ts
374
+ interface ComboboxLabelProps extends ComboboxLabelProps$1 {
375
+ class?: HTMLAttributes['class'];
376
+ }
377
+ declare const _default$22: typeof __VLS_export$31;
378
+ declare const __VLS_export$31: __VLS_WithSlots$31<import("vue").DefineComponent<ComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
379
+ default?: (props: {}) => any;
380
+ }>;
381
+ type __VLS_WithSlots$31<T, S> = T & {
382
+ new (): {
383
+ $slots: S;
384
+ };
385
+ }; //# sourceMappingURL=ComboboxLabel.vue.d.ts.map
386
+ //#endregion
387
+ //#region src/combobox/ComboboxPortal.vue.d.ts
388
+ interface ComboboxPortalProps extends ComboboxPortalProps$1 {}
389
+ declare const _default$23: typeof __VLS_export$30;
390
+ declare const __VLS_export$30: __VLS_WithSlots$30<import("vue").DefineComponent<ComboboxPortalProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxPortalProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
391
+ default?: (props: {}) => any;
392
+ }>;
393
+ type __VLS_WithSlots$30<T, S> = T & {
394
+ new (): {
395
+ $slots: S;
396
+ };
397
+ }; //# sourceMappingURL=ComboboxPortal.vue.d.ts.map
398
+ //#endregion
399
+ //#region src/combobox/ComboboxSeparator.vue.d.ts
400
+ interface ComboboxSeparatorProps extends ComboboxSeparatorProps$1 {
401
+ class?: HTMLAttributes['class'];
402
+ }
403
+ declare const _default$24: typeof __VLS_export$29;
404
+ declare const __VLS_export$29: __VLS_WithSlots$29<import("vue").DefineComponent<ComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxSeparatorProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
405
+ default?: (props: {}) => any;
406
+ }>;
407
+ type __VLS_WithSlots$29<T, S> = T & {
408
+ new (): {
409
+ $slots: S;
410
+ };
411
+ }; //# sourceMappingURL=ComboboxSeparator.vue.d.ts.map
412
+ //#endregion
413
+ //#region src/combobox/ComboboxTrigger.vue.d.ts
414
+ interface ComboboxTriggerProps extends ComboboxTriggerProps$1 {}
415
+ declare const _default$25: typeof __VLS_export$28;
416
+ declare const __VLS_export$28: __VLS_WithSlots$28<import("vue").DefineComponent<ComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
417
+ default?: (props: {}) => any;
418
+ }>;
419
+ type __VLS_WithSlots$28<T, S> = T & {
420
+ new (): {
421
+ $slots: S;
422
+ };
423
+ }; //# sourceMappingURL=ComboboxTrigger.vue.d.ts.map
424
+ //#endregion
425
+ //#region src/combobox/ComboboxViewport.vue.d.ts
426
+ interface ComboboxViewportProps extends ComboboxViewportProps$1 {}
427
+ declare const _default$26: typeof __VLS_export$27;
428
+ declare const __VLS_export$27: __VLS_WithSlots$27<import("vue").DefineComponent<ComboboxViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<ComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
429
+ default?: (props: {}) => any;
430
+ }>;
431
+ type __VLS_WithSlots$27<T, S> = T & {
432
+ new (): {
433
+ $slots: S;
434
+ };
435
+ }; //# sourceMappingURL=ComboboxViewport.vue.d.ts.map
436
+ //#endregion
227
437
  //#region src/dialog/Dialog.vue.d.ts
228
438
  interface DialogProps extends DialogRootProps {
229
439
  class?: HTMLAttributes['class'];
230
440
  }
231
441
  interface DialogEmits extends DialogRootEmits {}
232
- declare const _default$14: typeof __VLS_export$26;
442
+ declare const _default$27: typeof __VLS_export$26;
233
443
  declare const __VLS_export$26: __VLS_WithSlots$26<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
234
444
  "update:open": (value: boolean) => any;
235
445
  }, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
@@ -248,7 +458,7 @@ type __VLS_WithSlots$26<T, S> = T & {
248
458
  //#endregion
249
459
  //#region src/dialog/DialogClose.vue.d.ts
250
460
  interface DialogCloseProps extends DialogCloseProps$1 {}
251
- declare const _default$15: typeof __VLS_export$25;
461
+ declare const _default$28: typeof __VLS_export$25;
252
462
  declare const __VLS_export$25: __VLS_WithSlots$25<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
253
463
  as: import("reka-ui").AsTag | import("vue").Component;
254
464
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -266,7 +476,7 @@ interface DialogContentProps extends DialogContentProps$1 {
266
476
  showCloseButton?: boolean;
267
477
  }
268
478
  interface DialogContentEmits extends DialogContentEmits$1 {}
269
- declare const _default$16: typeof __VLS_export$24;
479
+ declare const _default$29: typeof __VLS_export$24;
270
480
  declare const __VLS_export$24: __VLS_WithSlots$24<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
271
481
  escapeKeyDown: (event: KeyboardEvent) => any;
272
482
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -296,7 +506,7 @@ type __VLS_WithSlots$24<T, S> = T & {
296
506
  interface DialogDescriptionProps extends DialogDescriptionProps$1 {
297
507
  class?: HTMLAttributes['class'];
298
508
  }
299
- declare const _default$17: typeof __VLS_export$23;
509
+ declare const _default$30: typeof __VLS_export$23;
300
510
  declare const __VLS_export$23: __VLS_WithSlots$23<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
301
511
  as: import("reka-ui").AsTag | import("vue").Component;
302
512
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -312,7 +522,7 @@ type __VLS_WithSlots$23<T, S> = T & {
312
522
  interface DialogFooterProps extends PrimitiveProps {
313
523
  class?: HTMLAttributes['class'];
314
524
  }
315
- declare const _default$18: typeof __VLS_export$22;
525
+ declare const _default$31: typeof __VLS_export$22;
316
526
  declare const __VLS_export$22: __VLS_WithSlots$22<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
317
527
  default?: (props: {}) => any;
318
528
  }>;
@@ -326,7 +536,7 @@ type __VLS_WithSlots$22<T, S> = T & {
326
536
  interface DialogHeaderProps extends PrimitiveProps {
327
537
  class?: HTMLAttributes['class'];
328
538
  }
329
- declare const _default$19: typeof __VLS_export$21;
539
+ declare const _default$32: typeof __VLS_export$21;
330
540
  declare const __VLS_export$21: __VLS_WithSlots$21<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
331
541
  default?: (props: {}) => any;
332
542
  }>;
@@ -340,7 +550,7 @@ type __VLS_WithSlots$21<T, S> = T & {
340
550
  interface DialogOverlayProps extends DialogOverlayProps$1 {
341
551
  class?: HTMLAttributes['class'];
342
552
  }
343
- declare const _default$20: typeof __VLS_export$20;
553
+ declare const _default$33: typeof __VLS_export$20;
344
554
  declare const __VLS_export$20: __VLS_WithSlots$20<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
345
555
  default?: (props: {}) => any;
346
556
  }>;
@@ -354,7 +564,7 @@ type __VLS_WithSlots$20<T, S> = T & {
354
564
  interface DialogTitleProps extends DialogTitleProps$1 {
355
565
  class?: HTMLAttributes['class'];
356
566
  }
357
- declare const _default$21: typeof __VLS_export$19;
567
+ declare const _default$34: typeof __VLS_export$19;
358
568
  declare const __VLS_export$19: __VLS_WithSlots$19<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
359
569
  as: import("reka-ui").AsTag | import("vue").Component;
360
570
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -368,7 +578,7 @@ type __VLS_WithSlots$19<T, S> = T & {
368
578
  //#endregion
369
579
  //#region src/dialog/DialogTrigger.vue.d.ts
370
580
  interface DialogTriggerProps extends DialogTriggerProps$1 {}
371
- declare const _default$22: typeof __VLS_export$18;
581
+ declare const _default$35: typeof __VLS_export$18;
372
582
  declare const __VLS_export$18: __VLS_WithSlots$18<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
373
583
  default?: (props: {}) => any;
374
584
  }>;
@@ -383,7 +593,7 @@ interface DrawerProps extends DialogRootProps {
383
593
  class?: HTMLAttributes['class'];
384
594
  }
385
595
  interface DrawerEmits extends DialogRootEmits {}
386
- declare const _default$23: typeof __VLS_export$17;
596
+ declare const _default$36: typeof __VLS_export$17;
387
597
  declare const __VLS_export$17: __VLS_WithSlots$17<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
388
598
  "update:open": (value: boolean) => any;
389
599
  }, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
@@ -402,7 +612,7 @@ type __VLS_WithSlots$17<T, S> = T & {
402
612
  //#endregion
403
613
  //#region src/drawer/DrawerClose.vue.d.ts
404
614
  interface DrawerCloseProps extends DialogCloseProps$1 {}
405
- declare const _default$24: typeof __VLS_export$16;
615
+ declare const _default$37: typeof __VLS_export$16;
406
616
  declare const __VLS_export$16: __VLS_WithSlots$16<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
407
617
  as: import("reka-ui").AsTag | import("vue").Component;
408
618
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -421,7 +631,7 @@ interface DrawerContentProps extends DialogContentProps$1 {
421
631
  side?: 'top' | 'right' | 'bottom' | 'left';
422
632
  showCloseButton?: boolean;
423
633
  }
424
- declare const _default$25: typeof __VLS_export$15;
634
+ declare const _default$38: typeof __VLS_export$15;
425
635
  declare const __VLS_export$15: __VLS_WithSlots$15<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
426
636
  escapeKeyDown: (event: KeyboardEvent) => any;
427
637
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -452,7 +662,7 @@ type __VLS_WithSlots$15<T, S> = T & {
452
662
  interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
453
663
  class?: HTMLAttributes['class'];
454
664
  }
455
- declare const _default$26: typeof __VLS_export$14;
665
+ declare const _default$39: typeof __VLS_export$14;
456
666
  declare const __VLS_export$14: __VLS_WithSlots$14<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
457
667
  as: import("reka-ui").AsTag | import("vue").Component;
458
668
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -468,7 +678,7 @@ type __VLS_WithSlots$14<T, S> = T & {
468
678
  interface DrawerFooterProps extends PrimitiveProps {
469
679
  class?: HTMLAttributes['class'];
470
680
  }
471
- declare const _default$27: typeof __VLS_export$13;
681
+ declare const _default$40: typeof __VLS_export$13;
472
682
  declare const __VLS_export$13: __VLS_WithSlots$13<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
473
683
  default?: (props: {}) => any;
474
684
  }>;
@@ -482,7 +692,7 @@ type __VLS_WithSlots$13<T, S> = T & {
482
692
  interface DrawerHeaderProps extends PrimitiveProps {
483
693
  class?: HTMLAttributes['class'];
484
694
  }
485
- declare const _default$28: typeof __VLS_export$12;
695
+ declare const _default$41: typeof __VLS_export$12;
486
696
  declare const __VLS_export$12: __VLS_WithSlots$12<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
487
697
  default?: (props: {}) => any;
488
698
  }>;
@@ -496,7 +706,7 @@ type __VLS_WithSlots$12<T, S> = T & {
496
706
  interface DrawerOverlayProps extends DialogOverlayProps$1 {
497
707
  class?: HTMLAttributes['class'];
498
708
  }
499
- declare const _default$29: typeof __VLS_export$11;
709
+ declare const _default$42: typeof __VLS_export$11;
500
710
  declare const __VLS_export$11: __VLS_WithSlots$11<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
501
711
  default?: (props: {}) => any;
502
712
  }>;
@@ -510,7 +720,7 @@ type __VLS_WithSlots$11<T, S> = T & {
510
720
  interface DrawerTitleProps extends DialogTitleProps$1 {
511
721
  class?: HTMLAttributes['class'];
512
722
  }
513
- declare const _default$30: typeof __VLS_export$10;
723
+ declare const _default$43: typeof __VLS_export$10;
514
724
  declare const __VLS_export$10: __VLS_WithSlots$10<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
515
725
  as: import("reka-ui").AsTag | import("vue").Component;
516
726
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -524,7 +734,7 @@ type __VLS_WithSlots$10<T, S> = T & {
524
734
  //#endregion
525
735
  //#region src/drawer/DrawerTrigger.vue.d.ts
526
736
  interface DrawerTriggerProps extends DialogTriggerProps$1 {}
527
- declare const _default$31: typeof __VLS_export$9;
737
+ declare const _default$44: typeof __VLS_export$9;
528
738
  declare const __VLS_export$9: __VLS_WithSlots$9<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
529
739
  default?: (props: {}) => any;
530
740
  }>;
@@ -539,7 +749,7 @@ interface SheetEmits extends DrawerRootEmits {}
539
749
  interface SheetProps extends DrawerRootProps {
540
750
  class?: HTMLAttributes['class'];
541
751
  }
542
- declare const _default$32: typeof __VLS_export$8;
752
+ declare const _default$45: typeof __VLS_export$8;
543
753
  declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<SheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
544
754
  drag: (percentageDragged: number) => any;
545
755
  release: (open: boolean) => any;
@@ -567,7 +777,7 @@ type __VLS_WithSlots$8<T, S> = T & {
567
777
  //#endregion
568
778
  //#region src/sheet/SheetClose.vue.d.ts
569
779
  interface SheetCloseProps extends DrawerCloseProps$1 {}
570
- declare const _default$33: typeof __VLS_export$7;
780
+ declare const _default$46: typeof __VLS_export$7;
571
781
  declare const __VLS_export$7: __VLS_WithSlots$7<import("vue").DefineComponent<SheetCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetCloseProps> & Readonly<{}>, {
572
782
  as: import("reka-ui").AsTag | import("vue").Component;
573
783
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -585,7 +795,7 @@ interface SheetContentProps extends DialogContentProps$1 {
585
795
  class?: HTMLAttributes['class'];
586
796
  showHandle?: boolean;
587
797
  }
588
- declare const _default$34: typeof __VLS_export$6;
798
+ declare const _default$47: typeof __VLS_export$6;
589
799
  declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<SheetContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
590
800
  escapeKeyDown: (event: KeyboardEvent) => any;
591
801
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
@@ -615,7 +825,7 @@ type __VLS_WithSlots$6<T, S> = T & {
615
825
  interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
616
826
  class?: HTMLAttributes['class'];
617
827
  }
618
- declare const _default$35: typeof __VLS_export$5;
828
+ declare const _default$48: typeof __VLS_export$5;
619
829
  declare const __VLS_export$5: __VLS_WithSlots$5<import("vue").DefineComponent<SheetDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetDescriptionProps> & Readonly<{}>, {
620
830
  as: import("reka-ui").AsTag | import("vue").Component;
621
831
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -631,7 +841,7 @@ type __VLS_WithSlots$5<T, S> = T & {
631
841
  interface SheetFooterProps extends PrimitiveProps {
632
842
  class?: HTMLAttributes['class'];
633
843
  }
634
- declare const _default$36: typeof __VLS_export$4;
844
+ declare const _default$49: typeof __VLS_export$4;
635
845
  declare const __VLS_export$4: __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>, {
636
846
  default?: (props: {}) => any;
637
847
  }>;
@@ -645,7 +855,7 @@ type __VLS_WithSlots$4<T, S> = T & {
645
855
  interface SheetHeaderProps extends PrimitiveProps {
646
856
  class?: HTMLAttributes['class'];
647
857
  }
648
- declare const _default$37: typeof __VLS_export$3;
858
+ declare const _default$50: typeof __VLS_export$3;
649
859
  declare const __VLS_export$3: __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>, {
650
860
  default?: (props: {}) => any;
651
861
  }>;
@@ -659,7 +869,7 @@ type __VLS_WithSlots$3<T, S> = T & {
659
869
  interface SheetOverlayProps extends DialogOverlayProps$1 {
660
870
  class?: HTMLAttributes['class'];
661
871
  }
662
- declare const _default$38: typeof __VLS_export$2;
872
+ declare const _default$51: typeof __VLS_export$2;
663
873
  declare const __VLS_export$2: __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>, {
664
874
  default?: (props: {}) => any;
665
875
  }>;
@@ -673,7 +883,7 @@ type __VLS_WithSlots$2<T, S> = T & {
673
883
  interface SheetTitleProps extends DrawerTitleProps$1 {
674
884
  class?: HTMLAttributes['class'];
675
885
  }
676
- declare const _default$39: typeof __VLS_export$1;
886
+ declare const _default$52: typeof __VLS_export$1;
677
887
  declare const __VLS_export$1: __VLS_WithSlots$1<import("vue").DefineComponent<SheetTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<SheetTitleProps> & Readonly<{}>, {
678
888
  as: import("reka-ui").AsTag | import("vue").Component;
679
889
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
@@ -687,7 +897,7 @@ type __VLS_WithSlots$1<T, S> = T & {
687
897
  //#endregion
688
898
  //#region src/sheet/SheetTrigger.vue.d.ts
689
899
  interface SheetTriggerProps extends DrawerTriggerProps$1 {}
690
- declare const _default$40: typeof __VLS_export;
900
+ declare const _default$53: typeof __VLS_export;
691
901
  declare const __VLS_export: __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>, {
692
902
  default?: (props: {}) => any;
693
903
  }>;
@@ -697,5 +907,5 @@ type __VLS_WithSlots<T, S> = T & {
697
907
  };
698
908
  }; //# sourceMappingURL=SheetTrigger.vue.d.ts.map
699
909
  //#endregion
700
- export { __VLS_export$40 as Autocomplete, __VLS_export$39 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$38 as AutocompleteArrow, type AutocompleteArrowProps, __VLS_export$37 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$36 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$35 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$34 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$33 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$32 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$31 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$30 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$29 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$28 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$27 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$26 as Dialog, __VLS_export$25 as DialogClose, type DialogCloseProps, __VLS_export$24 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$23 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$22 as DialogFooter, type DialogFooterProps, __VLS_export$21 as DialogHeader, type DialogHeaderProps, __VLS_export$20 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$19 as DialogTitle, type DialogTitleProps, __VLS_export$18 as DialogTrigger, type DialogTriggerProps, __VLS_export$17 as Drawer, __VLS_export$16 as DrawerClose, type DrawerCloseProps, __VLS_export$15 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$14 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$13 as DrawerFooter, type DrawerFooterProps, __VLS_export$12 as DrawerHeader, type DrawerHeaderProps, __VLS_export$11 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$10 as DrawerTitle, type DrawerTitleProps, __VLS_export$9 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$8 as Sheet, __VLS_export$7 as SheetClose, type SheetCloseProps, __VLS_export$6 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$5 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$4 as SheetFooter, type SheetFooterProps, __VLS_export$3 as SheetHeader, type SheetHeaderProps, __VLS_export$2 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$1 as SheetTitle, type SheetTitleProps, _default$40 as SheetTrigger, type SheetTriggerProps };
910
+ export { __VLS_export$53 as Autocomplete, __VLS_export$52 as AutocompleteAnchor, type AutocompleteAnchorProps, __VLS_export$51 as AutocompleteArrow, type AutocompleteArrowProps, __VLS_export$50 as AutocompleteCancel, type AutocompleteCancelProps, __VLS_export$49 as AutocompleteContent, type AutocompleteContentEmits, type AutocompleteContentProps, type AutocompleteEmits, __VLS_export$48 as AutocompleteEmpty, type AutocompleteEmptyProps, __VLS_export$47 as AutocompleteGroup, type AutocompleteGroupProps, __VLS_export$46 as AutocompleteInput, type AutocompleteInputEmits, type AutocompleteInputProps, __VLS_export$45 as AutocompleteItem, type AutocompleteItemEmits, type AutocompleteItemProps, __VLS_export$44 as AutocompleteLabel, type AutocompleteLabelProps, __VLS_export$43 as AutocompletePortal, type AutocompletePortalProps, type AutocompleteProps, __VLS_export$42 as AutocompleteSeparator, type AutocompleteSeparatorProps, __VLS_export$41 as AutocompleteTrigger, type AutocompleteTriggerProps, __VLS_export$40 as AutocompleteViewport, type AutocompleteViewportProps, __VLS_export$39 as Combobox, __VLS_export$38 as ComboboxAnchor, type ComboboxAnchorProps, __VLS_export$37 as ComboboxCancel, type ComboboxCancelProps, __VLS_export$36 as ComboboxContent, type ComboboxContentEmits, type ComboboxContentProps, type ComboboxEmits, __VLS_export$35 as ComboboxEmpty, type ComboboxEmptyProps, __VLS_export$34 as ComboboxGroup, type ComboboxGroupProps, __VLS_export$33 as ComboboxInput, type ComboboxInputEmits, type ComboboxInputProps, __VLS_export$32 as ComboboxItem, type ComboboxItemEmits, type ComboboxItemProps, __VLS_export$31 as ComboboxLabel, type ComboboxLabelProps, __VLS_export$30 as ComboboxPortal, type ComboboxPortalProps, type ComboboxProps, __VLS_export$29 as ComboboxSeparator, type ComboboxSeparatorProps, __VLS_export$28 as ComboboxTrigger, type ComboboxTriggerProps, __VLS_export$27 as ComboboxViewport, type ComboboxViewportProps, __VLS_export$26 as Dialog, __VLS_export$25 as DialogClose, type DialogCloseProps, __VLS_export$24 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$23 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$22 as DialogFooter, type DialogFooterProps, __VLS_export$21 as DialogHeader, type DialogHeaderProps, __VLS_export$20 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$19 as DialogTitle, type DialogTitleProps, __VLS_export$18 as DialogTrigger, type DialogTriggerProps, __VLS_export$17 as Drawer, __VLS_export$16 as DrawerClose, type DrawerCloseProps, __VLS_export$15 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$14 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$13 as DrawerFooter, type DrawerFooterProps, __VLS_export$12 as DrawerHeader, type DrawerHeaderProps, __VLS_export$11 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$10 as DrawerTitle, type DrawerTitleProps, __VLS_export$9 as DrawerTrigger, type DrawerTriggerProps, __VLS_export$8 as Sheet, __VLS_export$7 as SheetClose, type SheetCloseProps, __VLS_export$6 as SheetContent, type SheetContentEmits, type SheetContentProps, __VLS_export$5 as SheetDescription, type SheetDescriptionProps, type SheetEmits, __VLS_export$4 as SheetFooter, type SheetFooterProps, __VLS_export$3 as SheetHeader, type SheetHeaderProps, __VLS_export$2 as SheetOverlay, type SheetOverlayProps, type SheetProps, __VLS_export$1 as SheetTitle, type SheetTitleProps, _default$53 as SheetTrigger, type SheetTriggerProps };
701
911
  //# sourceMappingURL=index.d.ts.map