arvue-ui 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (58) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/dialog/dialogDescription.js +7 -5
  3. package/dist/dialog/dialogDescription.js.map +1 -1
  4. package/dist/dialog/dialogFooter.js +16 -10
  5. package/dist/dialog/dialogFooter.js.map +1 -1
  6. package/dist/dialog/dialogHeader.js +16 -10
  7. package/dist/dialog/dialogHeader.js.map +1 -1
  8. package/dist/dialog/dialogTitle.js +7 -5
  9. package/dist/dialog/dialogTitle.js.map +1 -1
  10. package/dist/drawer/drawer.js +32 -0
  11. package/dist/drawer/drawer.js.map +1 -0
  12. package/dist/drawer/drawerClose.js +23 -0
  13. package/dist/drawer/drawerClose.js.map +1 -0
  14. package/dist/drawer/drawerContent.js +108 -0
  15. package/dist/drawer/drawerContent.js.map +1 -0
  16. package/dist/drawer/drawerDescription.js +33 -0
  17. package/dist/drawer/drawerDescription.js.map +1 -0
  18. package/dist/drawer/drawerFooter.js +33 -0
  19. package/dist/drawer/drawerFooter.js.map +1 -0
  20. package/dist/drawer/drawerHeader.js +33 -0
  21. package/dist/drawer/drawerHeader.js.map +1 -0
  22. package/dist/drawer/drawerOverlay.js +34 -0
  23. package/dist/drawer/drawerOverlay.js.map +1 -0
  24. package/dist/drawer/drawerTitle.js +33 -0
  25. package/dist/drawer/drawerTitle.js.map +1 -0
  26. package/dist/drawer/drawerTrigger.js +23 -0
  27. package/dist/drawer/drawerTrigger.js.map +1 -0
  28. package/dist/index.d.ts +191 -31
  29. package/dist/index.d.ts.map +1 -1
  30. package/dist/index.js +331 -27
  31. package/dist/index.js.map +1 -1
  32. package/dist/style.css +12 -0
  33. package/package.json +8 -3
  34. package/src/dialog/DialogDescription.vue +13 -5
  35. package/src/dialog/DialogFooter.vue +9 -2
  36. package/src/dialog/DialogHeader.vue +9 -2
  37. package/src/dialog/DialogTitle.vue +13 -5
  38. package/src/dialog/dialog-content.css +1 -1
  39. package/src/dialog/dialog-description.css +1 -0
  40. package/src/dialog/dialog-overlay.css +1 -1
  41. package/src/dialog/dialog-title.css +1 -3
  42. package/src/drawer/Drawer.vue +27 -0
  43. package/src/drawer/DrawerClose.vue +19 -0
  44. package/src/drawer/DrawerContent.vue +99 -0
  45. package/src/drawer/DrawerDescription.vue +33 -0
  46. package/src/drawer/DrawerFooter.vue +31 -0
  47. package/src/drawer/DrawerHeader.vue +31 -0
  48. package/src/drawer/DrawerOverlay.vue +31 -0
  49. package/src/drawer/DrawerTitle.vue +33 -0
  50. package/src/drawer/DrawerTrigger.vue +17 -0
  51. package/src/drawer/drawer-content.css +68 -0
  52. package/src/drawer/drawer-description.css +4 -0
  53. package/src/drawer/drawer-footer.css +11 -0
  54. package/src/drawer/drawer-header.css +6 -0
  55. package/src/drawer/drawer-overlay.css +12 -0
  56. package/src/drawer/drawer-title.css +3 -0
  57. package/src/drawer/index.ts +38 -0
  58. package/src/index.ts +1 -0
package/dist/index.d.ts CHANGED
@@ -1,13 +1,13 @@
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 { 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
 
4
4
  //#region src/dialog/Dialog.vue.d.ts
5
5
  interface DialogProps extends DialogRootProps {
6
6
  class?: HTMLAttributes['class'];
7
7
  }
8
8
  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, {
9
+ declare const _default: typeof __VLS_export$17;
10
+ declare const __VLS_export$17: __VLS_WithSlots$17<import("vue").DefineComponent<DialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
11
11
  "update:open": (value: boolean) => any;
12
12
  }, string, import("vue").PublicProps, Readonly<DialogProps> & Readonly<{
13
13
  "onUpdate:open"?: ((value: boolean) => any) | undefined;
@@ -17,7 +17,7 @@ declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<Di
17
17
  close: () => void;
18
18
  }) => any;
