arvue-ui 0.3.3 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/autocomplete/autocompleteInput.js +3 -3
  3. package/dist/autocomplete/autocompleteInput.js.map +1 -1
  4. package/dist/combobox/combobox.js +56 -0
  5. package/dist/combobox/combobox.js.map +1 -0
  6. package/dist/combobox/comboboxAnchor.js +24 -0
  7. package/dist/combobox/comboboxAnchor.js.map +1 -0
  8. package/dist/combobox/comboboxCancel.js +23 -0
  9. package/dist/combobox/comboboxCancel.js.map +1 -0
  10. package/dist/combobox/comboboxContent.js +73 -0
  11. package/dist/combobox/comboboxContent.js.map +1 -0
  12. package/dist/combobox/comboboxEmpty.js +33 -0
  13. package/dist/combobox/comboboxEmpty.js.map +1 -0
  14. package/dist/combobox/comboboxGroup.js +23 -0
  15. package/dist/combobox/comboboxGroup.js.map +1 -0
  16. package/dist/combobox/comboboxInput.js +67 -0
  17. package/dist/combobox/comboboxInput.js.map +1 -0
  18. package/dist/combobox/comboboxItem.js +36 -0
  19. package/dist/combobox/comboboxItem.js.map +1 -0
  20. package/dist/combobox/comboboxLabel.js +34 -0
  21. package/dist/combobox/comboboxLabel.js.map +1 -0
  22. package/dist/combobox/comboboxPortal.js +25 -0
  23. package/dist/combobox/comboboxPortal.js.map +1 -0
  24. package/dist/combobox/comboboxSeparator.js +33 -0
  25. package/dist/combobox/comboboxSeparator.js.map +1 -0
  26. package/dist/combobox/comboboxTrigger.js +24 -0
  27. package/dist/combobox/comboboxTrigger.js.map +1 -0
  28. package/dist/combobox/comboboxViewport.js +24 -0
  29. package/dist/combobox/comboboxViewport.js.map +1 -0
  30. package/dist/dialog/dialogDescription.js.map +1 -1
  31. package/dist/dialog/dialogFooter.js.map +1 -1
  32. package/dist/dialog/dialogHeader.js.map +1 -1
  33. package/dist/dialog/dialogTitle.js.map +1 -1
  34. package/dist/drawer/drawerDescription.js.map +1 -1
  35. package/dist/drawer/drawerFooter.js.map +1 -1
  36. package/dist/drawer/drawerHeader.js.map +1 -1
  37. package/dist/drawer/drawerTitle.js.map +1 -1
  38. package/dist/index.d.ts +331 -113
  39. package/dist/index.d.ts.map +1 -1
  40. package/dist/index.js +57 -1277
  41. package/dist/index.js.map +1 -1
  42. package/dist/sheet/sheetContent.js.map +1 -1
  43. package/dist/sheet/sheetDescription.js.map +1 -1
  44. package/dist/sheet/sheetFooter.js.map +1 -1
  45. package/dist/sheet/sheetHeader.js.map +1 -1
  46. package/dist/sheet/sheetOverlay.js.map +1 -1
  47. package/dist/sheet/sheetTitle.js.map +1 -1
  48. package/dist/sonner/sonner.js +51 -0
  49. package/dist/sonner/sonner.js.map +1 -0
  50. package/dist/style.css +30 -14
  51. package/package.json +3 -2
  52. package/src/autocomplete/AutocompleteInput.vue +1 -1
  53. package/src/autocomplete/autocomplete-input.css +5 -0
  54. package/src/autocomplete/autocomplete.css +1 -0
  55. package/src/combobox/Combobox.vue +36 -0
  56. package/src/combobox/ComboboxAnchor.vue +17 -0
  57. package/src/combobox/ComboboxCancel.vue +17 -0
  58. package/src/combobox/ComboboxContent.vue +46 -0
  59. package/src/combobox/ComboboxEmpty.vue +31 -0
  60. package/src/combobox/ComboboxGroup.vue +17 -0
  61. package/src/combobox/ComboboxInput.vue +69 -0
  62. package/src/combobox/ComboboxItem.vue +35 -0
  63. package/src/combobox/ComboboxLabel.vue +31 -0
  64. package/src/combobox/ComboboxPortal.vue +17 -0
  65. package/src/combobox/ComboboxSeparator.vue +31 -0
  66. package/src/combobox/ComboboxTrigger.vue +17 -0
  67. package/src/combobox/ComboboxViewport.vue +17 -0
  68. package/src/combobox/combobox-content.css +11 -0
  69. package/src/combobox/combobox-empty.css +7 -0
  70. package/src/combobox/combobox-input.css +10 -0
  71. package/src/combobox/combobox-item.css +14 -0
  72. package/src/combobox/combobox-label.css +6 -0
  73. package/src/combobox/combobox-separator.css +5 -0
  74. package/src/combobox/combobox.css +5 -0
  75. package/src/combobox/index.ts +56 -0
  76. package/src/dialog/DialogDescription.vue +1 -1
  77. package/src/dialog/DialogFooter.vue +1 -1
  78. package/src/dialog/DialogHeader.vue +1 -1
  79. package/src/dialog/DialogTitle.vue +1 -1
  80. package/src/drawer/DrawerDescription.vue +1 -1
  81. package/src/drawer/DrawerFooter.vue +1 -1
  82. package/src/drawer/DrawerHeader.vue +1 -1
  83. package/src/drawer/DrawerTitle.vue +1 -1
  84. package/src/index.ts +2 -0
  85. package/src/sheet/SheetContent.vue +1 -1
  86. package/src/sheet/SheetDescription.vue +1 -1
  87. package/src/sheet/SheetFooter.vue +1 -1
  88. package/src/sheet/SheetHeader.vue +1 -1
  89. package/src/sheet/SheetOverlay.vue +1 -1
  90. package/src/sheet/SheetTitle.vue +1 -1
  91. package/src/sonner/Sonner.vue +47 -0
  92. package/src/sonner/index.ts +5 -0
  93. package/src/sonner/sonner.css +91 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comboboxTrigger.js","names":[],"sources":["../../src/combobox/ComboboxTrigger.vue"],"sourcesContent":["<template>\n <ComboboxTrigger v-bind=\"props\">\n <slot/>\n </ComboboxTrigger>\n</template>\n\n<script lang=\"ts\">\nimport type { ComboboxTriggerProps as RekaComboboxTriggerProps } from 'reka-ui'\n\nexport interface ComboboxTriggerProps extends RekaComboboxTriggerProps {}\n</script>\n\n<script setup lang=\"ts\">\nimport { ComboboxTrigger } from 'reka-ui'\n\nconst props = defineProps<ComboboxTriggerProps>()\n</script>\n"],"mappings":";;;;;;;;;;;EAeA,MAAM,QAAQ;;uBAdV,YAEkB,MAAA,eAAA,GAAA,eAAA,mBAFO,KAAK,CAAA,GAAA;2BACnB,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -0,0 +1,24 @@
