@hardimpactdev/craft-ui 0.0.1 → 0.0.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/dist/craft-ui.css +1 -0
- package/dist/craft-ui.js +45294 -0
- package/dist/index-DyCHxFp3.js +3431 -0
- package/dist/index.d.ts +72 -0
- package/dist/src/App.vue.d.ts +2 -0
- package/dist/src/components/Heading.vue.d.ts +6 -0
- package/dist/src/components/Icon.vue.d.ts +5 -0
- package/dist/src/components/Tree/Tree.vue.d.ts +26 -0
- package/dist/src/components/Tree/index.d.ts +2 -0
- package/dist/src/components/Tree/types.d.ts +9 -0
- package/dist/src/components/accordion/Accordion.vue.d.ts +25 -0
- package/dist/src/components/accordion/AccordionContent.vue.d.ts +22 -0
- package/dist/src/components/accordion/AccordionItem.vue.d.ts +22 -0
- package/dist/src/components/accordion/AccordionTrigger.vue.d.ts +23 -0
- package/dist/src/components/accordion/index.d.ts +4 -0
- package/dist/src/components/alert/Alert.vue.d.ts +23 -0
- package/dist/src/components/alert/AlertDescription.vue.d.ts +21 -0
- package/dist/src/components/alert/AlertTitle.vue.d.ts +21 -0
- package/dist/src/components/alert/index.d.ts +8 -0
- package/dist/src/components/alert-dialog/AlertDialog.vue.d.ts +25 -0
- package/dist/src/components/alert-dialog/AlertDialogAction.vue.d.ts +22 -0
- package/dist/src/components/alert-dialog/AlertDialogCancel.vue.d.ts +22 -0
- package/dist/src/components/alert-dialog/AlertDialogContent.vue.d.ts +36 -0
- package/dist/src/components/alert-dialog/AlertDialogDescription.vue.d.ts +22 -0
- package/dist/src/components/alert-dialog/AlertDialogFooter.vue.d.ts +21 -0
- package/dist/src/components/alert-dialog/AlertDialogHeader.vue.d.ts +21 -0
- package/dist/src/components/alert-dialog/AlertDialogTitle.vue.d.ts +22 -0
- package/dist/src/components/alert-dialog/AlertDialogTrigger.vue.d.ts +18 -0
- package/dist/src/components/alert-dialog/index.d.ts +9 -0
- package/dist/src/components/aspect-ratio/AspectRatio.vue.d.ts +18 -0
- package/dist/src/components/aspect-ratio/index.d.ts +1 -0
- package/dist/src/components/avatar/Avatar.vue.d.ts +21 -0
- package/dist/src/components/avatar/AvatarFallback.vue.d.ts +22 -0
- package/dist/src/components/avatar/AvatarImage.vue.d.ts +18 -0
- package/dist/src/components/avatar/index.d.ts +3 -0
- package/dist/src/components/badge/Badge.vue.d.ts +24 -0
- package/dist/src/components/badge/index.d.ts +6 -0
- package/dist/src/components/breadcrumb/Breadcrumb.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/BreadcrumbEllipsis.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/BreadcrumbItem.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/BreadcrumbLink.vue.d.ts +24 -0
- package/dist/src/components/breadcrumb/BreadcrumbList.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/BreadcrumbPage.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/BreadcrumbSeparator.vue.d.ts +21 -0
- package/dist/src/components/breadcrumb/index.d.ts +7 -0
- package/dist/src/components/button/Button.vue.d.ts +27 -0
- package/dist/src/components/button/buttonVariants.d.ts +6 -0
- package/dist/src/components/button/index.d.ts +3 -0
- package/dist/src/components/button-group/ButtonGroup.vue.d.ts +23 -0
- package/dist/src/components/button-group/ButtonGroupSeparator.vue.d.ts +9 -0
- package/dist/src/components/button-group/ButtonGroupText.vue.d.ts +26 -0
- package/dist/src/components/button-group/index.d.ts +8 -0
- package/dist/src/components/calendar/Calendar.vue.d.ts +44 -0
- package/dist/src/components/calendar/CalendarCell.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarCellTrigger.vue.d.ts +24 -0
- package/dist/src/components/calendar/CalendarGrid.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarGridBody.vue.d.ts +18 -0
- package/dist/src/components/calendar/CalendarGridHead.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarGridRow.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarHeadCell.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarHeader.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarHeading.vue.d.ts +28 -0
- package/dist/src/components/calendar/CalendarNextButton.vue.d.ts +22 -0
- package/dist/src/components/calendar/CalendarPrevButton.vue.d.ts +22 -0
- package/dist/src/components/calendar/index.d.ts +13 -0
- package/dist/src/components/card/Card.vue.d.ts +21 -0
- package/dist/src/components/card/CardAction.vue.d.ts +21 -0
- package/dist/src/components/card/CardContent.vue.d.ts +21 -0
- package/dist/src/components/card/CardDescription.vue.d.ts +21 -0
- package/dist/src/components/card/CardFooter.vue.d.ts +21 -0
- package/dist/src/components/card/CardHeader.vue.d.ts +21 -0
- package/dist/src/components/card/CardTitle.vue.d.ts +21 -0
- package/dist/src/components/card/index.d.ts +7 -0
- package/dist/src/components/carousel/Carousel.vue.d.ts +41 -0
- package/dist/src/components/carousel/CarouselContent.vue.d.ts +22 -0
- package/dist/src/components/carousel/CarouselItem.vue.d.ts +18 -0
- package/dist/src/components/carousel/CarouselNext.vue.d.ts +26 -0
- package/dist/src/components/carousel/CarouselPrevious.vue.d.ts +26 -0
- package/dist/src/components/carousel/index.d.ts +7 -0
- package/dist/src/components/carousel/interface.d.ts +19 -0
- package/dist/src/components/carousel/useCarousel.d.ts +20 -0
- package/dist/src/components/chart/ChartContainer.vue.d.ts +29 -0
- package/dist/src/components/chart/ChartLegendContent.vue.d.ts +10 -0
- package/dist/src/components/chart/ChartStyle.vue.d.ts +6 -0
- package/dist/src/components/chart/ChartTooltipContent.vue.d.ts +36 -0
- package/dist/src/components/chart/index.d.ts +27 -0
- package/dist/src/components/chart/utils.d.ts +11 -0
- package/dist/src/components/checkbox/Checkbox.vue.d.ts +29 -0
- package/dist/src/components/checkbox/index.d.ts +1 -0
- package/dist/src/components/collapsible/Collapsible.vue.d.ts +24 -0
- package/dist/src/components/collapsible/CollapsibleContent.vue.d.ts +18 -0
- package/dist/src/components/collapsible/CollapsibleTrigger.vue.d.ts +18 -0
- package/dist/src/components/collapsible/index.d.ts +3 -0
- package/dist/src/components/combobox/Combobox.vue.d.ts +36 -0
- package/dist/src/components/combobox/ComboboxAnchor.vue.d.ts +22 -0
- package/dist/src/components/combobox/ComboboxEmpty.vue.d.ts +22 -0
- package/dist/src/components/combobox/ComboboxGroup.vue.d.ts +23 -0
- package/dist/src/components/combobox/ComboboxInput.vue.d.ts +26 -0
- package/dist/src/components/combobox/ComboboxItem.vue.d.ts +26 -0
- package/dist/src/components/combobox/ComboboxItemIndicator.vue.d.ts +22 -0
- package/dist/src/components/combobox/ComboboxList.vue.d.ts +36 -0
- package/dist/src/components/combobox/ComboboxSeparator.vue.d.ts +22 -0
- package/dist/src/components/combobox/ComboboxViewport.vue.d.ts +22 -0
- package/dist/src/components/combobox/index.d.ts +11 -0
- package/dist/src/components/command/Command.vue.d.ts +40 -0
- package/dist/src/components/command/CommandDialog.vue.d.ts +32 -0
- package/dist/src/components/command/CommandEmpty.vue.d.ts +22 -0
- package/dist/src/components/command/CommandGroup.vue.d.ts +23 -0
- package/dist/src/components/command/CommandInput.vue.d.ts +7 -0
- package/dist/src/components/command/CommandItem.vue.d.ts +30 -0
- package/dist/src/components/command/CommandList.vue.d.ts +22 -0
- package/dist/src/components/command/CommandSeparator.vue.d.ts +22 -0
- package/dist/src/components/command/CommandShortcut.vue.d.ts +21 -0
- package/dist/src/components/command/index.d.ts +90 -0
- package/dist/src/components/context-menu/ContextMenu.vue.d.ts +22 -0
- package/dist/src/components/context-menu/ContextMenuCheckboxItem.vue.d.ts +29 -0
- package/dist/src/components/context-menu/ContextMenuContent.vue.d.ts +34 -0
- package/dist/src/components/context-menu/ContextMenuGroup.vue.d.ts +18 -0
- package/dist/src/components/context-menu/ContextMenuItem.vue.d.ts +30 -0
- package/dist/src/components/context-menu/ContextMenuLabel.vue.d.ts +23 -0
- package/dist/src/components/context-menu/ContextMenuRadioGroup.vue.d.ts +22 -0
- package/dist/src/components/context-menu/ContextMenuRadioItem.vue.d.ts +27 -0
- package/dist/src/components/context-menu/ContextMenuSeparator.vue.d.ts +7 -0
- package/dist/src/components/context-menu/ContextMenuShortcut.vue.d.ts +21 -0
- package/dist/src/components/context-menu/ContextMenuSub.vue.d.ts +22 -0
- package/dist/src/components/context-menu/ContextMenuSubContent.vue.d.ts +38 -0
- package/dist/src/components/context-menu/ContextMenuSubTrigger.vue.d.ts +23 -0
- package/dist/src/components/context-menu/ContextMenuTrigger.vue.d.ts +18 -0
- package/dist/src/components/context-menu/index.d.ts +14 -0
- package/dist/src/components/dialog/Dialog.vue.d.ts +25 -0
- package/dist/src/components/dialog/DialogClose.vue.d.ts +18 -0
- package/dist/src/components/dialog/DialogContent.vue.d.ts +39 -0
- package/dist/src/components/dialog/DialogDescription.vue.d.ts +22 -0
- package/dist/src/components/dialog/DialogFooter.vue.d.ts +21 -0
- package/dist/src/components/dialog/DialogHeader.vue.d.ts +21 -0
- package/dist/src/components/dialog/DialogOverlay.vue.d.ts +22 -0
- package/dist/src/components/dialog/DialogScrollContent.vue.d.ts +36 -0
- package/dist/src/components/dialog/DialogTitle.vue.d.ts +22 -0
- package/dist/src/components/dialog/DialogTrigger.vue.d.ts +18 -0
- package/dist/src/components/dialog/index.d.ts +10 -0
- package/dist/src/components/drawer/Drawer.vue.d.ts +36 -0
- package/dist/src/components/drawer/DrawerClose.vue.d.ts +18 -0
- package/dist/src/components/drawer/DrawerContent.vue.d.ts +36 -0
- package/dist/src/components/drawer/DrawerDescription.vue.d.ts +22 -0
- package/dist/src/components/drawer/DrawerFooter.vue.d.ts +21 -0
- package/dist/src/components/drawer/DrawerHeader.vue.d.ts +21 -0
- package/dist/src/components/drawer/DrawerOverlay.vue.d.ts +7 -0
- package/dist/src/components/drawer/DrawerTitle.vue.d.ts +22 -0
- package/dist/src/components/drawer/DrawerTrigger.vue.d.ts +18 -0
- package/dist/src/components/drawer/index.d.ts +9 -0
- package/dist/src/components/dropdown-menu/DropdownMenu.vue.d.ts +24 -0
- package/dist/src/components/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +29 -0
- package/dist/src/components/dropdown-menu/DropdownMenuContent.vue.d.ts +36 -0
- package/dist/src/components/dropdown-menu/DropdownMenuGroup.vue.d.ts +18 -0
- package/dist/src/components/dropdown-menu/DropdownMenuItem.vue.d.ts +26 -0
- package/dist/src/components/dropdown-menu/DropdownMenuLabel.vue.d.ts +23 -0
- package/dist/src/components/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +22 -0
- package/dist/src/components/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +27 -0
- package/dist/src/components/dropdown-menu/DropdownMenuSeparator.vue.d.ts +7 -0
- package/dist/src/components/dropdown-menu/DropdownMenuShortcut.vue.d.ts +21 -0
- package/dist/src/components/dropdown-menu/DropdownMenuSub.vue.d.ts +22 -0
- package/dist/src/components/dropdown-menu/DropdownMenuSubContent.vue.d.ts +38 -0
- package/dist/src/components/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +23 -0
- package/dist/src/components/dropdown-menu/DropdownMenuTrigger.vue.d.ts +18 -0
- package/dist/src/components/dropdown-menu/index.d.ts +15 -0
- package/dist/src/components/empty/Empty.vue.d.ts +21 -0
- package/dist/src/components/empty/EmptyContent.vue.d.ts +21 -0
- package/dist/src/components/empty/EmptyDescription.vue.d.ts +21 -0
- package/dist/src/components/empty/EmptyHeader.vue.d.ts +21 -0
- package/dist/src/components/empty/EmptyMedia.vue.d.ts +23 -0
- package/dist/src/components/empty/EmptyTitle.vue.d.ts +21 -0
- package/dist/src/components/empty/index.d.ts +11 -0
- package/dist/src/components/field/Field.vue.d.ts +23 -0
- package/dist/src/components/field/FieldContent.vue.d.ts +21 -0
- package/dist/src/components/field/FieldDescription.vue.d.ts +21 -0
- package/dist/src/components/field/FieldError.vue.d.ts +24 -0
- package/dist/src/components/field/FieldGroup.vue.d.ts +21 -0
- package/dist/src/components/field/FieldLabel.vue.d.ts +21 -0
- package/dist/src/components/field/FieldLegend.vue.d.ts +22 -0
- package/dist/src/components/field/FieldSeparator.vue.d.ts +21 -0
- package/dist/src/components/field/FieldSet.vue.d.ts +21 -0
- package/dist/src/components/field/FieldTitle.vue.d.ts +21 -0
- package/dist/src/components/field/index.d.ts +15 -0
- package/dist/src/components/form/FormControl.vue.d.ts +17 -0
- package/dist/src/components/form/FormDescription.vue.d.ts +21 -0
- package/dist/src/components/form/FormItem.vue.d.ts +21 -0
- package/dist/src/components/form/FormLabel.vue.d.ts +22 -0
- package/dist/src/components/form/FormMessage.vue.d.ts +6 -0
- package/dist/src/components/form/index.d.ts +7 -0
- package/dist/src/components/form/injectionKeys.d.ts +2 -0
- package/dist/src/components/form/useFormField.d.ts +11 -0
- package/dist/src/components/hover-card/HoverCard.vue.d.ts +24 -0
- package/dist/src/components/hover-card/HoverCardContent.vue.d.ts +24 -0
- package/dist/src/components/hover-card/HoverCardTrigger.vue.d.ts +18 -0
- package/dist/src/components/hover-card/index.d.ts +3 -0
- package/dist/src/components/input/Input.vue.d.ts +12 -0
- package/dist/src/components/input/index.d.ts +1 -0
- package/dist/src/components/input-group/InputGroup.vue.d.ts +21 -0
- package/dist/src/components/input-group/InputGroupAddon.vue.d.ts +25 -0
- package/dist/src/components/input-group/InputGroupButton.vue.d.ts +21 -0
- package/dist/src/components/input-group/InputGroupInput.vue.d.ts +6 -0
- package/dist/src/components/input-group/InputGroupText.vue.d.ts +21 -0
- package/dist/src/components/input-group/InputGroupTextarea.vue.d.ts +6 -0
- package/dist/src/components/input-group/index.d.ts +22 -0
- package/dist/src/components/input-otp/InputOTP.vue.d.ts +46 -0
- package/dist/src/components/input-otp/InputOTPGroup.vue.d.ts +21 -0
- package/dist/src/components/input-otp/InputOTPSeparator.vue.d.ts +21 -0
- package/dist/src/components/input-otp/InputOTPSlot.vue.d.ts +7 -0
- package/dist/src/components/input-otp/index.d.ts +4 -0
- package/dist/src/components/item/Item.vue.d.ts +27 -0
- package/dist/src/components/item/ItemActions.vue.d.ts +21 -0
- package/dist/src/components/item/ItemContent.vue.d.ts +21 -0
- package/dist/src/components/item/ItemDescription.vue.d.ts +21 -0
- package/dist/src/components/item/ItemFooter.vue.d.ts +21 -0
- package/dist/src/components/item/ItemGroup.vue.d.ts +21 -0
- package/dist/src/components/item/ItemHeader.vue.d.ts +21 -0
- package/dist/src/components/item/ItemMedia.vue.d.ts +23 -0
- package/dist/src/components/item/ItemSeparator.vue.d.ts +7 -0
- package/dist/src/components/item/ItemTitle.vue.d.ts +21 -0
- package/dist/src/components/item/index.d.ts +20 -0
- package/dist/src/components/kbd/Kbd.vue.d.ts +21 -0
- package/dist/src/components/kbd/KbdGroup.vue.d.ts +21 -0
- package/dist/src/components/kbd/index.d.ts +2 -0
- package/dist/src/components/label/Label.vue.d.ts +22 -0
- package/dist/src/components/label/index.d.ts +1 -0
- package/dist/src/components/menubar/Menubar.vue.d.ts +28 -0
- package/dist/src/components/menubar/MenubarCheckboxItem.vue.d.ts +29 -0
- package/dist/src/components/menubar/MenubarContent.vue.d.ts +26 -0
- package/dist/src/components/menubar/MenubarGroup.vue.d.ts +18 -0
- package/dist/src/components/menubar/MenubarItem.vue.d.ts +28 -0
- package/dist/src/components/menubar/MenubarLabel.vue.d.ts +23 -0
- package/dist/src/components/menubar/MenubarMenu.vue.d.ts +18 -0
- package/dist/src/components/menubar/MenubarRadioGroup.vue.d.ts +22 -0
- package/dist/src/components/menubar/MenubarRadioItem.vue.d.ts +27 -0
- package/dist/src/components/menubar/MenubarSeparator.vue.d.ts +7 -0
- package/dist/src/components/menubar/MenubarShortcut.vue.d.ts +21 -0
- package/dist/src/components/menubar/MenubarSub.vue.d.ts +25 -0
- package/dist/src/components/menubar/MenubarSubContent.vue.d.ts +38 -0
- package/dist/src/components/menubar/MenubarSubTrigger.vue.d.ts +23 -0
- package/dist/src/components/menubar/MenubarTrigger.vue.d.ts +22 -0
- package/dist/src/components/menubar/index.d.ts +15 -0
- package/dist/src/components/native-select/NativeSelect.vue.d.ts +27 -0
- package/dist/src/components/native-select/NativeSelectOptGroup.vue.d.ts +405 -0
- package/dist/src/components/native-select/NativeSelectOption.vue.d.ts +409 -0
- package/dist/src/components/native-select/index.d.ts +3 -0
- package/dist/src/components/navigation-menu/NavigationMenu.vue.d.ts +31 -0
- package/dist/src/components/navigation-menu/NavigationMenuContent.vue.d.ts +32 -0
- package/dist/src/components/navigation-menu/NavigationMenuIndicator.vue.d.ts +7 -0
- package/dist/src/components/navigation-menu/NavigationMenuItem.vue.d.ts +22 -0
- package/dist/src/components/navigation-menu/NavigationMenuLink.vue.d.ts +30 -0
- package/dist/src/components/navigation-menu/NavigationMenuList.vue.d.ts +22 -0
- package/dist/src/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +22 -0
- package/dist/src/components/navigation-menu/NavigationMenuViewport.vue.d.ts +7 -0
- package/dist/src/components/navigation-menu/index.d.ts +9 -0
- package/dist/src/components/number-field/NumberField.vue.d.ts +29 -0
- package/dist/src/components/number-field/NumberFieldContent.vue.d.ts +21 -0
- package/dist/src/components/number-field/NumberFieldDecrement.vue.d.ts +22 -0
- package/dist/src/components/number-field/NumberFieldIncrement.vue.d.ts +22 -0
- package/dist/src/components/number-field/NumberFieldInput.vue.d.ts +6 -0
- package/dist/src/components/number-field/index.d.ts +5 -0
- package/dist/src/components/pagination/Pagination.vue.d.ts +29 -0
- package/dist/src/components/pagination/PaginationContent.vue.d.ts +29 -0
- package/dist/src/components/pagination/PaginationEllipsis.vue.d.ts +22 -0
- package/dist/src/components/pagination/PaginationFirst.vue.d.ts +26 -0
- package/dist/src/components/pagination/PaginationItem.vue.d.ts +27 -0
- package/dist/src/components/pagination/PaginationLast.vue.d.ts +26 -0
- package/dist/src/components/pagination/PaginationLink.vue.d.ts +28 -0
- package/dist/src/components/pagination/PaginationNext.vue.d.ts +26 -0
- package/dist/src/components/pagination/PaginationPrevious.vue.d.ts +26 -0
- package/dist/src/components/pagination/index.d.ts +9 -0
- package/dist/src/components/pin-input/PinInput.vue.d.ts +22 -0
- package/dist/src/components/pin-input/PinInputGroup.vue.d.ts +22 -0
- package/dist/src/components/pin-input/PinInputSeparator.vue.d.ts +18 -0
- package/dist/src/components/pin-input/PinInputSlot.vue.d.ts +7 -0
- package/dist/src/components/pin-input/index.d.ts +4 -0
- package/dist/src/components/popover/Popover.vue.d.ts +25 -0
- package/dist/src/components/popover/PopoverAnchor.vue.d.ts +18 -0
- package/dist/src/components/popover/PopoverContent.vue.d.ts +39 -0
- package/dist/src/components/popover/PopoverTrigger.vue.d.ts +18 -0
- package/dist/src/components/popover/index.d.ts +4 -0
- package/dist/src/components/progress/Progress.vue.d.ts +9 -0
- package/dist/src/components/progress/index.d.ts +1 -0
- package/dist/src/components/radio-group/RadioGroup.vue.d.ts +28 -0
- package/dist/src/components/radio-group/RadioGroupItem.vue.d.ts +22 -0
- package/dist/src/components/radio-group/index.d.ts +2 -0
- package/dist/src/components/range-calendar/RangeCalendar.vue.d.ts +17 -0
- package/dist/src/components/range-calendar/RangeCalendarCell.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarCellTrigger.vue.d.ts +24 -0
- package/dist/src/components/range-calendar/RangeCalendarGrid.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarGridBody.vue.d.ts +18 -0
- package/dist/src/components/range-calendar/RangeCalendarGridHead.vue.d.ts +18 -0
- package/dist/src/components/range-calendar/RangeCalendarGridRow.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarHeadCell.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarHeader.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarHeading.vue.d.ts +28 -0
- package/dist/src/components/range-calendar/RangeCalendarNextButton.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/RangeCalendarPrevButton.vue.d.ts +22 -0
- package/dist/src/components/range-calendar/index.d.ts +12 -0
- package/dist/src/components/resizable/ResizableHandle.vue.d.ts +27 -0
- package/dist/src/components/resizable/ResizablePanel.vue.d.ts +32 -0
- package/dist/src/components/resizable/ResizablePanelGroup.vue.d.ts +28 -0
- package/dist/src/components/resizable/index.d.ts +3 -0
- package/dist/src/components/scroll-area/ScrollArea.vue.d.ts +22 -0
- package/dist/src/components/scroll-area/ScrollBar.vue.d.ts +9 -0
- package/dist/src/components/scroll-area/index.d.ts +2 -0
- package/dist/src/components/select/Select.vue.d.ts +28 -0
- package/dist/src/components/select/SelectContent.vue.d.ts +32 -0
- package/dist/src/components/select/SelectGroup.vue.d.ts +18 -0
- package/dist/src/components/select/SelectItem.vue.d.ts +23 -0
- package/dist/src/components/select/SelectItemText.vue.d.ts +18 -0
- package/dist/src/components/select/SelectLabel.vue.d.ts +22 -0
- package/dist/src/components/select/SelectScrollDownButton.vue.d.ts +22 -0
- package/dist/src/components/select/SelectScrollUpButton.vue.d.ts +22 -0
- package/dist/src/components/select/SelectSeparator.vue.d.ts +7 -0
- package/dist/src/components/select/SelectTrigger.vue.d.ts +25 -0
- package/dist/src/components/select/SelectValue.vue.d.ts +18 -0
- package/dist/src/components/select/index.d.ts +11 -0
- package/dist/src/components/separator/Separator.vue.d.ts +10 -0
- package/dist/src/components/separator/index.d.ts +1 -0
- package/dist/src/components/sheet/Sheet.vue.d.ts +25 -0
- package/dist/src/components/sheet/SheetClose.vue.d.ts +18 -0
- package/dist/src/components/sheet/SheetContent.vue.d.ts +39 -0
- package/dist/src/components/sheet/SheetDescription.vue.d.ts +22 -0
- package/dist/src/components/sheet/SheetFooter.vue.d.ts +21 -0
- package/dist/src/components/sheet/SheetHeader.vue.d.ts +21 -0
- package/dist/src/components/sheet/SheetOverlay.vue.d.ts +22 -0
- package/dist/src/components/sheet/SheetTitle.vue.d.ts +22 -0
- package/dist/src/components/sheet/SheetTrigger.vue.d.ts +18 -0
- package/dist/src/components/sheet/index.d.ts +8 -0
- package/dist/src/components/sidebar/Sidebar.vue.d.ts +24 -0
- package/dist/src/components/sidebar/SidebarContent.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarFooter.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarGroup.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarGroupAction.vue.d.ts +22 -0
- package/dist/src/components/sidebar/SidebarGroupContent.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarGroupLabel.vue.d.ts +22 -0
- package/dist/src/components/sidebar/SidebarHeader.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarInput.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarInset.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarMenu.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarMenuAction.vue.d.ts +25 -0
- package/dist/src/components/sidebar/SidebarMenuBadge.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarMenuButton.vue.d.ts +27 -0
- package/dist/src/components/sidebar/SidebarMenuButtonChild.vue.d.ts +30 -0
- package/dist/src/components/sidebar/SidebarMenuItem.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarMenuSkeleton.vue.d.ts +7 -0
- package/dist/src/components/sidebar/SidebarMenuSub.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarMenuSubButton.vue.d.ts +27 -0
- package/dist/src/components/sidebar/SidebarMenuSubItem.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarProvider.vue.d.ts +30 -0
- package/dist/src/components/sidebar/SidebarRail.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarSeparator.vue.d.ts +21 -0
- package/dist/src/components/sidebar/SidebarTrigger.vue.d.ts +6 -0
- package/dist/src/components/sidebar/index.d.ts +31 -0
- package/dist/src/components/sidebar/props.d.ts +7 -0
- package/dist/src/components/sidebar/utils.d.ts +56 -0
- package/dist/src/components/skeleton/Skeleton.vue.d.ts +6 -0
- package/dist/src/components/skeleton/index.d.ts +1 -0
- package/dist/src/components/slider/Slider.vue.d.ts +13 -0
- package/dist/src/components/slider/index.d.ts +1 -0
- package/dist/src/components/sonner/Sonner.vue.d.ts +3 -0
- package/dist/src/components/sonner/index.d.ts +1 -0
- package/dist/src/components/spinner/Spinner.vue.d.ts +6 -0
- package/dist/src/components/spinner/index.d.ts +1 -0
- package/dist/src/components/stepper/Stepper.vue.d.ts +38 -0
- package/dist/src/components/stepper/StepperDescription.vue.d.ts +22 -0
- package/dist/src/components/stepper/StepperIndicator.vue.d.ts +22 -0
- package/dist/src/components/stepper/StepperItem.vue.d.ts +22 -0
- package/dist/src/components/stepper/StepperSeparator.vue.d.ts +7 -0
- package/dist/src/components/stepper/StepperTitle.vue.d.ts +22 -0
- package/dist/src/components/stepper/StepperTrigger.vue.d.ts +22 -0
- package/dist/src/components/stepper/index.d.ts +7 -0
- package/dist/src/components/switch/Switch.vue.d.ts +28 -0
- package/dist/src/components/switch/index.d.ts +1 -0
- package/dist/src/components/table/Table.vue.d.ts +21 -0
- package/dist/src/components/table/TableBody.vue.d.ts +21 -0
- package/dist/src/components/table/TableCaption.vue.d.ts +21 -0
- package/dist/src/components/table/TableCell.vue.d.ts +21 -0
- package/dist/src/components/table/TableEmpty.vue.d.ts +24 -0
- package/dist/src/components/table/TableFooter.vue.d.ts +21 -0
- package/dist/src/components/table/TableHead.vue.d.ts +21 -0
- package/dist/src/components/table/TableHeader.vue.d.ts +21 -0
- package/dist/src/components/table/TableRow.vue.d.ts +21 -0
- package/dist/src/components/table/index.d.ts +9 -0
- package/dist/src/components/table/utils.d.ts +3 -0
- package/dist/src/components/tabs/Tabs.vue.d.ts +28 -0
- package/dist/src/components/tabs/TabsContent.vue.d.ts +22 -0
- package/dist/src/components/tabs/TabsList.vue.d.ts +22 -0
- package/dist/src/components/tabs/TabsTrigger.vue.d.ts +22 -0
- package/dist/src/components/tabs/index.d.ts +4 -0
- package/dist/src/components/tags-input/TagsInput.vue.d.ts +34 -0
- package/dist/src/components/tags-input/TagsInputInput.vue.d.ts +7 -0
- package/dist/src/components/tags-input/TagsInputItem.vue.d.ts +22 -0
- package/dist/src/components/tags-input/TagsInputItemDelete.vue.d.ts +22 -0
- package/dist/src/components/tags-input/TagsInputItemText.vue.d.ts +7 -0
- package/dist/src/components/tags-input/index.d.ts +5 -0
- package/dist/src/components/textarea/Textarea.vue.d.ts +12 -0
- package/dist/src/components/textarea/index.d.ts +1 -0
- package/dist/src/components/toggle/Toggle.vue.d.ts +33 -0
- package/dist/src/components/toggle/index.d.ts +7 -0
- package/dist/src/components/toggle-group/ToggleGroup.vue.d.ts +36 -0
- package/dist/src/components/toggle-group/ToggleGroupItem.vue.d.ts +29 -0
- package/dist/src/components/toggle-group/index.d.ts +2 -0
- package/dist/src/components/tooltip/Tooltip.vue.d.ts +24 -0
- package/dist/src/components/tooltip/TooltipContent.vue.d.ts +30 -0
- package/dist/src/components/tooltip/TooltipProvider.vue.d.ts +20 -0
- package/dist/src/components/tooltip/TooltipTrigger.vue.d.ts +18 -0
- package/dist/src/components/tooltip/index.d.ts +4 -0
- package/dist/src/composables/useAppearance.d.ts +9 -0
- package/dist/src/composables/useCookie.d.ts +1 -0
- package/dist/src/composables/useInitials.d.ts +4 -0
- package/dist/src/composables/useLanguage.d.ts +6 -0
- package/dist/src/composables/usePage.d.ts +2 -0
- package/dist/src/composables/useToast.d.ts +61 -0
- package/dist/src/layouts/auth/AuthSimpleLayout.vue.d.ts +27 -0
- package/dist/src/layouts/settings/SettingsLayout.vue.d.ts +17 -0
- package/dist/src/lib/cn.d.ts +2 -0
- package/dist/src/lib/utils.d.ts +4 -0
- package/dist/src/main.d.ts +0 -0
- package/dist/src/plugins/i18n.d.ts +4 -0
- package/dist/src/vite/craftPlugin.d.ts +4 -0
- package/dist/vite/craftPlugin.js +105 -0
- package/dist/vite/ts/craftPlugin.ts +109 -0
- package/package.json +13 -2
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComboboxEmptyProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxEmptyProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComboboxGroupProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxGroupProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
heading?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ComboboxInputProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxInputProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (args_0: string) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
19
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { ComboboxItemProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxItemProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
select: (event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any;
|
|
17
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
|
+
onSelect?: ((event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any) | undefined;
|
|
19
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
20
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComboboxItemIndicatorProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxItemIndicatorProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { ComboboxContentProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxContentProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
17
|
+
pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
|
|
18
|
+
focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
|
|
19
|
+
interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
22
|
+
onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
|
|
23
|
+
onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
24
|
+
onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
25
|
+
}>, {
|
|
26
|
+
align: "start" | "end" | "center";
|
|
27
|
+
position: "inline" | "popper";
|
|
28
|
+
sideOffset: number;
|
|
29
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
31
|
+
export default _default;
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComboboxSeparatorProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxSeparatorProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ComboboxViewportProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ComboboxViewportProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export { default as Combobox } from './Combobox.vue';
|
|
2
|
+
export { default as ComboboxAnchor } from './ComboboxAnchor.vue';
|
|
3
|
+
export { default as ComboboxEmpty } from './ComboboxEmpty.vue';
|
|
4
|
+
export { default as ComboboxGroup } from './ComboboxGroup.vue';
|
|
5
|
+
export { default as ComboboxInput } from './ComboboxInput.vue';
|
|
6
|
+
export { default as ComboboxItem } from './ComboboxItem.vue';
|
|
7
|
+
export { default as ComboboxItemIndicator } from './ComboboxItemIndicator.vue';
|
|
8
|
+
export { default as ComboboxList } from './ComboboxList.vue';
|
|
9
|
+
export { default as ComboboxSeparator } from './ComboboxSeparator.vue';
|
|
10
|
+
export { default as ComboboxViewport } from './ComboboxViewport.vue';
|
|
11
|
+
export { ComboboxCancel, ComboboxTrigger } from 'reka-ui';
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { ListboxRootProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ListboxRootProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
"update:modelValue": (value: import('reka-ui').AcceptableValue) => any;
|
|
17
|
+
highlight: (payload: {
|
|
18
|
+
ref: HTMLElement;
|
|
19
|
+
value: import('reka-ui').AcceptableValue;
|
|
20
|
+
} | undefined) => any;
|
|
21
|
+
entryFocus: (event: CustomEvent<any>) => any;
|
|
22
|
+
leave: (event: Event) => any;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
|
+
"onUpdate:modelValue"?: ((value: import('reka-ui').AcceptableValue) => any) | undefined;
|
|
25
|
+
onHighlight?: ((payload: {
|
|
26
|
+
ref: HTMLElement;
|
|
27
|
+
value: import('reka-ui').AcceptableValue;
|
|
28
|
+
} | undefined) => any) | undefined;
|
|
29
|
+
onEntryFocus?: ((event: CustomEvent<any>) => any) | undefined;
|
|
30
|
+
onLeave?: ((event: Event) => any) | undefined;
|
|
31
|
+
}>, {
|
|
32
|
+
modelValue: import('reka-ui').AcceptableValue | import('reka-ui').AcceptableValue[];
|
|
33
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
34
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
35
|
+
export default _default;
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { DialogRootProps } from 'reka-ui';
|
|
2
|
+
type __VLS_Props = DialogRootProps & {
|
|
3
|
+
title?: string;
|
|
4
|
+
description?: string;
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {
|
|
10
|
+
open: boolean;
|
|
11
|
+
close: () => void;
|
|
12
|
+
}): any;
|
|
13
|
+
};
|
|
14
|
+
refs: {};
|
|
15
|
+
rootEl: any;
|
|
16
|
+
};
|
|
17
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
|
+
"update:open": (value: boolean) => any;
|
|
20
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
21
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
title: string;
|
|
24
|
+
description: string;
|
|
25
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PrimitiveProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = PrimitiveProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ListboxGroupProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ListboxGroupProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
heading?: string;
|
|
6
|
+
};
|
|
7
|
+
declare function __VLS_template(): {
|
|
8
|
+
attrs: Partial<{}>;
|
|
9
|
+
slots: {
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ListboxFilterProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ListboxFilterProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { ListboxItemProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ListboxItemProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {
|
|
12
|
+
itemRef: import('vue').ShallowUnwrapRef<{}> | null;
|
|
13
|
+
};
|
|
14
|
+
rootEl: any;
|
|
15
|
+
};
|
|
16
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
17
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
|
+
select: (event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
|
+
onSelect?: ((event: import('reka-ui').ListboxItemSelectEvent<import('reka-ui').AcceptableValue>) => any) | undefined;
|
|
21
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
22
|
+
itemRef: import('vue').ShallowUnwrapRef<{}> | null;
|
|
23
|
+
}, any>;
|
|
24
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ListboxContentProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ListboxContentProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { SeparatorProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = SeparatorProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
class?: HTMLAttributes["class"];
|
|
4
|
+
};
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: {}): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: HTMLSpanElement;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
15
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
export { default as Command } from './Command.vue';
|
|
3
|
+
export { default as CommandDialog } from './CommandDialog.vue';
|
|
4
|
+
export { default as CommandEmpty } from './CommandEmpty.vue';
|
|
5
|
+
export { default as CommandGroup } from './CommandGroup.vue';
|
|
6
|
+
export { default as CommandInput } from './CommandInput.vue';
|
|
7
|
+
export { default as CommandItem } from './CommandItem.vue';
|
|
8
|
+
export { default as CommandList } from './CommandList.vue';
|
|
9
|
+
export { default as CommandSeparator } from './CommandSeparator.vue';
|
|
10
|
+
export { default as CommandShortcut } from './CommandShortcut.vue';
|
|
11
|
+
export declare const useCommand: <T extends {
|
|
12
|
+
allItems: Ref<Map<string, string>>;
|
|
13
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
14
|
+
filterState: {
|
|
15
|
+
search: string;
|
|
16
|
+
filtered: {
|
|
17
|
+
count: number;
|
|
18
|
+
items: Map<string, number>;
|
|
19
|
+
groups: Set<string>;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
} | null | undefined = {
|
|
23
|
+
allItems: Ref<Map<string, string>>;
|
|
24
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
25
|
+
filterState: {
|
|
26
|
+
search: string;
|
|
27
|
+
filtered: {
|
|
28
|
+
count: number;
|
|
29
|
+
items: Map<string, number>;
|
|
30
|
+
groups: Set<string>;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
}>(fallback?: T | undefined) => T extends null ? {
|
|
34
|
+
allItems: Ref<Map<string, string>>;
|
|
35
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
36
|
+
filterState: {
|
|
37
|
+
search: string;
|
|
38
|
+
filtered: {
|
|
39
|
+
count: number;
|
|
40
|
+
items: Map<string, number>;
|
|
41
|
+
groups: Set<string>;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
} | null : {
|
|
45
|
+
allItems: Ref<Map<string, string>>;
|
|
46
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
47
|
+
filterState: {
|
|
48
|
+
search: string;
|
|
49
|
+
filtered: {
|
|
50
|
+
count: number;
|
|
51
|
+
items: Map<string, number>;
|
|
52
|
+
groups: Set<string>;
|
|
53
|
+
};
|
|
54
|
+
};
|
|
55
|
+
}, provideCommandContext: (contextValue: {
|
|
56
|
+
allItems: Ref<Map<string, string>>;
|
|
57
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
58
|
+
filterState: {
|
|
59
|
+
search: string;
|
|
60
|
+
filtered: {
|
|
61
|
+
count: number;
|
|
62
|
+
items: Map<string, number>;
|
|
63
|
+
groups: Set<string>;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
}) => {
|
|
67
|
+
allItems: Ref<Map<string, string>>;
|
|
68
|
+
allGroups: Ref<Map<string, Set<string>>>;
|
|
69
|
+
filterState: {
|
|
70
|
+
search: string;
|
|
71
|
+
filtered: {
|
|
72
|
+
count: number;
|
|
73
|
+
items: Map<string, number>;
|
|
74
|
+
groups: Set<string>;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
};
|
|
78
|
+
export declare const useCommandGroup: <T extends {
|
|
79
|
+
id?: string;
|
|
80
|
+
} | null | undefined = {
|
|
81
|
+
id?: string;
|
|
82
|
+
}>(fallback?: T | undefined) => T extends null ? {
|
|
83
|
+
id?: string;
|
|
84
|
+
} | null : {
|
|
85
|
+
id?: string;
|
|
86
|
+
}, provideCommandGroupContext: (contextValue: {
|
|
87
|
+
id?: string;
|
|
88
|
+
}) => {
|
|
89
|
+
id?: string;
|
|
90
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { ContextMenuRootProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ContextMenuRootProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
12
|
+
"update:open": (payload: boolean) => any;
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<ContextMenuRootProps> & Readonly<{
|
|
14
|
+
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { ContextMenuCheckboxItemProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ContextMenuCheckboxItemProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
'indicator-icon'?(_: {}): any;
|
|
10
|
+
default?(_: {}): any;
|
|
11
|
+
};
|
|
12
|
+
refs: {};
|
|
13
|
+
rootEl: any;
|
|
14
|
+
};
|
|
15
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
16
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
17
|
+
select: (event: Event) => any;
|
|
18
|
+
"update:modelValue": (payload: boolean) => any;
|
|
19
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
20
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
21
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
22
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ContextMenuContentProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = ContextMenuContentProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
};
|
|
6
|
+
declare function __VLS_template(): {
|
|
7
|
+
attrs: Partial<{}>;
|
|
8
|
+
slots: {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: any;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
17
|
+
pointerDownOutside: (event: import('reka-ui').PointerDownOutsideEvent) => any;
|
|
18
|
+
focusOutside: (event: import('reka-ui').FocusOutsideEvent) => any;
|
|
19
|
+
interactOutside: (event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any;
|
|
20
|
+
closeAutoFocus: (event: Event) => any;
|
|
21
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
22
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
23
|
+
onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
|
|
24
|
+
onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
25
|
+
onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
26
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
27
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ContextMenuGroupProps } from 'reka-ui';
|
|
2
|
+
declare function __VLS_template(): {
|
|
3
|
+
attrs: Partial<{}>;
|
|
4
|
+
slots: {
|
|
5
|
+
default?(_: {}): any;
|
|
6
|
+
};
|
|
7
|
+
refs: {};
|
|
8
|
+
rootEl: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
11
|
+
declare const __VLS_component: import('vue').DefineComponent<ContextMenuGroupProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ContextMenuGroupProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|