arvue-ui 0.2.0 → 0.3.1

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 (106) 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 +73 -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 +66 -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 +1 -1
  32. package/dist/dialog/dialogFooter.js +1 -1
  33. package/dist/dialog/dialogHeader.js +1 -1
  34. package/dist/dialog/dialogOverlay.js +1 -1
  35. package/dist/dialog/dialogTitle.js +1 -1
  36. package/dist/drawer/drawerContent.js +1 -1
  37. package/dist/drawer/drawerDescription.js +1 -1
  38. package/dist/drawer/drawerFooter.js +1 -1
  39. package/dist/drawer/drawerHeader.js +1 -1
  40. package/dist/drawer/drawerOverlay.js +1 -1
  41. package/dist/drawer/drawerTitle.js +1 -1
  42. package/dist/index.d.ts +443 -57
  43. package/dist/index.d.ts.map +1 -1
  44. package/dist/index.js +718 -40
  45. package/dist/index.js.map +1 -1
  46. package/dist/sheet/sheet.js +54 -0
  47. package/dist/sheet/sheet.js.map +1 -0
  48. package/dist/sheet/sheetClose.js +23 -0
  49. package/dist/sheet/sheetClose.js.map +1 -0
  50. package/dist/sheet/sheetContent.js +61 -0
  51. package/dist/sheet/sheetContent.js.map +1 -0
  52. package/dist/sheet/sheetDescription.js +33 -0
  53. package/dist/sheet/sheetDescription.js.map +1 -0
  54. package/dist/sheet/sheetFooter.js +33 -0
  55. package/dist/sheet/sheetFooter.js.map +1 -0
  56. package/dist/sheet/sheetHeader.js +33 -0
  57. package/dist/sheet/sheetHeader.js.map +1 -0
  58. package/dist/sheet/sheetOverlay.js +34 -0
  59. package/dist/sheet/sheetOverlay.js.map +1 -0
  60. package/dist/sheet/sheetTitle.js +33 -0
  61. package/dist/sheet/sheetTitle.js.map +1 -0
  62. package/dist/sheet/sheetTrigger.js +23 -0
  63. package/dist/sheet/sheetTrigger.js.map +1 -0
  64. package/dist/style.css +24 -0
  65. package/package.json +3 -2
  66. package/src/autocomplete/Autocomplete.vue +36 -0
  67. package/src/autocomplete/AutocompleteAnchor.vue +17 -0
  68. package/src/autocomplete/AutocompleteArrow.vue +17 -0
  69. package/src/autocomplete/AutocompleteCancel.vue +17 -0
  70. package/src/autocomplete/AutocompleteContent.vue +43 -0
  71. package/src/autocomplete/AutocompleteEmpty.vue +31 -0
  72. package/src/autocomplete/AutocompleteGroup.vue +17 -0
  73. package/src/autocomplete/AutocompleteInput.vue +65 -0
  74. package/src/autocomplete/AutocompleteItem.vue +32 -0
  75. package/src/autocomplete/AutocompleteLabel.vue +31 -0
  76. package/src/autocomplete/AutocompletePortal.vue +17 -0
  77. package/src/autocomplete/AutocompleteSeparator.vue +31 -0
  78. package/src/autocomplete/AutocompleteTrigger.vue +17 -0
  79. package/src/autocomplete/AutocompleteViewport.vue +17 -0
  80. package/src/autocomplete/autocomplete-content.css +7 -0
  81. package/src/autocomplete/autocomplete-empty.css +7 -0
  82. package/src/autocomplete/autocomplete-input.css +5 -0
  83. package/src/autocomplete/autocomplete-item.css +14 -0
  84. package/src/autocomplete/autocomplete-label.css +6 -0
  85. package/src/autocomplete/autocomplete-separator.css +5 -0
  86. package/src/autocomplete/autocomplete.css +4 -0
  87. package/src/autocomplete/index.ts +60 -0
  88. package/src/dialog/dialog-description.css +1 -0
  89. package/src/drawer/drawer-description.css +1 -0
  90. package/src/index.ts +2 -0
  91. package/src/sheet/Sheet.vue +29 -0
  92. package/src/sheet/SheetClose.vue +19 -0
  93. package/src/sheet/SheetContent.vue +53 -0
  94. package/src/sheet/SheetDescription.vue +33 -0
  95. package/src/sheet/SheetFooter.vue +31 -0
  96. package/src/sheet/SheetHeader.vue +31 -0
  97. package/src/sheet/SheetOverlay.vue +31 -0
  98. package/src/sheet/SheetTitle.vue +33 -0
  99. package/src/sheet/SheetTrigger.vue +17 -0
  100. package/src/sheet/index.ts +38 -0
  101. package/src/sheet/sheet-content.css +67 -0
  102. package/src/sheet/sheet-description.css +5 -0
  103. package/src/sheet/sheet-footer.css +11 -0
  104. package/src/sheet/sheet-header.css +6 -0
  105. package/src/sheet/sheet-overlay.css +12 -0
  106. package/src/sheet/sheet-title.css +3 -0
package/dist/index.js CHANGED
@@ -1,9 +1,435 @@
1
- import { computed, createBlock, createCommentVNode, createElementVNode, createVNode, defineComponent, guardReactiveProps, mergeProps, normalizeProps, openBlock, renderSlot, unref, withCtx } from "vue";
2
- import { DialogClose, DialogContent, DialogDescription, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, Primitive, useForwardPropsEmits } from "reka-ui";
1
+ import { computed, createBlock, createCommentVNode, createElementBlock, createElementVNode, createVNode, defineComponent, guardReactiveProps, mergeProps, normalizeProps, openBlock, renderSlot, unref, useTemplateRef, withCtx } from "vue";
3
2
  import { reactiveOmit } from "@vueuse/core";