19
19
  }>;
20
- type __VLS_WithSlots$8<T, S> = T & {
20
+ type __VLS_WithSlots$17<T, S> = T & {
21
21
  new (): {
22
22
  $slots: S;
23
23
  };
@@ -25,13 +25,13 @@ type __VLS_WithSlots$8<T, S> = T & {
25
25
  //#endregion
26
26
  //#region src/dialog/DialogClose.vue.d.ts
27
27
  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<{}>, {
28
+ declare const _default$1: typeof __VLS_export$16;
29
+ declare const __VLS_export$16: __VLS_WithSlots$16<import("vue").DefineComponent<DialogCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogCloseProps> & Readonly<{}>, {
30
30
  as: import("reka-ui").AsTag | import("vue").Component;
31
31
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
32
32
  default?: (props: {}) => any;
33
33
  }>;
34
- type __VLS_WithSlots$7<T, S> = T & {
34
+ type __VLS_WithSlots$16<T, S> = T & {
35
35
  new (): {
36
36
  $slots: S;
37
37
  };
@@ -43,8 +43,8 @@ interface DialogContentProps extends DialogContentProps$1 {
43
43
  showCloseButton?: boolean;
44
44
  }
45
45
  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, {
46
+ declare const _default$2: typeof __VLS_export$15;
47
+ declare const __VLS_export$15: __VLS_WithSlots$15<import("vue").DefineComponent<DialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
48
48
  escapeKeyDown: (event: KeyboardEvent) => any;
49
49
  pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
50
50
  focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
@@ -63,7 +63,7 @@ declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<Di
63
63
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
64
64
  default?: (props: {}) => any;
65
65
  }>;
66
- type __VLS_WithSlots$6<T, S> = T & {
66
+ type __VLS_WithSlots$15<T, S> = T & {
67
67
  new (): {
68
68
  $slots: S;
69
69
  };
@@ -73,39 +73,41 @@ type __VLS_WithSlots$6<T, S> = T & {
73
73
  interface DialogDescriptionProps extends DialogDescriptionProps$1 {
74
74
  class?: HTMLAttributes['class'];
75
75
  }
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>, {
76
+ declare const _default$3: typeof __VLS_export$14;
77
+ declare const __VLS_export$14: __VLS_WithSlots$14<import("vue").DefineComponent<DialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogDescriptionProps> & Readonly<{}>, {
78
+ as: import("reka-ui").AsTag | import("vue").Component;
79
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
78
80
  default?: (props: {}) => any;
79
81
  }>;
80
- type __VLS_WithSlots$5<T, S> = T & {
82
+ type __VLS_WithSlots$14<T, S> = T & {
81
83
  new (): {
82
84
  $slots: S;
83
85
  };
84
86
  }; //# sourceMappingURL=DialogDescription.vue.d.ts.map
85
87
  //#endregion
86
88
  //#region src/dialog/DialogFooter.vue.d.ts
87
- interface DialogFooterProps {
89
+ interface DialogFooterProps extends PrimitiveProps {
88
90
  class?: HTMLAttributes['class'];
89
91
  }
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>, {
92
+ declare const _default$4: typeof __VLS_export$13;
93
+ declare const __VLS_export$13: __VLS_WithSlots$13<import("vue").DefineComponent<DialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
92
94
  default?: (props: {}) => any;
93
95
  }>;
94
- type __VLS_WithSlots$4<T, S> = T & {
96
+ type __VLS_WithSlots$13<T, S> = T & {
95
97
  new (): {
96
98
  $slots: S;
97
99
  };
98
100
  }; //# sourceMappingURL=DialogFooter.vue.d.ts.map
99
101
  //#endregion
100
102
  //#region src/dialog/DialogHeader.vue.d.ts
101
- interface DialogHeaderProps {
103
+ interface DialogHeaderProps extends PrimitiveProps {
102
104
  class?: HTMLAttributes['class'];
103
105
  }
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>, {
106
+ declare const _default$5: typeof __VLS_export$12;
107
+ declare const __VLS_export$12: __VLS_WithSlots$12<import("vue").DefineComponent<DialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
106
108
  default?: (props: {}) => any;
107
109
  }>;
108
- type __VLS_WithSlots$3<T, S> = T & {
110
+ type __VLS_WithSlots$12<T, S> = T & {
109
111
  new (): {
110
112
  $slots: S;
111
113
  };
@@ -115,11 +117,11 @@ type __VLS_WithSlots$3<T, S> = T & {
115
117
  interface DialogOverlayProps extends DialogOverlayProps$1 {
116
118
  class?: HTMLAttributes['class'];
117
119
  }
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>, {
120
+ declare const _default$6: typeof __VLS_export$11;
121
+ declare const __VLS_export$11: __VLS_WithSlots$11<import("vue").DefineComponent<DialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
120
122
  default?: (props: {}) => any;
121
123
  }>;
122
- type __VLS_WithSlots$2<T, S> = T & {
124
+ type __VLS_WithSlots$11<T, S> = T & {
123
125
  new (): {
124
126
  $slots: S;
125
127
  };
@@ -129,11 +131,13 @@ type __VLS_WithSlots$2<T, S> = T & {
129
131
  interface DialogTitleProps extends DialogTitleProps$1 {
130
132
  class?: HTMLAttributes['class'];
131
133
  }
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>, {
134
+ declare const _default$7: typeof __VLS_export$10;
135
+ declare const __VLS_export$10: __VLS_WithSlots$10<import("vue").DefineComponent<DialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTitleProps> & Readonly<{}>, {
136
+ as: import("reka-ui").AsTag | import("vue").Component;
137
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
134
138
  default?: (props: {}) => any;
135
139
  }>;
136
- type __VLS_WithSlots$1<T, S> = T & {
140
+ type __VLS_WithSlots$10<T, S> = T & {
137
141
  new (): {
138
142
  $slots: S;
139
143
  };
@@ -141,15 +145,171 @@ type __VLS_WithSlots$1<T, S> = T & {
141
145
  //#endregion
142
146
  //#region src/dialog/DialogTrigger.vue.d.ts
143
147
  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>, {
148
+ declare const _default$8: typeof __VLS_export$9;
149
+ declare const __VLS_export$9: __VLS_WithSlots$9<import("vue").DefineComponent<DialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DialogTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
146
150
  default?: (props: {}) => any;
147
151
  }>;
148
- type __VLS_WithSlots<T, S> = T & {
152
+ type __VLS_WithSlots$9<T, S> = T & {
149
153
  new (): {
150
154
  $slots: S;
151
155
  };
152
156
  }; //# sourceMappingURL=DialogTrigger.vue.d.ts.map
153
157
  //#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 };
158
+ //#region src/drawer/Drawer.vue.d.ts
159
+ interface DrawerProps extends DialogRootProps {
160
+ class?: HTMLAttributes['class'];
161
+ }
162
+ interface DrawerEmits extends DialogRootEmits {}
163
+ declare const _default$9: typeof __VLS_export$8;
164
+ declare const __VLS_export$8: __VLS_WithSlots$8<import("vue").DefineComponent<DrawerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
165
+ "update:open": (value: boolean) => any;
166
+ }, string, import("vue").PublicProps, Readonly<DrawerProps> & Readonly<{
167
+ "onUpdate:open"?: ((value: boolean) => any) | undefined;
168
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
169
+ default?: (props: {
170
+ open: boolean;
171
+ close: () => void;
172
+ }) => any;
173
+ }>;
174
+ type __VLS_WithSlots$8<T, S> = T & {
175
+ new (): {
176
+ $slots: S;
177
+ };
178
+ }; //# sourceMappingURL=Drawer.vue.d.ts.map
179
+ //#endregion
180
+ //#region src/drawer/DrawerClose.vue.d.ts
181
+ interface DrawerCloseProps extends DialogCloseProps$1 {}
182
+ declare const _default$10: typeof __VLS_export$7;
183
+ declare const __VLS_export$7: __VLS_WithSlots$7<import("vue").DefineComponent<DrawerCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerCloseProps> & Readonly<{}>, {
184
+ as: import("reka-ui").AsTag | import("vue").Component;
185
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
186
+ default?: (props: {}) => any;
187
+ }>;
188
+ type __VLS_WithSlots$7<T, S> = T & {
189
+ new (): {
190
+ $slots: S;
191
+ };
192
+ }; //# sourceMappingURL=DrawerClose.vue.d.ts.map
193
+ //#endregion
194
+ //#region src/drawer/DrawerContent.vue.d.ts
195
+ interface DrawerContentEmits extends DialogContentEmits$1 {}
196
+ interface DrawerContentProps extends DialogContentProps$1 {
197
+ class?: HTMLAttributes['class'];
198
+ side?: 'top' | 'right' | 'bottom' | 'left';
199
+ showCloseButton?: boolean;
200
+ }
201
+ declare const _default$11: typeof __VLS_export$6;
202
+ declare const __VLS_export$6: __VLS_WithSlots$6<import("vue").DefineComponent<DrawerContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
203
+ escapeKeyDown: (event: KeyboardEvent) => any;
204
+ pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
205
+ focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
206
+ interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
207
+ openAutoFocus: (event: Event) => any;
208
+ closeAutoFocus: (event: Event) => any;
209
+ }, string, import("vue").PublicProps, Readonly<DrawerContentProps> & Readonly<{
210
+ onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
211
+ onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
212
+ onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
213
+ onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
214
+ onOpenAutoFocus?: ((event: Event) => any) | undefined;
215
+ onCloseAutoFocus?: ((event: Event) => any) | undefined;
216
+ }>, {
217
+ showCloseButton: boolean;
218
+ side: "top" | "right" | "bottom" | "left";
219
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
220
+ default?: (props: {}) => any;
221
+ }>;
222
+ type __VLS_WithSlots$6<T, S> = T & {
223
+ new (): {
224
+ $slots: S;
225
+ };
226
+ }; //# sourceMappingURL=DrawerContent.vue.d.ts.map
227
+ //#endregion
228
+ //#region src/drawer/DrawerDescription.vue.d.ts
229
+ interface DrawerDescriptionProps extends DialogDescriptionProps$1 {
230
+ class?: HTMLAttributes['class'];
231
+ }
232
+ declare const _default$12: typeof __VLS_export$5;
233
+ declare const __VLS_export$5: __VLS_WithSlots$5<import("vue").DefineComponent<DrawerDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerDescriptionProps> & Readonly<{}>, {
234
+ as: import("reka-ui").AsTag | import("vue").Component;
235
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
236
+ default?: (props: {}) => any;
237
+ }>;
238
+ type __VLS_WithSlots$5<T, S> = T & {
239
+ new (): {
240
+ $slots: S;
241
+ };
242
+ }; //# sourceMappingURL=DrawerDescription.vue.d.ts.map
243
+ //#endregion
244
+ //#region src/drawer/DrawerFooter.vue.d.ts
245
+ interface DrawerFooterProps extends PrimitiveProps {
246
+ class?: HTMLAttributes['class'];
247
+ }
248
+ declare const _default$13: typeof __VLS_export$4;
249
+ declare const __VLS_export$4: __VLS_WithSlots$4<import("vue").DefineComponent<DrawerFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerFooterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
250
+ default?: (props: {}) => any;
251
+ }>;
252
+ type __VLS_WithSlots$4<T, S> = T & {
253
+ new (): {
254
+ $slots: S;
255
+ };
256
+ }; //# sourceMappingURL=DrawerFooter.vue.d.ts.map
257
+ //#endregion
258
+ //#region src/drawer/DrawerHeader.vue.d.ts
259
+ interface DrawerHeaderProps extends PrimitiveProps {
260
+ class?: HTMLAttributes['class'];
261
+ }
262
+ declare const _default$14: typeof __VLS_export$3;
263
+ declare const __VLS_export$3: __VLS_WithSlots$3<import("vue").DefineComponent<DrawerHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerHeaderProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
264
+ default?: (props: {}) => any;
265
+ }>;
266
+ type __VLS_WithSlots$3<T, S> = T & {
267
+ new (): {
268
+ $slots: S;
269
+ };
270
+ }; //# sourceMappingURL=DrawerHeader.vue.d.ts.map
271
+ //#endregion
272
+ //#region src/drawer/DrawerOverlay.vue.d.ts
273
+ interface DrawerOverlayProps extends DialogOverlayProps$1 {
274
+ class?: HTMLAttributes['class'];
275
+ }
276
+ declare const _default$15: typeof __VLS_export$2;
277
+ declare const __VLS_export$2: __VLS_WithSlots$2<import("vue").DefineComponent<DrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
278
+ default?: (props: {}) => any;
279
+ }>;
280
+ type __VLS_WithSlots$2<T, S> = T & {
281
+ new (): {
282
+ $slots: S;
283
+ };
284
+ }; //# sourceMappingURL=DrawerOverlay.vue.d.ts.map
285
+ //#endregion
286
+ //#region src/drawer/DrawerTitle.vue.d.ts
287
+ interface DrawerTitleProps extends DialogTitleProps$1 {
288
+ class?: HTMLAttributes['class'];
289
+ }
290
+ declare const _default$16: typeof __VLS_export$1;
291
+ declare const __VLS_export$1: __VLS_WithSlots$1<import("vue").DefineComponent<DrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTitleProps> & Readonly<{}>, {
292
+ as: import("reka-ui").AsTag | import("vue").Component;
293
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
294
+ default?: (props: {}) => any;
295
+ }>;
296
+ type __VLS_WithSlots$1<T, S> = T & {
297
+ new (): {
298
+ $slots: S;
299
+ };
300
+ }; //# sourceMappingURL=DrawerTitle.vue.d.ts.map
301
+ //#endregion
302
+ //#region src/drawer/DrawerTrigger.vue.d.ts
303
+ interface DrawerTriggerProps extends DialogTriggerProps$1 {}
304
+ declare const _default$17: typeof __VLS_export;
305
+ declare const __VLS_export: __VLS_WithSlots<import("vue").DefineComponent<DrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<DrawerTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
306
+ default?: (props: {}) => any;
307
+ }>;
308
+ type __VLS_WithSlots<T, S> = T & {
309
+ new (): {
310
+ $slots: S;
311
+ };
312
+ }; //# sourceMappingURL=DrawerTrigger.vue.d.ts.map
313
+ //#endregion
314
+ export { __VLS_export$17 as Dialog, __VLS_export$16 as DialogClose, type DialogCloseProps, __VLS_export$15 as DialogContent, type DialogContentEmits, type DialogContentProps, __VLS_export$14 as DialogDescription, type DialogDescriptionProps, type DialogEmits, __VLS_export$13 as DialogFooter, type DialogFooterProps, __VLS_export$12 as DialogHeader, type DialogHeaderProps, __VLS_export$11 as DialogOverlay, type DialogOverlayProps, type DialogProps, __VLS_export$10 as DialogTitle, type DialogTitleProps, __VLS_export$9 as DialogTrigger, type DialogTriggerProps, __VLS_export$8 as Drawer, __VLS_export$7 as DrawerClose, type DrawerCloseProps, __VLS_export$6 as DrawerContent, type DrawerContentEmits, type DrawerContentProps, __VLS_export$5 as DrawerDescription, type DrawerDescriptionProps, type DrawerEmits, __VLS_export$4 as DrawerFooter, type DrawerFooterProps, __VLS_export$3 as DrawerHeader, type DrawerHeaderProps, __VLS_export$2 as DrawerOverlay, type DrawerOverlayProps, type DrawerProps, __VLS_export$1 as DrawerTitle, type DrawerTitleProps, _default$17 as DrawerTrigger, type DrawerTriggerProps };
155
315
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../src/dialog/Dialog.vue","../src/dialog/DialogClose.vue","../src/dialog/DialogContent.vue","../src/dialog/DialogDescription.vue","../src/dialog/DialogFooter.vue","../src/dialog/DialogHeader.vue","../src/dialog/DialogOverlay.vue","../src/dialog/DialogTitle.vue","../src/dialog/DialogTrigger.vue"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/dialog/Dialog.vue","../src/dialog/DialogClose.vue","../src/dialog/DialogContent.vue","../src/dialog/DialogDescription.vue","../src/dialog/DialogFooter.vue","../src/dialog/DialogHeader.vue","../src/dialog/DialogOverlay.vue","../src/dialog/DialogTitle.vue","../src/dialog/DialogTrigger.vue","../src/drawer/Drawer.vue","../src/drawer/DrawerClose.vue","../src/drawer/DrawerContent.vue","../src/drawer/DrawerDescription.vue","../src/drawer/DrawerFooter.vue","../src/drawer/DrawerHeader.vue","../src/drawer/DrawerOverlay.vue","../src/drawer/DrawerTitle.vue","../src/drawer/DrawerTrigger.vue"],"mappings":";;;;UAoCiB,WAAA,SAAoB,eAAe;EAChD,KAAA,GAAQ,cAAA;AAAA;AAAA,UAEK,WAAA,SAAoB,eAAe;AAAA,cAAG,QAAA,SAC3B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,WAAA,gCAAA,qBAAA,gBAAA,qBAAA;;;;;aAqDH,KAAA;;;;;KAWV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UChFM,gBAAA,SAAyB,kBAAoB;AAAA,cAAG,UAAA,SACrC,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,gBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,gBAAA,IAAA,QAAA;;;aA4CH,KAAA;AAAA;AAAA,KAmBV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UCoBM,kBAAA,SAA2B,oBAAsB;EAC9D,KAAA,GAAQ,cAAA;EACR,eAAA;AAAA;AAAA,UAGa,kBAAA,SAA2B,oBAAsB;AAAA,cACjE,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA;;;;;;;;;;;;;;;;;aAoMH,KAAA;AAAA;AAAA,KAsBV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC1SM,sBAAA,SAA+B,wBAA0B;EACtE,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,sBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,sBAAA,IAAA,QAAA;;;aAoDH,KAAA;AAAA;AAAA,KAqBV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UCjFM,iBAAA,SAA0B,cAAc;EACrD,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,iBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,iBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC/DM,iBAAA,SAA0B,cAAc;EACrD,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,iBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,iBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC/DM,kBAAA,SAA2B,oBAAsB;EAC9D,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,kBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC7DM,gBAAA,SAAyB,kBAAoB;EAC1D,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,UAAA,SAC2B,eAAY;AAAA,cAClC,eAAA,EAAY,kBAAA,eAAA,eAAA,CAAA,gBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,gBAAA,IAAA,QAAA;;;aAoDH,KAAA;AAAA;AAAA,KAqBV,kBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UClGM,kBAAA,SAA2B,oBAAsB;AAAA,cAAG,UAAA,SACzC,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,kBAAA,IAAA,QAAA,4CAAA,uBAAA;aAuCH,KAAA;AAAA;AAAA,KAQV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UCxCM,WAAA,SAAoB,eAAe;EAChD,KAAA,GAAQ,cAAA;AAAA;AAAA,UAEK,WAAA,SAAoB,eAAe;AAAA,cAAG,UAAA,SAC3B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,WAAA,gCAAA,qBAAA,gBAAA,qBAAA;;;;;aAqDH,KAAA;;;;;KAWV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UChFM,gBAAA,SAAyB,kBAAgB;AAAA,cAAG,WAAA,SACjC,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,gBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,gBAAA,IAAA,QAAA;;;aA4CH,KAAA;AAAA;AAAA,KAmBV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UCuBM,kBAAA,SAA2B,oBAAkB;AAAA,UAG7C,kBAAA,SAA2B,oBAAkB;EAC1D,KAAA,GAAQ,cAAA;EACR,IAAA;EACA,eAAA;AAAA;AAAA,cACH,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA;;;;;;;;;;;;;;;;;;aAwMH,KAAA;AAAA;AAAA,KAsBV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UClTM,sBAAA,SAA+B,wBAAsB;EAClE,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,sBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,sBAAA,IAAA,QAAA;;;aAoDH,KAAA;AAAA;AAAA,KAqBV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UCjFM,iBAAA,SAA0B,cAAc;EACrD,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,iBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,iBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC/DM,iBAAA,SAA0B,cAAc;EACrD,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,iBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,iBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC/DM,kBAAA,SAA2B,oBAAkB;EAC1D,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,kBAAA,IAAA,QAAA,4CAAA,uBAAA;aA+CH,KAAA;AAAA;AAAA,KAUV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UC7DM,gBAAA,SAAyB,kBAAgB;EACtD,KAAA,GAAQ,cAAA;AAAA;AAAA,cACX,WAAA,SAC2B,cAAY;AAAA,cAClC,cAAA,EAAY,iBAAA,eAAA,eAAA,CAAA,gBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,gBAAA,IAAA,QAAA;;;aAoDH,KAAA;AAAA;AAAA,KAqBV,iBAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA;;;UClGM,kBAAA,SAA2B,oBAAkB;AAAA,cAAG,WAAA,SACrC,YAAY;AAAA,cAClC,YAAA,EAAY,eAAA,eAAA,eAAA,CAAA,kBAAA,gCAAA,qBAAA,gBAAA,qBAAA,4BAAA,WAAA,EAAA,QAAA,CAAA,kBAAA,IAAA,QAAA,4CAAA,uBAAA;aAuCH,KAAA;AAAA;AAAA,KAQV,eAAA,SAAwB,CAAA;EAAA;IAE3B,MAAA,EAAQ,CAAC;EAAA;AAAA"}