@bl33dz/fa814698dcde12f86a37ac31dd3aedf9 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/perisai-ui.es.js +6402 -0
- package/dist/perisai-ui.umd.js +1 -0
- package/dist/ui.css +1 -0
- package/fix_imports.sh +38 -0
- package/generate_index.cjs +52 -0
- package/package.json +46 -0
- package/package.json.bak +42 -0
- package/src/index.css +7704 -0
- package/src/index.ts +179 -0
- package/src/lib/utils.ts +6 -0
- package/src/shadcn/accordion/Accordion.vue +19 -0
- package/src/shadcn/accordion/AccordionContent.vue +23 -0
- package/src/shadcn/accordion/AccordionItem.vue +23 -0
- package/src/shadcn/accordion/AccordionTrigger.vue +38 -0
- package/src/shadcn/accordion/index.ts +4 -0
- package/src/shadcn/avatar/Avatar.vue +18 -0
- package/src/shadcn/avatar/AvatarFallback.vue +21 -0
- package/src/shadcn/avatar/AvatarImage.vue +16 -0
- package/src/shadcn/avatar/index.ts +3 -0
- package/src/shadcn/breadcrumb/Breadcrumb.vue +8 -0
- package/src/shadcn/breadcrumb/BreadcrumbEllipsis.vue +9 -0
- package/src/shadcn/breadcrumb/BreadcrumbItem.vue +8 -0
- package/src/shadcn/breadcrumb/BreadcrumbLink.vue +8 -0
- package/src/shadcn/breadcrumb/BreadcrumbList.vue +8 -0
- package/src/shadcn/breadcrumb/BreadcrumbPage.vue +8 -0
- package/src/shadcn/breadcrumb/BreadcrumbSeparator.vue +8 -0
- package/src/shadcn/breadcrumb/index.ts +7 -0
- package/src/shadcn/button/Button.vue +29 -0
- package/src/shadcn/button/index.ts +38 -0
- package/src/shadcn/calendar/Calendar.vue +64 -0
- package/src/shadcn/calendar/CalendarCell.vue +23 -0
- package/src/shadcn/calendar/CalendarCellTrigger.vue +39 -0
- package/src/shadcn/calendar/CalendarGrid.vue +23 -0
- package/src/shadcn/calendar/CalendarGridBody.vue +15 -0
- package/src/shadcn/calendar/CalendarGridHead.vue +16 -0
- package/src/shadcn/calendar/CalendarGridRow.vue +22 -0
- package/src/shadcn/calendar/CalendarHeadCell.vue +23 -0
- package/src/shadcn/calendar/CalendarHeader.vue +23 -0
- package/src/shadcn/calendar/CalendarHeading.vue +30 -0
- package/src/shadcn/calendar/CalendarNextButton.vue +32 -0
- package/src/shadcn/calendar/CalendarPrevButton.vue +32 -0
- package/src/shadcn/calendar/index.ts +12 -0
- package/src/shadcn/card/Card.vue +8 -0
- package/src/shadcn/card/CardContent.vue +8 -0
- package/src/shadcn/card/CardDescription.vue +8 -0
- package/src/shadcn/card/CardHeader.vue +8 -0
- package/src/shadcn/card/CardTitle.vue +8 -0
- package/src/shadcn/card/index.ts +5 -0
- package/src/shadcn/checkbox/Checkbox.vue +38 -0
- package/src/shadcn/checkbox/index.ts +1 -0
- package/src/shadcn/command/Command.vue +87 -0
- package/src/shadcn/command/CommandDialog.vue +31 -0
- package/src/shadcn/command/CommandEmpty.vue +27 -0
- package/src/shadcn/command/CommandGroup.vue +45 -0
- package/src/shadcn/command/CommandInput.vue +39 -0
- package/src/shadcn/command/CommandItem.vue +76 -0
- package/src/shadcn/command/CommandList.vue +25 -0
- package/src/shadcn/command/CommandSeparator.vue +21 -0
- package/src/shadcn/command/CommandShortcut.vue +17 -0
- package/src/shadcn/command/index.ts +25 -0
- package/src/shadcn/context-menu/ContextMenu.vue +18 -0
- package/src/shadcn/context-menu/ContextMenuCheckboxItem.vue +38 -0
- package/src/shadcn/context-menu/ContextMenuContent.vue +34 -0
- package/src/shadcn/context-menu/ContextMenuGroup.vue +15 -0
- package/src/shadcn/context-menu/ContextMenuItem.vue +39 -0
- package/src/shadcn/context-menu/ContextMenuLabel.vue +22 -0
- package/src/shadcn/context-menu/ContextMenuPortal.vue +15 -0
- package/src/shadcn/context-menu/ContextMenuRadioGroup.vue +22 -0
- package/src/shadcn/context-menu/ContextMenuRadioItem.vue +38 -0
- package/src/shadcn/context-menu/ContextMenuSeparator.vue +22 -0
- package/src/shadcn/context-menu/ContextMenuShortcut.vue +17 -0
- package/src/shadcn/context-menu/ContextMenuSub.vue +22 -0
- package/src/shadcn/context-menu/ContextMenuSubContent.vue +33 -0
- package/src/shadcn/context-menu/ContextMenuSubTrigger.vue +33 -0
- package/src/shadcn/context-menu/ContextMenuTrigger.vue +17 -0
- package/src/shadcn/context-menu/index.ts +15 -0
- package/src/shadcn/dialog/Dialog.vue +18 -0
- package/src/shadcn/dialog/DialogClose.vue +15 -0
- package/src/shadcn/dialog/DialogContent.vue +46 -0
- package/src/shadcn/dialog/DialogDescription.vue +23 -0
- package/src/shadcn/dialog/DialogFooter.vue +15 -0
- package/src/shadcn/dialog/DialogHeader.vue +17 -0
- package/src/shadcn/dialog/DialogOverlay.vue +21 -0
- package/src/shadcn/dialog/DialogScrollContent.vue +56 -0
- package/src/shadcn/dialog/DialogTitle.vue +23 -0
- package/src/shadcn/dialog/DialogTrigger.vue +15 -0
- package/src/shadcn/dialog/index.ts +10 -0
- package/src/shadcn/dropdown-menu/DropdownMenu.vue +18 -0
- package/src/shadcn/dropdown-menu/DropdownMenuCheckboxItem.vue +38 -0
- package/src/shadcn/dropdown-menu/DropdownMenuContent.vue +36 -0
- package/src/shadcn/dropdown-menu/DropdownMenuGroup.vue +15 -0
- package/src/shadcn/dropdown-menu/DropdownMenuItem.vue +31 -0
- package/src/shadcn/dropdown-menu/DropdownMenuLabel.vue +23 -0
- package/src/shadcn/dropdown-menu/DropdownMenuRadioGroup.vue +22 -0
- package/src/shadcn/dropdown-menu/DropdownMenuRadioItem.vue +39 -0
- package/src/shadcn/dropdown-menu/DropdownMenuSeparator.vue +24 -0
- package/src/shadcn/dropdown-menu/DropdownMenuShortcut.vue +17 -0
- package/src/shadcn/dropdown-menu/DropdownMenuSub.vue +19 -0
- package/src/shadcn/dropdown-menu/DropdownMenuSubContent.vue +28 -0
- package/src/shadcn/dropdown-menu/DropdownMenuSubTrigger.vue +31 -0
- package/src/shadcn/dropdown-menu/DropdownMenuTrigger.vue +17 -0
- package/src/shadcn/dropdown-menu/index.ts +16 -0
- package/src/shadcn/menubar/Menubar.vue +33 -0
- package/src/shadcn/menubar/MenubarCheckboxItem.vue +38 -0
- package/src/shadcn/menubar/MenubarContent.vue +42 -0
- package/src/shadcn/menubar/MenubarGroup.vue +15 -0
- package/src/shadcn/menubar/MenubarItem.vue +37 -0
- package/src/shadcn/menubar/MenubarLabel.vue +20 -0
- package/src/shadcn/menubar/MenubarMenu.vue +15 -0
- package/src/shadcn/menubar/MenubarPortal.vue +5 -0
- package/src/shadcn/menubar/MenubarRadioGroup.vue +22 -0
- package/src/shadcn/menubar/MenubarRadioItem.vue +38 -0
- package/src/shadcn/menubar/MenubarSeparator.vue +21 -0
- package/src/shadcn/menubar/MenubarShortcut.vue +17 -0
- package/src/shadcn/menubar/MenubarSub.vue +23 -0
- package/src/shadcn/menubar/MenubarSubContent.vue +36 -0
- package/src/shadcn/menubar/MenubarSubTrigger.vue +28 -0
- package/src/shadcn/menubar/MenubarTrigger.vue +28 -0
- package/src/shadcn/menubar/index.ts +15 -0
- package/src/shadcn/navigation-menu/NavigationMenu.vue +35 -0
- package/src/shadcn/navigation-menu/NavigationMenuContent.vue +31 -0
- package/src/shadcn/navigation-menu/NavigationMenuIndicator.vue +23 -0
- package/src/shadcn/navigation-menu/NavigationMenuItem.vue +21 -0
- package/src/shadcn/navigation-menu/NavigationMenuLink.vue +26 -0
- package/src/shadcn/navigation-menu/NavigationMenuList.vue +28 -0
- package/src/shadcn/navigation-menu/NavigationMenuTrigger.vue +24 -0
- package/src/shadcn/navigation-menu/NavigationMenuViewport.vue +31 -0
- package/src/shadcn/navigation-menu/index.ts +14 -0
- package/src/shadcn/pagination/Pagination.vue +151 -0
- package/src/shadcn/pagination/PaginationContent.vue +22 -0
- package/src/shadcn/pagination/PaginationEllipsis.vue +25 -0
- package/src/shadcn/pagination/PaginationFirst.vue +33 -0
- package/src/shadcn/pagination/PaginationItem.vue +31 -0
- package/src/shadcn/pagination/PaginationLast.vue +33 -0
- package/src/shadcn/pagination/PaginationLink.vue +13 -0
- package/src/shadcn/pagination/PaginationNext.vue +22 -0
- package/src/shadcn/pagination/PaginationPrevious.vue +33 -0
- package/src/shadcn/pagination/index.ts +9 -0
- package/src/shadcn/popover/Popover.vue +18 -0
- package/src/shadcn/popover/PopoverAnchor.vue +15 -0
- package/src/shadcn/popover/PopoverContent.vue +46 -0
- package/src/shadcn/popover/PopoverTrigger.vue +15 -0
- package/src/shadcn/popover/index.ts +4 -0
- package/src/shadcn/radio-group/RadioGroup.vue +24 -0
- package/src/shadcn/radio-group/RadioGroupItem.vue +39 -0
- package/src/shadcn/radio-group/index.ts +2 -0
- package/src/shadcn/range-calendar/RangeCalendar.vue +71 -0
- package/src/shadcn/range-calendar/RangeCalendarCell.vue +23 -0
- package/src/shadcn/range-calendar/RangeCalendarCellTrigger.vue +41 -0
- package/src/shadcn/range-calendar/RangeCalendarGrid.vue +23 -0
- package/src/shadcn/range-calendar/RangeCalendarGridBody.vue +15 -0
- package/src/shadcn/range-calendar/RangeCalendarGridHead.vue +15 -0
- package/src/shadcn/range-calendar/RangeCalendarGridRow.vue +22 -0
- package/src/shadcn/range-calendar/RangeCalendarHeadCell.vue +23 -0
- package/src/shadcn/range-calendar/RangeCalendarHeader.vue +23 -0
- package/src/shadcn/range-calendar/RangeCalendarHeading.vue +30 -0
- package/src/shadcn/range-calendar/RangeCalendarNextButton.vue +32 -0
- package/src/shadcn/range-calendar/RangeCalendarPrevButton.vue +32 -0
- package/src/shadcn/range-calendar/index.ts +12 -0
- package/src/shadcn/select/Select.vue +18 -0
- package/src/shadcn/select/SelectContent.vue +52 -0
- package/src/shadcn/select/SelectGroup.vue +15 -0
- package/src/shadcn/select/SelectItem.vue +43 -0
- package/src/shadcn/select/SelectItemText.vue +15 -0
- package/src/shadcn/select/SelectLabel.vue +17 -0
- package/src/shadcn/select/SelectScrollDownButton.vue +26 -0
- package/src/shadcn/select/SelectScrollUpButton.vue +26 -0
- package/src/shadcn/select/SelectSeparator.vue +19 -0
- package/src/shadcn/select/SelectTrigger.vue +33 -0
- package/src/shadcn/select/SelectValue.vue +15 -0
- package/src/shadcn/select/index.ts +11 -0
- package/src/shadcn/separator/Separator.vue +31 -0
- package/src/shadcn/separator/index.ts +1 -0
- package/src/shadcn/sidebar/MenuGroup.vue +28 -0
- package/src/shadcn/sidebar/MenuItemRenderer.vue +23 -0
- package/src/shadcn/sidebar/Sidebar.vue +14 -0
- package/src/shadcn/sidebar/SidebarDemoContent.vue +26 -0
- package/src/shadcn/sidebar/SidebarMenuGroupWithLabel.vue +29 -0
- package/src/shadcn/sidebar/SidebarMenuItemWithIcon.vue +103 -0
- package/src/shadcn/sidebar/SidebarMenuSub.vue +10 -0
- package/src/shadcn/sidebar/SidebarMenuSubItemStyled.vue +38 -0
- package/src/shadcn/sidebar/SidebarTrigger.vue +8 -0
- package/src/shadcn/sidebar/index.ts +5 -0
- package/src/shadcn/slider/Slider.vue +43 -0
- package/src/shadcn/slider/index.ts +1 -0
- package/src/shadcn/sonner/Sonner.vue +19 -0
- package/src/shadcn/sonner/index.ts +1 -0
- package/src/shadcn/switch/Switch.vue +38 -0
- package/src/shadcn/switch/index.ts +1 -0
- package/src/shadcn/tabs/CardTabsContent.vue +16 -0
- package/src/shadcn/tabs/CornerCutTabsTrigger.vue +102 -0
- package/src/shadcn/tabs/GridTabsList.vue +30 -0
- package/src/shadcn/tabs/ScrollableTabsList.vue +8 -0
- package/src/shadcn/tabs/Tabs.vue +23 -0
- package/src/shadcn/tabs/TabsContent.vue +21 -0
- package/src/shadcn/tabs/TabsList.vue +24 -0
- package/src/shadcn/tabs/TabsTrigger.vue +30 -0
- package/src/shadcn/tabs/VerticalTabsList.vue +28 -0
- package/src/shadcn/tabs/VerticalTabsTrigger.vue +16 -0
- package/src/shadcn/tabs/index.ts +10 -0
- package/src/shadcn/toggle/Toggle.vue +35 -0
- package/src/shadcn/toggle/index.ts +28 -0
- package/src/shadcn/tooltip/Tooltip.vue +18 -0
- package/src/shadcn/tooltip/TooltipContent.vue +34 -0
- package/src/shadcn/tooltip/TooltipProvider.vue +14 -0
- package/src/shadcn/tooltip/TooltipTrigger.vue +15 -0
- package/src/shadcn/tooltip/index.ts +4 -0
- package/src/ui/InputOTP.vue +69 -0
- package/src/ui/InputOTPContext.ts +10 -0
- package/src/ui/InputOTPGroup.vue +7 -0
- package/src/ui/InputOTPSeparator.vue +8 -0
- package/src/ui/InputOTPSlot.vue +61 -0
- package/src/ui/PopoverContent.vue +27 -0
- package/src/ui/PopoverTrigger.vue +9 -0
- package/src/ui/SelectContent.vue +24 -0
- package/src/ui/SelectGroup.vue +22 -0
- package/src/ui/SelectItem.vue +25 -0
- package/src/ui/SelectLabel.vue +27 -0
- package/src/ui/SelectSeparator.vue +23 -0
- package/src/ui/SelectTrigger.vue +22 -0
- package/src/ui/SelectValue.vue +9 -0
- package/src/ui/SheetContent.vue +34 -0
- package/src/ui/SheetDescription.vue +9 -0
- package/src/ui/SheetHeader.vue +11 -0
- package/src/ui/SheetTitle.vue +9 -0
- package/src/ui/accordion-content.vue +21 -0
- package/src/ui/accordion-item.vue +18 -0
- package/src/ui/accordion-trigger.vue +14 -0
- package/src/ui/accordion.vue +9 -0
- package/src/ui/alert-actions.vue +13 -0
- package/src/ui/alert-description.vue +13 -0
- package/src/ui/alert-title.vue +13 -0
- package/src/ui/alert.vue +63 -0
- package/src/ui/avatar-fallback.vue +38 -0
- package/src/ui/avatar-group.vue +32 -0
- package/src/ui/avatar-image.vue +19 -0
- package/src/ui/avatar.vue +32 -0
- package/src/ui/badge.vue +90 -0
- package/src/ui/breadcrumb-item.vue +11 -0
- package/src/ui/breadcrumb-separator.vue +9 -0
- package/src/ui/breadcrumb.vue +11 -0
- package/src/ui/button.vue +76 -0
- package/src/ui/card-content.vue +16 -0
- package/src/ui/card-description.vue +16 -0
- package/src/ui/card-footer.vue +13 -0
- package/src/ui/card-header.vue +19 -0
- package/src/ui/card-title.vue +16 -0
- package/src/ui/card.vue +73 -0
- package/src/ui/category-breakdown-metric.vue +205 -0
- package/src/ui/checkbox.vue +84 -0
- package/src/ui/cn.ts +6 -0
- package/src/ui/dialog-body.vue +13 -0
- package/src/ui/dialog-close.vue +9 -0
- package/src/ui/dialog-content.vue +36 -0
- package/src/ui/dialog-description.vue +13 -0
- package/src/ui/dialog-footer.vue +13 -0
- package/src/ui/dialog-header.vue +13 -0
- package/src/ui/dialog-overlay.vue +14 -0
- package/src/ui/dialog-portal.vue +9 -0
- package/src/ui/dialog-title.vue +13 -0
- package/src/ui/dialog-trigger.vue +9 -0
- package/src/ui/dialog.vue +9 -0
- package/src/ui/dismissible-badges-demo.vue +94 -0
- package/src/ui/drawer-content.vue +53 -0
- package/src/ui/drawer-description.vue +23 -0
- package/src/ui/drawer-footer.vue +22 -0
- package/src/ui/drawer-header.vue +22 -0
- package/src/ui/drawer-title.vue +23 -0
- package/src/ui/drawer-trigger.vue +23 -0
- package/src/ui/drawer.vue +34 -0
- package/src/ui/dropdown-menu-checkbox-item.vue +27 -0
- package/src/ui/dropdown-menu-content.vue +23 -0
- package/src/ui/dropdown-menu-group.vue +7 -0
- package/src/ui/dropdown-menu-item.vue +19 -0
- package/src/ui/dropdown-menu-label.vue +17 -0
- package/src/ui/dropdown-menu-portal.vue +8 -0
- package/src/ui/dropdown-menu-radio-group.vue +14 -0
- package/src/ui/dropdown-menu-radio-item.vue +30 -0
- package/src/ui/dropdown-menu-separator.vue +13 -0
- package/src/ui/dropdown-menu-shortcut.vue +15 -0
- package/src/ui/dropdown-menu-sub-content.vue +8 -0
- package/src/ui/dropdown-menu-sub-trigger.vue +8 -0
- package/src/ui/dropdown-menu-sub.vue +8 -0
- package/src/ui/dropdown-menu-trigger.vue +8 -0
- package/src/ui/dropdown-menu.vue +9 -0
- package/src/ui/grouped-avatar.vue +19 -0
- package/src/ui/icons/Accessibility.vue +7 -0
- package/src/ui/icons/AlignLeft.vue +6 -0
- package/src/ui/icons/ArrowDown.vue +7 -0
- package/src/ui/icons/ArrowUp.vue +7 -0
- package/src/ui/icons/ArrowUpDown.vue +8 -0
- package/src/ui/icons/BookOpen.vue +6 -0
- package/src/ui/icons/Calendar.vue +9 -0
- package/src/ui/icons/Check.vue +6 -0
- package/src/ui/icons/ChevronRight.vue +6 -0
- package/src/ui/icons/Circle.vue +6 -0
- package/src/ui/icons/Copy.vue +7 -0
- package/src/ui/icons/Dot.vue +6 -0
- package/src/ui/icons/Edit.vue +6 -0
- package/src/ui/icons/FileText.vue +9 -0
- package/src/ui/icons/Folder.vue +6 -0
- package/src/ui/icons/FolderOpen.vue +7 -0
- package/src/ui/icons/Hash.vue +6 -0
- package/src/ui/icons/Home.vue +6 -0
- package/src/ui/icons/Minus.vue +6 -0
- package/src/ui/icons/MoreHorizontal.vue +8 -0
- package/src/ui/icons/Settings.vue +7 -0
- package/src/ui/icons/Slash.vue +6 -0
- package/src/ui/icons/Trash2.vue +6 -0
- package/src/ui/icons/Type.vue +6 -0
- package/src/ui/icons/User.vue +7 -0
- package/src/ui/input-otp.vue +52 -0
- package/src/ui/input.vue +98 -0
- package/src/ui/label.vue +19 -0
- package/src/ui/pagination.vue +41 -0
- package/src/ui/popover.vue +9 -0
- package/src/ui/progress.vue +67 -0
- package/src/ui/radio-group-item.vue +53 -0
- package/src/ui/radio-group.vue +27 -0
- package/src/ui/scrollable-tabs-list.vue +148 -0
- package/src/ui/select-multiple.vue +135 -0
- package/src/ui/select.vue +77 -0
- package/src/ui/separator.vue +60 -0
- package/src/ui/sheet.vue +50 -0
- package/src/ui/sidebar/BaseSidebar.vue +97 -0
- package/src/ui/sidebar/BasicSearch.vue +27 -0
- package/src/ui/sidebar/ResponsiveSearch.vue +54 -0
- package/src/ui/sidebar/Sidebar.vue +227 -0
- package/src/ui/sidebar/SidebarCollapseButton.vue +10 -0
- package/src/ui/sidebar/SidebarContent.vue +31 -0
- package/src/ui/sidebar/SidebarDescription.vue +10 -0
- package/src/ui/sidebar/SidebarExpandButton.vue +10 -0
- package/src/ui/sidebar/SidebarFooter.vue +10 -0
- package/src/ui/sidebar/SidebarGroup.vue +11 -0
- package/src/ui/sidebar/SidebarGroupContent.vue +10 -0
- package/src/ui/sidebar/SidebarGroupLabel.vue +7 -0
- package/src/ui/sidebar/SidebarHeader.vue +10 -0
- package/src/ui/sidebar/SidebarInset.vue +19 -0
- package/src/ui/sidebar/SidebarMenu.vue +7 -0
- package/src/ui/sidebar/SidebarMenuBadge.vue +7 -0
- package/src/ui/sidebar/SidebarMenuButton.vue +17 -0
- package/src/ui/sidebar/SidebarMenuItem.vue +10 -0
- package/src/ui/sidebar/SidebarMenuSub.vue +18 -0
- package/src/ui/sidebar/SidebarMenuSubContent.vue +10 -0
- package/src/ui/sidebar/SidebarMenuSubItem.vue +10 -0
- package/src/ui/sidebar/SidebarMenuSubTrigger.vue +10 -0
- package/src/ui/sidebar/SidebarProvider.vue +108 -0
- package/src/ui/sidebar/SidebarScrollArea.vue +10 -0
- package/src/ui/sidebar/SidebarSection.vue +10 -0
- package/src/ui/sidebar/SidebarSeparator.vue +8 -0
- package/src/ui/sidebar/SidebarShortcut.vue +10 -0
- package/src/ui/sidebar/SidebarTitle.vue +10 -0
- package/src/ui/sidebar/SidebarTrigger.vue +27 -0
- package/src/ui/sidebar/Wrapper.vue +12 -0
- package/src/ui/sidebar/context.ts +8 -0
- package/src/ui/sidebar/index.ts +27 -0
- package/src/ui/sidebar/sidebarStore.ts +40 -0
- package/src/ui/sidebar/types.ts +30 -0
- package/src/ui/sidebar/useAutoCollapse.ts +81 -0
- package/src/ui/sidebar.vue +24 -0
- package/src/ui/skeleton.vue +15 -0
- package/src/ui/slider.vue +32 -0
- package/src/ui/sonner.vue +67 -0
- package/src/ui/switch.vue +33 -0
- package/src/ui/tab-content.vue +28 -0
- package/src/ui/tab-list.vue +31 -0
- package/src/ui/tab-panel.vue +19 -0
- package/src/ui/tab-trigger.vue +34 -0
- package/src/ui/tab.vue +30 -0
- package/src/ui/table-body.vue +16 -0
- package/src/ui/table-caption.vue +20 -0
- package/src/ui/table-cell.vue +16 -0
- package/src/ui/table-footer.vue +16 -0
- package/src/ui/table-header.vue +132 -0
- package/src/ui/table-row.vue +16 -0
- package/src/ui/table.vue +55 -0
- package/src/ui/tabs.vue +33 -0
- package/src/ui/textarea.vue +91 -0
- package/src/ui/threat-gauge.vue +137 -0
- package/src/ui/toggle.vue +69 -0
- package/src/ui/tooltip-content.vue +52 -0
- package/src/ui/tooltip-provider.vue +13 -0
- package/src/ui/tooltip-root.vue +9 -0
- package/src/ui/tooltip-trigger.vue +13 -0
- package/src/ui/tooltip.vue +22 -0
- package/src/ui/utils.ts +6 -0
- package/vite.config.ts +39 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ListboxContentProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { ListboxContent, useForwardProps } from "reka-ui"
|
|
6
|
+
import { cn } from "@/lib/utils"
|
|
7
|
+
|
|
8
|
+
const props = defineProps<ListboxContentProps & { class?: HTMLAttributes["class"] }>()
|
|
9
|
+
|
|
10
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
11
|
+
|
|
12
|
+
const forwarded = useForwardProps(delegatedProps)
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<ListboxContent
|
|
17
|
+
data-slot="command-list"
|
|
18
|
+
v-bind="forwarded"
|
|
19
|
+
:class="cn('max-h-[300px] scroll-py-1 overflow-x-hidden overflow-y-auto', props.class)"
|
|
20
|
+
>
|
|
21
|
+
<div role="presentation">
|
|
22
|
+
<slot />
|
|
23
|
+
</div>
|
|
24
|
+
</ListboxContent>
|
|
25
|
+
</template>
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { SeparatorProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { Separator } from "reka-ui"
|
|
6
|
+
import { cn } from "@/lib/utils"
|
|
7
|
+
|
|
8
|
+
const props = defineProps<SeparatorProps & { class?: HTMLAttributes["class"] }>()
|
|
9
|
+
|
|
10
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<template>
|
|
14
|
+
<Separator
|
|
15
|
+
data-slot="command-separator"
|
|
16
|
+
v-bind="delegatedProps"
|
|
17
|
+
:class="cn('bg-border -mx-1 h-px', props.class)"
|
|
18
|
+
>
|
|
19
|
+
<slot />
|
|
20
|
+
</Separator>
|
|
21
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from "vue"
|
|
3
|
+
import { cn } from "@/lib/utils"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<{
|
|
6
|
+
class?: HTMLAttributes["class"]
|
|
7
|
+
}>()
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<span
|
|
12
|
+
data-slot="command-shortcut"
|
|
13
|
+
:class="cn('text-muted-foreground ml-auto text-xs tracking-widest', props.class)"
|
|
14
|
+
>
|
|
15
|
+
<slot />
|
|
16
|
+
</span>
|
|
17
|
+
</template>
|
|
@@ -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,18 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuRootEmits, ContextMenuRootProps } from "reka-ui"
|
|
3
|
+
import { ContextMenuRoot, useForwardPropsEmits } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<ContextMenuRootProps>()
|
|
6
|
+
const emits = defineEmits<ContextMenuRootEmits>()
|
|
7
|
+
|
|
8
|
+
const forwarded = useForwardPropsEmits(props, emits)
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<template>
|
|
12
|
+
<ContextMenuRoot
|
|
13
|
+
data-slot="context-menu"
|
|
14
|
+
v-bind="forwarded"
|
|
15
|
+
>
|
|
16
|
+
<slot />
|
|
17
|
+
</ContextMenuRoot>
|
|
18
|
+
</template>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuCheckboxItemEmits, ContextMenuCheckboxItemProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { Check } from "lucide-vue-next"
|
|
6
|
+
import {
|
|
7
|
+
ContextMenuCheckboxItem,
|
|
8
|
+
|
|
9
|
+
ContextMenuItemIndicator,
|
|
10
|
+
useForwardPropsEmits,
|
|
11
|
+
} from "reka-ui"
|
|
12
|
+
import { cn } from "@/lib/utils"
|
|
13
|
+
|
|
14
|
+
const props = defineProps<ContextMenuCheckboxItemProps & { class?: HTMLAttributes["class"] }>()
|
|
15
|
+
const emits = defineEmits<ContextMenuCheckboxItemEmits>()
|
|
16
|
+
|
|
17
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
18
|
+
|
|
19
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<template>
|
|
23
|
+
<ContextMenuCheckboxItem
|
|
24
|
+
data-slot="context-menu-checkbox-item"
|
|
25
|
+
v-bind="forwarded"
|
|
26
|
+
:class="cn(
|
|
27
|
+
'focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
28
|
+
props.class,
|
|
29
|
+
)"
|
|
30
|
+
>
|
|
31
|
+
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
32
|
+
<ContextMenuItemIndicator>
|
|
33
|
+
<Check class="size-4" />
|
|
34
|
+
</ContextMenuItemIndicator>
|
|
35
|
+
</span>
|
|
36
|
+
<slot />
|
|
37
|
+
</ContextMenuCheckboxItem>
|
|
38
|
+
</template>
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuContentEmits, ContextMenuContentProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import {
|
|
6
|
+
ContextMenuContent,
|
|
7
|
+
|
|
8
|
+
ContextMenuPortal,
|
|
9
|
+
useForwardPropsEmits,
|
|
10
|
+
} from "reka-ui"
|
|
11
|
+
import { cn } from "@/lib/utils"
|
|
12
|
+
|
|
13
|
+
const props = defineProps<ContextMenuContentProps & { class?: HTMLAttributes["class"] }>()
|
|
14
|
+
const emits = defineEmits<ContextMenuContentEmits>()
|
|
15
|
+
|
|
16
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
17
|
+
|
|
18
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
<template>
|
|
22
|
+
<ContextMenuPortal>
|
|
23
|
+
<ContextMenuContent
|
|
24
|
+
data-slot="context-menu-content"
|
|
25
|
+
v-bind="forwarded"
|
|
26
|
+
:class="cn(
|
|
27
|
+
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 max-h-(--reka-context-menu-content-available-height) min-w-[8rem] overflow-x-hidden overflow-y-auto rounded-md border p-1 shadow-md',
|
|
28
|
+
props.class,
|
|
29
|
+
)"
|
|
30
|
+
>
|
|
31
|
+
<slot />
|
|
32
|
+
</ContextMenuContent>
|
|
33
|
+
</ContextMenuPortal>
|
|
34
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuGroupProps } from "reka-ui"
|
|
3
|
+
import { ContextMenuGroup } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<ContextMenuGroupProps>()
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<ContextMenuGroup
|
|
10
|
+
data-slot="context-menu-group"
|
|
11
|
+
v-bind="props"
|
|
12
|
+
>
|
|
13
|
+
<slot />
|
|
14
|
+
</ContextMenuGroup>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuItemEmits, ContextMenuItemProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import {
|
|
6
|
+
ContextMenuItem,
|
|
7
|
+
|
|
8
|
+
useForwardPropsEmits,
|
|
9
|
+
} from "reka-ui"
|
|
10
|
+
import { cn } from "@/lib/utils"
|
|
11
|
+
|
|
12
|
+
const props = withDefaults(defineProps<ContextMenuItemProps & {
|
|
13
|
+
class?: HTMLAttributes["class"]
|
|
14
|
+
inset?: boolean
|
|
15
|
+
variant?: "default" | "destructive"
|
|
16
|
+
}>(), {
|
|
17
|
+
variant: "default",
|
|
18
|
+
})
|
|
19
|
+
const emits = defineEmits<ContextMenuItemEmits>()
|
|
20
|
+
|
|
21
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
22
|
+
|
|
23
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
24
|
+
</script>
|
|
25
|
+
|
|
26
|
+
<template>
|
|
27
|
+
<ContextMenuItem
|
|
28
|
+
data-slot="context-menu-item"
|
|
29
|
+
:data-inset="inset ? '' : undefined"
|
|
30
|
+
:data-variant="variant"
|
|
31
|
+
v-bind="forwarded"
|
|
32
|
+
:class="cn(
|
|
33
|
+
'focus:bg-accent focus:text-accent-foreground data-[variant=destructive]:text-destructive-foreground data-[variant=destructive]:focus:bg-destructive/10 dark:data-[variant=destructive]:focus:bg-destructive/40 data-[variant=destructive]:focus:text-destructive-foreground data-[variant=destructive]:*:[svg]:!text-destructive-foreground [&_svg:not([class*=\'text-\'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
34
|
+
props.class,
|
|
35
|
+
)"
|
|
36
|
+
>
|
|
37
|
+
<slot />
|
|
38
|
+
</ContextMenuItem>
|
|
39
|
+
</template>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuLabelProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { ContextMenuLabel } from "reka-ui"
|
|
6
|
+
import { cn } from "@/lib/utils"
|
|
7
|
+
|
|
8
|
+
const props = defineProps<ContextMenuLabelProps & { class?: HTMLAttributes["class"], inset?: boolean }>()
|
|
9
|
+
|
|
10
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
11
|
+
</script>
|
|
12
|
+
|
|
13
|
+
<template>
|
|
14
|
+
<ContextMenuLabel
|
|
15
|
+
data-slot="context-menu-label"
|
|
16
|
+
:data-inset="inset ? '' : undefined"
|
|
17
|
+
v-bind="delegatedProps"
|
|
18
|
+
:class="cn('text-foreground px-2 py-1.5 text-sm font-medium data-[inset]:pl-8', props.class)"
|
|
19
|
+
>
|
|
20
|
+
<slot />
|
|
21
|
+
</ContextMenuLabel>
|
|
22
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuPortalProps } from "reka-ui"
|
|
3
|
+
import { ContextMenuPortal } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<ContextMenuPortalProps>()
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<ContextMenuPortal
|
|
10
|
+
data-slot="context-menu-portal"
|
|
11
|
+
v-bind="props"
|
|
12
|
+
>
|
|
13
|
+
<slot />
|
|
14
|
+
</ContextMenuPortal>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuRadioGroupEmits, ContextMenuRadioGroupProps } from "reka-ui"
|
|
3
|
+
import {
|
|
4
|
+
ContextMenuRadioGroup,
|
|
5
|
+
|
|
6
|
+
useForwardPropsEmits,
|
|
7
|
+
} from "reka-ui"
|
|
8
|
+
|
|
9
|
+
const props = defineProps<ContextMenuRadioGroupProps>()
|
|
10
|
+
const emits = defineEmits<ContextMenuRadioGroupEmits>()
|
|
11
|
+
|
|
12
|
+
const forwarded = useForwardPropsEmits(props, emits)
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<ContextMenuRadioGroup
|
|
17
|
+
data-slot="context-menu-radio-group"
|
|
18
|
+
v-bind="forwarded"
|
|
19
|
+
>
|
|
20
|
+
<slot />
|
|
21
|
+
</ContextMenuRadioGroup>
|
|
22
|
+
</template>
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuRadioItemEmits, ContextMenuRadioItemProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { Circle } from "lucide-vue-next"
|
|
6
|
+
import {
|
|
7
|
+
ContextMenuItemIndicator,
|
|
8
|
+
ContextMenuRadioItem,
|
|
9
|
+
|
|
10
|
+
useForwardPropsEmits,
|
|
11
|
+
} from "reka-ui"
|
|
12
|
+
import { cn } from "@/lib/utils"
|
|
13
|
+
|
|
14
|
+
const props = defineProps<ContextMenuRadioItemProps & { class?: HTMLAttributes["class"] }>()
|
|
15
|
+
const emits = defineEmits<ContextMenuRadioItemEmits>()
|
|
16
|
+
|
|
17
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
18
|
+
|
|
19
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
20
|
+
</script>
|
|
21
|
+
|
|
22
|
+
<template>
|
|
23
|
+
<ContextMenuRadioItem
|
|
24
|
+
data-slot="context-menu-radio-item"
|
|
25
|
+
v-bind="forwarded"
|
|
26
|
+
:class="cn(
|
|
27
|
+
'focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
28
|
+
props.class,
|
|
29
|
+
)"
|
|
30
|
+
>
|
|
31
|
+
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
32
|
+
<ContextMenuItemIndicator>
|
|
33
|
+
<Circle class="size-2 fill-current" />
|
|
34
|
+
</ContextMenuItemIndicator>
|
|
35
|
+
</span>
|
|
36
|
+
<slot />
|
|
37
|
+
</ContextMenuRadioItem>
|
|
38
|
+
</template>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuSeparatorProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import {
|
|
6
|
+
ContextMenuSeparator,
|
|
7
|
+
|
|
8
|
+
} from "reka-ui"
|
|
9
|
+
import { cn } from "@/lib/utils"
|
|
10
|
+
|
|
11
|
+
const props = defineProps<ContextMenuSeparatorProps & { class?: HTMLAttributes["class"] }>()
|
|
12
|
+
|
|
13
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
14
|
+
</script>
|
|
15
|
+
|
|
16
|
+
<template>
|
|
17
|
+
<ContextMenuSeparator
|
|
18
|
+
data-slot="context-menu-separator"
|
|
19
|
+
v-bind="delegatedProps"
|
|
20
|
+
:class="cn('bg-border -mx-1 my-1 h-px', props.class)"
|
|
21
|
+
/>
|
|
22
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from "vue"
|
|
3
|
+
import { cn } from "@/lib/utils"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<{
|
|
6
|
+
class?: HTMLAttributes["class"]
|
|
7
|
+
}>()
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<span
|
|
12
|
+
data-slot="context-menu-shortcut"
|
|
13
|
+
:class="cn('text-muted-foreground ml-auto text-xs tracking-widest', props.class)"
|
|
14
|
+
>
|
|
15
|
+
<slot />
|
|
16
|
+
</span>
|
|
17
|
+
</template>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuSubEmits, ContextMenuSubProps } from "reka-ui"
|
|
3
|
+
import {
|
|
4
|
+
ContextMenuSub,
|
|
5
|
+
|
|
6
|
+
useForwardPropsEmits,
|
|
7
|
+
} from "reka-ui"
|
|
8
|
+
|
|
9
|
+
const props = defineProps<ContextMenuSubProps>()
|
|
10
|
+
const emits = defineEmits<ContextMenuSubEmits>()
|
|
11
|
+
|
|
12
|
+
const forwarded = useForwardPropsEmits(props, emits)
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<ContextMenuSub
|
|
17
|
+
data-slot="context-menu-sub"
|
|
18
|
+
v-bind="forwarded"
|
|
19
|
+
>
|
|
20
|
+
<slot />
|
|
21
|
+
</ContextMenuSub>
|
|
22
|
+
</template>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { DropdownMenuSubContentEmits, DropdownMenuSubContentProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import {
|
|
6
|
+
ContextMenuSubContent,
|
|
7
|
+
|
|
8
|
+
useForwardPropsEmits,
|
|
9
|
+
} from "reka-ui"
|
|
10
|
+
import { cn } from "@/lib/utils"
|
|
11
|
+
|
|
12
|
+
const props = defineProps<DropdownMenuSubContentProps & { class?: HTMLAttributes["class"] }>()
|
|
13
|
+
const emits = defineEmits<DropdownMenuSubContentEmits>()
|
|
14
|
+
|
|
15
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
16
|
+
|
|
17
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<template>
|
|
21
|
+
<ContextMenuSubContent
|
|
22
|
+
data-slot="context-menu-sub-content"
|
|
23
|
+
v-bind="forwarded"
|
|
24
|
+
:class="
|
|
25
|
+
cn(
|
|
26
|
+
'bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 z-50 min-w-[8rem] origin-(--reka-context-menu-content-transform-origin) overflow-hidden rounded-md border p-1 shadow-lg',
|
|
27
|
+
props.class,
|
|
28
|
+
)
|
|
29
|
+
"
|
|
30
|
+
>
|
|
31
|
+
<slot />
|
|
32
|
+
</ContextMenuSubContent>
|
|
33
|
+
</template>
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuSubTriggerProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { ChevronRight } from "lucide-vue-next"
|
|
6
|
+
import {
|
|
7
|
+
ContextMenuSubTrigger,
|
|
8
|
+
|
|
9
|
+
useForwardProps,
|
|
10
|
+
} from "reka-ui"
|
|
11
|
+
import { cn } from "@/lib/utils"
|
|
12
|
+
|
|
13
|
+
const props = defineProps<ContextMenuSubTriggerProps & { class?: HTMLAttributes["class"], inset?: boolean }>()
|
|
14
|
+
|
|
15
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
16
|
+
|
|
17
|
+
const forwardedProps = useForwardProps(delegatedProps)
|
|
18
|
+
</script>
|
|
19
|
+
|
|
20
|
+
<template>
|
|
21
|
+
<ContextMenuSubTrigger
|
|
22
|
+
data-slot="context-menu-sub-trigger"
|
|
23
|
+
:data-inset="inset ? '' : undefined"
|
|
24
|
+
v-bind="forwardedProps"
|
|
25
|
+
:class="cn(
|
|
26
|
+
'focus:bg-accent focus:text-accent-foreground data-[state=open]:bg-accent data-[state=open]:text-accent-foreground flex cursor-default items-center rounded-sm px-2 py-1.5 text-sm outline-hidden select-none data-[inset]:pl-8 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*=\'size-\'])]:size-4',
|
|
27
|
+
props.class,
|
|
28
|
+
)"
|
|
29
|
+
>
|
|
30
|
+
<slot />
|
|
31
|
+
<ChevronRight class="ml-auto" />
|
|
32
|
+
</ContextMenuSubTrigger>
|
|
33
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { ContextMenuTriggerProps } from "reka-ui"
|
|
3
|
+
import { ContextMenuTrigger, useForwardProps } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<ContextMenuTriggerProps>()
|
|
6
|
+
|
|
7
|
+
const forwardedProps = useForwardProps(props)
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<ContextMenuTrigger
|
|
12
|
+
data-slot="context-menu-trigger"
|
|
13
|
+
v-bind="forwardedProps"
|
|
14
|
+
>
|
|
15
|
+
<slot />
|
|
16
|
+
</ContextMenuTrigger>
|
|
17
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
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"
|
|
15
|
+
export { default as ContextMenuPortal } from "./ContextMenuPortal.vue"
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { DialogRootEmits, DialogRootProps } from "reka-ui"
|
|
3
|
+
import { DialogRoot, useForwardPropsEmits } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<DialogRootProps>()
|
|
6
|
+
const emits = defineEmits<DialogRootEmits>()
|
|
7
|
+
|
|
8
|
+
const forwarded = useForwardPropsEmits(props, emits)
|
|
9
|
+
</script>
|
|
10
|
+
|
|
11
|
+
<template>
|
|
12
|
+
<DialogRoot
|
|
13
|
+
data-slot="dialog"
|
|
14
|
+
v-bind="forwarded"
|
|
15
|
+
>
|
|
16
|
+
<slot />
|
|
17
|
+
</DialogRoot>
|
|
18
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { DialogCloseProps } from "reka-ui"
|
|
3
|
+
import { DialogClose } from "reka-ui"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<DialogCloseProps>()
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<DialogClose
|
|
10
|
+
data-slot="dialog-close"
|
|
11
|
+
v-bind="props"
|
|
12
|
+
>
|
|
13
|
+
<slot />
|
|
14
|
+
</DialogClose>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { DialogContentEmits, DialogContentProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { X } from "lucide-vue-next"
|
|
6
|
+
import {
|
|
7
|
+
DialogClose,
|
|
8
|
+
DialogContent,
|
|
9
|
+
|
|
10
|
+
DialogPortal,
|
|
11
|
+
useForwardPropsEmits,
|
|
12
|
+
} from "reka-ui"
|
|
13
|
+
import { cn } from "@/lib/utils"
|
|
14
|
+
import DialogOverlay from "./DialogOverlay.vue"
|
|
15
|
+
|
|
16
|
+
const props = defineProps<DialogContentProps & { class?: HTMLAttributes["class"] }>()
|
|
17
|
+
const emits = defineEmits<DialogContentEmits>()
|
|
18
|
+
|
|
19
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
20
|
+
|
|
21
|
+
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
22
|
+
</script>
|
|
23
|
+
|
|
24
|
+
<template>
|
|
25
|
+
<DialogPortal>
|
|
26
|
+
<DialogOverlay />
|
|
27
|
+
<DialogContent
|
|
28
|
+
data-slot="dialog-content"
|
|
29
|
+
v-bind="forwarded"
|
|
30
|
+
:class="
|
|
31
|
+
cn(
|
|
32
|
+
'bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg',
|
|
33
|
+
props.class,
|
|
34
|
+
)"
|
|
35
|
+
>
|
|
36
|
+
<slot />
|
|
37
|
+
|
|
38
|
+
<DialogClose
|
|
39
|
+
class="ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4"
|
|
40
|
+
>
|
|
41
|
+
<X />
|
|
42
|
+
<span class="sr-only">Close</span>
|
|
43
|
+
</DialogClose>
|
|
44
|
+
</DialogContent>
|
|
45
|
+
</DialogPortal>
|
|
46
|
+
</template>
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { DialogDescriptionProps } from "reka-ui"
|
|
3
|
+
import type { HTMLAttributes } from "vue"
|
|
4
|
+
import { reactiveOmit } from "@vueuse/core"
|
|
5
|
+
import { DialogDescription, useForwardProps } from "reka-ui"
|
|
6
|
+
import { cn } from "@/lib/utils"
|
|
7
|
+
|
|
8
|
+
const props = defineProps<DialogDescriptionProps & { class?: HTMLAttributes["class"] }>()
|
|
9
|
+
|
|
10
|
+
const delegatedProps = reactiveOmit(props, "class")
|
|
11
|
+
|
|
12
|
+
const forwardedProps = useForwardProps(delegatedProps)
|
|
13
|
+
</script>
|
|
14
|
+
|
|
15
|
+
<template>
|
|
16
|
+
<DialogDescription
|
|
17
|
+
data-slot="dialog-description"
|
|
18
|
+
v-bind="forwardedProps"
|
|
19
|
+
:class="cn('text-muted-foreground text-sm', props.class)"
|
|
20
|
+
>
|
|
21
|
+
<slot />
|
|
22
|
+
</DialogDescription>
|
|
23
|
+
</template>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from "vue"
|
|
3
|
+
import { cn } from "@/lib/utils"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<{ class?: HTMLAttributes["class"] }>()
|
|
6
|
+
</script>
|
|
7
|
+
|
|
8
|
+
<template>
|
|
9
|
+
<div
|
|
10
|
+
data-slot="dialog-footer"
|
|
11
|
+
:class="cn('flex flex-col-reverse gap-2 sm:flex-row sm:justify-end', props.class)"
|
|
12
|
+
>
|
|
13
|
+
<slot />
|
|
14
|
+
</div>
|
|
15
|
+
</template>
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
import type { HTMLAttributes } from "vue"
|
|
3
|
+
import { cn } from "@/lib/utils"
|
|
4
|
+
|
|
5
|
+
const props = defineProps<{
|
|
6
|
+
class?: HTMLAttributes["class"]
|
|
7
|
+
}>()
|
|
8
|
+
</script>
|
|
9
|
+
|
|
10
|
+
<template>
|
|
11
|
+
<div
|
|
12
|
+
data-slot="dialog-header"
|
|
13
|
+
:class="cn('flex flex-col gap-2 text-center sm:text-left', props.class)"
|
|
14
|
+
>
|
|
15
|
+
<slot />
|
|
16
|
+
</div>
|
|
17
|
+
</template>
|