arvue-ui 0.3.3 → 0.5.0

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