1
+ import { createBlock, defineComponent, guardReactiveProps, normalizeProps, openBlock, renderSlot, unref, withCtx } from "vue";
2
+ import { ComboboxViewport } from "reka-ui";
3
+ //#region src/combobox/ComboboxViewport.vue
4
+ const _sfc_main = /* @__PURE__ */ defineComponent({
5
+ __name: "ComboboxViewport",
6
+ props: {
7
+ nonce: {},
8
+ asChild: { type: Boolean },
9
+ as: {}
10
+ },
11
+ setup(__props) {
12
+ const props = __props;
13
+ return (_ctx, _cache) => {
14
+ return openBlock(), createBlock(unref(ComboboxViewport), normalizeProps(guardReactiveProps(props)), {
15
+ default: withCtx(() => [renderSlot(_ctx.$slots, "default")]),
16
+ _: 3
17
+ }, 16);
18
+ };
19
+ }
20
+ });
21
+ //#endregion
22
+ export { _sfc_main };
23
+
24
+ //# sourceMappingURL=comboboxViewport.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"comboboxViewport.js","names":[],"sources":["../../src/combobox/ComboboxViewport.vue"],"sourcesContent":["<template>\n <ComboboxViewport v-bind=\"props\">\n <slot/>\n </ComboboxViewport>\n</template>\n\n<script lang=\"ts\">\nimport type { ComboboxViewportProps as RekaComboboxViewportProps } from 'reka-ui'\n\nexport interface ComboboxViewportProps extends RekaComboboxViewportProps {}\n</script>\n\n<script setup lang=\"ts\">\nimport { ComboboxViewport } from 'reka-ui'\n\nconst props = defineProps<ComboboxViewportProps>()\n</script>\n"],"mappings":";;;;;;;;;;;EAeA,MAAM,QAAQ;;uBAdV,YAEmB,MAAA,gBAAA,GAAA,eAAA,mBAFO,KAAK,CAAA,GAAA;2BACpB,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"dialogDescription.js","names":[],"sources":["../../src/dialog/DialogDescription.vue"],"sourcesContent":["<style>\n@import \"./dialog-description.css\";\n</style>\n\n<template>\n <DialogDescription\n :class=\"clsx('arvue-dialog-description', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogDescription>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogDescriptionProps as RekaDialogDescriptionProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogDescriptionProps extends RekaDialogDescriptionProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogDescription } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DialogDescriptionProps>(), {\n as: 'p',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKoB,MAAA,iBAAA,GALpB,WAKoB,EAJf,OAAO,MAAA,IAAA,EAAI,4BAA6B,MAAM,KAAK,EAAA,GAC5C,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"dialogDescription.js","names":[],"sources":["../../src/dialog/DialogDescription.vue"],"sourcesContent":["<style>\n@import './dialog-description.css';\n</style>\n\n<template>\n <DialogDescription\n :class=\"clsx('arvue-dialog-description', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogDescription>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogDescriptionProps as RekaDialogDescriptionProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogDescriptionProps extends RekaDialogDescriptionProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogDescription } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DialogDescriptionProps>(), {\n as: 'p',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKoB,MAAA,iBAAA,GALpB,WAKoB,EAJf,OAAO,MAAA,IAAA,EAAI,4BAA6B,MAAM,KAAK,EAAA,GAC5C,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"dialogFooter.js","names":[],"sources":["../../src/dialog/DialogFooter.vue"],"sourcesContent":["<style>\n@import \"./dialog-footer.css\";\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-dialog-footer', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogFooterProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DialogFooterProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"dialogFooter.js","names":[],"sources":["../../src/dialog/DialogFooter.vue"],"sourcesContent":["<style>\n@import './dialog-footer.css';\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-dialog-footer', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogFooterProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DialogFooterProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"dialogHeader.js","names":[],"sources":["../../src/dialog/DialogHeader.vue"],"sourcesContent":["<style>\n@import \"./dialog-header.css\";\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-dialog-header', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogHeaderProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DialogHeaderProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"dialogHeader.js","names":[],"sources":["../../src/dialog/DialogHeader.vue"],"sourcesContent":["<style>\n@import './dialog-header.css';\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-dialog-header', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogHeaderProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DialogHeaderProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"dialogTitle.js","names":[],"sources":["../../src/dialog/DialogTitle.vue"],"sourcesContent":["<style>\n@import \"./dialog-title.css\";\n</style>\n\n<template>\n <DialogTitle\n :class=\"clsx('arvue-dialog-title', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogTitle>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogTitleProps as RekaDialogTitleProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogTitleProps extends RekaDialogTitleProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogTitle } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DialogTitleProps>(), {\n as: 'h3',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKc,MAAA,WAAA,GALd,WAKc,EAJT,OAAO,MAAA,IAAA,EAAI,sBAAuB,MAAM,KAAK,EAAA,GACtC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"dialogTitle.js","names":[],"sources":["../../src/dialog/DialogTitle.vue"],"sourcesContent":["<style>\n@import './dialog-title.css';\n</style>\n\n<template>\n <DialogTitle\n :class=\"clsx('arvue-dialog-title', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogTitle>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogTitleProps as RekaDialogTitleProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DialogTitleProps extends RekaDialogTitleProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogTitle } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DialogTitleProps>(), {\n as: 'h3',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKc,MAAA,WAAA,GALd,WAKc,EAJT,OAAO,MAAA,IAAA,EAAI,sBAAuB,MAAM,KAAK,EAAA,GACtC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"drawerDescription.js","names":[],"sources":["../../src/drawer/DrawerDescription.vue"],"sourcesContent":["<style>\n@import \"./drawer-description.css\";\n</style>\n\n<template>\n <DialogDescription\n :class=\"clsx('arvue-drawer-description', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogDescription>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogDescriptionProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerDescriptionProps extends DialogDescriptionProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogDescription } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DrawerDescriptionProps>(), {\n as: 'p',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKoB,MAAA,iBAAA,GALpB,WAKoB,EAJf,OAAO,MAAA,IAAA,EAAI,4BAA6B,MAAM,KAAK,EAAA,GAC5C,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"drawerDescription.js","names":[],"sources":["../../src/drawer/DrawerDescription.vue"],"sourcesContent":["<style>\n@import './drawer-description.css';\n</style>\n\n<template>\n <DialogDescription\n :class=\"clsx('arvue-drawer-description', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogDescription>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogDescriptionProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerDescriptionProps extends DialogDescriptionProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogDescription } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DrawerDescriptionProps>(), {\n as: 'p',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKoB,MAAA,iBAAA,GALpB,WAKoB,EAJf,OAAO,MAAA,IAAA,EAAI,4BAA6B,MAAM,KAAK,EAAA,GAC5C,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"drawerFooter.js","names":[],"sources":["../../src/drawer/DrawerFooter.vue"],"sourcesContent":["<style>\n@import \"./drawer-footer.css\";\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-drawer-footer', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerFooterProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DrawerFooterProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"drawerFooter.js","names":[],"sources":["../../src/drawer/DrawerFooter.vue"],"sourcesContent":["<style>\n@import './drawer-footer.css';\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-drawer-footer', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerFooterProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DrawerFooterProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"drawerHeader.js","names":[],"sources":["../../src/drawer/DrawerHeader.vue"],"sourcesContent":["<style>\n@import \"./drawer-header.css\";\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-drawer-header', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerHeaderProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DrawerHeaderProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"drawerHeader.js","names":[],"sources":["../../src/drawer/DrawerHeader.vue"],"sourcesContent":["<style>\n@import './drawer-header.css';\n</style>\n\n<template>\n <Primitive\n :class=\"clsx('arvue-drawer-header', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </Primitive>\n</template>\n\n<script lang=\"ts\">\nimport type { PrimitiveProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerHeaderProps extends PrimitiveProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { Primitive } from 'reka-ui'\n\nconst props = defineProps<DrawerHeaderProps>()\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAEd,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBAxB9C,YAKY,MAAA,SAAA,GALZ,WAKY,EAJP,OAAO,MAAA,IAAA,EAAI,uBAAwB,MAAM,KAAK,EAAA,GACvC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"drawerTitle.js","names":[],"sources":["../../src/drawer/DrawerTitle.vue"],"sourcesContent":["<style>\n@import \"./drawer-title.css\";\n</style>\n\n<template>\n <DialogTitle\n :class=\"clsx('arvue-drawer-title', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogTitle>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogTitleProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerTitleProps extends DialogTitleProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogTitle } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DrawerTitleProps>(), {\n as: 'h3',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKc,MAAA,WAAA,GALd,WAKc,EAJT,OAAO,MAAA,IAAA,EAAI,sBAAuB,MAAM,KAAK,EAAA,GACtC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}
1
+ {"version":3,"file":"drawerTitle.js","names":[],"sources":["../../src/drawer/DrawerTitle.vue"],"sourcesContent":["<style>\n@import './drawer-title.css';\n</style>\n\n<template>\n <DialogTitle\n :class=\"clsx('arvue-drawer-title', props.class)\"\n v-bind=\"delegatedProps\"\n >\n <slot/>\n </DialogTitle>\n</template>\n\n<script lang=\"ts\">\nimport type { DialogTitleProps } from 'reka-ui'\nimport type { HTMLAttributes } from 'vue'\n\nexport interface DrawerTitleProps extends DialogTitleProps {\n class?: HTMLAttributes['class']\n}\n</script>\n\n<script setup lang=\"ts\">\nimport { reactiveOmit } from '@vueuse/core'\nimport { clsx } from 'clsx'\nimport { DialogTitle } from 'reka-ui'\n\nconst props = withDefaults(defineProps<DrawerTitleProps>(), {\n as: 'h3',\n})\n\nconst delegatedProps = reactiveOmit(props, 'class')\n</script>\n"],"mappings":";;;;;;;;;;;;;;;;;;;EA2BA,MAAM,QAAQ;EAId,MAAM,iBAAiB,aAAa,OAAO,OAAO;;uBA1B9C,YAKc,MAAA,WAAA,GALd,WAKc,EAJT,OAAO,MAAA,IAAA,EAAI,sBAAuB,MAAM,KAAK,EAAA,GACtC,MAAA,cAAA,CAAc,GAAA;2BAEf,CAAP,WAAO,KAAA,QAAA,SAAA,CAAA,CAAA"}