arvue-ui 0.1.0 → 0.3.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 (143) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/autocomplete/autocomplete.js +52 -0
  3. package/dist/autocomplete/autocomplete.js.map +1 -0
  4. package/dist/autocomplete/autocompleteAnchor.js +24 -0
  5. package/dist/autocomplete/autocompleteAnchor.js.map +1 -0
  6. package/dist/autocomplete/autocompleteArrow.js +26 -0
  7. package/dist/autocomplete/autocompleteArrow.js.map +1 -0
  8. package/dist/autocomplete/autocompleteCancel.js +23 -0
  9. package/dist/autocomplete/autocompleteCancel.js.map +1 -0
  10. package/dist/autocomplete/autocompleteContent.js +77 -0
  11. package/dist/autocomplete/autocompleteContent.js.map +1 -0
  12. package/dist/autocomplete/autocompleteEmpty.js +33 -0
  13. package/dist/autocomplete/autocompleteEmpty.js.map +1 -0
  14. package/dist/autocomplete/autocompleteGroup.js +23 -0
  15. package/dist/autocomplete/autocompleteGroup.js.map +1 -0
  16. package/dist/autocomplete/autocompleteInput.js +65 -0
  17. package/dist/autocomplete/autocompleteInput.js.map +1 -0
  18. package/dist/autocomplete/autocompleteItem.js +36 -0
  19. package/dist/autocomplete/autocompleteItem.js.map +1 -0
  20. package/dist/autocomplete/autocompleteLabel.js +34 -0
  21. package/dist/autocomplete/autocompleteLabel.js.map +1 -0
  22. package/dist/autocomplete/autocompletePortal.js +25 -0
  23. package/dist/autocomplete/autocompletePortal.js.map +1 -0
  24. package/dist/autocomplete/autocompleteSeparator.js +33 -0
  25. package/dist/autocomplete/autocompleteSeparator.js.map +1 -0
  26. package/dist/autocomplete/autocompleteTrigger.js +24 -0
  27. package/dist/autocomplete/autocompleteTrigger.js.map +1 -0
  28. package/dist/autocomplete/autocompleteViewport.js +24 -0
  29. package/dist/autocomplete/autocompleteViewport.js.map +1 -0
  30. package/dist/dialog/dialogContent.js +2 -2
  31. package/dist/dialog/dialogDescription.js +7 -5
  32. package/dist/dialog/dialogDescription.js.map +1 -1
  33. package/dist/dialog/dialogFooter.js +16 -10
  34. package/dist/dialog/dialogFooter.js.map +1 -1
  35. package/dist/dialog/dialogHeader.js +16 -10
  36. package/dist/dialog/dialogHeader.js.map +1 -1
  37. package/dist/dialog/dialogOverlay.js +1 -1
  38. package/dist/dialog/dialogTitle.js +7 -5
  39. package/dist/dialog/dialogTitle.js.map +1 -1
  40. package/dist/drawer/drawer.js +32 -0
  41. package/dist/drawer/drawer.js.map +1 -0
  42. package/dist/drawer/drawerClose.js +23 -0
  43. package/dist/drawer/drawerClose.js.map +1 -0
  44. package/dist/drawer/drawerContent.js +108 -0
  45. package/dist/drawer/drawerContent.js.map +1 -0
  46. package/dist/drawer/drawerDescription.js +33 -0
  47. package/dist/drawer/drawerDescription.js.map +1 -0
  48. package/dist/drawer/drawerFooter.js +33 -0
  49. package/dist/drawer/drawerFooter.js.map +1 -0
  50. package/dist/drawer/drawerHeader.js +33 -0
  51. package/dist/drawer/drawerHeader.js.map +1 -0
  52. package/dist/drawer/drawerOverlay.js +34 -0
  53. package/dist/drawer/drawerOverlay.js.map +1 -0
  54. package/dist/drawer/drawerTitle.js +33 -0
  55. package/dist/drawer/drawerTitle.js.map +1 -0
  56. package/dist/drawer/drawerTrigger.js +23 -0
  57. package/dist/drawer/drawerTrigger.js.map +1 -0
  58. package/dist/index.d.ts +577 -31
  59. package/dist/index.d.ts.map +1 -1
  60. package/dist/index.js +1109 -125
  61. package/dist/index.js.map +1 -1
  62. package/dist/sheet/sheet.js +54 -0
  63. package/dist/sheet/sheet.js.map +1 -0
  64. package/dist/sheet/sheetClose.js +23 -0
  65. package/dist/sheet/sheetClose.js.map +1 -0
  66. package/dist/sheet/sheetContent.js +61 -0
  67. package/dist/sheet/sheetContent.js.map +1 -0
  68. package/dist/sheet/sheetDescription.js +33 -0
  69. package/dist/sheet/sheetDescription.js.map +1 -0
  70. package/dist/sheet/sheetFooter.js +33 -0
  71. package/dist/sheet/sheetFooter.js.map +1 -0
  72. package/dist/sheet/sheetHeader.js +33 -0
  73. package/dist/sheet/sheetHeader.js.map +1 -0
  74. package/dist/sheet/sheetOverlay.js +34 -0
  75. package/dist/sheet/sheetOverlay.js.map +1 -0
  76. package/dist/sheet/sheetTitle.js +33 -0
  77. package/dist/sheet/sheetTitle.js.map +1 -0
  78. package/dist/sheet/sheetTrigger.js +23 -0
  79. package/dist/sheet/sheetTrigger.js.map +1 -0
  80. package/dist/style.css +36 -0
  81. package/package.json +10 -4
  82. package/src/autocomplete/Autocomplete.vue +36 -0
  83. package/src/autocomplete/AutocompleteAnchor.vue +17 -0
  84. package/src/autocomplete/AutocompleteArrow.vue +17 -0
  85. package/src/autocomplete/AutocompleteCancel.vue +17 -0
  86. package/src/autocomplete/AutocompleteContent.vue +45 -0
  87. package/src/autocomplete/AutocompleteEmpty.vue +31 -0
  88. package/src/autocomplete/AutocompleteGroup.vue +17 -0
  89. package/src/autocomplete/AutocompleteInput.vue +63 -0
  90. package/src/autocomplete/AutocompleteItem.vue +32 -0
  91. package/src/autocomplete/AutocompleteLabel.vue +31 -0
  92. package/src/autocomplete/AutocompletePortal.vue +17 -0
  93. package/src/autocomplete/AutocompleteSeparator.vue +31 -0
  94. package/src/autocomplete/AutocompleteTrigger.vue +17 -0
  95. package/src/autocomplete/AutocompleteViewport.vue +17 -0
  96. package/src/autocomplete/autocomplete-content.css +7 -0
  97. package/src/autocomplete/autocomplete-empty.css +7 -0
  98. package/src/autocomplete/autocomplete-item.css +14 -0
  99. package/src/autocomplete/autocomplete-label.css +6 -0
  100. package/src/autocomplete/autocomplete-separator.css +5 -0
  101. package/src/autocomplete/autocomplete.css +4 -0
  102. package/src/autocomplete/index.ts +60 -0
  103. package/src/dialog/DialogDescription.vue +13 -5
  104. package/src/dialog/DialogFooter.vue +9 -2
  105. package/src/dialog/DialogHeader.vue +9 -2
  106. package/src/dialog/DialogTitle.vue +13 -5
  107. package/src/dialog/dialog-content.css +1 -1
  108. package/src/dialog/dialog-description.css +2 -0
  109. package/src/dialog/dialog-overlay.css +1 -1
  110. package/src/dialog/dialog-title.css +1 -3
  111. package/src/drawer/Drawer.vue +27 -0
  112. package/src/drawer/DrawerClose.vue +19 -0
  113. package/src/drawer/DrawerContent.vue +99 -0
  114. package/src/drawer/DrawerDescription.vue +33 -0
  115. package/src/drawer/DrawerFooter.vue +31 -0
  116. package/src/drawer/DrawerHeader.vue +31 -0
  117. package/src/drawer/DrawerOverlay.vue +31 -0
  118. package/src/drawer/DrawerTitle.vue +33 -0
  119. package/src/drawer/DrawerTrigger.vue +17 -0
  120. package/src/drawer/drawer-content.css +68 -0
  121. package/src/drawer/drawer-description.css +5 -0
  122. package/src/drawer/drawer-footer.css +11 -0
  123. package/src/drawer/drawer-header.css +6 -0
  124. package/src/drawer/drawer-overlay.css +12 -0
  125. package/src/drawer/drawer-title.css +3 -0
  126. package/src/drawer/index.ts +38 -0
  127. package/src/index.ts +3 -0
  128. package/src/sheet/Sheet.vue +29 -0
  129. package/src/sheet/SheetClose.vue +19 -0
  130. package/src/sheet/SheetContent.vue +53 -0
  131. package/src/sheet/SheetDescription.vue +33 -0
  132. package/src/sheet/SheetFooter.vue +31 -0
  133. package/src/sheet/SheetHeader.vue +31 -0
  134. package/src/sheet/SheetOverlay.vue +31 -0
  135. package/src/sheet/SheetTitle.vue +33 -0
  136. package/src/sheet/SheetTrigger.vue +17 -0
  137. package/src/sheet/index.ts +38 -0
  138. package/src/sheet/sheet-content.css +67 -0
  139. package/src/sheet/sheet-description.css +5 -0
  140. package/src/sheet/sheet-footer.css +11 -0
  141. package/src/sheet/sheet-header.css +6 -0
  142. package/src/sheet/sheet-overlay.css +12 -0
  143. package/src/sheet/sheet-title.css +3 -0