3
+ import { AutocompleteAnchor, AutocompleteArrow, AutocompleteCancel, AutocompleteContent, AutocompleteEmpty, AutocompleteGroup, AutocompleteInput, AutocompleteItem, AutocompleteLabel, AutocompletePortal, AutocompleteRoot, AutocompleteSeparator, AutocompleteTrigger, AutocompleteViewport, DialogClose, DialogContent, DialogDescription, DialogOverlay, DialogPortal, DialogRoot, DialogTitle, DialogTrigger, Primitive, useForwardPropsEmits } from "reka-ui";
4
4
  import { AnimatePresence, Motion } from "motion-v";
5
+ import { DrawerClose, DrawerContent, DrawerDescription, DrawerOverlay, DrawerPortal, DrawerRoot, DrawerTitle, DrawerTrigger } from "vaul-vue";
6
+ //#region ../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
7
+ function r(e) {
8
+ var t, f, n = "";
9
+ if ("string" == typeof e || "number" == typeof e) n += e;
10
+ else if ("object" == typeof e) if (Array.isArray(e)) {
11
+ var o = e.length;
12
+ for (t = 0; t < o; t++) e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
13
+ } else for (f in e) e[f] && (n && (n += " "), n += f);
14
+ return n;
15
+ }
16
+ function clsx() {
17
+ for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++) (e = arguments[f]) && (t = r(e)) && (n && (n += " "), n += t);
18
+ return n;
19
+ }
20
+ //#endregion
21
+ //#region src/autocomplete/Autocomplete.vue
22
+ const _sfc_main = /* @__PURE__ */ defineComponent({
23
+ __name: "Autocomplete",
24
+ props: {
25
+ class: { type: [
26
+ Boolean,
27
+ null,
28
+ String,
29
+ Object,
30
+ Array
31
+ ] },
32
+ modelValue: {},
33
+ defaultValue: {},
34
+ open: { type: Boolean },
35
+ defaultOpen: { type: Boolean },
36
+ disabled: { type: Boolean },
37
+ dir: {},
38
+ name: {},
39
+ required: { type: Boolean },
40
+ resetSearchTermOnBlur: { type: Boolean },
41
+ openOnFocus: { type: Boolean },
42
+ openOnClick: { type: Boolean },
43
+ ignoreFilter: { type: Boolean },
44
+ highlightOnHover: { type: Boolean },
45
+ asChild: { type: Boolean },
46
+ as: {}
47
+ },
48
+ emits: [
49
+ "update:modelValue",
50
+ "highlight",
51
+ "update:open"
52
+ ],
53
+ setup(__props, { emit: __emit }) {
54
+ const props = __props;
55
+ const emits = __emit;
56
+ const forwarded = useForwardPropsEmits(reactiveOmit(props, "class"), emits);
57
+ return (_ctx, _cache) => {
58
+ return openBlock(), createBlock(unref(AutocompleteRoot), mergeProps(unref(forwarded), { class: unref(clsx)("arvue-autocomplete", props.class) }), {
59
+ default: withCtx((slotProps) => [renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps(slotProps)))]),
60
+ _: 3
61
+ }, 16, ["class"]);
62
+ };
63
+ }
64
+ });
65
+ //#endregion
66
+ //#region src/autocomplete/AutocompleteAnchor.vue
67
+ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
68
+ __name: "AutocompleteAnchor",
69
+ props: {
70
+ reference: {},
71
+ asChild: { type: Boolean },
72
+ as: {}
73
+ },
74
+ setup(__props) {
75
+ const props = __props;
76
+ return (_ctx, _cache) => {
77
+ return openBlock(), createBlock(unref(AutocompleteAnchor), normalizeProps(guardReactiveProps(props)), {
78
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
79
+ _: 3
80
+ }, 16);
81
+ };
82
+ }
83
+ });
84
+ //#endregion
85
+ //#region src/autocomplete/AutocompleteArrow.vue
86
+ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
87
+ __name: "AutocompleteArrow",
88
+ props: {
89
+ width: {},
90
+ height: {},
91
+ rounded: { type: Boolean },
92
+ asChild: { type: Boolean },
93
+ as: {}
94
+ },
95
+ setup(__props) {
96
+ const props = __props;
97
+ return (_ctx, _cache) => {
98
+ return openBlock(), createBlock(unref(AutocompleteArrow), normalizeProps(guardReactiveProps(props)), {
99
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
100
+ _: 3
101
+ }, 16);
102
+ };
103
+ }
104
+ });
105
+ //#endregion
106
+ //#region src/autocomplete/AutocompleteCancel.vue
107
+ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
108
+ __name: "AutocompleteCancel",
109
+ props: {
110
+ asChild: { type: Boolean },
111
+ as: {}
112
+ },
113
+ setup(__props) {
114
+ const props = __props;
115
+ return (_ctx, _cache) => {
116
+ return openBlock(), createBlock(unref(AutocompleteCancel), normalizeProps(guardReactiveProps(props)), {
117
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
118
+ _: 3
119
+ }, 16);
120
+ };
121
+ }
122
+ });
123
+ //#endregion
124
+ //#region src/autocomplete/AutocompleteContent.vue
125
+ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
126
+ inheritAttrs: false,
127
+ __name: "AutocompleteContent",
128
+ props: {
129
+ class: { type: [
130
+ Boolean,
131
+ null,
132
+ String,
133
+ Object,
134
+ Array
135
+ ] },
136
+ forceMount: { type: Boolean },
137
+ bodyLock: { type: Boolean },
138
+ hideWhenEmpty: { type: Boolean },
139
+ side: {},
140
+ sideOffset: {},
141
+ sideFlip: { type: Boolean },
142
+ align: {},
143
+ alignOffset: {},
144
+ alignFlip: { type: Boolean },
145
+ avoidCollisions: { type: Boolean },
146
+ collisionBoundary: {},
147
+ collisionPadding: {},
148
+ arrowPadding: {},
149
+ hideShiftedArrow: { type: Boolean },
150
+ sticky: {},
151
+ hideWhenDetached: { type: Boolean },
152
+ positionStrategy: {},
153
+ updatePositionStrategy: {},
154
+ disableUpdateOnLayoutShift: { type: Boolean },
155
+ prioritizePosition: { type: Boolean },
156
+ reference: {},
157
+ asChild: { type: Boolean },
158
+ as: {},
159
+ disableOutsidePointerEvents: { type: Boolean }
160
+ },
161
+ emits: [
162
+ "escapeKeyDown",
163
+ "pointerDownOutside",
164
+ "focusOutside",
165
+ "interactOutside"
166
+ ],
167
+ setup(__props, { emit: __emit }) {
168
+ const props = __props;
169
+ const emits = __emit;
170
+ const forwarded = useForwardPropsEmits(reactiveOmit(props, "class"), emits);
171
+ return (_ctx, _cache) => {
172
+ return openBlock(), createBlock(unref(AutocompleteContent), mergeProps({
173
+ ..._ctx.$attrs,
174
+ ...unref(forwarded)
175
+ }, {
176
+ class: unref(clsx)("arvue-autocomplete-content", props.class),
177
+ position: "popper"
178
+ }), {
179
+ default: withCtx(() => [createVNode(unref(_sfc_main$13), null, {
180
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
181
+ _: 3
182
+ })]),
183
+ _: 3
184
+ }, 16, ["class"]);
185
+ };
186
+ }
187
+ });
188
+ //#endregion
189
+ //#region src/autocomplete/AutocompleteEmpty.vue
190
+ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
191
+ __name: "AutocompleteEmpty",
192
+ props: {
193
+ class: { type: [
194
+ Boolean,
195
+ null,
196
+ String,
197
+ Object,
198
+ Array
199
+ ] },
200
+ asChild: { type: Boolean },
201
+ as: {}
202
+ },
203
+ setup(__props) {
204
+ const props = __props;
205
+ const delegatedProps = reactiveOmit(props, "class");
206
+ return (_ctx, _cache) => {
207
+ return openBlock(), createBlock(unref(AutocompleteEmpty), mergeProps(unref(delegatedProps), { class: unref(clsx)("arvue-autocomplete-empty", props.class) }), {
208
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
209
+ _: 3
210
+ }, 16, ["class"]);
211
+ };
212
+ }
213
+ });
214
+ //#endregion
215
+ //#region src/autocomplete/AutocompleteGroup.vue
216
+ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
217
+ __name: "AutocompleteGroup",
218
+ props: {
219
+ asChild: { type: Boolean },
220
+ as: {}
221
+ },
222
+ setup(__props) {
223
+ const props = __props;
224
+ return (_ctx, _cache) => {
225
+ return openBlock(), createBlock(unref(AutocompleteGroup), normalizeProps(guardReactiveProps(props)), {
226
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
227
+ _: 3
228
+ }, 16);
229
+ };
230
+ }
231
+ });
232
+ //#endregion
233
+ //#region src/autocomplete/AutocompleteInput.vue
234
+ const _hoisted_1$1 = { class: "arvue-autocomplete-input-wrapper" };
235
+ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
236
+ inheritAttrs: false,
237
+ __name: "AutocompleteInput",
238
+ props: {
239
+ showTriggerButton: {
240
+ type: Boolean,
241
+ default: true
242
+ },
243
+ showCancelButton: {
244
+ type: Boolean,
245
+ default: false
246
+ },
247
+ modelValue: {},
248
+ autoFocus: { type: Boolean },
249
+ disabled: { type: Boolean },
250
+ asChild: { type: Boolean },
251
+ as: {}
252
+ },
253
+ emits: ["cancel", "update:modelValue"],
254
+ setup(__props, { emit: __emit }) {
255
+ const props = __props;
256
+ const emits = __emit;
257
+ const forwarded = useForwardPropsEmits(reactiveOmit(props, "showCancelButton", "showTriggerButton"), emits);
258
+ const inputRef = useTemplateRef("inputRef");
259
+ return (_ctx, _cache) => {
260
+ return openBlock(), createElementBlock("div", _hoisted_1$1, [createVNode(unref(_sfc_main$1), {
261
+ class: "state-with-inner-icon right",
262
+ reference: inputRef.value?.$el
263
+ }, {
264
+ default: withCtx(() => [createVNode(unref(AutocompleteInput), mergeProps({
265
+ ..._ctx.$attrs,
266
+ ...unref(forwarded)
267
+ }, {
268
+ ref_key: "inputRef",
269
+ ref: inputRef
270
+ }), null, 16), __props.showTriggerButton ? (openBlock(), createBlock(unref(_sfc_main$12), {
271
+ key: 0,
272
+ class: "icon"
273
+ }, {
274
+ default: withCtx(() => [..._cache[1] || (_cache[1] = [createElementVNode("i", { class: "fas fa-chevron-down" }, null, -1)])]),
275
+ _: 1
276
+ })) : createCommentVNode("v-if", true)]),
277
+ _: 1
278
+ }, 8, ["reference"]), __props.showCancelButton ? (openBlock(), createBlock(unref(_sfc_main$3), {
279
+ key: 0,
280
+ class: "icon",
281
+ onClick: _cache[0] || (_cache[0] = ($event) => emits("cancel"))
282
+ }, {
283
+ default: withCtx(() => [..._cache[2] || (_cache[2] = [createElementVNode("i", { class: "fas fa-times" }, null, -1)])]),
284
+ _: 1
285
+ })) : createCommentVNode("v-if", true)]);
286
+ };
287
+ }
288
+ });
289
+ //#endregion
290
+ //#region src/autocomplete/AutocompleteItem.vue
291
+ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
292
+ __name: "AutocompleteItem",
293
+ props: {
294
+ class: { type: [
295
+ Boolean,
296
+ null,
297
+ String,
298
+ Object,
299
+ Array
300
+ ] },
301
+ textValue: {},
302
+ value: {},
303
+ disabled: { type: Boolean },
304
+ asChild: { type: Boolean },
305
+ as: {}
306
+ },
307
+ emits: ["select"],
308
+ setup(__props, { emit: __emit }) {
309
+ const props = __props;
310
+ const forwarded = useForwardPropsEmits(props, __emit);
311
+ return (_ctx, _cache) => {
312
+ return openBlock(), createBlock(unref(AutocompleteItem), mergeProps(unref(forwarded), { class: unref(clsx)("arvue-autocomplete-item", props.class) }), {
313
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
314
+ _: 3
315
+ }, 16, ["class"]);
316
+ };
317
+ }
318
+ });
319
+ //#endregion
320
+ //#region src/autocomplete/AutocompleteLabel.vue
321
+ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
322
+ __name: "AutocompleteLabel",
323
+ props: {
324
+ class: { type: [
325
+ Boolean,
326
+ null,
327
+ String,
328
+ Object,
329
+ Array
330
+ ] },
331
+ for: {},
332
+ asChild: { type: Boolean },
333
+ as: {}
334
+ },
335
+ setup(__props) {
336
+ const props = __props;
337
+ const delegatedProps = reactiveOmit(props, "class");
338
+ return (_ctx, _cache) => {
339
+ return openBlock(), createBlock(unref(AutocompleteLabel), mergeProps(unref(delegatedProps), { class: unref(clsx)("arvue-autocomplete-label", props.class) }), {
340
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
341
+ _: 3
342
+ }, 16, ["class"]);
343
+ };
344
+ }
345
+ });
346
+ //#endregion
347
+ //#region src/autocomplete/AutocompletePortal.vue
348
+ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
349
+ __name: "AutocompletePortal",
350
+ props: {
351
+ to: {},
352
+ disabled: { type: Boolean },
353
+ defer: { type: Boolean },
354
+ forceMount: { type: Boolean }
355
+ },
356
+ setup(__props) {
357
+ const props = __props;
358
+ return (_ctx, _cache) => {
359
+ return openBlock(), createBlock(unref(AutocompletePortal), normalizeProps(guardReactiveProps(props)), {
360
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
361
+ _: 3
362
+ }, 16);
363
+ };
364
+ }
365
+ });
366
+ //#endregion
367
+ //#region src/autocomplete/AutocompleteSeparator.vue
368
+ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
369
+ __name: "AutocompleteSeparator",
370
+ props: {
371
+ class: { type: [
372
+ Boolean,
373
+ null,
374
+ String,
375
+ Object,
376
+ Array
377
+ ] },
378
+ asChild: { type: Boolean },
379
+ as: {}
380
+ },
381
+ setup(__props) {
382
+ const props = __props;
383
+ const delegatedProps = reactiveOmit(props, "class");
384
+ return (_ctx, _cache) => {
385
+ return openBlock(), createBlock(unref(AutocompleteSeparator), mergeProps(unref(delegatedProps), { class: unref(clsx)("arvue-autocomplete-separator", props.class) }), {
386
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
387
+ _: 3
388
+ }, 16, ["class"]);
389
+ };
390
+ }
391
+ });
392
+ //#endregion
393
+ //#region src/autocomplete/AutocompleteTrigger.vue
394
+ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
395
+ __name: "AutocompleteTrigger",
396
+ props: {
397
+ disabled: { type: Boolean },
398
+ asChild: { type: Boolean },
399
+ as: {}
400
+ },
401
+ setup(__props) {
402
+ const props = __props;
403
+ return (_ctx, _cache) => {
404
+ return openBlock(), createBlock(unref(AutocompleteTrigger), normalizeProps(guardReactiveProps(props)), {
405
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
406
+ _: 3
407
+ }, 16);
408
+ };
409
+ }
410
+ });
411
+ //#endregion
412
+ //#region src/autocomplete/AutocompleteViewport.vue
413
+ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
414
+ __name: "AutocompleteViewport",
415
+ props: {
416
+ nonce: {},
417
+ asChild: { type: Boolean },
418
+ as: {}
419
+ },
420
+ setup(__props) {
421
+ const props = __props;
422
+ return (_ctx, _cache) => {
423
+ return openBlock(), createBlock(unref(AutocompleteViewport), normalizeProps(guardReactiveProps(props)), {
424
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
425
+ _: 3
426
+ }, 16);
427
+ };
428
+ }
429
+ });
430
+ //#endregion
5
431
  //#region src/dialog/Dialog.vue
