una-nuxt-module 2.1.1 → 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/button.ts +36 -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/.nuxt/unaxt.css +3 -0
- package/dist/module.json +4 -4
- package/dist/module.mjs +145 -48
- 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/button/Button.vue +23 -0
- package/dist/runtime/components/ui/button/Button.vue.d.ts +47 -0
- package/dist/runtime/components/ui/button/index.d.ts +7 -0
- package/dist/runtime/components/ui/button/index.js +27 -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/enums/index.d.ts +0 -1
- package/dist/runtime/enums/index.js +0 -1
- package/dist/runtime/i18n/i18n.config.d.ts +0 -5
- package/dist/runtime/index.css +1 -0
- package/dist/runtime/lib/utils.d.ts +2 -0
- package/dist/runtime/lib/utils.js +5 -0
- 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/pages/401.vue +2 -3
- package/dist/runtime/pages/401.vue.d.ts +2 -0
- package/dist/runtime/pages/403.vue +2 -3
- package/dist/runtime/pages/403.vue.d.ts +2 -0
- package/dist/runtime/pages/ssoCallback.vue +5 -5
- package/dist/runtime/pages/ssoCallback.vue.d.ts +2 -0
- package/dist/runtime/plugins/auth.d.ts +59 -1
- package/dist/runtime/plugins/auth.js +2 -2
- package/dist/runtime/plugins/vue-json.d.ts +1 -1
- package/dist/runtime/types/index.d.ts +9 -38
- package/dist/runtime/utils/buildSortQuery.d.ts +1 -1
- package/dist/runtime/utils/getFromLocalStorage.js +1 -1
- package/dist/types.d.mts +2 -2
- package/package.json +61 -22
- package/dist/module.cjs +0 -5
- package/dist/module.d.ts +0 -14
- package/dist/runtime/assets/scss/styles.css +0 -1016
- package/dist/runtime/components/layout/footer/Footer.vue +0 -16
- package/dist/runtime/components/layout/header/BtnExtendMenu.vue +0 -29
- package/dist/runtime/components/layout/header/Header.vue +0 -7
- package/dist/runtime/components/layout/header/HeaderMenu.vue +0 -41
- package/dist/runtime/components/layout/header/HeaderMenuTabs.vue +0 -102
- package/dist/runtime/components/layout/sidebar/NavCollapse.vue +0 -38
- package/dist/runtime/components/layout/sidebar/NavGroup.vue +0 -9
- package/dist/runtime/components/layout/sidebar/NavItem.vue +0 -25
- package/dist/runtime/components/layout/sidebar/SideBar.vue +0 -74
- package/dist/runtime/components/layout/sidebar/SideBarFooter.vue +0 -69
- package/dist/runtime/components/layout/sidebar/TopSideBarLogo.vue +0 -25
- package/dist/runtime/components/shared/authorization/AuthorizedRenderer.vue +0 -43
- package/dist/runtime/components/shared/buttons/BtnBack.vue +0 -19
- package/dist/runtime/components/shared/buttons/BtnCancel.vue +0 -13
- package/dist/runtime/components/shared/buttons/BtnConfirm.vue +0 -14
- package/dist/runtime/components/shared/containers/JsonViewer.vue +0 -13
- package/dist/runtime/components/shared/dates/DatePicker.vue +0 -91
- package/dist/runtime/components/shared/dialogs/DialogConfirmDelete.vue +0 -32
- package/dist/runtime/components/shared/dialogs/DialogExportTable.vue +0 -44
- package/dist/runtime/components/shared/feedback/LoadingSession.vue +0 -17
- package/dist/runtime/components/shared/feedback/SnackBar.vue +0 -40
- package/dist/runtime/components/shared/forms/FormBuilder/FieldBuilder.vue +0 -251
- package/dist/runtime/components/shared/forms/FormBuilder/FieldSlotMissed.vue +0 -20
- package/dist/runtime/components/shared/forms/FormBuilder/FormBuilder.vue +0 -213
- package/dist/runtime/components/shared/forms/FormBuilder/SteppersBuilder.vue +0 -32
- package/dist/runtime/components/shared/forms/FormBuilder/TabsBuilder.vue +0 -30
- package/dist/runtime/components/shared/forms/FormDialogWrapper.vue +0 -48
- package/dist/runtime/components/shared/forms/FormPageWrapper.vue +0 -19
- package/dist/runtime/components/shared/forms/FormSubmitSection.vue +0 -48
- package/dist/runtime/components/shared/navigation/BreadCrumbs.vue +0 -21
- package/dist/runtime/components/shared/tables/CustomTable.vue +0 -261
- package/dist/runtime/components/shared/tables/CustomTableHeader.vue +0 -25
- package/dist/runtime/components/shared/tables/NoDataMessage.vue +0 -12
- package/dist/runtime/components/shared/tables/TableSearchBar.vue +0 -22
- package/dist/runtime/components/shared/tables/buttons/BtnAdd.vue +0 -25
- package/dist/runtime/components/shared/tables/buttons/BtnDelete.vue +0 -32
- package/dist/runtime/components/shared/tables/buttons/BtnEdit.vue +0 -30
- package/dist/runtime/components/shared/tables/buttons/BtnExport.vue +0 -17
- package/dist/runtime/components/shared/tables/buttons/BtnFilter.vue +0 -21
- package/dist/runtime/components/shared/tables/pagination/ItemsPerPageCombo.vue +0 -24
- package/dist/runtime/components/shared/tables/pagination/ItemsPerPageLabel.vue +0 -5
- package/dist/runtime/components/shared/tables/pagination/PageSelector.vue +0 -16
- package/dist/runtime/components/shared/tables/pagination/PaginationInfo.vue +0 -31
- package/dist/runtime/enums/EVuetifyDateFormats.d.ts +0 -32
- package/dist/runtime/enums/EVuetifyDateFormats.js +0 -30
- package/dist/runtime/layouts/default.vue +0 -31
- package/dist/runtime/layouts/empty.vue +0 -12
- package/dist/types.d.ts +0 -7
|
@@ -1,1016 +0,0 @@
|
|
|
1
|
-
html .bg-success,
|
|
2
|
-
html .bg-info,
|
|
3
|
-
html .bg-warning {
|
|
4
|
-
color: white !important;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.v-row + .v-row {
|
|
8
|
-
margin-top: 0px;
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
.v-divider {
|
|
12
|
-
border-color: rgb(var(--v-theme-borderLight));
|
|
13
|
-
--v-border-opacity: 1 !important;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.border-blue-right {
|
|
17
|
-
border-right: 1px solid rgba(var(--v-theme-borderLight), 0.36);
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.link-hover {
|
|
21
|
-
text-decoration: unset;
|
|
22
|
-
}
|
|
23
|
-
.link-hover:hover {
|
|
24
|
-
text-decoration: underline;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.v-selection-control {
|
|
28
|
-
flex: unset;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
.customizer-btn .icon {
|
|
32
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
|
33
|
-
transform-origin: center center;
|
|
34
|
-
transition: all 0.2s ease-in-out;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.no-spacer .v-list-item__spacer {
|
|
38
|
-
display: none !important;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@keyframes progress-circular-rotate {
|
|
42
|
-
100% {
|
|
43
|
-
transform: rotate(270deg);
|
|
44
|
-
}
|
|
45
|
-
}
|
|
46
|
-
header.v-toolbar--border {
|
|
47
|
-
border-color: rgb(var(--v-theme-borderLight));
|
|
48
|
-
}
|
|
49
|
-
|
|
50
|
-
.v-toolbar.v-app-bar {
|
|
51
|
-
border-bottom: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.v-sheet--border {
|
|
55
|
-
border: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
.v-expansion-panel {
|
|
59
|
-
border: 1px solid rgb(var(--v-theme-borderLight));
|
|
60
|
-
}
|
|
61
|
-
.v-expansion-panel:not(:first-child) {
|
|
62
|
-
margin-top: -1px;
|
|
63
|
-
}
|
|
64
|
-
.v-expansion-panel .v-expansion-panel-text__wrapper {
|
|
65
|
-
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
66
|
-
padding: 16px 24px;
|
|
67
|
-
}
|
|
68
|
-
.v-expansion-panel.v-expansion-panel--active .v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
69
|
-
background-color: rgb(var(--v-theme-gray100));
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
.v-expansion-panel--active > .v-expansion-panel-title {
|
|
73
|
-
min-height: unset;
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
.v-expansion-panel--disabled .v-expansion-panel-title {
|
|
77
|
-
color: rgba(var(--v-theme-on-surface), 0.15);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
html {
|
|
81
|
-
overflow-y: auto;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.horizontalLayout .page-wrapper .v-container {
|
|
85
|
-
padding-top: 20px;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
@media (min-width: 1540px) {
|
|
89
|
-
.v-container:not(.v-container--fluid) {
|
|
90
|
-
max-width: 1500px;
|
|
91
|
-
}
|
|
92
|
-
}
|
|
93
|
-
.spacer {
|
|
94
|
-
padding: 100px 0;
|
|
95
|
-
}
|
|
96
|
-
@media (max-width: 1264px) {
|
|
97
|
-
.spacer {
|
|
98
|
-
padding: 72px 0;
|
|
99
|
-
}
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
@media (max-width: 800px) {
|
|
103
|
-
.spacer {
|
|
104
|
-
padding: 40px 0;
|
|
105
|
-
}
|
|
106
|
-
}
|
|
107
|
-
.page-wrapper {
|
|
108
|
-
background: rgb(255, 255, 255);
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
.cursor-pointer {
|
|
112
|
-
cursor: pointer;
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.page-wrapper .v-container {
|
|
116
|
-
padding: 15px;
|
|
117
|
-
}
|
|
118
|
-
.page-wrapper .v-container:first-child {
|
|
119
|
-
min-height: calc(100vh - 139px);
|
|
120
|
-
}
|
|
121
|
-
@media (max-width: 1550px) {
|
|
122
|
-
.page-wrapper .v-container {
|
|
123
|
-
max-width: 100%;
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
@media (min-width: 768px) {
|
|
127
|
-
.page-wrapper .v-container {
|
|
128
|
-
padding-inline: 40px;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
.maxWidth {
|
|
133
|
-
max-width: 1200px;
|
|
134
|
-
margin: 0 auto;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.display-1 {
|
|
138
|
-
font-size: 44px;
|
|
139
|
-
line-height: 54px;
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
.display-2 {
|
|
143
|
-
font-size: 40px;
|
|
144
|
-
line-height: 50px;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.display-3 {
|
|
148
|
-
font-size: 30px;
|
|
149
|
-
line-height: 40px;
|
|
150
|
-
}
|
|
151
|
-
|
|
152
|
-
.h1 {
|
|
153
|
-
font-size: 36px;
|
|
154
|
-
line-height: 46px;
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
.h2 {
|
|
158
|
-
font-size: 30px;
|
|
159
|
-
line-height: 40px;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
.h3 {
|
|
163
|
-
font-size: 21px;
|
|
164
|
-
line-height: 31px;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.h4 {
|
|
168
|
-
font-size: 18px;
|
|
169
|
-
line-height: 28px;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.h5 {
|
|
173
|
-
font-size: 16px;
|
|
174
|
-
line-height: 26px;
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
.h6 {
|
|
178
|
-
font-size: 14px;
|
|
179
|
-
line-height: 24px;
|
|
180
|
-
}
|
|
181
|
-
|
|
182
|
-
.text-8 {
|
|
183
|
-
font-size: 8px;
|
|
184
|
-
line-height: 18px;
|
|
185
|
-
}
|
|
186
|
-
|
|
187
|
-
.text-10 {
|
|
188
|
-
font-size: 10px;
|
|
189
|
-
line-height: 20px;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
.text-13 {
|
|
193
|
-
font-size: 13px;
|
|
194
|
-
line-height: 23px;
|
|
195
|
-
}
|
|
196
|
-
|
|
197
|
-
.text-18 {
|
|
198
|
-
font-size: 18px;
|
|
199
|
-
line-height: 28px;
|
|
200
|
-
}
|
|
201
|
-
|
|
202
|
-
.text-20 {
|
|
203
|
-
font-size: 20px;
|
|
204
|
-
line-height: 30px;
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.text-24 {
|
|
208
|
-
font-size: 24px;
|
|
209
|
-
line-height: 34px;
|
|
210
|
-
}
|
|
211
|
-
|
|
212
|
-
.body-text-1 {
|
|
213
|
-
font-size: 10px;
|
|
214
|
-
line-height: 20px;
|
|
215
|
-
}
|
|
216
|
-
|
|
217
|
-
.customizer-btn .icon {
|
|
218
|
-
animation: progress-circular-rotate 1.4s linear infinite;
|
|
219
|
-
transform-origin: center center;
|
|
220
|
-
transition: all 0.2s ease-in-out;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.fixed-width {
|
|
224
|
-
max-width: 1300px;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.h-100 {
|
|
228
|
-
height: 100%;
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
.w-100 {
|
|
232
|
-
width: 100%;
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
.h-100vh {
|
|
236
|
-
height: 100vh;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
.gap-2 {
|
|
240
|
-
gap: 8px;
|
|
241
|
-
}
|
|
242
|
-
|
|
243
|
-
.gap-3 {
|
|
244
|
-
gap: 16px;
|
|
245
|
-
}
|
|
246
|
-
|
|
247
|
-
.gap-4 {
|
|
248
|
-
gap: 24px;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.text-white {
|
|
252
|
-
color: rgb(255, 255, 255) !important;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
@keyframes slideY {
|
|
256
|
-
0%, 50%, 100% {
|
|
257
|
-
transform: translateY(0px);
|
|
258
|
-
}
|
|
259
|
-
25% {
|
|
260
|
-
transform: translateY(-10px);
|
|
261
|
-
}
|
|
262
|
-
75% {
|
|
263
|
-
transform: translateY(10px);
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
.opacity-50 {
|
|
267
|
-
opacity: 0.5;
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
.link {
|
|
271
|
-
color: rgb(var(--v-theme-lightText));
|
|
272
|
-
text-decoration: none;
|
|
273
|
-
}
|
|
274
|
-
.link:hover {
|
|
275
|
-
color: rgb(var(--v-theme-primary));
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
/*This is for the logo*/
|
|
279
|
-
.leftSidebar {
|
|
280
|
-
border: 0px;
|
|
281
|
-
box-shadow: none !important;
|
|
282
|
-
border-right: 1px solid rgba(var(--v-theme-borderLight), 0.8);
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
/*This is for the Vertical sidebar*/
|
|
286
|
-
.scrollnavbar {
|
|
287
|
-
height: calc(100vh - 151px);
|
|
288
|
-
/*General Menu css*/
|
|
289
|
-
/*This is for the dropdown*/
|
|
290
|
-
}
|
|
291
|
-
.scrollnavbar .smallCap {
|
|
292
|
-
padding: 0px 0 0 20px !important;
|
|
293
|
-
}
|
|
294
|
-
.scrollnavbar .v-list {
|
|
295
|
-
color: rgb(var(--v-theme-lightText));
|
|
296
|
-
padding: 0;
|
|
297
|
-
}
|
|
298
|
-
.scrollnavbar .v-list .v-list-item--one-line.v-list-item--active {
|
|
299
|
-
border-right: 2px solid rgb(var(--v-theme-primary));
|
|
300
|
-
}
|
|
301
|
-
.scrollnavbar .v-list .v-list-group .v-list-item--one-line.v-list-item--active.v-list-item--link {
|
|
302
|
-
border-right: 2px solid rgb(var(--v-theme-primary));
|
|
303
|
-
}
|
|
304
|
-
.scrollnavbar .v-list .v-list-group .v-list-item--one-line.v-list-item--active.v-list-group__header {
|
|
305
|
-
border-right: none;
|
|
306
|
-
background: transparent;
|
|
307
|
-
}
|
|
308
|
-
.scrollnavbar .v-list .v-list-group .v-list-group__items .v-list-item--link .v-list-item__prepend,
|
|
309
|
-
.scrollnavbar .v-list .v-list-group .v-list-group__items .v-list-item .v-list-item__prepend {
|
|
310
|
-
margin-inline-end: 1px;
|
|
311
|
-
}
|
|
312
|
-
.scrollnavbar .v-list-group__items .v-list-item,
|
|
313
|
-
.scrollnavbar .v-list-item {
|
|
314
|
-
border-radius: 0;
|
|
315
|
-
padding-inline-start: calc(20px + var(--indent-padding) / 2) !important;
|
|
316
|
-
}
|
|
317
|
-
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__prepend,
|
|
318
|
-
.scrollnavbar .v-list-item .v-list-item__prepend {
|
|
319
|
-
margin-inline-end: -20px;
|
|
320
|
-
}
|
|
321
|
-
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append,
|
|
322
|
-
.scrollnavbar .v-list-item .v-list-item__append {
|
|
323
|
-
font-size: 0.875rem;
|
|
324
|
-
}
|
|
325
|
-
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append .v-icon,
|
|
326
|
-
.scrollnavbar .v-list-item .v-list-item__append .v-icon {
|
|
327
|
-
margin-inline-start: 13px;
|
|
328
|
-
}
|
|
329
|
-
.scrollnavbar .v-list-group__items .v-list-item .v-list-item__append > .v-icon,
|
|
330
|
-
.scrollnavbar .v-list-item .v-list-item__append > .v-icon {
|
|
331
|
-
--v-medium-emphasis-opacity: 0.8;
|
|
332
|
-
}
|
|
333
|
-
.scrollnavbar .v-list-group__items .v-list-item .v-list-item-title,
|
|
334
|
-
.scrollnavbar .v-list-item .v-list-item-title {
|
|
335
|
-
font-size: 0.875rem;
|
|
336
|
-
color: rgb(var(--v-theme-darkText));
|
|
337
|
-
}
|
|
338
|
-
.scrollnavbar .v-list-group__items .v-list-item.v-list-item--active .v-list-item-title,
|
|
339
|
-
.scrollnavbar .v-list-item.v-list-item--active .v-list-item-title {
|
|
340
|
-
color: rgb(var(--v-theme-primary));
|
|
341
|
-
}
|
|
342
|
-
.scrollnavbar .v-list .v-list-item--active .v-list-item-title {
|
|
343
|
-
font-weight: 500;
|
|
344
|
-
}
|
|
345
|
-
.scrollnavbar .v-list .sidebarchip .v-icon {
|
|
346
|
-
margin-inline-start: -3px;
|
|
347
|
-
}
|
|
348
|
-
.scrollnavbar .v-list .v-list-group .v-list-item:focus-visible > .v-list-item__overlay {
|
|
349
|
-
opacity: 0;
|
|
350
|
-
}
|
|
351
|
-
.scrollnavbar .v-list > .v-list-group {
|
|
352
|
-
position: relative;
|
|
353
|
-
}
|
|
354
|
-
.scrollnavbar .v-list > .v-list-group > .v-list-item--active,
|
|
355
|
-
.scrollnavbar .v-list > .v-list-group > .v-list-item:hover {
|
|
356
|
-
background: rgb(var(--v-theme-primary), 0.05);
|
|
357
|
-
}
|
|
358
|
-
|
|
359
|
-
/* This is for the collapse mode */
|
|
360
|
-
.v-navigation-drawer--rail .scrollnavbar .v-list .v-list-group__items,
|
|
361
|
-
.v-navigation-drawer--rail .hide-menu {
|
|
362
|
-
display: none;
|
|
363
|
-
}
|
|
364
|
-
.v-navigation-drawer--rail .v-navigation-drawer__content:hover .v-list .v-list-group__items {
|
|
365
|
-
opacity: 1;
|
|
366
|
-
display: inline;
|
|
367
|
-
}
|
|
368
|
-
.v-navigation-drawer--rail .scrollnavbar .v-list-item .v-list-item__prepend {
|
|
369
|
-
margin-left: 5px;
|
|
370
|
-
}
|
|
371
|
-
.v-navigation-drawer--rail .scrollnavbar .v-list-group__items .v-list-item,
|
|
372
|
-
.v-navigation-drawer--rail .scrollnavbar .v-list-item {
|
|
373
|
-
padding-inline-start: calc(12px + var(--indent-padding) / 2) !important;
|
|
374
|
-
}
|
|
375
|
-
.v-navigation-drawer--rail .sidebar-user {
|
|
376
|
-
margin-left: -6px;
|
|
377
|
-
}
|
|
378
|
-
.v-navigation-drawer--rail .leftPadding {
|
|
379
|
-
margin-left: 0px;
|
|
380
|
-
}
|
|
381
|
-
.v-navigation-drawer--rail.leftSidebar .v-list-subheader {
|
|
382
|
-
display: none;
|
|
383
|
-
}
|
|
384
|
-
.v-navigation-drawer--rail.leftSidebar:hover .v-list-subheader {
|
|
385
|
-
display: inline-flex;
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
.SideBarFooter .v-list-item {
|
|
389
|
-
border-radius: 0;
|
|
390
|
-
padding-inline-start: calc(20px + var(--indent-padding) / 2) !important;
|
|
391
|
-
}
|
|
392
|
-
.SideBarFooter .v-list-item .v-list-item__prepend {
|
|
393
|
-
margin-inline-end: -20px;
|
|
394
|
-
}
|
|
395
|
-
.SideBarFooter .v-list-item .v-list-item__append {
|
|
396
|
-
font-size: 0.875rem;
|
|
397
|
-
}
|
|
398
|
-
.SideBarFooter .v-list-item .v-list-item__append .v-icon {
|
|
399
|
-
margin-inline-start: 13px;
|
|
400
|
-
}
|
|
401
|
-
.SideBarFooter .v-list-item .v-list-item__append > .v-icon {
|
|
402
|
-
--v-medium-emphasis-opacity: 0.8;
|
|
403
|
-
}
|
|
404
|
-
.SideBarFooter .v-list-item .v-list-item-title {
|
|
405
|
-
font-size: 0.875rem;
|
|
406
|
-
color: rgb(var(--v-theme-darkText));
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
@media only screen and (min-width: 1170px) {
|
|
410
|
-
.mini-sidebar .logo {
|
|
411
|
-
width: 40px;
|
|
412
|
-
overflow: hidden;
|
|
413
|
-
}
|
|
414
|
-
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .logo {
|
|
415
|
-
width: 100%;
|
|
416
|
-
}
|
|
417
|
-
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .v-list .v-list-group__items,
|
|
418
|
-
.mini-sidebar .v-navigation-drawer--expand-on-hover:hover .hide-menu {
|
|
419
|
-
opacity: 1;
|
|
420
|
-
}
|
|
421
|
-
}
|
|
422
|
-
.v-footer {
|
|
423
|
-
background: rgb(var(--v-theme-containerbg));
|
|
424
|
-
padding: 24px 16px 0px;
|
|
425
|
-
margin-top: auto;
|
|
426
|
-
position: unset;
|
|
427
|
-
}
|
|
428
|
-
.v-footer a {
|
|
429
|
-
text-decoration: unset;
|
|
430
|
-
}
|
|
431
|
-
.v-footer a:hover {
|
|
432
|
-
text-decoration: underline;
|
|
433
|
-
}
|
|
434
|
-
|
|
435
|
-
@media (max-width: 475px) {
|
|
436
|
-
.footer {
|
|
437
|
-
text-align: center;
|
|
438
|
-
}
|
|
439
|
-
.footer .v-col-6 {
|
|
440
|
-
flex: 0 0 100%;
|
|
441
|
-
max-width: 100%;
|
|
442
|
-
}
|
|
443
|
-
.footer .v-col-6.text-right {
|
|
444
|
-
text-align: center !important;
|
|
445
|
-
}
|
|
446
|
-
}
|
|
447
|
-
.profileBtn {
|
|
448
|
-
height: 44px !important;
|
|
449
|
-
margin: 0 20px 0 10px !important;
|
|
450
|
-
padding: 0 6px;
|
|
451
|
-
}
|
|
452
|
-
.profileBtn .v-avatar {
|
|
453
|
-
width: 32px;
|
|
454
|
-
height: 32px;
|
|
455
|
-
}
|
|
456
|
-
.profileBtn .v-avatar img {
|
|
457
|
-
width: 32px;
|
|
458
|
-
height: 32px;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
@media (max-width: 600px) {
|
|
462
|
-
.profileBtn {
|
|
463
|
-
min-width: 42px;
|
|
464
|
-
margin: 0 12px 0 0 !important;
|
|
465
|
-
}
|
|
466
|
-
.profileBtn .v-avatar {
|
|
467
|
-
width: 24px;
|
|
468
|
-
height: 24px;
|
|
469
|
-
}
|
|
470
|
-
.profileBtn .v-avatar img {
|
|
471
|
-
width: 24px;
|
|
472
|
-
height: 24px;
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
@media (max-width: 460px) {
|
|
476
|
-
.notification-dropdown {
|
|
477
|
-
width: 332px !important;
|
|
478
|
-
}
|
|
479
|
-
.notification-dropdown .v-list-item__content .d-inline-flex .text-caption {
|
|
480
|
-
min-width: 50px;
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
|
-
.loginBox {
|
|
484
|
-
max-width: 475px;
|
|
485
|
-
margin: 0 auto;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.externalLink {
|
|
489
|
-
color: rgb(var(--v-theme-primary));
|
|
490
|
-
text-decoration: none;
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
.single-line-alert .v-alert__close,
|
|
494
|
-
.single-line-alert .v-alert__prepend {
|
|
495
|
-
align-self: center !important;
|
|
496
|
-
}
|
|
497
|
-
|
|
498
|
-
.v-alert__prepend {
|
|
499
|
-
align-self: center;
|
|
500
|
-
}
|
|
501
|
-
.v-alert__prepend .mdi {
|
|
502
|
-
width: 18px !important;
|
|
503
|
-
height: 18px !important;
|
|
504
|
-
font-size: 18px !important;
|
|
505
|
-
}
|
|
506
|
-
|
|
507
|
-
@media (max-width: 500px) {
|
|
508
|
-
.single-line-alert {
|
|
509
|
-
display: flex;
|
|
510
|
-
flex-wrap: wrap;
|
|
511
|
-
}
|
|
512
|
-
.single-line-alert .v-alert__append {
|
|
513
|
-
margin-inline-start: 0px;
|
|
514
|
-
}
|
|
515
|
-
.single-line-alert .v-alert__close {
|
|
516
|
-
margin-left: auto;
|
|
517
|
-
}
|
|
518
|
-
.single-line-alert .v-alert__content {
|
|
519
|
-
width: 100%;
|
|
520
|
-
margin-top: 5px;
|
|
521
|
-
}
|
|
522
|
-
}
|
|
523
|
-
.v-list-item.v-list-item--border {
|
|
524
|
-
border-color: rgb(var(--v-border-color));
|
|
525
|
-
border-width: 0 0 1px 0;
|
|
526
|
-
}
|
|
527
|
-
.v-list-item.v-list-item--border:last-child {
|
|
528
|
-
border-width: 0;
|
|
529
|
-
}
|
|
530
|
-
.v-list-item.v-list-item--variant-tonal {
|
|
531
|
-
background: rgb(var(--v-theme-gray100));
|
|
532
|
-
}
|
|
533
|
-
.v-list-item.v-list-item--variant-tonal .v-list-item__underlay {
|
|
534
|
-
background: transparent;
|
|
535
|
-
}
|
|
536
|
-
.v-list-item:last-child .v-list-item__content .v-divider--inset {
|
|
537
|
-
display: none;
|
|
538
|
-
}
|
|
539
|
-
|
|
540
|
-
.v-list[aria-busy=true] {
|
|
541
|
-
cursor: context-menu;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.v-list-group__items .v-list-item {
|
|
545
|
-
padding-inline-start: 40px !important;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.v-list-item__content .v-divider--inset:not(.v-divider--vertical) {
|
|
549
|
-
max-width: 100%;
|
|
550
|
-
margin-inline-start: 0;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.v-list--border .v-list-item + .v-list-item {
|
|
554
|
-
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
555
|
-
}
|
|
556
|
-
|
|
557
|
-
.v-btn--icon.v-btn--density-default {
|
|
558
|
-
width: calc(var(--v-btn-height) + 6px);
|
|
559
|
-
height: calc(var(--v-btn-height) + 6px);
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.v-btn-group .v-btn {
|
|
563
|
-
height: inherit !important;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.v-btn-group {
|
|
567
|
-
border-color: rgba(var(--v-border-color), 1);
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.v-btn-group--divided .v-btn:not(:last-child) {
|
|
571
|
-
border-inline-end-color: rgba(var(--v-border-color), 1);
|
|
572
|
-
}
|
|
573
|
-
|
|
574
|
-
.v-card--variant-outlined {
|
|
575
|
-
border-color: rgba(var(--v-theme-borderLight), 1);
|
|
576
|
-
}
|
|
577
|
-
.v-card--variant-outlined .v-divider {
|
|
578
|
-
border-color: rgba(var(--v-theme-borderLight), 0.8);
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
.v-card {
|
|
582
|
-
width: 100%;
|
|
583
|
-
overflow: visible;
|
|
584
|
-
}
|
|
585
|
-
.v-card.withbg {
|
|
586
|
-
background-color: rgb(var(--v-theme-background));
|
|
587
|
-
}
|
|
588
|
-
.v-card.w-auto {
|
|
589
|
-
width: auto !important;
|
|
590
|
-
}
|
|
591
|
-
.v-card.overflow-hidden {
|
|
592
|
-
overflow: hidden;
|
|
593
|
-
}
|
|
594
|
-
|
|
595
|
-
.v-card-subtitle {
|
|
596
|
-
font-size: 0.75rem;
|
|
597
|
-
}
|
|
598
|
-
|
|
599
|
-
.title-card .v-card-text {
|
|
600
|
-
background-color: rgb(var(--v-theme-background));
|
|
601
|
-
border: 1px solid rgba(var(--v-theme-borderLight), 1);
|
|
602
|
-
}
|
|
603
|
-
|
|
604
|
-
.v-badge__badge {
|
|
605
|
-
min-width: 16px;
|
|
606
|
-
height: 16px;
|
|
607
|
-
padding: 4px;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
.v-badge--dot .v-badge__badge {
|
|
611
|
-
height: 8px;
|
|
612
|
-
width: 8px;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
.v-breadcrumbs-item--link {
|
|
616
|
-
color: rgb(var(--v-theme-lightText));
|
|
617
|
-
}
|
|
618
|
-
|
|
619
|
-
.v-breadcrumbs .v-breadcrumbs-item--disabled {
|
|
620
|
-
--v-disabled-opacity: 1;
|
|
621
|
-
}
|
|
622
|
-
.v-breadcrumbs .v-breadcrumbs-item--disabled .v-breadcrumbs-item--link {
|
|
623
|
-
color: rgb(var(--v-theme-darkText));
|
|
624
|
-
}
|
|
625
|
-
.v-breadcrumbs .v-breadcrumbs-divider {
|
|
626
|
-
color: rgb(var(--v-theme-lightText));
|
|
627
|
-
margin-left: -10px;
|
|
628
|
-
margin-right: -10px;
|
|
629
|
-
}
|
|
630
|
-
|
|
631
|
-
.v-input--density-default:not(.v-autocomplete--multiple),
|
|
632
|
-
.v-field--variant-solo,
|
|
633
|
-
.v-field--variant-filled {
|
|
634
|
-
--v-input-control-height: 39px;
|
|
635
|
-
--v-input-padding-top: 2px;
|
|
636
|
-
}
|
|
637
|
-
.v-input--density-default:not(.v-autocomplete--multiple) input.v-field__input,
|
|
638
|
-
.v-field--variant-solo input.v-field__input,
|
|
639
|
-
.v-field--variant-filled input.v-field__input {
|
|
640
|
-
padding-bottom: 2px;
|
|
641
|
-
}
|
|
642
|
-
.v-input--density-default:not(.v-autocomplete--multiple) .v-field__input,
|
|
643
|
-
.v-field--variant-solo .v-field__input,
|
|
644
|
-
.v-field--variant-filled .v-field__input {
|
|
645
|
-
padding-bottom: 2px;
|
|
646
|
-
}
|
|
647
|
-
.v-input--density-default:not(.v-autocomplete--multiple) textarea,
|
|
648
|
-
.v-field--variant-solo textarea,
|
|
649
|
-
.v-field--variant-filled textarea {
|
|
650
|
-
margin-top: 8px;
|
|
651
|
-
}
|
|
652
|
-
|
|
653
|
-
.v-input--density-default .v-field__input {
|
|
654
|
-
min-height: 41px;
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
.v-field--variant-outlined.v-field--focused .v-field__outline {
|
|
658
|
-
--v-field-border-width: 1px;
|
|
659
|
-
}
|
|
660
|
-
|
|
661
|
-
.remove-details .v-input__details {
|
|
662
|
-
display: none;
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
.v-input .v-input__details {
|
|
666
|
-
padding-inline: 0;
|
|
667
|
-
}
|
|
668
|
-
|
|
669
|
-
.v-input--density-comfortable {
|
|
670
|
-
--v-input-control-height: 56px;
|
|
671
|
-
--v-input-padding-top: 17px;
|
|
672
|
-
}
|
|
673
|
-
|
|
674
|
-
.v-label {
|
|
675
|
-
font-size: 0.875rem;
|
|
676
|
-
--v-medium-emphasis-opacity: 0.8;
|
|
677
|
-
}
|
|
678
|
-
|
|
679
|
-
.v-switch .v-label,
|
|
680
|
-
.v-checkbox .v-label {
|
|
681
|
-
opacity: 1;
|
|
682
|
-
}
|
|
683
|
-
|
|
684
|
-
textarea.v-field__input {
|
|
685
|
-
font-size: 14px;
|
|
686
|
-
}
|
|
687
|
-
|
|
688
|
-
.textarea-input .v-label {
|
|
689
|
-
top: 15px;
|
|
690
|
-
}
|
|
691
|
-
|
|
692
|
-
.v-navigation-drawer__scrim.fade-transition-leave-to {
|
|
693
|
-
display: none;
|
|
694
|
-
}
|
|
695
|
-
|
|
696
|
-
.v-text-field input {
|
|
697
|
-
font-size: 0.875rem;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.v-select .v-field {
|
|
701
|
-
font-size: 0.875rem;
|
|
702
|
-
}
|
|
703
|
-
|
|
704
|
-
.pwdInput {
|
|
705
|
-
position: relative;
|
|
706
|
-
}
|
|
707
|
-
.pwdInput .v-input__append {
|
|
708
|
-
position: absolute;
|
|
709
|
-
right: 0;
|
|
710
|
-
top: 50%;
|
|
711
|
-
transform: translateY(-50%);
|
|
712
|
-
}
|
|
713
|
-
.pwdInput .v-field__append-inner {
|
|
714
|
-
right: -10px;
|
|
715
|
-
position: absolute;
|
|
716
|
-
}
|
|
717
|
-
|
|
718
|
-
.v-textarea input {
|
|
719
|
-
font-size: 0.875rem;
|
|
720
|
-
font-weight: 500;
|
|
721
|
-
}
|
|
722
|
-
.v-textarea input::placeholder {
|
|
723
|
-
color: rgba(0, 0, 0, 0.38);
|
|
724
|
-
}
|
|
725
|
-
|
|
726
|
-
.v-tabs {
|
|
727
|
-
border-radius: 4px;
|
|
728
|
-
border-left: 1px solid rgb(var(--v-theme-borderLight));
|
|
729
|
-
border-right: 1px solid rgb(var(--v-theme-borderLight));
|
|
730
|
-
}
|
|
731
|
-
.v-tabs .v-tab {
|
|
732
|
-
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
733
|
-
border-bottom: 1px solid rgb(var(--v-theme-borderLight));
|
|
734
|
-
}
|
|
735
|
-
|
|
736
|
-
.rounded-square {
|
|
737
|
-
width: 20px;
|
|
738
|
-
height: 20px;
|
|
739
|
-
}
|
|
740
|
-
|
|
741
|
-
.icon-scale {
|
|
742
|
-
position: absolute;
|
|
743
|
-
left: -17px;
|
|
744
|
-
bottom: -27px;
|
|
745
|
-
transform: rotate(25deg);
|
|
746
|
-
}
|
|
747
|
-
|
|
748
|
-
.tabBtn .v-tab--selected .v-tab__slider {
|
|
749
|
-
opacity: 0;
|
|
750
|
-
}
|
|
751
|
-
.tabBtn .v-btn--variant-outlined:not(.v-tab--selected) {
|
|
752
|
-
border: none;
|
|
753
|
-
color: rgb(var(--v-theme-lightText));
|
|
754
|
-
}
|
|
755
|
-
|
|
756
|
-
.headerWithBtn .v-card-item {
|
|
757
|
-
padding: 14px;
|
|
758
|
-
}
|
|
759
|
-
|
|
760
|
-
.groupingAvatar .v-avatar {
|
|
761
|
-
cursor: pointer;
|
|
762
|
-
}
|
|
763
|
-
|
|
764
|
-
.widget-gradient {
|
|
765
|
-
position: relative;
|
|
766
|
-
}
|
|
767
|
-
.widget-gradient::before, .widget-gradient::after {
|
|
768
|
-
content: "";
|
|
769
|
-
width: 100%;
|
|
770
|
-
height: 100%;
|
|
771
|
-
position: absolute;
|
|
772
|
-
background: linear-gradient(90deg, rgba(255, 255, 255, 0.0001) 22.07%, rgba(255, 255, 255, 0.15) 83.21%);
|
|
773
|
-
transform: matrix(0.9, 0.44, -0.44, 0.9, 0, 0);
|
|
774
|
-
}
|
|
775
|
-
.widget-gradient:after {
|
|
776
|
-
top: 50%;
|
|
777
|
-
right: -20px;
|
|
778
|
-
}
|
|
779
|
-
.widget-gradient::before {
|
|
780
|
-
right: -70px;
|
|
781
|
-
bottom: 80%;
|
|
782
|
-
}
|
|
783
|
-
|
|
784
|
-
.hover-icon-card .hover-icon {
|
|
785
|
-
transition: 0.5s;
|
|
786
|
-
}
|
|
787
|
-
.hover-icon-card:hover .hover-icon {
|
|
788
|
-
opacity: 1;
|
|
789
|
-
transform: scale(1.2);
|
|
790
|
-
transition: 0.5s;
|
|
791
|
-
}
|
|
792
|
-
|
|
793
|
-
.widget-progress .v-progress-linear .v-progress-linear__background {
|
|
794
|
-
background-color: rgb(var(--v-theme-lightsuccess)) !important;
|
|
795
|
-
opacity: 1;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
.readMedia {
|
|
799
|
-
position: absolute;
|
|
800
|
-
bottom: -7px;
|
|
801
|
-
right: 0;
|
|
802
|
-
width: 182px;
|
|
803
|
-
height: 144px;
|
|
804
|
-
}
|
|
805
|
-
|
|
806
|
-
.CustomTable > .v-table__wrapper {
|
|
807
|
-
max-height: 580px;
|
|
808
|
-
}
|
|
809
|
-
.CustomTable > .v-table__wrapper > table {
|
|
810
|
-
/* Borde de la tabla */
|
|
811
|
-
border: 1px solid rgb(var(--v-theme-borderLight));
|
|
812
|
-
border-radius: 5px;
|
|
813
|
-
}
|
|
814
|
-
.CustomTable > .v-table__wrapper > table > thead > tr > th {
|
|
815
|
-
background: rgb(var(--v-theme-gray100));
|
|
816
|
-
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
817
|
-
}
|
|
818
|
-
.CustomTable > .v-table__wrapper > table > tbody > tr td {
|
|
819
|
-
/* Borde superior de las filas */
|
|
820
|
-
border-top: 1px solid rgb(var(--v-theme-borderLight));
|
|
821
|
-
}
|
|
822
|
-
.CustomTable > .v-table__wrapper > table > tbody > tr:hover td {
|
|
823
|
-
/* Filas on hover */
|
|
824
|
-
background: rgb(var(--v-theme-gray100));
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.json-container-view {
|
|
828
|
-
border: 1px solid #423b3b;
|
|
829
|
-
border-radius: 3px;
|
|
830
|
-
padding: 20px;
|
|
831
|
-
background-color: #f7f7f7;
|
|
832
|
-
}
|
|
833
|
-
|
|
834
|
-
.vjs-tree-brackets {
|
|
835
|
-
cursor: pointer;
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.vjs-tree-brackets:hover {
|
|
839
|
-
color: #1890ff;
|
|
840
|
-
}
|
|
841
|
-
|
|
842
|
-
.vjs-check-controller {
|
|
843
|
-
position: absolute;
|
|
844
|
-
left: 0;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.vjs-check-controller.is-checked .vjs-check-controller-inner {
|
|
848
|
-
background-color: #1890ff;
|
|
849
|
-
border-color: #0076e4;
|
|
850
|
-
}
|
|
851
|
-
|
|
852
|
-
.vjs-check-controller.is-checked .vjs-check-controller-inner.is-checkbox:after {
|
|
853
|
-
transform: rotate(45deg) scaleY(1);
|
|
854
|
-
}
|
|
855
|
-
|
|
856
|
-
.vjs-check-controller.is-checked .vjs-check-controller-inner.is-radio:after {
|
|
857
|
-
transform: translate(-50%, -50%) scale(1);
|
|
858
|
-
}
|
|
859
|
-
|
|
860
|
-
.vjs-check-controller .vjs-check-controller-inner {
|
|
861
|
-
display: inline-block;
|
|
862
|
-
position: relative;
|
|
863
|
-
border: 1px solid #bfcbd9;
|
|
864
|
-
border-radius: 2px;
|
|
865
|
-
vertical-align: middle;
|
|
866
|
-
box-sizing: border-box;
|
|
867
|
-
width: 16px;
|
|
868
|
-
height: 16px;
|
|
869
|
-
background-color: #fff;
|
|
870
|
-
z-index: 1;
|
|
871
|
-
cursor: pointer;
|
|
872
|
-
transition: border-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46), background-color 0.25s cubic-bezier(0.71, -0.46, 0.29, 1.46);
|
|
873
|
-
}
|
|
874
|
-
|
|
875
|
-
.vjs-check-controller .vjs-check-controller-inner:after {
|
|
876
|
-
box-sizing: content-box;
|
|
877
|
-
content: "";
|
|
878
|
-
border: 2px solid #fff;
|
|
879
|
-
border-left: 0;
|
|
880
|
-
border-top: 0;
|
|
881
|
-
height: 8px;
|
|
882
|
-
left: 4px;
|
|
883
|
-
position: absolute;
|
|
884
|
-
top: 1px;
|
|
885
|
-
transform: rotate(45deg) scaleY(0);
|
|
886
|
-
width: 4px;
|
|
887
|
-
transition: transform 0.15s cubic-bezier(0.71, -0.46, 0.88, 0.6) 0.05s;
|
|
888
|
-
transform-origin: center;
|
|
889
|
-
}
|
|
890
|
-
|
|
891
|
-
.vjs-check-controller .vjs-check-controller-inner.is-radio {
|
|
892
|
-
border-radius: 100%;
|
|
893
|
-
}
|
|
894
|
-
|
|
895
|
-
.vjs-check-controller .vjs-check-controller-inner.is-radio:after {
|
|
896
|
-
border-radius: 100%;
|
|
897
|
-
height: 4px;
|
|
898
|
-
background-color: #fff;
|
|
899
|
-
left: 50%;
|
|
900
|
-
top: 50%;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.vjs-check-controller .vjs-check-controller-original {
|
|
904
|
-
opacity: 0;
|
|
905
|
-
outline: none;
|
|
906
|
-
position: absolute;
|
|
907
|
-
z-index: -1;
|
|
908
|
-
top: 0;
|
|
909
|
-
left: 0;
|
|
910
|
-
right: 0;
|
|
911
|
-
bottom: 0;
|
|
912
|
-
margin: 0;
|
|
913
|
-
}
|
|
914
|
-
|
|
915
|
-
.vjs-carets {
|
|
916
|
-
position: absolute;
|
|
917
|
-
right: 0;
|
|
918
|
-
cursor: pointer;
|
|
919
|
-
}
|
|
920
|
-
|
|
921
|
-
.vjs-carets svg {
|
|
922
|
-
transition: transform 0.3s;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
.vjs-carets:hover {
|
|
926
|
-
color: #1890ff;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
.vjs-carets-close {
|
|
930
|
-
transform: rotate(-90deg);
|
|
931
|
-
}
|
|
932
|
-
|
|
933
|
-
.vjs-tree-node {
|
|
934
|
-
display: flex;
|
|
935
|
-
position: relative;
|
|
936
|
-
line-height: 20px;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.vjs-tree-node.has-carets {
|
|
940
|
-
padding-left: 15px;
|
|
941
|
-
}
|
|
942
|
-
|
|
943
|
-
.vjs-tree-node.has-carets.has-selector,
|
|
944
|
-
.vjs-tree-node.has-selector {
|
|
945
|
-
padding-left: 30px;
|
|
946
|
-
}
|
|
947
|
-
|
|
948
|
-
.vjs-tree-node.is-highlight,
|
|
949
|
-
.vjs-tree-node:hover {
|
|
950
|
-
background-color: #f3f8ff;
|
|
951
|
-
}
|
|
952
|
-
|
|
953
|
-
.vjs-tree-node .vjs-indent {
|
|
954
|
-
display: flex;
|
|
955
|
-
position: relative;
|
|
956
|
-
}
|
|
957
|
-
|
|
958
|
-
.vjs-tree-node .vjs-indent-unit {
|
|
959
|
-
width: 1em;
|
|
960
|
-
}
|
|
961
|
-
|
|
962
|
-
.vjs-tree-node .vjs-indent-unit.has-line {
|
|
963
|
-
border-left: 1px dashed #bfcbd9;
|
|
964
|
-
}
|
|
965
|
-
|
|
966
|
-
.vjs-tree-node.dark.is-highlight,
|
|
967
|
-
.vjs-tree-node.dark:hover {
|
|
968
|
-
background-color: #2e4558;
|
|
969
|
-
}
|
|
970
|
-
|
|
971
|
-
.vjs-node-index {
|
|
972
|
-
position: absolute;
|
|
973
|
-
right: 100%;
|
|
974
|
-
margin-right: 4px;
|
|
975
|
-
user-select: none;
|
|
976
|
-
}
|
|
977
|
-
|
|
978
|
-
.vjs-colon {
|
|
979
|
-
white-space: pre;
|
|
980
|
-
}
|
|
981
|
-
|
|
982
|
-
.vjs-comment {
|
|
983
|
-
color: #bfcbd9;
|
|
984
|
-
}
|
|
985
|
-
|
|
986
|
-
.vjs-value {
|
|
987
|
-
word-break: break-word;
|
|
988
|
-
}
|
|
989
|
-
|
|
990
|
-
.vjs-value-null,
|
|
991
|
-
.vjs-value-undefined {
|
|
992
|
-
color: #d55fde;
|
|
993
|
-
}
|
|
994
|
-
|
|
995
|
-
.vjs-value-boolean,
|
|
996
|
-
.vjs-value-number {
|
|
997
|
-
color: #1d8ce0;
|
|
998
|
-
}
|
|
999
|
-
|
|
1000
|
-
.vjs-value-string {
|
|
1001
|
-
color: #f05941;
|
|
1002
|
-
}
|
|
1003
|
-
|
|
1004
|
-
.vjs-tree {
|
|
1005
|
-
font-family: Monaco, Menlo, Consolas, Bitstream Vera Sans Mono, monospace;
|
|
1006
|
-
font-size: 12px;
|
|
1007
|
-
text-align: left;
|
|
1008
|
-
}
|
|
1009
|
-
|
|
1010
|
-
.vjs-tree.is-virtual {
|
|
1011
|
-
overflow: auto;
|
|
1012
|
-
}
|
|
1013
|
-
|
|
1014
|
-
.vjs-tree.is-virtual .vjs-tree-node {
|
|
1015
|
-
white-space: nowrap;
|
|
1016
|
-
}
|