package/dist/index.d.ts CHANGED
@@ -1,13 +1,236 @@
1
1
  import { HTMLAttributes } from "vue";
2
- import { 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 } from "reka-ui";
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";
3
+ import { DrawerCloseProps as DrawerCloseProps$1, DrawerDescriptionProps as DrawerDescriptionProps$1, DrawerRootEmits, DrawerRootProps, DrawerTitleProps as DrawerTitleProps$1, DrawerTriggerProps as DrawerTriggerProps$1 } from "vaul-vue";
3
4
 
5
+ //#region src/autocomplete/Autocomplete.vue.d.ts
6
+ interface AutocompleteProps extends AutocompleteRootProps {
7
+ class?: HTMLAttributes['class'];
8
+ }
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, {
12
+ "update:open": (value: boolean) => any;
13
+ "update:modelValue": (value: string) => any;
14
+ highlight: (payload: {
15
+ ref: HTMLElement;
16
+ value: string;
17
+ } | undefined) => any;
18
+ }, string, import("vue").PublicProps, Readonly<AutocompleteProps> & Readonly<{
19
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
20
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
21
+ onHighlight?: ((payload: {
22
+ ref: HTMLElement;
23
+ value: string;
24
+ } | undefined) => any) | undefined;
25
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
26
+ default?: (props: {
27
+ open: boolean;
28
+ modelValue: string;
29
+ }) => any;
30
+ }>;
31
+ type __VLS_WithSlots$39<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ }; //# sourceMappingURL=Autocomplete.vue.d.ts.map
36
+ //#endregion
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>, {
41
+ default?: (props: {}) => any;
42
+ }>;
43
+ type __VLS_WithSlots$38<T, S> = T & {
44
+ new (): {
45
+ $slots: S;
46
+ };
47
+ }; //# sourceMappingURL=AutocompleteAnchor.vue.d.ts.map
48
+ //#endregion
49
+ //#region src/autocomplete/AutocompleteArrow.vue.d.ts
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>, {
53
+ default?: (props: {}) => any;
54
+ }>;
55
+ type __VLS_WithSlots$37<T, S> = T & {
56
+ new (): {
57
+ $slots: S;
58
+ };
59
+ }; //# sourceMappingURL=AutocompleteArrow.vue.d.ts.map
60
+ //#endregion
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>, {
65
+ default?: (props: {}) => any;
66
+ }>;
67
+ type __VLS_WithSlots$36<T, S> = T & {
68
+ new (): {
69
+ $slots: S;
70
+ };
71
+ }; //# sourceMappingURL=AutocompleteCancel.vue.d.ts.map
72
+ //#endregion
73
+ //#region src/autocomplete/AutocompleteContent.vue.d.ts
74
+ interface AutocompleteContentProps extends Omit<ComboboxContentProps, 'position'> {
75
+ class?: HTMLAttributes['class'];
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, {
80
+ escapeKeyDown: (event: KeyboardEvent) => any;
81
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
82
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
83
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
84
+ }, string, import("vue").PublicProps, Readonly<AutocompleteContentProps> & Readonly<{
85
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
86
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
87
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
88
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
89
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
90
+ default?: (props: {}) => any;
91
+ }>;
92
+ type __VLS_WithSlots$35<T, S> = T & {
93
+ new (): {
94
+ $slots: S;
95
+ };
96
+ }; //# sourceMappingURL=AutocompleteContent.vue.d.ts.map
97
+ //#endregion
98
+ //#region src/autocomplete/AutocompleteEmpty.vue.d.ts
99
+ interface AutocompleteEmptyProps extends ComboboxEmptyProps {
100
+ class?: HTMLAttributes['class'];
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>, {
104
+ default?: (props: {}) => any;
105
+ }>;
106
+ type __VLS_WithSlots$34<T, S> = T & {
107
+ new (): {
108
+ $slots: S;
109
+ };
110
+ }; //# sourceMappingURL=AutocompleteEmpty.vue.d.ts.map
111
+ //#endregion
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>, {
116
+ default?: (props: {}) => any;
117
+ }>;
118
+ type __VLS_WithSlots$33<T, S> = T & {
119
+ new (): {
120
+ $slots: S;
121
+ };
122
+ }; //# sourceMappingURL=AutocompleteGroup.vue.d.ts.map
123
+ //#endregion
124
+ //#region src/autocomplete/AutocompleteInput.vue.d.ts
125
+ interface AutocompleteInputProps extends AutocompleteInputProps$1 {
126
+ showTriggerButton?: boolean;
127
+ showCancelButton?: boolean;
128
+ }
129
+ interface AutocompleteInputEmits extends AutocompleteInputEmits$1 {
130
+ 'cancel': [void];
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;
135
+ "update:modelValue": (args_0: string) => any;
136
+ }, string, import("vue").PublicProps, Readonly<AutocompleteInputProps> & Readonly<{
137
+ onCancel?: ((args_0?: void | undefined) => any) | undefined;
138
+ "onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
139
+ }>, {
140
+ showTriggerButton: boolean;
141
+ showCancelButton: boolean;
142
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; //# sourceMappingURL=AutocompleteInput.vue.d.ts.map
143
+ //#endregion
144
+ //#region src/autocomplete/AutocompleteItem.vue.d.ts
145
+ interface AutocompleteItemProps extends ComboboxItemProps {
146
+ class?: HTMLAttributes['class'];
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, {
151
+ select: (event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any;
152
+ }, string, import("vue").PublicProps, Readonly<AutocompleteItemProps> & Readonly<{
153
+ onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
154
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
155
+ default?: (props: {}) => any;
156
+ }>;
157
+ type __VLS_WithSlots$32<T, S> = T & {
158
+ new (): {
159
+ $slots: S;
160
+ };
161
+ }; //# sourceMappingURL=AutocompleteItem.vue.d.ts.map
162
+ //#endregion
163
+ //#region src/autocomplete/AutocompleteLabel.vue.d.ts
164
+ interface AutocompleteLabelProps extends ComboboxLabelProps {
165
+ class?: HTMLAttributes['class'];
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>, {
169
+ default?: (props: {}) => any;
170
+ }>;
171
+ type __VLS_WithSlots$31<T, S> = T & {
172
+ new (): {
173
+ $slots: S;
174
+ };
175
+ }; //# sourceMappingURL=AutocompleteLabel.vue.d.ts.map
176
+ //#endregion
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>, {
181
+ default?: (props: {}) => any;
182
+ }>;
183
+ type __VLS_WithSlots$30<T, S> = T & {
184
+ new (): {
185
+ $slots: S;
186
+ };
187
+ }; //# sourceMappingURL=AutocompletePortal.vue.d.ts.map
188
+ //#endregion
189
+ //#region src/autocomplete/AutocompleteSeparator.vue.d.ts
190
+ interface AutocompleteSeparatorProps extends ComboboxSeparatorProps {
191
+ class?: HTMLAttributes['class'];
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>, {
195
+ default?: (props: {}) => any;
196
+ }>;
197
+ type __VLS_WithSlots$29<T, S> = T & {
198
+ new (): {
199
+ $slots: S;
200
+ };
201
+ }; //# sourceMappingURL=AutocompleteSeparator.vue.d.ts.map
202
+ //#endregion
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>, {
207
+ default?: (props: {}) => any;
208
+ }>;
209
+ type __VLS_WithSlots$28<T, S> = T & {
210
+ new (): {
211
+ $slots: S;
212
+ };
213
+ }; //# sourceMappingURL=AutocompleteTrigger.vue.d.ts.map
214
+ //#endregion
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>, {
219
+ default?: (props: {}) => any;
220
+ }>;
221
+ type __VLS_WithSlots$27<T, S> = T & {
222
+ new (): {
223
+ $slots: S;
224
+ };
225
+ }; //# sourceMappingURL=AutocompleteViewport.vue.d.ts.map
226
+ //#endregion
4
227
  //#region src/dialog/Dialog.vue.d.ts
5
228
  interface DialogProps extends DialogRootProps {
6
229
  class?: HTMLAttributes['class'];
7
230
  }
8
231
  interface DialogEmits extends DialogRootEmits {}
9
- declare const _default: typeof __VLS_export$8;
10
- declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
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, {
11
234
  "update:open": (value: boolean) => any;
12
235
  }, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
13
236
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -17,7 +240,7 @@ declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<Di
17
240
  close: () => void;
18
241
  }) => any;
19
242
  }>;
20
- type __VLS_WithSlots$8<T, S> = T & {
243
+ type __VLS_WithSlots$26<T, S> = T & {
21
244
  new (): {
22
245
  $slots: S;
23
246
  };
@@ -25,13 +248,13 @@ type __VLS_WithSlots$8<T, S> = T & {
25
248
  //#endregion
26
249
  //#region src/dialog/DialogClose.vue.d.ts
27
250
  interface DialogCloseProps extends DialogCloseProps$1 {}
28
- declare const _default$1: typeof __VLS_export$7;
29
- declare const __VLS_export$7: __VLS_WithSlots$7<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
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<{}>, {
30
253
  as: import("reka-ui").AsTag | import("vue").Component;
31
254
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
32
255
  default?: (props: {}) => any;
33
256
  }>;
34
- type __VLS_WithSlots$7<T, S> = T & {
257
+ type __VLS_WithSlots$25<T, S> = T & {
35
258
  new (): {
36
259
  $slots: S;
37
260
  };
@@ -43,8 +266,8 @@ interface DialogContentProps extends DialogContentProps$1 {
43
266
  showCloseButton?: boolean;
44
267
  }
45
268
  interface DialogContentEmits extends DialogContentEmits$1 {}
46
- declare const _default$2: typeof __VLS_export$6;
47
- declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
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, {
48
271
  escapeKeyDown: (event: KeyboardEvent) => any;
49
272
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
50
273
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -63,7 +286,7 @@ declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<Di
63
286
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
64
287
  default?: (props: {}) => any;
65
288
  }>;
66
- type __VLS_WithSlots$6<T, S> = T & {
289
+ type __VLS_WithSlots$24<T, S> = T & {
67
290
  new (): {
68
291
  $slots: S;
69
292
  };
@@ -73,39 +296,41 @@ type __VLS_WithSlots$6<T, S> = T & {
73
296
  interface DialogDescriptionProps extends DialogDescriptionProps$1 {
74
297
  class?: HTMLAttributes['class'];
75
298
  }
76
- declare const _default$3: typeof __VLS_export$5;
77
- declare const __VLS_export$5: __VLS_WithSlots$5<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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<{}>, {
301
+ as: import("reka-ui").AsTag | import("vue").Component;
302
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
78
303
  default?: (props: {}) => any;
79
304
  }>;
80
- type __VLS_WithSlots$5<T, S> = T & {
305
+ type __VLS_WithSlots$23<T, S> = T & {
81
306
  new (): {
82
307
  $slots: S;
83
308
  };
84
309
  }; //# sourceMappingURL=DialogDescription.vue.d.ts.map
85
310
  //#endregion
86
311
  //#region src/dialog/DialogFooter.vue.d.ts
87
- interface DialogFooterProps {
312
+ interface DialogFooterProps extends PrimitiveProps {
88
313
  class?: HTMLAttributes['class'];
89
314
  }
90
- declare const _default$4: typeof __VLS_export$4;
91
- declare const __VLS_export$4: __VLS_WithSlots$4<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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>, {
92
317
  default?: (props: {}) => any;
93
318
  }>;
94
- type __VLS_WithSlots$4<T, S> = T & {
319
+ type __VLS_WithSlots$22<T, S> = T & {
95
320
  new (): {
96
321
  $slots: S;
97
322
  };
98
323
  }; //# sourceMappingURL=DialogFooter.vue.d.ts.map
99
324
  //#endregion
100
325
  //#region src/dialog/DialogHeader.vue.d.ts
101
- interface DialogHeaderProps {
326
+ interface DialogHeaderProps extends PrimitiveProps {
102
327
  class?: HTMLAttributes['class'];
103
328
  }
104
- declare const _default$5: typeof __VLS_export$3;
105
- declare const __VLS_export$3: __VLS_WithSlots$3<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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>, {
106
331
  default?: (props: {}) => any;
107
332
  }>;
108
- type __VLS_WithSlots$3<T, S> = T & {
333
+ type __VLS_WithSlots$21<T, S> = T & {
109
334
  new (): {
110
335
  $slots: S;
111
336
  };
@@ -115,11 +340,11 @@ type __VLS_WithSlots$3<T, S> = T & {
115
340
  interface DialogOverlayProps extends DialogOverlayProps$1 {
116
341
  class?: HTMLAttributes['class'];
117
342
  }
118
- declare const _default$6: typeof __VLS_export$2;
119
- declare const __VLS_export$2: __VLS_WithSlots$2<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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>, {
120
345
  default?: (props: {}) => any;
121
346
  }>;
122
- type __VLS_WithSlots$2<T, S> = T & {
347
+ type __VLS_WithSlots$20<T, S> = T & {
123
348
  new (): {
124
349
  $slots: S;
125
350
  };
@@ -129,11 +354,13 @@ type __VLS_WithSlots$2<T, S> = T & {
129
354
  interface DialogTitleProps extends DialogTitleProps$1 {
130
355
  class?: HTMLAttributes['class'];
131
356
  }
132
- declare const _default$7: typeof __VLS_export$1;
133
- declare const __VLS_export$1: __VLS_WithSlots$1<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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<{}>, {
359
+ as: import("reka-ui").AsTag | import("vue").Component;
360
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
134
361
  default?: (props: {}) => any;
135
362
  }>;
136
- type __VLS_WithSlots$1<T, S> = T & {
363
+ type __VLS_WithSlots$19<T, S> = T & {
137
364
  new (): {
138
365
  $slots: S;
139
366
  };
@@ -141,15 +368,334 @@ type __VLS_WithSlots$1<T, S> = T & {
141
368
  //#endregion
142
369
  //#region src/dialog/DialogTrigger.vue.d.ts
143
370
  interface DialogTriggerProps extends DialogTriggerProps$1 {}
144
- declare const _default$8: typeof __VLS_export;
145
- declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
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>, {
146
373
  default?: (props: {}) => any;
147
374
  }>;
148
- type __VLS_WithSlots<T, S> = T & {
375
+ type __VLS_WithSlots$18<T, S> = T & {
149
376
  new (): {
150
377
  $slots: S;
151
378
  };
152
379
  }; //# sourceMappingURL=DialogTrigger.vue.d.ts.map
153
380
  //#endregion
154
- export { __VLS_export$8 as Dialog, __VLS_export$7 as DialogClose, type DialogCloseProps, __VLS_export$6 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$5 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$4 as DialogFooter, type DialogFooterProps, __VLS_export$3 as DialogHeader, type DialogHeaderProps, __VLS_export$2 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$1 as DialogTitle, type DialogTitleProps, _default$8 as DialogTrigger, type DialogTriggerProps };
381
+ //#region src/drawer/Drawer.vue.d.ts
382
+ interface DrawerProps extends DialogRootProps {
383
+ class?: HTMLAttributes['class'];
384
+ }
385
+ 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, {
388
+ "update:open": (value: boolean) => any;
389
+ }, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
390
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
391
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
392
+ default?: (props: {
393
+ open: boolean;
394
+ close: () => void;
395
+ }) => any;
396
+ }>;
397
+ type __VLS_WithSlots$17<T, S> = T & {
398
+ new (): {
399
+ $slots: S;
400
+ };
401
+ }; //# sourceMappingURL=Drawer.vue.d.ts.map
402
+ //#endregion
403
+ //#region src/drawer/DrawerClose.vue.d.ts
404
+ 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<{}>, {
407
+ as: import("reka-ui").AsTag | import("vue").Component;
408
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
409
+ default?: (props: {}) => any;
410
+ }>;
411
+ type __VLS_WithSlots$16<T, S> = T & {
412
+ new (): {
413
+ $slots: S;
414
+ };
415
+ }; //# sourceMappingURL=DrawerClose.vue.d.ts.map
416
+ //#endregion
417
+ //#region src/drawer/DrawerContent.vue.d.ts
418
+ interface DrawerContentEmits extends DialogContentEmits$1 {}
419
+ interface DrawerContentProps extends DialogContentProps$1 {
420
+ class?: HTMLAttributes['class'];
421
+ side?: 'top' | 'right' | 'bottom' | 'left';
422
+ showCloseButton?: boolean;
423
+ }
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, {
426
+ escapeKeyDown: (event: KeyboardEvent) => any;
427
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
428
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
429
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
430
+ openAutoFocus: (event: Event) => any;
431
+ closeAutoFocus: (event: Event) => any;
432
+ }, string, import("vue").PublicProps, Readonly<DrawerContentProps> & Readonly<{
433
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
434
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
435
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
436
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
437
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
438
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
439
+ }>, {
440
+ showCloseButton: boolean;
441
+ side: "top" | "right" | "bottom" | "left";
442
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
443
+ default?: (props: {}) => any;
444
+ }>;
445
+ type __VLS_WithSlots$15<T, S> = T & {
446
+ new (): {
447
+ $slots: S;
448
+ };
449
+ }; //# sourceMappingURL=DrawerContent.vue.d.ts.map
450
+ //#endregion
451
+ //#region src/drawer/DrawerDescription.vue.d.ts
452
+ interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
453
+ class?: HTMLAttributes['class'];
454
+ }
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<{}>, {
457
+ as: import("reka-ui").AsTag | import("vue").Component;
458
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
459
+ default?: (props: {}) => any;
460
+ }>;
461
+ type __VLS_WithSlots$14<T, S> = T & {
462
+ new (): {
463
+ $slots: S;
464
+ };
465
+ }; //# sourceMappingURL=DrawerDescription.vue.d.ts.map
466
+ //#endregion
467
+ //#region src/drawer/DrawerFooter.vue.d.ts
468
+ interface DrawerFooterProps extends PrimitiveProps {
469
+ class?: HTMLAttributes['class'];
470
+ }
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>, {
473
+ default?: (props: {}) => any;
474
+ }>;
475
+ type __VLS_WithSlots$13<T, S> = T & {
476
+ new (): {
477
+ $slots: S;
478
+ };
479
+ }; //# sourceMappingURL=DrawerFooter.vue.d.ts.map
480
+ //#endregion
481
+ //#region src/drawer/DrawerHeader.vue.d.ts
482
+ interface DrawerHeaderProps extends PrimitiveProps {
483
+ class?: HTMLAttributes['class'];
484
+ }
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>, {
487
+ default?: (props: {}) => any;
488
+ }>;
489
+ type __VLS_WithSlots$12<T, S> = T & {
490
+ new (): {
491
+ $slots: S;
492
+ };
493
+ }; //# sourceMappingURL=DrawerHeader.vue.d.ts.map
494
+ //#endregion
495
+ //#region src/drawer/DrawerOverlay.vue.d.ts
496
+ interface DrawerOverlayProps extends DialogOverlayProps$1 {
497
+ class?: HTMLAttributes['class'];
498
+ }
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>, {
501
+ default?: (props: {}) => any;
502
+ }>;
503
+ type __VLS_WithSlots$11<T, S> = T & {
504
+ new (): {
505
+ $slots: S;
506
+ };
507
+ }; //# sourceMappingURL=DrawerOverlay.vue.d.ts.map
508
+ //#endregion
509
+ //#region src/drawer/DrawerTitle.vue.d.ts
510
+ interface DrawerTitleProps extends DialogTitleProps$1 {
511
+ class?: HTMLAttributes['class'];
512
+ }
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<{}>, {
515
+ as: import("reka-ui").AsTag | import("vue").Component;
516
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
517
+ default?: (props: {}) => any;
518
+ }>;
519
+ type __VLS_WithSlots$10<T, S> = T & {
520
+ new (): {
521
+ $slots: S;
522
+ };
523
+ }; //# sourceMappingURL=DrawerTitle.vue.d.ts.map
524
+ //#endregion
525
+ //#region src/drawer/DrawerTrigger.vue.d.ts
526
+ 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>, {
529
+ default?: (props: {}) => any;
530
+ }>;
531
+ type __VLS_WithSlots$9<T, S> = T & {
532
+ new (): {
533
+ $slots: S;
534
+ };
535
+ }; //# sourceMappingURL=DrawerTrigger.vue.d.ts.map
536
+ //#endregion
537
+ //#region src/sheet/Sheet.vue.d.ts
538
+ interface SheetEmits extends DrawerRootEmits {}
539
+ interface SheetProps extends DrawerRootProps {
540
+ class?: HTMLAttributes['class'];
541
+ }
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, {} & {
544
+ drag: (percentageDragged: number) => any;
545
+ release: (open: boolean) => any;
546
+ close: () => any;
547
+ "update:open": (open: boolean) => any;
548
+ "update:activeSnapPoint": (val: string | number) => any;
549
+ animationEnd: (open: boolean) => any;
550
+ }, string, import("vue").PublicProps, Readonly<SheetProps> & Readonly<{
551
+ onDrag?: ((percentageDragged: number) => any) | undefined;
552
+ onRelease?: ((open: boolean) => any) | undefined;
553
+ onClose?: (() => any) | undefined;
554
+ "onUpdate:open"?: ((open: boolean) => any) | undefined;
555
+ "onUpdate:activeSnapPoint"?: ((val: string | number) => any) | undefined;
556
+ onAnimationEnd?: ((open: boolean) => any) | undefined;
557
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
558
+ default?: (props: {
559
+ open: boolean;
560
+ }) => any;
561
+ }>;
562
+ type __VLS_WithSlots$8<T, S> = T & {
563
+ new (): {
564
+ $slots: S;
565
+ };
566
+ }; //# sourceMappingURL=Sheet.vue.d.ts.map
567
+ //#endregion
568
+ //#region src/sheet/SheetClose.vue.d.ts
569
+ 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<{}>, {
572
+ as: import("reka-ui").AsTag | import("vue").Component;
573
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
574
+ default?: (props: {}) => any;
575
+ }>;
576
+ type __VLS_WithSlots$7<T, S> = T & {
577
+ new (): {
578
+ $slots: S;
579
+ };
580
+ }; //# sourceMappingURL=SheetClose.vue.d.ts.map
581
+ //#endregion
582
+ //#region src/sheet/SheetContent.vue.d.ts
583
+ interface SheetContentEmits extends DialogContentEmits$1 {}
584
+ interface SheetContentProps extends DialogContentProps$1 {
585
+ class?: HTMLAttributes['class'];
586
+ showHandle?: boolean;
587
+ }
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, {
590
+ escapeKeyDown: (event: KeyboardEvent) => any;
591
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
592
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
593
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
594
+ openAutoFocus: (event: Event) => any;
595
+ closeAutoFocus: (event: Event) => any;
596
+ }, string, import("vue").PublicProps, Readonly<SheetContentProps> & Readonly<{
597
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
598
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
599
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
600
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
601
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
602
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
603
+ }>, {
604
+ showHandle: boolean;
605
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
606
+ default?: (props: {}) => any;
607
+ }>;
608
+ type __VLS_WithSlots$6<T, S> = T & {
609
+ new (): {
610
+ $slots: S;
611
+ };
612
+ }; //# sourceMappingURL=SheetContent.vue.d.ts.map
613
+ //#endregion
614
+ //#region src/sheet/SheetDescription.vue.d.ts
615
+ interface SheetDescriptionProps extends DrawerDescriptionProps$1 {
616
+ class?: HTMLAttributes['class'];
617
+ }
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<{}>, {
620
+ as: import("reka-ui").AsTag | import("vue").Component;
621
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
622
+ default?: (props: {}) => any;
623
+ }>;
624
+ type __VLS_WithSlots$5<T, S> = T & {
625
+ new (): {
626
+ $slots: S;
627
+ };
628
+ }; //# sourceMappingURL=SheetDescription.vue.d.ts.map
629
+ //#endregion
630
+ //#region src/sheet/SheetFooter.vue.d.ts
631
+ interface SheetFooterProps extends PrimitiveProps {
632
+ class?: HTMLAttributes['class'];
633
+ }
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>, {
636
+ default?: (props: {}) => any;
637
+ }>;
638
+ type __VLS_WithSlots$4<T, S> = T & {
639
+ new (): {
640
+ $slots: S;
641
+ };
642
+ }; //# sourceMappingURL=SheetFooter.vue.d.ts.map
643
+ //#endregion
644
+ //#region src/sheet/SheetHeader.vue.d.ts
645
+ interface SheetHeaderProps extends PrimitiveProps {
646
+ class?: HTMLAttributes['class'];
647
+ }
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>, {
650
+ default?: (props: {}) => any;
651
+ }>;
652
+ type __VLS_WithSlots$3<T, S> = T & {
653
+ new (): {
654
+ $slots: S;
655
+ };
656
+ }; //# sourceMappingURL=SheetHeader.vue.d.ts.map
657
+ //#endregion
658
+ //#region src/sheet/SheetOverlay.vue.d.ts
659
+ interface SheetOverlayProps extends DialogOverlayProps$1 {
660
+ class?: HTMLAttributes['class'];
661
+ }
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>, {
664
+ default?: (props: {}) => any;
665
+ }>;
666
+ type __VLS_WithSlots$2<T, S> = T & {
667
+ new (): {
668
+ $slots: S;
669
+ };
670
+ }; //# sourceMappingURL=SheetOverlay.vue.d.ts.map
671
+ //#endregion
672
+ //#region src/sheet/SheetTitle.vue.d.ts
673
+ interface SheetTitleProps extends DrawerTitleProps$1 {
674
+ class?: HTMLAttributes['class'];
675
+ }
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<{}>, {
678
+ as: import("reka-ui").AsTag | import("vue").Component;
679
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
680
+ default?: (props: {}) => any;
681
+ }>;
682
+ type __VLS_WithSlots$1<T, S> = T & {
683
+ new (): {
684
+ $slots: S;
685
+ };
686
+ }; //# sourceMappingURL=SheetTitle.vue.d.ts.map
687
+ //#endregion
688
+ //#region src/sheet/SheetTrigger.vue.d.ts
689
+ 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>, {
692
+ default?: (props: {}) => any;
693
+ }>;
694
+ type __VLS_WithSlots<T, S> = T & {
695
+ new (): {
696
+ $slots: S;
697
+ };
698
+ }; //# sourceMappingURL=SheetTrigger.vue.d.ts.map
699
+ //#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 };
155
701
  //# sourceMappingURL=index.d.ts.map