6
- const _sfc_main = /* @__PURE__ */ defineComponent({
432
+ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
7
433
  __name: "Dialog",
8
434
  props: {
9
435
  class: { type: [
@@ -30,7 +456,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
30
456
  });
31
457
  //#endregion
32
458
  //#region src/dialog/DialogClose.vue
33
- const _sfc_main$1 = /* @__PURE__ */ defineComponent({
459
+ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
34
460
  __name: "DialogClose",
35
461
  props: {
36
462
  asChild: { type: Boolean },
@@ -47,23 +473,8 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
47
473
  }
48
474
  });
49
475
  //#endregion
50
- //#region ../../node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs
51
- function r(e) {
52
- var t, f, n = "";
53
- if ("string" == typeof e || "number" == typeof e) n += e;
54
- else if ("object" == typeof e) if (Array.isArray(e)) {
55
- var o = e.length;
56
- for (t = 0; t < o; t++) e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
57
- } else for (f in e) e[f] && (n && (n += " "), n += f);
58
- return n;
59
- }
60
- function clsx() {
61
- for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++) (e = arguments[f]) && (t = r(e)) && (n && (n += " "), n += t);
62
- return n;
63
- }
64
- //#endregion
65
476
  //#region src/dialog/DialogContent.vue
66
- const _sfc_main$2 = /* @__PURE__ */ defineComponent({
477
+ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
67
478
  inheritAttrs: false,
68
479
  __name: "DialogContent",
69
480
  props: {
@@ -98,7 +509,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
98
509
  return (_ctx, _cache) => {
99
510
  return openBlock(), createBlock(unref(DialogPortal), null, {
100
511
  default: withCtx(() => [createVNode(unref(AnimatePresence), { as: "div" }, {
101
- default: withCtx(() => [createVNode(unref(_sfc_main$6), { "as-child": "" }, {
512
+ default: withCtx(() => [createVNode(unref(_sfc_main$20), { "as-child": "" }, {
102
513
  default: withCtx(() => [createVNode(unref(Motion), {
103
514
  initial: { opacity: 0 },
104
515
  animate: { opacity: 1 },
@@ -134,7 +545,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
134
545
  ease: "easeInOut"
135
546
  }
136
547
  }, {
137
- default: withCtx(() => [renderSlot(_ctx.$slots, "default"), __props.showCloseButton ? (openBlock(), createBlock(unref(_sfc_main$1), {
548
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default"), __props.showCloseButton ? (openBlock(), createBlock(unref(_sfc_main$15), {
138
549
  key: 0,
139
550
  class: "arvue-dialog-close-button icon"
140
551
  }, {
@@ -154,7 +565,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
154
565
  });
155
566
  //#endregion
156
567
  //#region src/dialog/DialogDescription.vue
157
- const _sfc_main$3 = /* @__PURE__ */ defineComponent({
568
+ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
158
569
  __name: "DialogDescription",
159
570
  props: {
160
571
  class: { type: [
@@ -180,7 +591,7 @@ const _sfc_main$3 = /* @__PURE__ */ defineComponent({
180
591
  });
181
592
  //#endregion
182
593
  //#region src/dialog/DialogFooter.vue
183
- const _sfc_main$4 = /* @__PURE__ */ defineComponent({
594
+ const _sfc_main$18 = /* @__PURE__ */ defineComponent({
184
595
  __name: "DialogFooter",
185
596
  props: {
186
597
  class: { type: [
@@ -206,7 +617,7 @@ const _sfc_main$4 = /* @__PURE__ */ defineComponent({
206
617
  });
207
618
  //#endregion
208
619
  //#region src/dialog/DialogHeader.vue
209
- const _sfc_main$5 = /* @__PURE__ */ defineComponent({
620
+ const _sfc_main$19 = /* @__PURE__ */ defineComponent({
210
621
  __name: "DialogHeader",
211
622
  props: {
212
623
  class: { type: [
@@ -232,7 +643,7 @@ const _sfc_main$5 = /* @__PURE__ */ defineComponent({
232
643
  });
233
644
  //#endregion
234
645
  //#region src/dialog/DialogOverlay.vue
235
- const _sfc_main$6 = /* @__PURE__ */ defineComponent({
646
+ const _sfc_main$20 = /* @__PURE__ */ defineComponent({
236
647
  __name: "DialogOverlay",
237
648
  props: {
238
649
  class: { type: [
@@ -259,7 +670,7 @@ const _sfc_main$6 = /* @__PURE__ */ defineComponent({
259
670
  });
260
671
  //#endregion
261
672
  //#region src/dialog/DialogTitle.vue
262
- const _sfc_main$7 = /* @__PURE__ */ defineComponent({
673
+ const _sfc_main$21 = /* @__PURE__ */ defineComponent({
263
674
  __name: "DialogTitle",
264
675
  props: {
265
676
  class: { type: [
@@ -285,7 +696,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
285
696
  });
286
697
  //#endregion
287
698
  //#region src/dialog/DialogTrigger.vue
288
- const _sfc_main$8 = /* @__PURE__ */ defineComponent({
699
+ const _sfc_main$22 = /* @__PURE__ */ defineComponent({
289
700
  __name: "DialogTrigger",
290
701
  props: {
291
702
  asChild: { type: Boolean },
@@ -303,7 +714,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
303
714
  });
304
715
  //#endregion
305
716
  //#region src/drawer/Drawer.vue
306
- const _sfc_main$9 = /* @__PURE__ */ defineComponent({
717
+ const _sfc_main$23 = /* @__PURE__ */ defineComponent({
307
718
  __name: "Drawer",
308
719
  props: {
309
720
  class: { type: [
@@ -330,7 +741,7 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
330
741
  });
331
742
  //#endregion
332
743
  //#region src/drawer/DrawerClose.vue
333
- const _sfc_main$10 = /* @__PURE__ */ defineComponent({
744
+ const _sfc_main$24 = /* @__PURE__ */ defineComponent({
334
745
  __name: "DrawerClose",
335
746
  props: {
336
747
  asChild: { type: Boolean },
@@ -348,7 +759,7 @@ const _sfc_main$10 = /* @__PURE__ */ defineComponent({
348
759
  });
349
760
  //#endregion
350
761
  //#region src/drawer/DrawerContent.vue
351
- const _sfc_main$11 = /* @__PURE__ */ defineComponent({
762
+ const _sfc_main$25 = /* @__PURE__ */ defineComponent({
352
763
  inheritAttrs: false,
353
764
  __name: "DrawerContent",
354
765
  props: {
@@ -407,7 +818,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
407
818
  return (_ctx, _cache) => {
408
819
  return openBlock(), createBlock(unref(DialogPortal), null, {
409
820
  default: withCtx(() => [createVNode(unref(AnimatePresence), { as: "div" }, {
410
- default: withCtx(() => [createVNode(unref(_sfc_main$15), { "as-child": "" }, {
821
+ default: withCtx(() => [createVNode(unref(_sfc_main$29), { "as-child": "" }, {
411
822
  default: withCtx(() => [createVNode(unref(Motion), {
412
823
  initial: { opacity: 0 },
413
824
  animate: { opacity: 1 },
@@ -426,7 +837,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
426
837
  duration: .3,
427
838
  ease: "easeIn"
428
839
  } }), {
429
- default: withCtx(() => [renderSlot(_ctx.$slots, "default"), __props.showCloseButton ? (openBlock(), createBlock(unref(_sfc_main$10), {
840
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default"), __props.showCloseButton ? (openBlock(), createBlock(unref(_sfc_main$24), {
430
841
  key: 0,
431
842
  class: "arvue-drawer-close-button icon"
432
843
  }, {
@@ -446,7 +857,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
446
857
  });
447
858
  //#endregion
448
859
  //#region src/drawer/DrawerDescription.vue
449
- const _sfc_main$12 = /* @__PURE__ */ defineComponent({
860
+ const _sfc_main$26 = /* @__PURE__ */ defineComponent({
450
861
  __name: "DrawerDescription",
451
862
  props: {
452
863
  class: { type: [
@@ -472,7 +883,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
472
883
  });
473
884
  //#endregion
474
885
  //#region src/drawer/DrawerFooter.vue
475
- const _sfc_main$13 = /* @__PURE__ */ defineComponent({
886
+ const _sfc_main$27 = /* @__PURE__ */ defineComponent({
476
887
  __name: "DrawerFooter",
477
888
  props: {
478
889
  class: { type: [
@@ -498,7 +909,7 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
498
909
  });
499
910
  //#endregion
500
911
  //#region src/drawer/DrawerHeader.vue
501
- const _sfc_main$14 = /* @__PURE__ */ defineComponent({
912
+ const _sfc_main$28 = /* @__PURE__ */ defineComponent({
502
913
  __name: "DrawerHeader",
503
914
  props: {
504
915
  class: { type: [
@@ -524,7 +935,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
524
935
  });
525
936
  //#endregion
526
937
  //#region src/drawer/DrawerOverlay.vue
527
- const _sfc_main$15 = /* @__PURE__ */ defineComponent({
938
+ const _sfc_main$29 = /* @__PURE__ */ defineComponent({
528
939
  __name: "DrawerOverlay",
529
940
  props: {
530
941
  class: { type: [
@@ -551,7 +962,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
551
962
  });
552
963
  //#endregion
553
964
  //#region src/drawer/DrawerTitle.vue
554
- const _sfc_main$16 = /* @__PURE__ */ defineComponent({
965
+ const _sfc_main$30 = /* @__PURE__ */ defineComponent({
555
966
  __name: "DrawerTitle",
556
967
  props: {
557
968
  class: { type: [
@@ -577,7 +988,7 @@ const _sfc_main$16 = /* @__PURE__ */ defineComponent({
577
988
  });
578
989
  //#endregion
579
990
  //#region src/drawer/DrawerTrigger.vue
580
- const _sfc_main$17 = /* @__PURE__ */ defineComponent({
991
+ const _sfc_main$31 = /* @__PURE__ */ defineComponent({
581
992
  __name: "DrawerTrigger",
582
993
  props: {
583
994
  asChild: { type: Boolean },
@@ -594,6 +1005,273 @@ const _sfc_main$17 = /* @__PURE__ */ defineComponent({
594
1005
  }
595
1006
  });
596
1007
  //#endregion
597
- export { _sfc_main as Dialog, _sfc_main$1 as DialogClose, _sfc_main$2 as DialogContent, _sfc_main$3 as DialogDescription, _sfc_main$4 as DialogFooter, _sfc_main$5 as DialogHeader, _sfc_main$6 as DialogOverlay, _sfc_main$7 as DialogTitle, _sfc_main$8 as DialogTrigger, _sfc_main$9 as Drawer, _sfc_main$10 as DrawerClose, _sfc_main$11 as DrawerContent, _sfc_main$12 as DrawerDescription, _sfc_main$13 as DrawerFooter, _sfc_main$14 as DrawerHeader, _sfc_main$15 as DrawerOverlay, _sfc_main$16 as DrawerTitle, _sfc_main$17 as DrawerTrigger };
1008
+ //#region src/sheet/Sheet.vue
1009
+ const _sfc_main$32 = /* @__PURE__ */ defineComponent({
1010
+ __name: "Sheet",
1011
+ props: {
1012
+ class: { type: [
1013
+ Boolean,
1014
+ null,
1015
+ String,
1016
+ Object,
1017
+ Array
1018
+ ] },
1019
+ activeSnapPoint: {},
1020
+ closeThreshold: {},
1021
+ shouldScaleBackground: { type: Boolean },
1022
+ setBackgroundColorOnScale: { type: Boolean },
1023
+ scrollLockTimeout: {},
1024
+ fixed: { type: Boolean },
1025
+ dismissible: { type: Boolean },
1026
+ modal: { type: Boolean },
1027
+ open: { type: Boolean },
1028
+ defaultOpen: { type: Boolean },
1029
+ nested: { type: Boolean },
1030
+ direction: {},
1031
+ noBodyStyles: { type: Boolean },
1032
+ handleOnly: { type: Boolean },
1033
+ preventScrollRestoration: { type: Boolean },
1034
+ snapPoints: {},
1035
+ fadeFromIndex: {}
1036
+ },
1037
+ emits: [
1038
+ "drag",
1039
+ "release",
1040
+ "close",
1041
+ "update:open",
1042
+ "update:activeSnapPoint",
1043
+ "animationEnd"
1044
+ ],
1045
+ setup(__props, { emit: __emit }) {
1046
+ const forwarded = useForwardPropsEmits(__props, __emit);
1047
+ return (_ctx, _cache) => {
1048
+ return openBlock(), createBlock(unref(DrawerRoot), normalizeProps(guardReactiveProps(unref(forwarded))), {
1049
+ default: withCtx((slotProps) => [renderSlot(_ctx.$slots, "default", normalizeProps(guardReactiveProps(slotProps)))]),
1050
+ _: 3
1051
+ }, 16);
1052
+ };
1053
+ }
1054
+ });
1055
+ //#endregion
1056
+ //#region src/sheet/SheetClose.vue
1057
+ const _sfc_main$33 = /* @__PURE__ */ defineComponent({
1058
+ __name: "SheetClose",
1059
+ props: {
1060
+ asChild: { type: Boolean },
1061
+ as: { default: "a" }
1062
+ },
1063
+ setup(__props) {
1064
+ const props = __props;
1065
+ return (_ctx, _cache) => {
1066
+ return openBlock(), createBlock(unref(DrawerClose), normalizeProps(guardReactiveProps(props)), {
1067
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1068
+ _: 3
1069
+ }, 16);
1070
+ };
1071
+ }
1072
+ });
1073
+ //#endregion
1074
+ //#region src/sheet/SheetContent.vue
1075
+ const _hoisted_1 = {
1076
+ key: 0,
1077
+ class: "arvue-sheet-handle"
1078
+ };
1079
+ const _sfc_main$34 = /* @__PURE__ */ defineComponent({
1080
+ inheritAttrs: false,
1081
+ __name: "SheetContent",
1082
+ props: {
1083
+ class: { type: [
1084
+ Boolean,
1085
+ null,
1086
+ String,
1087
+ Object,
1088
+ Array
1089
+ ] },
1090
+ showHandle: {
1091
+ type: Boolean,
1092
+ default: true
1093
+ },
1094
+ forceMount: { type: Boolean },
1095
+ disableOutsidePointerEvents: { type: Boolean },
1096
+ asChild: { type: Boolean },
1097
+ as: {}
1098
+ },
1099
+ emits: [
1100
+ "escapeKeyDown",
1101
+ "pointerDownOutside",
1102
+ "focusOutside",
1103
+ "interactOutside",
1104
+ "openAutoFocus",
1105
+ "closeAutoFocus"
1106
+ ],
1107
+ setup(__props, { emit: __emit }) {
1108
+ const props = __props;
1109
+ const emits = __emit;
1110
+ const forwarded = useForwardPropsEmits(reactiveOmit(props, "class"), emits);
1111
+ return (_ctx, _cache) => {
1112
+ return openBlock(), createBlock(unref(DrawerPortal), null, {
1113
+ default: withCtx(() => [createVNode(unref(_sfc_main$38)), createVNode(unref(DrawerContent), mergeProps({ class: unref(clsx)("arvue-sheet-content", props.class) }, {
1114
+ ..._ctx.$attrs,
1115
+ ...unref(forwarded)
1116
+ }), {
1117
+ default: withCtx(() => [__props.showHandle ? (openBlock(), createElementBlock("div", _hoisted_1)) : createCommentVNode("v-if", true), renderSlot(_ctx.$slots, "default")]),
1118
+ _: 3
1119
+ }, 16, ["class"])]),
1120
+ _: 3
1121
+ });
1122
+ };
1123
+ }
1124
+ });
1125
+ //#endregion
1126
+ //#region src/sheet/SheetDescription.vue
1127
+ const _sfc_main$35 = /* @__PURE__ */ defineComponent({
1128
+ __name: "SheetDescription",
1129
+ props: {
1130
+ class: { type: [
1131
+ Boolean,
1132
+ null,
1133
+ String,
1134
+ Object,
1135
+ Array
1136
+ ] },
1137
+ asChild: { type: Boolean },
1138
+ as: { default: "p" }
1139
+ },
1140
+ setup(__props) {
1141
+ const props = __props;
1142
+ const delegatedProps = reactiveOmit(props, "class");
1143
+ return (_ctx, _cache) => {
1144
+ return openBlock(), createBlock(unref(DrawerDescription), mergeProps({ class: unref(clsx)("arvue-sheet-description", props.class) }, unref(delegatedProps)), {
1145
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1146
+ _: 3
1147
+ }, 16, ["class"]);
1148
+ };
1149
+ }
1150
+ });
1151
+ //#endregion
1152
+ //#region src/sheet/SheetFooter.vue
1153
+ const _sfc_main$36 = /* @__PURE__ */ defineComponent({
1154
+ __name: "SheetFooter",
1155
+ props: {
1156
+ class: { type: [
1157
+ Boolean,
1158
+ null,
1159
+ String,
1160
+ Object,
1161
+ Array
1162
+ ] },
1163
+ asChild: { type: Boolean },
1164
+ as: {}
1165
+ },
1166
+ setup(__props) {
1167
+ const props = __props;
1168
+ const delegatedProps = reactiveOmit(props, "class");
1169
+ return (_ctx, _cache) => {
1170
+ return openBlock(), createBlock(unref(Primitive), mergeProps({ class: unref(clsx)("arvue-sheet-footer", props.class) }, unref(delegatedProps)), {
1171
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1172
+ _: 3
1173
+ }, 16, ["class"]);
1174
+ };
1175
+ }
1176
+ });
1177
+ //#endregion
1178
+ //#region src/sheet/SheetHeader.vue
1179
+ const _sfc_main$37 = /* @__PURE__ */ defineComponent({
1180
+ __name: "SheetHeader",
1181
+ props: {
1182
+ class: { type: [
1183
+ Boolean,
1184
+ null,
1185
+ String,
1186
+ Object,
1187
+ Array
1188
+ ] },
1189
+ asChild: { type: Boolean },
1190
+ as: {}
1191
+ },
1192
+ setup(__props) {
1193
+ const props = __props;
1194
+ const delegatedProps = reactiveOmit(props, "class");
1195
+ return (_ctx, _cache) => {
1196
+ return openBlock(), createBlock(unref(Primitive), mergeProps({ class: unref(clsx)("arvue-sheet-header", props.class) }, unref(delegatedProps)), {
1197
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1198
+ _: 3
1199
+ }, 16, ["class"]);
1200
+ };
1201
+ }
1202
+ });
1203
+ //#endregion
1204
+ //#region src/sheet/SheetOverlay.vue
1205
+ const _sfc_main$38 = /* @__PURE__ */ defineComponent({
1206
+ __name: "SheetOverlay",
1207
+ props: {
1208
+ class: { type: [
1209
+ Boolean,
1210
+ null,
1211
+ String,
1212
+ Object,
1213
+ Array
1214
+ ] },
1215
+ forceMount: { type: Boolean },
1216
+ asChild: { type: Boolean },
1217
+ as: {}
1218
+ },
1219
+ setup(__props) {
1220
+ const props = __props;
1221
+ const delegatedProps = reactiveOmit(props, "class");
1222
+ return (_ctx, _cache) => {
1223
+ return openBlock(), createBlock(unref(DrawerOverlay), mergeProps({ class: unref(clsx)("arvue-sheet-overlay", props.class) }, unref(delegatedProps)), {
1224
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1225
+ _: 3
1226
+ }, 16, ["class"]);
1227
+ };
1228
+ }
1229
+ });
1230
+ //#endregion
1231
+ //#region src/sheet/SheetTitle.vue
1232
+ const _sfc_main$39 = /* @__PURE__ */ defineComponent({
1233
+ __name: "SheetTitle",
1234
+ props: {
1235
+ class: { type: [
1236
+ Boolean,
1237
+ null,
1238
+ String,
1239
+ Object,
1240
+ Array
1241
+ ] },
1242
+ asChild: { type: Boolean },
1243
+ as: { default: "h3" }
1244
+ },
1245
+ setup(__props) {
1246
+ const props = __props;
1247
+ const delegatedProps = reactiveOmit(props, "class");
1248
+ return (_ctx, _cache) => {
1249
+ return openBlock(), createBlock(unref(DrawerTitle), mergeProps({ class: unref(clsx)("arvue-sheet-title", props.class) }, unref(delegatedProps)), {
1250
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1251
+ _: 3
1252
+ }, 16, ["class"]);
1253
+ };
1254
+ }
1255
+ });
1256
+ //#endregion
1257
+ //#region src/sheet/SheetTrigger.vue
1258
+ const _sfc_main$40 = /* @__PURE__ */ defineComponent({
1259
+ __name: "SheetTrigger",
1260
+ props: {
1261
+ asChild: { type: Boolean },
1262
+ as: {}
1263
+ },
1264
+ setup(__props) {
1265
+ const props = __props;
1266
+ return (_ctx, _cache) => {
1267
+ return openBlock(), createBlock(unref(DrawerTrigger), normalizeProps(guardReactiveProps(props)), {
1268
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
1269
+ _: 3
1270
+ }, 16);
1271
+ };
1272
+ }
1273
+ });
1274
+ //#endregion
1275
+ export { _sfc_main as Autocomplete, _sfc_main$1 as AutocompleteAnchor, _sfc_main$2 as AutocompleteArrow, _sfc_main$3 as AutocompleteCancel, _sfc_main$4 as AutocompleteContent, _sfc_main$5 as AutocompleteEmpty, _sfc_main$6 as AutocompleteGroup, _sfc_main$7 as AutocompleteInput, _sfc_main$8 as AutocompleteItem, _sfc_main$9 as AutocompleteLabel, _sfc_main$10 as AutocompletePortal, _sfc_main$11 as AutocompleteSeparator, _sfc_main$12 as AutocompleteTrigger, _sfc_main$13 as AutocompleteViewport, _sfc_main$14 as Dialog, _sfc_main$15 as DialogClose, _sfc_main$16 as DialogContent, _sfc_main$17 as DialogDescription, _sfc_main$18 as DialogFooter, _sfc_main$19 as DialogHeader, _sfc_main$20 as DialogOverlay, _sfc_main$21 as DialogTitle, _sfc_main$22 as DialogTrigger, _sfc_main$23 as Drawer, _sfc_main$24 as DrawerClose, _sfc_main$25 as DrawerContent, _sfc_main$26 as DrawerDescription, _sfc_main$27 as DrawerFooter, _sfc_main$28 as DrawerHeader, _sfc_main$29 as DrawerOverlay, _sfc_main$30 as DrawerTitle, _sfc_main$31 as DrawerTrigger, _sfc_main$32 as Sheet, _sfc_main$33 as SheetClose, _sfc_main$34 as SheetContent, _sfc_main$35 as SheetDescription, _sfc_main$36 as SheetFooter, _sfc_main$37 as SheetHeader, _sfc_main$38 as SheetOverlay, _sfc_main$39 as SheetTitle, _sfc_main$40 as SheetTrigger };
598
1276
 
599
1277
  //# sourceMappingURL=index.js.map