una-nuxt-module 2.1.2 → 2.1.3
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.
- package/.nuxt/unaxt/accordion.ts +4 -0
- package/.nuxt/unaxt/alert-dialog.ts +9 -0
- package/.nuxt/unaxt/alert.ts +23 -0
- package/.nuxt/unaxt/aspect-ratio.ts +1 -0
- package/.nuxt/unaxt/auto-form.ts +15 -0
- package/.nuxt/unaxt/avatar.ts +3 -0
- package/.nuxt/unaxt/badge.ts +25 -0
- package/.nuxt/unaxt/breadcrumb.ts +7 -0
- package/.nuxt/unaxt/calendar.ts +12 -0
- package/.nuxt/unaxt/card.ts +7 -0
- package/.nuxt/unaxt/carousel.ts +10 -0
- package/.nuxt/unaxt/checkbox.ts +1 -0
- package/.nuxt/unaxt/collapsible.ts +3 -0
- package/.nuxt/unaxt/combobox.ts +12 -0
- package/.nuxt/unaxt/command.ts +25 -0
- package/.nuxt/unaxt/context-menu.ts +14 -0
- package/.nuxt/unaxt/dialog.ts +10 -0
- package/.nuxt/unaxt/drawer.ts +9 -0
- package/.nuxt/unaxt/dropdown-menu.ts +16 -0
- package/.nuxt/unaxt/form.ts +7 -0
- package/.nuxt/unaxt/hover-card.ts +3 -0
- package/.nuxt/unaxt/input.ts +1 -0
- package/.nuxt/unaxt/label.ts +1 -0
- package/.nuxt/unaxt/menubar.ts +15 -0
- package/.nuxt/unaxt/navigation-menu.ts +14 -0
- package/.nuxt/unaxt/number-field.ts +5 -0
- package/.nuxt/unaxt/pagination.ts +8 -0
- package/.nuxt/unaxt/pin-input.ts +4 -0
- package/.nuxt/unaxt/popover.ts +4 -0
- package/.nuxt/unaxt/progress.ts +1 -0
- package/.nuxt/unaxt/radio-group.ts +2 -0
- package/.nuxt/unaxt/range-calendar.ts +12 -0
- package/.nuxt/unaxt/resizable.ts +3 -0
- package/.nuxt/unaxt/scroll-area.ts +2 -0
- package/.nuxt/unaxt/select.ts +11 -0
- package/.nuxt/unaxt/separator.ts +1 -0
- package/.nuxt/unaxt/sheet.ts +8 -0
- package/.nuxt/unaxt/sidebar.ts +60 -0
- package/.nuxt/unaxt/skeleton.ts +1 -0
- package/.nuxt/unaxt/slider.ts +1 -0
- package/.nuxt/unaxt/sonner.ts +1 -0
- package/.nuxt/unaxt/stepper.ts +7 -0
- package/.nuxt/unaxt/switch.ts +1 -0
- package/.nuxt/unaxt/table.ts +9 -0
- package/.nuxt/unaxt/tabs.ts +4 -0
- package/.nuxt/unaxt/tags-input.ts +5 -0
- package/.nuxt/unaxt/textarea.ts +1 -0
- package/.nuxt/unaxt/toggle-group.ts +2 -0
- package/.nuxt/unaxt/toggle.ts +27 -0
- package/.nuxt/unaxt/tooltip.ts +4 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/ui/accordion/Accordion.vue +26 -0
- package/dist/runtime/components/ui/accordion/Accordion.vue.d.ts +26 -0
- package/dist/runtime/components/ui/accordion/AccordionContent.vue +24 -0
- package/dist/runtime/components/ui/accordion/AccordionContent.vue.d.ts +31 -0
- package/dist/runtime/components/ui/accordion/AccordionItem.vue +28 -0
- package/dist/runtime/components/ui/accordion/AccordionItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/accordion/AccordionTrigger.vue +37 -0
- package/dist/runtime/components/ui/accordion/AccordionTrigger.vue.d.ts +32 -0
- package/dist/runtime/components/ui/accordion/index.d.ts +4 -0
- package/dist/runtime/components/ui/accordion/index.js +4 -0
- package/dist/runtime/components/ui/alert/Alert.vue +18 -0
- package/dist/runtime/components/ui/alert/Alert.vue.d.ts +33 -0
- package/dist/runtime/components/ui/alert/AlertDescription.vue +20 -0
- package/dist/runtime/components/ui/alert/AlertDescription.vue.d.ts +30 -0
- package/dist/runtime/components/ui/alert/AlertTitle.vue +20 -0
- package/dist/runtime/components/ui/alert/AlertTitle.vue.d.ts +30 -0
- package/dist/runtime/components/ui/alert/index.d.ts +8 -0
- package/dist/runtime/components/ui/alert/index.js +18 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialog.vue +15 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialog.vue.d.ts +26 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogAction.vue +21 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogAction.vue.d.ts +31 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogCancel.vue +23 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogCancel.vue.d.ts +31 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.vue +42 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogDescription.vue +23 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogDescription.vue.d.ts +31 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogFooter.vue +17 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogHeader.vue +15 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogTitle.vue +21 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogTitle.vue.d.ts +31 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogTrigger.vue +13 -0
- package/dist/runtime/components/ui/alert-dialog/AlertDialogTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/alert-dialog/index.d.ts +9 -0
- package/dist/runtime/components/ui/alert-dialog/index.js +9 -0
- package/dist/runtime/components/ui/aspect-ratio/AspectRatio.vue +17 -0
- package/dist/runtime/components/ui/aspect-ratio/AspectRatio.vue.d.ts +26 -0
- package/dist/runtime/components/ui/aspect-ratio/index.d.ts +1 -0
- package/dist/runtime/components/ui/aspect-ratio/index.js +1 -0
- package/dist/runtime/components/ui/auto-form/AutoForm.vue +90 -0
- package/dist/runtime/components/ui/auto-form/AutoForm.vue.d.ts +35 -0
- package/dist/runtime/components/ui/auto-form/AutoFormField.vue +35 -0
- package/dist/runtime/components/ui/auto-form/AutoFormField.vue.d.ts +23 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.vue +92 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldArray.vue.d.ts +0 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldBoolean.vue +44 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldBoolean.vue.d.ts +26 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldDate.vue +82 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldDate.vue.d.ts +26 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldEnum.vue +52 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldEnum.vue.d.ts +30 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldFile.vue +77 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldFile.vue.d.ts +26 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldInput.vue +40 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldInput.vue.d.ts +26 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldNumber.vue +35 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldNumber.vue.d.ts +26 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.vue +69 -0
- package/dist/runtime/components/ui/auto-form/AutoFormFieldObject.vue.d.ts +0 -0
- package/dist/runtime/components/ui/auto-form/AutoFormLabel.vue +13 -0
- package/dist/runtime/components/ui/auto-form/AutoFormLabel.vue.d.ts +29 -0
- package/dist/runtime/components/ui/auto-form/constant.d.ts +9 -0
- package/dist/runtime/components/ui/auto-form/constant.js +31 -0
- package/dist/runtime/components/ui/auto-form/dependencies.d.ts +33 -0
- package/dist/runtime/components/ui/auto-form/dependencies.js +70 -0
- package/dist/runtime/components/ui/auto-form/index.d.ts +13 -0
- package/dist/runtime/components/ui/auto-form/index.js +12 -0
- package/dist/runtime/components/ui/auto-form/interface.d.ts +67 -0
- package/dist/runtime/components/ui/auto-form/interface.js +7 -0
- package/dist/runtime/components/ui/auto-form/utils.d.ts +48 -0
- package/dist/runtime/components/ui/auto-form/utils.js +103 -0
- package/dist/runtime/components/ui/avatar/Avatar.vue +21 -0
- package/dist/runtime/components/ui/avatar/Avatar.vue.d.ts +30 -0
- package/dist/runtime/components/ui/avatar/AvatarFallback.vue +27 -0
- package/dist/runtime/components/ui/avatar/AvatarFallback.vue.d.ts +31 -0
- package/dist/runtime/components/ui/avatar/AvatarImage.vue +20 -0
- package/dist/runtime/components/ui/avatar/AvatarImage.vue.d.ts +26 -0
- package/dist/runtime/components/ui/avatar/index.d.ts +3 -0
- package/dist/runtime/components/ui/avatar/index.js +3 -0
- package/dist/runtime/components/ui/badge/Badge.vue +23 -0
- package/dist/runtime/components/ui/badge/Badge.vue.d.ts +34 -0
- package/dist/runtime/components/ui/badge/index.d.ts +6 -0
- package/dist/runtime/components/ui/badge/index.js +18 -0
- package/dist/runtime/components/ui/breadcrumb/Breadcrumb.vue +15 -0
- package/dist/runtime/components/ui/breadcrumb/Breadcrumb.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbEllipsis.vue +21 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbEllipsis.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbItem.vue +15 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbItem.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbLink.vue +20 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbLink.vue.d.ts +45 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbList.vue +20 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbList.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbPage.vue +18 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbPage.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbSeparator.vue +20 -0
- package/dist/runtime/components/ui/breadcrumb/BreadcrumbSeparator.vue.d.ts +30 -0
- package/dist/runtime/components/ui/breadcrumb/index.d.ts +7 -0
- package/dist/runtime/components/ui/breadcrumb/index.js +7 -0
- package/dist/runtime/components/ui/calendar/Calendar.vue +98 -0
- package/dist/runtime/components/ui/calendar/Calendar.vue.d.ts +15 -0
- package/dist/runtime/components/ui/calendar/CalendarCell.vue +28 -0
- package/dist/runtime/components/ui/calendar/CalendarCell.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarCellTrigger.vue +43 -0
- package/dist/runtime/components/ui/calendar/CalendarCellTrigger.vue.d.ts +45 -0
- package/dist/runtime/components/ui/calendar/CalendarGrid.vue +22 -0
- package/dist/runtime/components/ui/calendar/CalendarGrid.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarGridBody.vue +16 -0
- package/dist/runtime/components/ui/calendar/CalendarGridBody.vue.d.ts +26 -0
- package/dist/runtime/components/ui/calendar/CalendarGridHead.vue +17 -0
- package/dist/runtime/components/ui/calendar/CalendarGridHead.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarGridRow.vue +25 -0
- package/dist/runtime/components/ui/calendar/CalendarGridRow.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarHeadCell.vue +30 -0
- package/dist/runtime/components/ui/calendar/CalendarHeadCell.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarHeader.vue +27 -0
- package/dist/runtime/components/ui/calendar/CalendarHeader.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarHeading.vue +29 -0
- package/dist/runtime/components/ui/calendar/CalendarHeading.vue.d.ts +37 -0
- package/dist/runtime/components/ui/calendar/CalendarNextButton.vue +34 -0
- package/dist/runtime/components/ui/calendar/CalendarNextButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/CalendarPrevButton.vue +34 -0
- package/dist/runtime/components/ui/calendar/CalendarPrevButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/calendar/index.d.ts +12 -0
- package/dist/runtime/components/ui/calendar/index.js +12 -0
- package/dist/runtime/components/ui/card/Card.vue +20 -0
- package/dist/runtime/components/ui/card/Card.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardAction.vue +20 -0
- package/dist/runtime/components/ui/card/CardAction.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardContent.vue +12 -0
- package/dist/runtime/components/ui/card/CardContent.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardDescription.vue +15 -0
- package/dist/runtime/components/ui/card/CardDescription.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardFooter.vue +15 -0
- package/dist/runtime/components/ui/card/CardFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardHeader.vue +20 -0
- package/dist/runtime/components/ui/card/CardHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/CardTitle.vue +15 -0
- package/dist/runtime/components/ui/card/CardTitle.vue.d.ts +30 -0
- package/dist/runtime/components/ui/card/index.d.ts +7 -0
- package/dist/runtime/components/ui/card/index.js +7 -0
- package/dist/runtime/components/ui/carousel/Carousel.vue +63 -0
- package/dist/runtime/components/ui/carousel/Carousel.vue.d.ts +0 -0
- package/dist/runtime/components/ui/carousel/CarouselContent.vue +28 -0
- package/dist/runtime/components/ui/carousel/CarouselContent.vue.d.ts +28 -0
- package/dist/runtime/components/ui/carousel/CarouselItem.vue +25 -0
- package/dist/runtime/components/ui/carousel/CarouselItem.vue.d.ts +26 -0
- package/dist/runtime/components/ui/carousel/CarouselNext.vue +36 -0
- package/dist/runtime/components/ui/carousel/CarouselNext.vue.d.ts +50 -0
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue +36 -0
- package/dist/runtime/components/ui/carousel/CarouselPrevious.vue.d.ts +50 -0
- package/dist/runtime/components/ui/carousel/index.d.ts +7 -0
- package/dist/runtime/components/ui/carousel/index.js +6 -0
- package/dist/runtime/components/ui/carousel/interface.d.ts +20 -0
- package/dist/runtime/components/ui/carousel/interface.js +0 -0
- package/dist/runtime/components/ui/carousel/useCarousel.d.ts +0 -0
- package/dist/runtime/components/ui/carousel/useCarousel.js +43 -0
- package/dist/runtime/components/ui/checkbox/Checkbox.vue +43 -0
- package/dist/runtime/components/ui/checkbox/Checkbox.vue.d.ts +29 -0
- package/dist/runtime/components/ui/checkbox/index.d.ts +1 -0
- package/dist/runtime/components/ui/checkbox/index.js +1 -0
- package/dist/runtime/components/ui/collapsible/Collapsible.vue +23 -0
- package/dist/runtime/components/ui/collapsible/Collapsible.vue.d.ts +28 -0
- package/dist/runtime/components/ui/collapsible/CollapsibleContent.vue +17 -0
- package/dist/runtime/components/ui/collapsible/CollapsibleContent.vue.d.ts +26 -0
- package/dist/runtime/components/ui/collapsible/CollapsibleTrigger.vue +16 -0
- package/dist/runtime/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/collapsible/index.d.ts +3 -0
- package/dist/runtime/components/ui/collapsible/index.js +3 -0
- package/dist/runtime/components/ui/combobox/Combobox.vue +32 -0
- package/dist/runtime/components/ui/combobox/Combobox.vue.d.ts +26 -0
- package/dist/runtime/components/ui/combobox/ComboboxAnchor.vue +23 -0
- package/dist/runtime/components/ui/combobox/ComboboxAnchor.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxEmpty.vue +21 -0
- package/dist/runtime/components/ui/combobox/ComboboxEmpty.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxGroup.vue +28 -0
- package/dist/runtime/components/ui/combobox/ComboboxGroup.vue.d.ts +33 -0
- package/dist/runtime/components/ui/combobox/ComboboxInput.vue +45 -0
- package/dist/runtime/components/ui/combobox/ComboboxInput.vue.d.ts +29 -0
- package/dist/runtime/components/ui/combobox/ComboboxItem.vue +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/combobox/ComboboxItemIndicator.vue +22 -0
- package/dist/runtime/components/ui/combobox/ComboboxItemIndicator.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxList.vue +49 -0
- package/dist/runtime/components/ui/combobox/ComboboxList.vue.d.ts +45 -0
- package/dist/runtime/components/ui/combobox/ComboboxSeparator.vue +21 -0
- package/dist/runtime/components/ui/combobox/ComboboxSeparator.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxTrigger.vue +24 -0
- package/dist/runtime/components/ui/combobox/ComboboxTrigger.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/ComboboxViewport.vue +28 -0
- package/dist/runtime/components/ui/combobox/ComboboxViewport.vue.d.ts +31 -0
- package/dist/runtime/components/ui/combobox/index.d.ts +11 -0
- package/dist/runtime/components/ui/combobox/index.js +11 -0
- package/dist/runtime/components/ui/command/Command.vue +91 -0
- package/dist/runtime/components/ui/command/Command.vue.d.ts +41 -0
- package/dist/runtime/components/ui/command/CommandDialog.vue +28 -0
- package/dist/runtime/components/ui/command/CommandDialog.vue.d.ts +43 -0
- package/dist/runtime/components/ui/command/CommandEmpty.vue +28 -0
- package/dist/runtime/components/ui/command/CommandEmpty.vue.d.ts +31 -0
- package/dist/runtime/components/ui/command/CommandGroup.vue +44 -0
- package/dist/runtime/components/ui/command/CommandGroup.vue.d.ts +33 -0
- package/dist/runtime/components/ui/command/CommandInput.vue +45 -0
- package/dist/runtime/components/ui/command/CommandInput.vue.d.ts +17 -0
- package/dist/runtime/components/ui/command/CommandItem.vue +79 -0
- package/dist/runtime/components/ui/command/CommandItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/command/CommandList.vue +29 -0
- package/dist/runtime/components/ui/command/CommandList.vue.d.ts +31 -0
- package/dist/runtime/components/ui/command/CommandSeparator.vue +23 -0
- package/dist/runtime/components/ui/command/CommandSeparator.vue.d.ts +31 -0
- package/dist/runtime/components/ui/command/CommandShortcut.vue +17 -0
- package/dist/runtime/components/ui/command/CommandShortcut.vue.d.ts +30 -0
- package/dist/runtime/components/ui/command/index.d.ts +90 -0
- package/dist/runtime/components/ui/command/index.js +12 -0
- package/dist/runtime/components/ui/context-menu/ContextMenu.vue +18 -0
- package/dist/runtime/components/ui/context-menu/ContextMenu.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuCheckboxItem.vue +43 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuCheckboxItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuContent.vue +46 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuGroup.vue +16 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuItem.vue +37 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuItem.vue.d.ts +43 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuLabel.vue +28 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuLabel.vue.d.ts +33 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuPortal.vue +18 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuPortal.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioGroup.vue +22 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioItem.vue +43 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuRadioItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSeparator.vue +19 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSeparator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuShortcut.vue +17 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuShortcut.vue.d.ts +30 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSub.vue +21 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSub.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSubContent.vue +46 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSubContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSubTrigger.vue +36 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuSubTrigger.vue.d.ts +33 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuTrigger.vue +18 -0
- package/dist/runtime/components/ui/context-menu/ContextMenuTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/context-menu/index.d.ts +14 -0
- package/dist/runtime/components/ui/context-menu/index.js +14 -0
- package/dist/runtime/components/ui/dialog/Dialog.vue +19 -0
- package/dist/runtime/components/ui/dialog/Dialog.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dialog/DialogClose.vue +16 -0
- package/dist/runtime/components/ui/dialog/DialogClose.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dialog/DialogContent.vue +48 -0
- package/dist/runtime/components/ui/dialog/DialogContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/dialog/DialogDescription.vue +25 -0
- package/dist/runtime/components/ui/dialog/DialogDescription.vue.d.ts +31 -0
- package/dist/runtime/components/ui/dialog/DialogFooter.vue +17 -0
- package/dist/runtime/components/ui/dialog/DialogFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/dialog/DialogHeader.vue +15 -0
- package/dist/runtime/components/ui/dialog/DialogHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/dialog/DialogOverlay.vue +27 -0
- package/dist/runtime/components/ui/dialog/DialogOverlay.vue.d.ts +31 -0
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue +57 -0
- package/dist/runtime/components/ui/dialog/DialogScrollContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/dialog/DialogTitle.vue +22 -0
- package/dist/runtime/components/ui/dialog/DialogTitle.vue.d.ts +31 -0
- package/dist/runtime/components/ui/dialog/DialogTrigger.vue +16 -0
- package/dist/runtime/components/ui/dialog/DialogTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dialog/index.d.ts +10 -0
- package/dist/runtime/components/ui/dialog/index.js +10 -0
- package/dist/runtime/components/ui/drawer/Drawer.vue +34 -0
- package/dist/runtime/components/ui/drawer/Drawer.vue.d.ts +38 -0
- package/dist/runtime/components/ui/drawer/DrawerClose.vue +16 -0
- package/dist/runtime/components/ui/drawer/DrawerClose.vue.d.ts +26 -0
- package/dist/runtime/components/ui/drawer/DrawerContent.vue +41 -0
- package/dist/runtime/components/ui/drawer/DrawerContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/drawer/DrawerDescription.vue +21 -0
- package/dist/runtime/components/ui/drawer/DrawerDescription.vue.d.ts +31 -0
- package/dist/runtime/components/ui/drawer/DrawerFooter.vue +15 -0
- package/dist/runtime/components/ui/drawer/DrawerFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/drawer/DrawerHeader.vue +15 -0
- package/dist/runtime/components/ui/drawer/DrawerHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/drawer/DrawerOverlay.vue +25 -0
- package/dist/runtime/components/ui/drawer/DrawerOverlay.vue.d.ts +17 -0
- package/dist/runtime/components/ui/drawer/DrawerTitle.vue +21 -0
- package/dist/runtime/components/ui/drawer/DrawerTitle.vue.d.ts +31 -0
- package/dist/runtime/components/ui/drawer/DrawerTrigger.vue +16 -0
- package/dist/runtime/components/ui/drawer/DrawerTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/drawer/index.d.ts +9 -0
- package/dist/runtime/components/ui/drawer/index.js +9 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenu.vue +20 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue +43 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue +51 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +41 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuGroup.vue +16 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue +36 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +49 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuLabel.vue +29 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +33 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue +22 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.vue +43 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSeparator.vue +21 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuShortcut.vue +17 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +30 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSub.vue +18 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.vue +46 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue +35 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +33 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuTrigger.vue +18 -0
- package/dist/runtime/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/dropdown-menu/index.d.ts +15 -0
- package/dist/runtime/components/ui/dropdown-menu/index.js +15 -0
- package/dist/runtime/components/ui/form/FormControl.vue +16 -0
- package/dist/runtime/components/ui/form/FormControl.vue.d.ts +16 -0
- package/dist/runtime/components/ui/form/FormDescription.vue +18 -0
- package/dist/runtime/components/ui/form/FormDescription.vue.d.ts +30 -0
- package/dist/runtime/components/ui/form/FormItem.vue +17 -0
- package/dist/runtime/components/ui/form/FormItem.vue.d.ts +30 -0
- package/dist/runtime/components/ui/form/FormLabel.vue +23 -0
- package/dist/runtime/components/ui/form/FormLabel.vue.d.ts +31 -0
- package/dist/runtime/components/ui/form/FormMessage.vue +20 -0
- package/dist/runtime/components/ui/form/FormMessage.vue.d.ts +16 -0
- package/dist/runtime/components/ui/form/index.d.ts +7 -0
- package/dist/runtime/components/ui/form/index.js +7 -0
- package/dist/runtime/components/ui/form/injectionKeys.d.ts +2 -0
- package/dist/runtime/components/ui/form/injectionKeys.js +1 -0
- package/dist/runtime/components/ui/form/useFormField.d.ts +11 -0
- package/dist/runtime/components/ui/form/useFormField.js +25 -0
- package/dist/runtime/components/ui/hover-card/HoverCard.vue +20 -0
- package/dist/runtime/components/ui/hover-card/HoverCard.vue.d.ts +26 -0
- package/dist/runtime/components/ui/hover-card/HoverCardContent.vue +49 -0
- package/dist/runtime/components/ui/hover-card/HoverCardContent.vue.d.ts +45 -0
- package/dist/runtime/components/ui/hover-card/HoverCardTrigger.vue +17 -0
- package/dist/runtime/components/ui/hover-card/HoverCardTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/hover-card/index.d.ts +3 -0
- package/dist/runtime/components/ui/hover-card/index.js +3 -0
- package/dist/runtime/components/ui/input/Input.vue +29 -0
- package/dist/runtime/components/ui/input/Input.vue.d.ts +16 -0
- package/dist/runtime/components/ui/input/index.d.ts +1 -0
- package/dist/runtime/components/ui/input/index.js +1 -0
- package/dist/runtime/components/ui/label/Label.vue +27 -0
- package/dist/runtime/components/ui/label/Label.vue.d.ts +31 -0
- package/dist/runtime/components/ui/label/index.d.ts +1 -0
- package/dist/runtime/components/ui/label/index.js +1 -0
- package/dist/runtime/components/ui/menubar/Menubar.vue +33 -0
- package/dist/runtime/components/ui/menubar/Menubar.vue.d.ts +29 -0
- package/dist/runtime/components/ui/menubar/MenubarCheckboxItem.vue +43 -0
- package/dist/runtime/components/ui/menubar/MenubarCheckboxItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/menubar/MenubarContent.vue +50 -0
- package/dist/runtime/components/ui/menubar/MenubarContent.vue.d.ts +51 -0
- package/dist/runtime/components/ui/menubar/MenubarGroup.vue +16 -0
- package/dist/runtime/components/ui/menubar/MenubarGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/menubar/MenubarItem.vue +37 -0
- package/dist/runtime/components/ui/menubar/MenubarItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/menubar/MenubarLabel.vue +24 -0
- package/dist/runtime/components/ui/menubar/MenubarLabel.vue.d.ts +33 -0
- package/dist/runtime/components/ui/menubar/MenubarMenu.vue +15 -0
- package/dist/runtime/components/ui/menubar/MenubarMenu.vue.d.ts +26 -0
- package/dist/runtime/components/ui/menubar/MenubarRadioGroup.vue +22 -0
- package/dist/runtime/components/ui/menubar/MenubarRadioGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/menubar/MenubarRadioItem.vue +43 -0
- package/dist/runtime/components/ui/menubar/MenubarRadioItem.vue.d.ts +29 -0
- package/dist/runtime/components/ui/menubar/MenubarSeparator.vue +23 -0
- package/dist/runtime/components/ui/menubar/MenubarSeparator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/menubar/MenubarShortcut.vue +17 -0
- package/dist/runtime/components/ui/menubar/MenubarShortcut.vue.d.ts +30 -0
- package/dist/runtime/components/ui/menubar/MenubarSub.vue +18 -0
- package/dist/runtime/components/ui/menubar/MenubarSub.vue.d.ts +29 -0
- package/dist/runtime/components/ui/menubar/MenubarSubContent.vue +49 -0
- package/dist/runtime/components/ui/menubar/MenubarSubContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/menubar/MenubarSubTrigger.vue +36 -0
- package/dist/runtime/components/ui/menubar/MenubarSubTrigger.vue.d.ts +33 -0
- package/dist/runtime/components/ui/menubar/MenubarTrigger.vue +31 -0
- package/dist/runtime/components/ui/menubar/MenubarTrigger.vue.d.ts +31 -0
- package/dist/runtime/components/ui/menubar/index.d.ts +15 -0
- package/dist/runtime/components/ui/menubar/index.js +15 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenu.vue +45 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenu.vue.d.ts +42 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuContent.vue +34 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuContent.vue.d.ts +29 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuIndicator.vue +33 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuIndicator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuItem.vue +22 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuLink.vue +32 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuLink.vue.d.ts +29 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuList.vue +30 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuList.vue.d.ts +31 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuTrigger.vue +32 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuTrigger.vue.d.ts +31 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuViewport.vue +32 -0
- package/dist/runtime/components/ui/navigation-menu/NavigationMenuViewport.vue.d.ts +17 -0
- package/dist/runtime/components/ui/navigation-menu/index.d.ts +9 -0
- package/dist/runtime/components/ui/navigation-menu/index.js +12 -0
- package/dist/runtime/components/ui/number-field/NumberField.vue +33 -0
- package/dist/runtime/components/ui/number-field/NumberField.vue.d.ts +29 -0
- package/dist/runtime/components/ui/number-field/NumberFieldContent.vue +19 -0
- package/dist/runtime/components/ui/number-field/NumberFieldContent.vue.d.ts +30 -0
- package/dist/runtime/components/ui/number-field/NumberFieldDecrement.vue +31 -0
- package/dist/runtime/components/ui/number-field/NumberFieldDecrement.vue.d.ts +31 -0
- package/dist/runtime/components/ui/number-field/NumberFieldIncrement.vue +31 -0
- package/dist/runtime/components/ui/number-field/NumberFieldIncrement.vue.d.ts +31 -0
- package/dist/runtime/components/ui/number-field/NumberFieldInput.vue +19 -0
- package/dist/runtime/components/ui/number-field/NumberFieldInput.vue.d.ts +16 -0
- package/dist/runtime/components/ui/number-field/index.d.ts +5 -0
- package/dist/runtime/components/ui/number-field/index.js +5 -0
- package/dist/runtime/components/ui/pagination/Pagination.vue +34 -0
- package/dist/runtime/components/ui/pagination/Pagination.vue.d.ts +29 -0
- package/dist/runtime/components/ui/pagination/PaginationContent.vue +22 -0
- package/dist/runtime/components/ui/pagination/PaginationContent.vue.d.ts +31 -0
- package/dist/runtime/components/ui/pagination/PaginationEllipsis.vue +25 -0
- package/dist/runtime/components/ui/pagination/PaginationEllipsis.vue.d.ts +31 -0
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue +36 -0
- package/dist/runtime/components/ui/pagination/PaginationFirst.vue.d.ts +48 -0
- package/dist/runtime/components/ui/pagination/PaginationItem.vue +35 -0
- package/dist/runtime/components/ui/pagination/PaginationItem.vue.d.ts +50 -0
- package/dist/runtime/components/ui/pagination/PaginationLast.vue +36 -0
- package/dist/runtime/components/ui/pagination/PaginationLast.vue.d.ts +48 -0
- package/dist/runtime/components/ui/pagination/PaginationNext.vue +36 -0
- package/dist/runtime/components/ui/pagination/PaginationNext.vue.d.ts +48 -0
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue +36 -0
- package/dist/runtime/components/ui/pagination/PaginationPrevious.vue.d.ts +48 -0
- package/dist/runtime/components/ui/pagination/index.d.ts +8 -0
- package/dist/runtime/components/ui/pagination/index.js +8 -0
- package/dist/runtime/components/ui/pin-input/PinInput.vue +42 -0
- package/dist/runtime/components/ui/pin-input/PinInput.vue.d.ts +41 -0
- package/dist/runtime/components/ui/pin-input/PinInputGroup.vue +22 -0
- package/dist/runtime/components/ui/pin-input/PinInputGroup.vue.d.ts +31 -0
- package/dist/runtime/components/ui/pin-input/PinInputSeparator.vue +20 -0
- package/dist/runtime/components/ui/pin-input/PinInputSeparator.vue.d.ts +26 -0
- package/dist/runtime/components/ui/pin-input/PinInputSlot.vue +30 -0
- package/dist/runtime/components/ui/pin-input/PinInputSlot.vue.d.ts +17 -0
- package/dist/runtime/components/ui/pin-input/index.d.ts +4 -0
- package/dist/runtime/components/ui/pin-input/index.js +4 -0
- package/dist/runtime/components/ui/popover/Popover.vue +19 -0
- package/dist/runtime/components/ui/popover/Popover.vue.d.ts +26 -0
- package/dist/runtime/components/ui/popover/PopoverAnchor.vue +17 -0
- package/dist/runtime/components/ui/popover/PopoverAnchor.vue.d.ts +26 -0
- package/dist/runtime/components/ui/popover/PopoverContent.vue +54 -0
- package/dist/runtime/components/ui/popover/PopoverContent.vue.d.ts +43 -0
- package/dist/runtime/components/ui/popover/PopoverTrigger.vue +16 -0
- package/dist/runtime/components/ui/popover/PopoverTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/popover/index.d.ts +4 -0
- package/dist/runtime/components/ui/popover/index.js +4 -0
- package/dist/runtime/components/ui/progress/Progress.vue +37 -0
- package/dist/runtime/components/ui/progress/Progress.vue.d.ts +31 -0
- package/dist/runtime/components/ui/progress/index.d.ts +1 -0
- package/dist/runtime/components/ui/progress/index.js +1 -0
- package/dist/runtime/components/ui/radio-group/RadioGroup.vue +34 -0
- package/dist/runtime/components/ui/radio-group/RadioGroup.vue.d.ts +29 -0
- package/dist/runtime/components/ui/radio-group/RadioGroupItem.vue +40 -0
- package/dist/runtime/components/ui/radio-group/RadioGroupItem.vue.d.ts +17 -0
- package/dist/runtime/components/ui/radio-group/index.d.ts +2 -0
- package/dist/runtime/components/ui/radio-group/index.js +2 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendar.vue +101 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendar.vue.d.ts +15 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCell.vue +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCell.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCellTrigger.vue +45 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarCellTrigger.vue.d.ts +45 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGrid.vue +25 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGrid.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridBody.vue +16 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridBody.vue.d.ts +26 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridHead.vue +16 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridHead.vue.d.ts +26 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridRow.vue +25 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarGridRow.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeadCell.vue +30 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeadCell.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeader.vue +27 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeader.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeading.vue +29 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarHeading.vue.d.ts +37 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarNextButton.vue +37 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarNextButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarPrevButton.vue +37 -0
- package/dist/runtime/components/ui/range-calendar/RangeCalendarPrevButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/range-calendar/index.d.ts +12 -0
- package/dist/runtime/components/ui/range-calendar/index.js +12 -0
- package/dist/runtime/components/ui/resizable/ResizableHandle.vue +43 -0
- package/dist/runtime/components/ui/resizable/ResizableHandle.vue.d.ts +16 -0
- package/dist/runtime/components/ui/resizable/ResizablePanel.vue +25 -0
- package/dist/runtime/components/ui/resizable/ResizablePanel.vue.d.ts +26 -0
- package/dist/runtime/components/ui/resizable/ResizablePanelGroup.vue +33 -0
- package/dist/runtime/components/ui/resizable/ResizablePanelGroup.vue.d.ts +29 -0
- package/dist/runtime/components/ui/resizable/index.d.ts +3 -0
- package/dist/runtime/components/ui/resizable/index.js +3 -0
- package/dist/runtime/components/ui/scroll-area/ScrollArea.vue +36 -0
- package/dist/runtime/components/ui/scroll-area/ScrollArea.vue.d.ts +31 -0
- package/dist/runtime/components/ui/scroll-area/ScrollBar.vue +36 -0
- package/dist/runtime/components/ui/scroll-area/ScrollBar.vue.d.ts +31 -0
- package/dist/runtime/components/ui/scroll-area/index.d.ts +2 -0
- package/dist/runtime/components/ui/scroll-area/index.js +2 -0
- package/dist/runtime/components/ui/select/Select.vue +27 -0
- package/dist/runtime/components/ui/select/Select.vue.d.ts +26 -0
- package/dist/runtime/components/ui/select/SelectContent.vue +69 -0
- package/dist/runtime/components/ui/select/SelectContent.vue.d.ts +41 -0
- package/dist/runtime/components/ui/select/SelectGroup.vue +16 -0
- package/dist/runtime/components/ui/select/SelectGroup.vue.d.ts +26 -0
- package/dist/runtime/components/ui/select/SelectItem.vue +44 -0
- package/dist/runtime/components/ui/select/SelectItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/select/SelectItemText.vue +16 -0
- package/dist/runtime/components/ui/select/SelectItemText.vue.d.ts +26 -0
- package/dist/runtime/components/ui/select/SelectLabel.vue +19 -0
- package/dist/runtime/components/ui/select/SelectLabel.vue.d.ts +31 -0
- package/dist/runtime/components/ui/select/SelectScrollDownButton.vue +30 -0
- package/dist/runtime/components/ui/select/SelectScrollDownButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/select/SelectScrollUpButton.vue +30 -0
- package/dist/runtime/components/ui/select/SelectScrollUpButton.vue.d.ts +31 -0
- package/dist/runtime/components/ui/select/SelectSeparator.vue +19 -0
- package/dist/runtime/components/ui/select/SelectSeparator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/select/SelectTrigger.vue +39 -0
- package/dist/runtime/components/ui/select/SelectTrigger.vue.d.ts +47 -0
- package/dist/runtime/components/ui/select/SelectValue.vue +17 -0
- package/dist/runtime/components/ui/select/SelectValue.vue.d.ts +26 -0
- package/dist/runtime/components/ui/select/index.d.ts +11 -0
- package/dist/runtime/components/ui/select/index.js +11 -0
- package/dist/runtime/components/ui/separator/Separator.vue +26 -0
- package/dist/runtime/components/ui/separator/Separator.vue.d.ts +34 -0
- package/dist/runtime/components/ui/separator/index.d.ts +1 -0
- package/dist/runtime/components/ui/separator/index.js +1 -0
- package/dist/runtime/components/ui/sheet/Sheet.vue +19 -0
- package/dist/runtime/components/ui/sheet/Sheet.vue.d.ts +26 -0
- package/dist/runtime/components/ui/sheet/SheetClose.vue +16 -0
- package/dist/runtime/components/ui/sheet/SheetClose.vue.d.ts +26 -0
- package/dist/runtime/components/ui/sheet/SheetContent.vue +56 -0
- package/dist/runtime/components/ui/sheet/SheetContent.vue.d.ts +43 -0
- package/dist/runtime/components/ui/sheet/SheetDescription.vue +21 -0
- package/dist/runtime/components/ui/sheet/SheetDescription.vue.d.ts +31 -0
- package/dist/runtime/components/ui/sheet/SheetFooter.vue +15 -0
- package/dist/runtime/components/ui/sheet/SheetFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sheet/SheetHeader.vue +15 -0
- package/dist/runtime/components/ui/sheet/SheetHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sheet/SheetOverlay.vue +27 -0
- package/dist/runtime/components/ui/sheet/SheetOverlay.vue.d.ts +31 -0
- package/dist/runtime/components/ui/sheet/SheetTitle.vue +21 -0
- package/dist/runtime/components/ui/sheet/SheetTitle.vue.d.ts +31 -0
- package/dist/runtime/components/ui/sheet/SheetTrigger.vue +16 -0
- package/dist/runtime/components/ui/sheet/SheetTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/sheet/index.d.ts +8 -0
- package/dist/runtime/components/ui/sheet/index.js +8 -0
- package/dist/runtime/components/ui/sidebar/Sidebar.vue +101 -0
- package/dist/runtime/components/ui/sidebar/Sidebar.vue.d.ts +48 -0
- package/dist/runtime/components/ui/sidebar/SidebarContent.vue +21 -0
- package/dist/runtime/components/ui/sidebar/SidebarContent.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarFooter.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroup.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroup.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupAction.vue +28 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupAction.vue.d.ts +31 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupContent.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupContent.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.vue +27 -0
- package/dist/runtime/components/ui/sidebar/SidebarGroupLabel.vue.d.ts +31 -0
- package/dist/runtime/components/ui/sidebar/SidebarHeader.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarInput.vue +17 -0
- package/dist/runtime/components/ui/sidebar/SidebarInput.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarInset.vue +21 -0
- package/dist/runtime/components/ui/sidebar/SidebarInset.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenu.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenu.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue +33 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuAction.vue.d.ts +47 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.vue +26 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuBadge.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue +44 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButton.vue.d.ts +52 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue +28 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuButtonChild.vue.d.ts +54 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuItem.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuItem.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.vue +32 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSkeleton.vue.d.ts +18 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSub.vue +22 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSub.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue +34 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubButton.vue.d.ts +52 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.vue +16 -0
- package/dist/runtime/components/ui/sidebar/SidebarMenuSubItem.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarProvider.vue +73 -0
- package/dist/runtime/components/ui/sidebar/SidebarProvider.vue.d.ts +44 -0
- package/dist/runtime/components/ui/sidebar/SidebarRail.vue +32 -0
- package/dist/runtime/components/ui/sidebar/SidebarRail.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarSeparator.vue +17 -0
- package/dist/runtime/components/ui/sidebar/SidebarSeparator.vue.d.ts +30 -0
- package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue +24 -0
- package/dist/runtime/components/ui/sidebar/SidebarTrigger.vue.d.ts +16 -0
- package/dist/runtime/components/ui/sidebar/index.d.ts +37 -0
- package/dist/runtime/components/ui/sidebar/index.js +45 -0
- package/dist/runtime/components/ui/sidebar/utils.d.ts +56 -0
- package/dist/runtime/components/ui/sidebar/utils.js +8 -0
- package/dist/runtime/components/ui/skeleton/Skeleton.vue +13 -0
- package/dist/runtime/components/ui/skeleton/Skeleton.vue.d.ts +15 -0
- package/dist/runtime/components/ui/skeleton/index.d.ts +1 -0
- package/dist/runtime/components/ui/skeleton/index.js +1 -0
- package/dist/runtime/components/ui/slider/Slider.vue +63 -0
- package/dist/runtime/components/ui/slider/Slider.vue.d.ts +15 -0
- package/dist/runtime/components/ui/slider/index.d.ts +1 -0
- package/dist/runtime/components/ui/slider/index.js +1 -0
- package/dist/runtime/components/ui/sonner/Sonner.vue +36 -0
- package/dist/runtime/components/ui/sonner/Sonner.vue.d.ts +12 -0
- package/dist/runtime/components/ui/sonner/index.d.ts +1 -0
- package/dist/runtime/components/ui/sonner/index.js +1 -0
- package/dist/runtime/components/ui/stepper/Stepper.vue +28 -0
- package/dist/runtime/components/ui/stepper/Stepper.vue.d.ts +29 -0
- package/dist/runtime/components/ui/stepper/StepperDescription.vue +22 -0
- package/dist/runtime/components/ui/stepper/StepperDescription.vue.d.ts +31 -0
- package/dist/runtime/components/ui/stepper/StepperIndicator.vue +32 -0
- package/dist/runtime/components/ui/stepper/StepperIndicator.vue.d.ts +31 -0
- package/dist/runtime/components/ui/stepper/StepperItem.vue +30 -0
- package/dist/runtime/components/ui/stepper/StepperItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/stepper/StepperSeparator.vue +30 -0
- package/dist/runtime/components/ui/stepper/StepperSeparator.vue.d.ts +17 -0
- package/dist/runtime/components/ui/stepper/StepperTitle.vue +21 -0
- package/dist/runtime/components/ui/stepper/StepperTitle.vue.d.ts +31 -0
- package/dist/runtime/components/ui/stepper/StepperTrigger.vue +26 -0
- package/dist/runtime/components/ui/stepper/StepperTrigger.vue.d.ts +31 -0
- package/dist/runtime/components/ui/stepper/index.d.ts +7 -0
- package/dist/runtime/components/ui/stepper/index.js +7 -0
- package/dist/runtime/components/ui/switch/Switch.vue +48 -0
- package/dist/runtime/components/ui/switch/Switch.vue.d.ts +29 -0
- package/dist/runtime/components/ui/switch/index.d.ts +1 -0
- package/dist/runtime/components/ui/switch/index.js +1 -0
- package/dist/runtime/components/ui/table/Table.vue +17 -0
- package/dist/runtime/components/ui/table/Table.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableBody.vue +15 -0
- package/dist/runtime/components/ui/table/TableBody.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableCaption.vue +15 -0
- package/dist/runtime/components/ui/table/TableCaption.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableCell.vue +20 -0
- package/dist/runtime/components/ui/table/TableCell.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableEmpty.vue +29 -0
- package/dist/runtime/components/ui/table/TableEmpty.vue.d.ts +46 -0
- package/dist/runtime/components/ui/table/TableFooter.vue +17 -0
- package/dist/runtime/components/ui/table/TableFooter.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableHead.vue +20 -0
- package/dist/runtime/components/ui/table/TableHead.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableHeader.vue +12 -0
- package/dist/runtime/components/ui/table/TableHeader.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/TableRow.vue +20 -0
- package/dist/runtime/components/ui/table/TableRow.vue.d.ts +30 -0
- package/dist/runtime/components/ui/table/index.d.ts +9 -0
- package/dist/runtime/components/ui/table/index.js +9 -0
- package/dist/runtime/components/ui/table/utils.d.ts +3 -0
- package/dist/runtime/components/ui/table/utils.js +3 -0
- package/dist/runtime/components/ui/tabs/Tabs.vue +29 -0
- package/dist/runtime/components/ui/tabs/Tabs.vue.d.ts +29 -0
- package/dist/runtime/components/ui/tabs/TabsContent.vue +23 -0
- package/dist/runtime/components/ui/tabs/TabsContent.vue.d.ts +31 -0
- package/dist/runtime/components/ui/tabs/TabsList.vue +27 -0
- package/dist/runtime/components/ui/tabs/TabsList.vue.d.ts +31 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue +29 -0
- package/dist/runtime/components/ui/tabs/TabsTrigger.vue.d.ts +31 -0
- package/dist/runtime/components/ui/tabs/index.d.ts +4 -0
- package/dist/runtime/components/ui/tabs/index.js +4 -0
- package/dist/runtime/components/ui/tags-input/TagsInput.vue +45 -0
- package/dist/runtime/components/ui/tags-input/TagsInput.vue.d.ts +29 -0
- package/dist/runtime/components/ui/tags-input/TagsInputInput.vue +30 -0
- package/dist/runtime/components/ui/tags-input/TagsInputInput.vue.d.ts +17 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItem.vue +31 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItem.vue.d.ts +31 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItemDelete.vue +27 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItemDelete.vue.d.ts +31 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItemText.vue +22 -0
- package/dist/runtime/components/ui/tags-input/TagsInputItemText.vue.d.ts +17 -0
- package/dist/runtime/components/ui/tags-input/index.d.ts +5 -0
- package/dist/runtime/components/ui/tags-input/index.js +5 -0
- package/dist/runtime/components/ui/textarea/Textarea.vue +27 -0
- package/dist/runtime/components/ui/textarea/Textarea.vue.d.ts +16 -0
- package/dist/runtime/components/ui/textarea/index.d.ts +1 -0
- package/dist/runtime/components/ui/textarea/index.js +1 -0
- package/dist/runtime/components/ui/toggle/Toggle.vue +35 -0
- package/dist/runtime/components/ui/toggle/Toggle.vue.d.ts +48 -0
- package/dist/runtime/components/ui/toggle/index.d.ts +7 -0
- package/dist/runtime/components/ui/toggle/index.js +22 -0
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.vue +51 -0
- package/dist/runtime/components/ui/toggle-group/ToggleGroup.vue.d.ts +34 -0
- package/dist/runtime/components/ui/toggle-group/ToggleGroupItem.vue +44 -0
- package/dist/runtime/components/ui/toggle-group/ToggleGroupItem.vue.d.ts +38 -0
- package/dist/runtime/components/ui/toggle-group/index.d.ts +2 -0
- package/dist/runtime/components/ui/toggle-group/index.js +2 -0
- package/dist/runtime/components/ui/tooltip/Tooltip.vue +23 -0
- package/dist/runtime/components/ui/tooltip/Tooltip.vue.d.ts +26 -0
- package/dist/runtime/components/ui/tooltip/TooltipContent.vue +56 -0
- package/dist/runtime/components/ui/tooltip/TooltipContent.vue.d.ts +41 -0
- package/dist/runtime/components/ui/tooltip/TooltipProvider.vue +17 -0
- package/dist/runtime/components/ui/tooltip/TooltipProvider.vue.d.ts +40 -0
- package/dist/runtime/components/ui/tooltip/TooltipTrigger.vue +17 -0
- package/dist/runtime/components/ui/tooltip/TooltipTrigger.vue.d.ts +26 -0
- package/dist/runtime/components/ui/tooltip/index.d.ts +4 -0
- package/dist/runtime/components/ui/tooltip/index.js +4 -0
- package/dist/runtime/composables/useAuthorization.d.ts +2 -2
- package/dist/runtime/composables/useAuthorization.js +3 -7
- package/dist/runtime/composables/useFormState.d.ts +1 -1
- package/dist/runtime/composables/useFormState.js +1 -1
- package/dist/runtime/composables/useTableState.d.ts +2 -2
- package/dist/runtime/composables/useTableState.js +1 -1
- package/dist/runtime/i18n/i18n.config.d.ts +0 -5
- package/dist/runtime/index.css +1 -1
- package/dist/runtime/middleware/authentication.d.ts +1 -1
- package/dist/runtime/middleware/authentication.js +3 -1
- package/dist/runtime/middleware/authorization.d.ts +1 -1
- package/dist/runtime/middleware/authorization.js +4 -6
- package/dist/runtime/plugins/auth.d.ts +59 -1
- package/dist/runtime/plugins/auth.js +2 -1
- package/dist/runtime/plugins/vue-json.d.ts +1 -1
- package/dist/runtime/utils/buildSortQuery.d.ts +1 -1
- package/dist/runtime/utils/getFromLocalStorage.js +1 -1
- package/package.json +8 -2
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as AlertDialog } from './AlertDialog.vue'
|
|
2
|
+
export { default as AlertDialogAction } from './AlertDialogAction.vue'
|
|
3
|
+
export { default as AlertDialogCancel } from './AlertDialogCancel.vue'
|
|
4
|
+
export { default as AlertDialogContent } from './AlertDialogContent.vue'
|
|
5
|
+
export { default as AlertDialogDescription } from './AlertDialogDescription.vue'
|
|
6
|
+
export { default as AlertDialogFooter } from './AlertDialogFooter.vue'
|
|
7
|
+
export { default as AlertDialogHeader } from './AlertDialogHeader.vue'
|
|
8
|
+
export { default as AlertDialogTitle } from './AlertDialogTitle.vue'
|
|
9
|
+
export { default as AlertDialogTrigger } from './AlertDialogTrigger.vue'
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { cva, type VariantProps } from 'class-variance-authority'
|
|
2
|
+
|
|
3
|
+
export { default as Alert } from './Alert.vue'
|
|
4
|
+
export { default as AlertDescription } from './AlertDescription.vue'
|
|
5
|
+
export { default as AlertTitle } from './AlertTitle.vue'
|
|
6
|
+
|
|
7
|
+
export const alertVariants = cva(
|
|
8
|
+
'relative w-full rounded-lg border px-4 py-3 text-sm grid has-[>svg]:grid-cols-[calc(var(--spacing)*4)_1fr] grid-cols-[0_1fr] has-[>svg]:gap-x-3 gap-y-0.5 items-start [&>svg]:size-4 [&>svg]:translate-y-0.5 [&>svg]:text-current',
|
|
9
|
+
{
|
|
10
|
+
variants: {
|
|
11
|
+
variant: {
|
|
12
|
+
default: 'bg-card text-card-foreground',
|
|
13
|
+
destructive:
|
|
14
|
+
'text-destructive bg-card [&>svg]:text-current *:data-[slot=alert-description]:text-destructive/90',
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
defaultVariants: {
|
|
18
|
+
variant: 'default',
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
|
+
)
|
|
22
|
+
|
|
23
|
+
export type AlertVariants = VariantProps<typeof alertVariants>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as AspectRatio } from './AspectRatio.vue'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { default as AutoForm } from './AutoForm.vue'
|
|
2
|
+
export { default as AutoFormField } from './AutoFormField.vue'
|
|
3
|
+
|
|
4
|
+
export { default as AutoFormFieldArray } from './AutoFormFieldArray.vue'
|
|
5
|
+
export { default as AutoFormFieldBoolean } from './AutoFormFieldBoolean.vue'
|
|
6
|
+
export { default as AutoFormFieldDate } from './AutoFormFieldDate.vue'
|
|
7
|
+
|
|
8
|
+
export { default as AutoFormFieldEnum } from './AutoFormFieldEnum.vue'
|
|
9
|
+
export { default as AutoFormFieldFile } from './AutoFormFieldFile.vue'
|
|
10
|
+
export { default as AutoFormFieldInput } from './AutoFormFieldInput.vue'
|
|
11
|
+
export { default as AutoFormFieldNumber } from './AutoFormFieldNumber.vue'
|
|
12
|
+
export { default as AutoFormFieldObject } from './AutoFormFieldObject.vue'
|
|
13
|
+
export { default as AutoFormLabel } from './AutoFormLabel.vue'
|
|
14
|
+
export type { Config, ConfigItem, FieldProps } from './interface'
|
|
15
|
+
export { getBaseSchema, getBaseType, getObjectFormSchema } from './utils'
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { cva, type VariantProps } from 'class-variance-authority'
|
|
2
|
+
|
|
3
|
+
export { default as Badge } from './Badge.vue'
|
|
4
|
+
|
|
5
|
+
export const badgeVariants = cva(
|
|
6
|
+
'inline-flex items-center justify-center rounded-md border px-2 py-0.5 text-xs font-medium w-fit whitespace-nowrap shrink-0 [&>svg]:size-3 gap-1 [&>svg]:pointer-events-none focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive transition-[color,box-shadow] overflow-hidden',
|
|
7
|
+
{
|
|
8
|
+
variants: {
|
|
9
|
+
variant: {
|
|
10
|
+
default:
|
|
11
|
+
'border-transparent bg-primary text-primary-foreground [a&]:hover:bg-primary/90',
|
|
12
|
+
secondary:
|
|
13
|
+
'border-transparent bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90',
|
|
14
|
+
destructive:
|
|
15
|
+
'border-transparent bg-destructive text-white [a&]:hover:bg-destructive/90 focus-visible:ring-destructive/20 dark:focus-visible:ring-destructive/40 dark:bg-destructive/60',
|
|
16
|
+
outline:
|
|
17
|
+
'text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
variant: 'default',
|
|
22
|
+
},
|
|
23
|
+
},
|
|
24
|
+
)
|
|
25
|
+
export type BadgeVariants = VariantProps<typeof badgeVariants>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as Breadcrumb } from './Breadcrumb.vue'
|
|
2
|
+
export { default as BreadcrumbEllipsis } from './BreadcrumbEllipsis.vue'
|
|
3
|
+
export { default as BreadcrumbItem } from './BreadcrumbItem.vue'
|
|
4
|
+
export { default as BreadcrumbLink } from './BreadcrumbLink.vue'
|
|
5
|
+
export { default as BreadcrumbList } from './BreadcrumbList.vue'
|
|
6
|
+
export { default as BreadcrumbPage } from './BreadcrumbPage.vue'
|
|
7
|
+
export { default as BreadcrumbSeparator } from './BreadcrumbSeparator.vue'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as Calendar } from './Calendar.vue'
|
|
2
|
+
export { default as CalendarCell } from './CalendarCell.vue'
|
|
3
|
+
export { default as CalendarCellTrigger } from './CalendarCellTrigger.vue'
|
|
4
|
+
export { default as CalendarGrid } from './CalendarGrid.vue'
|
|
5
|
+
export { default as CalendarGridBody } from './CalendarGridBody.vue'
|
|
6
|
+
export { default as CalendarGridHead } from './CalendarGridHead.vue'
|
|
7
|
+
export { default as CalendarGridRow } from './CalendarGridRow.vue'
|
|
8
|
+
export { default as CalendarHeadCell } from './CalendarHeadCell.vue'
|
|
9
|
+
export { default as CalendarHeader } from './CalendarHeader.vue'
|
|
10
|
+
export { default as CalendarHeading } from './CalendarHeading.vue'
|
|
11
|
+
export { default as CalendarNextButton } from './CalendarNextButton.vue'
|
|
12
|
+
export { default as CalendarPrevButton } from './CalendarPrevButton.vue'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as Card } from './Card.vue'
|
|
2
|
+
export { default as CardAction } from './CardAction.vue'
|
|
3
|
+
export { default as CardContent } from './CardContent.vue'
|
|
4
|
+
export { default as CardDescription } from './CardDescription.vue'
|
|
5
|
+
export { default as CardFooter } from './CardFooter.vue'
|
|
6
|
+
export { default as CardHeader } from './CardHeader.vue'
|
|
7
|
+
export { default as CardTitle } from './CardTitle.vue'
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { default as Carousel } from './Carousel.vue'
|
|
2
|
+
export { default as CarouselContent } from './CarouselContent.vue'
|
|
3
|
+
export { default as CarouselItem } from './CarouselItem.vue'
|
|
4
|
+
export { default as CarouselNext } from './CarouselNext.vue'
|
|
5
|
+
export { default as CarouselPrevious } from './CarouselPrevious.vue'
|
|
6
|
+
export type {
|
|
7
|
+
UnwrapRefCarouselApi as CarouselApi,
|
|
8
|
+
} from './interface'
|
|
9
|
+
|
|
10
|
+
export { useCarousel } from './useCarousel'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Checkbox } from './Checkbox.vue'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as Combobox } from './Combobox.vue'
|
|
2
|
+
export { default as ComboboxAnchor } from './ComboboxAnchor.vue'
|
|
3
|
+
export { default as ComboboxEmpty } from './ComboboxEmpty.vue'
|
|
4
|
+
export { default as ComboboxGroup } from './ComboboxGroup.vue'
|
|
5
|
+
export { default as ComboboxInput } from './ComboboxInput.vue'
|
|
6
|
+
export { default as ComboboxItem } from './ComboboxItem.vue'
|
|
7
|
+
export { default as ComboboxItemIndicator } from './ComboboxItemIndicator.vue'
|
|
8
|
+
export { default as ComboboxList } from './ComboboxList.vue'
|
|
9
|
+
export { default as ComboboxSeparator } from './ComboboxSeparator.vue'
|
|
10
|
+
export { default as ComboboxViewport } from './ComboboxViewport.vue'
|
|
11
|
+
|
|
12
|
+
export { ComboboxCancel, ComboboxTrigger } from 'reka-ui'
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { Ref } from 'vue'
|
|
2
|
+
import { createContext } from 'reka-ui'
|
|
3
|
+
|
|
4
|
+
export { default as Command } from './Command.vue'
|
|
5
|
+
export { default as CommandDialog } from './CommandDialog.vue'
|
|
6
|
+
export { default as CommandEmpty } from './CommandEmpty.vue'
|
|
7
|
+
export { default as CommandGroup } from './CommandGroup.vue'
|
|
8
|
+
export { default as CommandInput } from './CommandInput.vue'
|
|
9
|
+
export { default as CommandItem } from './CommandItem.vue'
|
|
10
|
+
export { default as CommandList } from './CommandList.vue'
|
|
11
|
+
export { default as CommandSeparator } from './CommandSeparator.vue'
|
|
12
|
+
export { default as CommandShortcut } from './CommandShortcut.vue'
|
|
13
|
+
|
|
14
|
+
export const [useCommand, provideCommandContext] = createContext<{
|
|
15
|
+
allItems: Ref<Map<string, string>>
|
|
16
|
+
allGroups: Ref<Map<string, Set<string>>>
|
|
17
|
+
filterState: {
|
|
18
|
+
search: string
|
|
19
|
+
filtered: { count: number, items: Map<string, number>, groups: Set<string> }
|
|
20
|
+
}
|
|
21
|
+
}>('Command')
|
|
22
|
+
|
|
23
|
+
export const [useCommandGroup, provideCommandGroupContext] = createContext<{
|
|
24
|
+
id?: string
|
|
25
|
+
}>('CommandGroup')
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export { default as ContextMenu } from './ContextMenu.vue'
|
|
2
|
+
export { default as ContextMenuCheckboxItem } from './ContextMenuCheckboxItem.vue'
|
|
3
|
+
export { default as ContextMenuContent } from './ContextMenuContent.vue'
|
|
4
|
+
export { default as ContextMenuGroup } from './ContextMenuGroup.vue'
|
|
5
|
+
export { default as ContextMenuItem } from './ContextMenuItem.vue'
|
|
6
|
+
export { default as ContextMenuLabel } from './ContextMenuLabel.vue'
|
|
7
|
+
export { default as ContextMenuRadioGroup } from './ContextMenuRadioGroup.vue'
|
|
8
|
+
export { default as ContextMenuRadioItem } from './ContextMenuRadioItem.vue'
|
|
9
|
+
export { default as ContextMenuSeparator } from './ContextMenuSeparator.vue'
|
|
10
|
+
export { default as ContextMenuShortcut } from './ContextMenuShortcut.vue'
|
|
11
|
+
export { default as ContextMenuSub } from './ContextMenuSub.vue'
|
|
12
|
+
export { default as ContextMenuSubContent } from './ContextMenuSubContent.vue'
|
|
13
|
+
export { default as ContextMenuSubTrigger } from './ContextMenuSubTrigger.vue'
|
|
14
|
+
export { default as ContextMenuTrigger } from './ContextMenuTrigger.vue'
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export { default as Dialog } from './Dialog.vue'
|
|
2
|
+
export { default as DialogClose } from './DialogClose.vue'
|
|
3
|
+
export { default as DialogContent } from './DialogContent.vue'
|
|
4
|
+
export { default as DialogDescription } from './DialogDescription.vue'
|
|
5
|
+
export { default as DialogFooter } from './DialogFooter.vue'
|
|
6
|
+
export { default as DialogHeader } from './DialogHeader.vue'
|
|
7
|
+
export { default as DialogOverlay } from './DialogOverlay.vue'
|
|
8
|
+
export { default as DialogScrollContent } from './DialogScrollContent.vue'
|
|
9
|
+
export { default as DialogTitle } from './DialogTitle.vue'
|
|
10
|
+
export { default as DialogTrigger } from './DialogTrigger.vue'
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as Drawer } from './Drawer.vue'
|
|
2
|
+
export { default as DrawerClose } from './DrawerClose.vue'
|
|
3
|
+
export { default as DrawerContent } from './DrawerContent.vue'
|
|
4
|
+
export { default as DrawerDescription } from './DrawerDescription.vue'
|
|
5
|
+
export { default as DrawerFooter } from './DrawerFooter.vue'
|
|
6
|
+
export { default as DrawerHeader } from './DrawerHeader.vue'
|
|
7
|
+
export { default as DrawerOverlay } from './DrawerOverlay.vue'
|
|
8
|
+
export { default as DrawerTitle } from './DrawerTitle.vue'
|
|
9
|
+
export { default as DrawerTrigger } from './DrawerTrigger.vue'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export { default as DropdownMenu } from './DropdownMenu.vue'
|
|
2
|
+
|
|
3
|
+
export { default as DropdownMenuCheckboxItem } from './DropdownMenuCheckboxItem.vue'
|
|
4
|
+
export { default as DropdownMenuContent } from './DropdownMenuContent.vue'
|
|
5
|
+
export { default as DropdownMenuGroup } from './DropdownMenuGroup.vue'
|
|
6
|
+
export { default as DropdownMenuItem } from './DropdownMenuItem.vue'
|
|
7
|
+
export { default as DropdownMenuLabel } from './DropdownMenuLabel.vue'
|
|
8
|
+
export { default as DropdownMenuRadioGroup } from './DropdownMenuRadioGroup.vue'
|
|
9
|
+
export { default as DropdownMenuRadioItem } from './DropdownMenuRadioItem.vue'
|
|
10
|
+
export { default as DropdownMenuSeparator } from './DropdownMenuSeparator.vue'
|
|
11
|
+
export { default as DropdownMenuShortcut } from './DropdownMenuShortcut.vue'
|
|
12
|
+
export { default as DropdownMenuSub } from './DropdownMenuSub.vue'
|
|
13
|
+
export { default as DropdownMenuSubContent } from './DropdownMenuSubContent.vue'
|
|
14
|
+
export { default as DropdownMenuSubTrigger } from './DropdownMenuSubTrigger.vue'
|
|
15
|
+
export { default as DropdownMenuTrigger } from './DropdownMenuTrigger.vue'
|
|
16
|
+
export { DropdownMenuPortal } from 'reka-ui'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as FormControl } from './FormControl.vue'
|
|
2
|
+
export { default as FormDescription } from './FormDescription.vue'
|
|
3
|
+
export { default as FormItem } from './FormItem.vue'
|
|
4
|
+
export { default as FormLabel } from './FormLabel.vue'
|
|
5
|
+
export { default as FormMessage } from './FormMessage.vue'
|
|
6
|
+
export { FORM_ITEM_INJECTION_KEY } from './injectionKeys'
|
|
7
|
+
export { Form, Field as FormField, FieldArray as FormFieldArray } from 'vee-validate'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Input } from './Input.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Label } from './Label.vue'
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export { default as Menubar } from './Menubar.vue'
|
|
2
|
+
export { default as MenubarCheckboxItem } from './MenubarCheckboxItem.vue'
|
|
3
|
+
export { default as MenubarContent } from './MenubarContent.vue'
|
|
4
|
+
export { default as MenubarGroup } from './MenubarGroup.vue'
|
|
5
|
+
export { default as MenubarItem } from './MenubarItem.vue'
|
|
6
|
+
export { default as MenubarLabel } from './MenubarLabel.vue'
|
|
7
|
+
export { default as MenubarMenu } from './MenubarMenu.vue'
|
|
8
|
+
export { default as MenubarRadioGroup } from './MenubarRadioGroup.vue'
|
|
9
|
+
export { default as MenubarRadioItem } from './MenubarRadioItem.vue'
|
|
10
|
+
export { default as MenubarSeparator } from './MenubarSeparator.vue'
|
|
11
|
+
export { default as MenubarShortcut } from './MenubarShortcut.vue'
|
|
12
|
+
export { default as MenubarSub } from './MenubarSub.vue'
|
|
13
|
+
export { default as MenubarSubContent } from './MenubarSubContent.vue'
|
|
14
|
+
export { default as MenubarSubTrigger } from './MenubarSubTrigger.vue'
|
|
15
|
+
export { default as MenubarTrigger } from './MenubarTrigger.vue'
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { cva } from 'class-variance-authority'
|
|
2
|
+
|
|
3
|
+
export { default as NavigationMenu } from './NavigationMenu.vue'
|
|
4
|
+
export { default as NavigationMenuContent } from './NavigationMenuContent.vue'
|
|
5
|
+
export { default as NavigationMenuIndicator } from './NavigationMenuIndicator.vue'
|
|
6
|
+
export { default as NavigationMenuItem } from './NavigationMenuItem.vue'
|
|
7
|
+
export { default as NavigationMenuLink } from './NavigationMenuLink.vue'
|
|
8
|
+
export { default as NavigationMenuList } from './NavigationMenuList.vue'
|
|
9
|
+
export { default as NavigationMenuTrigger } from './NavigationMenuTrigger.vue'
|
|
10
|
+
export { default as NavigationMenuViewport } from './NavigationMenuViewport.vue'
|
|
11
|
+
|
|
12
|
+
export const navigationMenuTriggerStyle = cva(
|
|
13
|
+
'group inline-flex h-9 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=open]:hover:bg-accent data-[state=open]:text-accent-foreground data-[state=open]:focus:bg-accent data-[state=open]:bg-accent/50 focus-visible:ring-ring/50 outline-none transition-[color,box-shadow] focus-visible:ring-[3px] focus-visible:outline-1',
|
|
14
|
+
)
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as NumberField } from './NumberField.vue'
|
|
2
|
+
export { default as NumberFieldContent } from './NumberFieldContent.vue'
|
|
3
|
+
export { default as NumberFieldDecrement } from './NumberFieldDecrement.vue'
|
|
4
|
+
export { default as NumberFieldIncrement } from './NumberFieldIncrement.vue'
|
|
5
|
+
export { default as NumberFieldInput } from './NumberFieldInput.vue'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as Pagination } from './Pagination.vue'
|
|
2
|
+
export { default as PaginationContent } from './PaginationContent.vue'
|
|
3
|
+
export { default as PaginationEllipsis } from './PaginationEllipsis.vue'
|
|
4
|
+
export { default as PaginationFirst } from './PaginationFirst.vue'
|
|
5
|
+
export { default as PaginationItem } from './PaginationItem.vue'
|
|
6
|
+
export { default as PaginationLast } from './PaginationLast.vue'
|
|
7
|
+
export { default as PaginationNext } from './PaginationNext.vue'
|
|
8
|
+
export { default as PaginationPrevious } from './PaginationPrevious.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Progress } from './Progress.vue'
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as RangeCalendar } from './RangeCalendar.vue'
|
|
2
|
+
export { default as RangeCalendarCell } from './RangeCalendarCell.vue'
|
|
3
|
+
export { default as RangeCalendarCellTrigger } from './RangeCalendarCellTrigger.vue'
|
|
4
|
+
export { default as RangeCalendarGrid } from './RangeCalendarGrid.vue'
|
|
5
|
+
export { default as RangeCalendarGridBody } from './RangeCalendarGridBody.vue'
|
|
6
|
+
export { default as RangeCalendarGridHead } from './RangeCalendarGridHead.vue'
|
|
7
|
+
export { default as RangeCalendarGridRow } from './RangeCalendarGridRow.vue'
|
|
8
|
+
export { default as RangeCalendarHeadCell } from './RangeCalendarHeadCell.vue'
|
|
9
|
+
export { default as RangeCalendarHeader } from './RangeCalendarHeader.vue'
|
|
10
|
+
export { default as RangeCalendarHeading } from './RangeCalendarHeading.vue'
|
|
11
|
+
export { default as RangeCalendarNextButton } from './RangeCalendarNextButton.vue'
|
|
12
|
+
export { default as RangeCalendarPrevButton } from './RangeCalendarPrevButton.vue'
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { default as Select } from './Select.vue'
|
|
2
|
+
export { default as SelectContent } from './SelectContent.vue'
|
|
3
|
+
export { default as SelectGroup } from './SelectGroup.vue'
|
|
4
|
+
export { default as SelectItem } from './SelectItem.vue'
|
|
5
|
+
export { default as SelectItemText } from './SelectItemText.vue'
|
|
6
|
+
export { default as SelectLabel } from './SelectLabel.vue'
|
|
7
|
+
export { default as SelectScrollDownButton } from './SelectScrollDownButton.vue'
|
|
8
|
+
export { default as SelectScrollUpButton } from './SelectScrollUpButton.vue'
|
|
9
|
+
export { default as SelectSeparator } from './SelectSeparator.vue'
|
|
10
|
+
export { default as SelectTrigger } from './SelectTrigger.vue'
|
|
11
|
+
export { default as SelectValue } from './SelectValue.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Separator } from './Separator.vue'
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { default as Sheet } from './Sheet.vue'
|
|
2
|
+
export { default as SheetClose } from './SheetClose.vue'
|
|
3
|
+
export { default as SheetContent } from './SheetContent.vue'
|
|
4
|
+
export { default as SheetDescription } from './SheetDescription.vue'
|
|
5
|
+
export { default as SheetFooter } from './SheetFooter.vue'
|
|
6
|
+
export { default as SheetHeader } from './SheetHeader.vue'
|
|
7
|
+
export { default as SheetTitle } from './SheetTitle.vue'
|
|
8
|
+
export { default as SheetTrigger } from './SheetTrigger.vue'
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import type { VariantProps } from 'class-variance-authority'
|
|
2
|
+
import type { HTMLAttributes } from 'vue'
|
|
3
|
+
import { cva } from 'class-variance-authority'
|
|
4
|
+
|
|
5
|
+
export interface SidebarProps {
|
|
6
|
+
side?: 'left' | 'right'
|
|
7
|
+
variant?: 'sidebar' | 'floating' | 'inset'
|
|
8
|
+
collapsible?: 'offcanvas' | 'icon' | 'none'
|
|
9
|
+
class?: HTMLAttributes['class']
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
export { default as Sidebar } from './Sidebar.vue'
|
|
13
|
+
export { default as SidebarContent } from './SidebarContent.vue'
|
|
14
|
+
export { default as SidebarFooter } from './SidebarFooter.vue'
|
|
15
|
+
export { default as SidebarGroup } from './SidebarGroup.vue'
|
|
16
|
+
export { default as SidebarGroupAction } from './SidebarGroupAction.vue'
|
|
17
|
+
export { default as SidebarGroupContent } from './SidebarGroupContent.vue'
|
|
18
|
+
export { default as SidebarGroupLabel } from './SidebarGroupLabel.vue'
|
|
19
|
+
export { default as SidebarHeader } from './SidebarHeader.vue'
|
|
20
|
+
export { default as SidebarInput } from './SidebarInput.vue'
|
|
21
|
+
export { default as SidebarInset } from './SidebarInset.vue'
|
|
22
|
+
export { default as SidebarMenu } from './SidebarMenu.vue'
|
|
23
|
+
export { default as SidebarMenuAction } from './SidebarMenuAction.vue'
|
|
24
|
+
export { default as SidebarMenuBadge } from './SidebarMenuBadge.vue'
|
|
25
|
+
export { default as SidebarMenuButton } from './SidebarMenuButton.vue'
|
|
26
|
+
export { default as SidebarMenuItem } from './SidebarMenuItem.vue'
|
|
27
|
+
export { default as SidebarMenuSkeleton } from './SidebarMenuSkeleton.vue'
|
|
28
|
+
export { default as SidebarMenuSub } from './SidebarMenuSub.vue'
|
|
29
|
+
export { default as SidebarMenuSubButton } from './SidebarMenuSubButton.vue'
|
|
30
|
+
export { default as SidebarMenuSubItem } from './SidebarMenuSubItem.vue'
|
|
31
|
+
export { default as SidebarProvider } from './SidebarProvider.vue'
|
|
32
|
+
export { default as SidebarRail } from './SidebarRail.vue'
|
|
33
|
+
export { default as SidebarSeparator } from './SidebarSeparator.vue'
|
|
34
|
+
export { default as SidebarTrigger } from './SidebarTrigger.vue'
|
|
35
|
+
|
|
36
|
+
export { useSidebar } from './utils'
|
|
37
|
+
|
|
38
|
+
export const sidebarMenuButtonVariants = cva(
|
|
39
|
+
'peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-hidden ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-data-[sidebar=menu-action]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:size-8! group-data-[collapsible=icon]:p-2! [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0',
|
|
40
|
+
{
|
|
41
|
+
variants: {
|
|
42
|
+
variant: {
|
|
43
|
+
default: 'hover:bg-sidebar-accent hover:text-sidebar-accent-foreground',
|
|
44
|
+
outline:
|
|
45
|
+
'bg-background shadow-[0_0_0_1px_hsl(var(--sidebar-border))] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground hover:shadow-[0_0_0_1px_hsl(var(--sidebar-accent))]',
|
|
46
|
+
},
|
|
47
|
+
size: {
|
|
48
|
+
default: 'h-8 text-sm',
|
|
49
|
+
sm: 'h-7 text-xs',
|
|
50
|
+
lg: 'h-12 text-sm group-data-[collapsible=icon]:p-0!',
|
|
51
|
+
},
|
|
52
|
+
},
|
|
53
|
+
defaultVariants: {
|
|
54
|
+
variant: 'default',
|
|
55
|
+
size: 'default',
|
|
56
|
+
},
|
|
57
|
+
},
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
export type SidebarMenuButtonVariants = VariantProps<typeof sidebarMenuButtonVariants>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Skeleton } from './Skeleton.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Slider } from './Slider.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Toaster } from './Sonner.vue'
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export { default as Stepper } from './Stepper.vue'
|
|
2
|
+
export { default as StepperDescription } from './StepperDescription.vue'
|
|
3
|
+
export { default as StepperIndicator } from './StepperIndicator.vue'
|
|
4
|
+
export { default as StepperItem } from './StepperItem.vue'
|
|
5
|
+
export { default as StepperSeparator } from './StepperSeparator.vue'
|
|
6
|
+
export { default as StepperTitle } from './StepperTitle.vue'
|
|
7
|
+
export { default as StepperTrigger } from './StepperTrigger.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Switch } from './Switch.vue'
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as Table } from './Table.vue'
|
|
2
|
+
export { default as TableBody } from './TableBody.vue'
|
|
3
|
+
export { default as TableCaption } from './TableCaption.vue'
|
|
4
|
+
export { default as TableCell } from './TableCell.vue'
|
|
5
|
+
export { default as TableEmpty } from './TableEmpty.vue'
|
|
6
|
+
export { default as TableFooter } from './TableFooter.vue'
|
|
7
|
+
export { default as TableHead } from './TableHead.vue'
|
|
8
|
+
export { default as TableHeader } from './TableHeader.vue'
|
|
9
|
+
export { default as TableRow } from './TableRow.vue'
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { default as TagsInput } from './TagsInput.vue'
|
|
2
|
+
export { default as TagsInputInput } from './TagsInputInput.vue'
|
|
3
|
+
export { default as TagsInputItem } from './TagsInputItem.vue'
|
|
4
|
+
export { default as TagsInputItemDelete } from './TagsInputItemDelete.vue'
|
|
5
|
+
export { default as TagsInputItemText } from './TagsInputItemText.vue'
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default as Textarea } from './Textarea.vue'
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { cva, type VariantProps } from 'class-variance-authority'
|
|
2
|
+
|
|
3
|
+
export { default as Toggle } from './Toggle.vue'
|
|
4
|
+
|
|
5
|
+
export const toggleVariants = cva(
|
|
6
|
+
'inline-flex items-center justify-center gap-2 rounded-md text-sm font-medium hover:bg-muted hover:text-muted-foreground disabled:pointer-events-none disabled:opacity-50 data-[state=on]:bg-accent data-[state=on]:text-accent-foreground [&_svg]:pointer-events-none [&_svg:not([class*=\'size-\'])]:size-4 [&_svg]:shrink-0 focus-visible:border-ring focus-visible:ring-ring/50 focus-visible:ring-[3px] outline-none transition-[color,box-shadow] aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive whitespace-nowrap',
|
|
7
|
+
{
|
|
8
|
+
variants: {
|
|
9
|
+
variant: {
|
|
10
|
+
default: 'bg-transparent',
|
|
11
|
+
outline:
|
|
12
|
+
'border border-input bg-transparent shadow-xs hover:bg-accent hover:text-accent-foreground',
|
|
13
|
+
},
|
|
14
|
+
size: {
|
|
15
|
+
default: 'h-9 px-2 min-w-9',
|
|
16
|
+
sm: 'h-8 px-1.5 min-w-8',
|
|
17
|
+
lg: 'h-10 px-2.5 min-w-10',
|
|
18
|
+
},
|
|
19
|
+
},
|
|
20
|
+
defaultVariants: {
|
|
21
|
+
variant: 'default',
|
|
22
|
+
size: 'default',
|
|
23
|
+
},
|
|
24
|
+
},
|
|
25
|
+
)
|
|
26
|
+
|
|
27
|
+
export type ToggleVariants = VariantProps<typeof toggleVariants>
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import {
|
|
3
|
+
AccordionRoot,
|
|
4
|
+
useForwardPropsEmits
|
|
5
|
+
} from "reka-ui";
|
|
6
|
+
const props = defineProps({
|
|
7
|
+
collapsible: { type: Boolean, required: false },
|
|
8
|
+
disabled: { type: Boolean, required: false },
|
|
9
|
+
dir: { type: String, required: false },
|
|
10
|
+
orientation: { type: String, required: false },
|
|
11
|
+
unmountOnHide: { type: Boolean, required: false },
|
|
12
|
+
asChild: { type: Boolean, required: false },
|
|
13
|
+
as: { type: [String, Object, Function], required: false },
|
|
14
|
+
type: { type: String, required: false },
|
|
15
|
+
modelValue: { type: null, required: false },
|
|
16
|
+
defaultValue: { type: null, required: false }
|
|
17
|
+
});
|
|
18
|
+
const emits = defineEmits(["update:modelValue"]);
|
|
19
|
+
const forwarded = useForwardPropsEmits(props, emits);
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<template>
|
|
23
|
+
<AccordionRoot data-slot="accordion" v-bind="forwarded">
|
|
24
|
+
<slot />
|
|
25
|
+
</AccordionRoot>
|
|
26
|
+
</template>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { type AccordionRootProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<AccordionRootProps<string | string[]>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
14
|
+
type __VLS_TypePropsToOption<T> = {
|
|
15
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
16
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
17
|
+
} : {
|
|
18
|
+
type: import('vue').PropType<T[K]>;
|
|
19
|
+
required: true;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|