@una-ui/nuxt 0.53.0 → 0.54.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/module.cjs +5 -0
- package/dist/module.d.ts +37 -0
- package/dist/module.json +2 -2
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/alert-dialog/AlertDialog.vue +38 -43
- package/dist/runtime/components/alert-dialog/AlertDialogAction.vue +9 -35
- package/dist/runtime/components/alert-dialog/AlertDialogCancel.vue +13 -39
- package/dist/runtime/components/alert-dialog/AlertDialogContent.vue +33 -39
- package/dist/runtime/components/alert-dialog/AlertDialogDescription.vue +13 -15
- package/dist/runtime/components/alert-dialog/AlertDialogFooter.vue +11 -12
- package/dist/runtime/components/alert-dialog/AlertDialogHeader.vue +9 -10
- package/dist/runtime/components/alert-dialog/AlertDialogOverlay.vue +11 -15
- package/dist/runtime/components/alert-dialog/AlertDialogTitle.vue +13 -15
- package/dist/runtime/components/alert-dialog/AlertDialogTrigger.vue +5 -6
- package/dist/runtime/components/aspect-ratio/AspectRatio.vue +16 -18
- package/dist/runtime/components/combobox/Combobox.vue +144 -144
- package/dist/runtime/components/combobox/ComboboxAnchor.vue +18 -20
- package/dist/runtime/components/combobox/ComboboxEmpty.vue +16 -18
- package/dist/runtime/components/combobox/ComboboxGroup.vue +19 -25
- package/dist/runtime/components/combobox/ComboboxInput.vue +24 -38
- package/dist/runtime/components/combobox/ComboboxItem.vue +22 -23
- package/dist/runtime/components/combobox/ComboboxItemIndicator.vue +23 -23
- package/dist/runtime/components/combobox/ComboboxLabel.vue +10 -16
- package/dist/runtime/components/combobox/ComboboxList.vue +25 -43
- package/dist/runtime/components/combobox/ComboboxSeparator.vue +16 -18
- package/dist/runtime/components/combobox/ComboboxTrigger.vue +52 -75
- package/dist/runtime/components/combobox/ComboboxViewport.vue +18 -20
- package/dist/runtime/components/data/table/Table.vue +186 -206
- package/dist/runtime/components/data/table/TableBody.vue +15 -15
- package/dist/runtime/components/data/table/TableCaption.vue +16 -16
- package/dist/runtime/components/data/table/TableCell.vue +19 -20
- package/dist/runtime/components/data/table/TableEmpty.vue +27 -27
- package/dist/runtime/components/data/table/TableFooter.vue +15 -15
- package/dist/runtime/components/data/table/TableHead.vue +17 -18
- package/dist/runtime/components/data/table/TableHeader.vue +15 -15
- package/dist/runtime/components/data/table/TableLoading.vue +28 -31
- package/dist/runtime/components/data/table/TableRow.vue +15 -15
- package/dist/runtime/components/elements/Accordion.vue +92 -99
- package/dist/runtime/components/elements/Alert.vue +50 -37
- package/dist/runtime/components/elements/AvatarGroup.vue +71 -64
- package/dist/runtime/components/elements/Badge.vue +20 -19
- package/dist/runtime/components/elements/Button.vue +62 -75
- package/dist/runtime/components/elements/Icon.vue +4 -4
- package/dist/runtime/components/elements/Indicator.vue +29 -25
- package/dist/runtime/components/elements/Kbd.vue +12 -13
- package/dist/runtime/components/elements/Label.vue +15 -17
- package/dist/runtime/components/elements/Link.vue +2 -2
- package/dist/runtime/components/elements/Link.vue.d.ts +109 -0
- package/dist/runtime/components/elements/Progress.vue +35 -36
- package/dist/runtime/components/elements/Separator.vue +26 -31
- package/dist/runtime/components/elements/Skeleton.vue +11 -15
- package/dist/runtime/components/elements/Toggle.vue +26 -48
- package/dist/runtime/components/elements/avatar/Avatar.vue +22 -31
- package/dist/runtime/components/elements/avatar/AvatarFallback.vue +17 -26
- package/dist/runtime/components/elements/avatar/AvatarImage.vue +11 -20
- package/dist/runtime/components/elements/card/Card.vue +24 -28
- package/dist/runtime/components/elements/card/CardContent.vue +9 -10
- package/dist/runtime/components/elements/card/CardDescription.vue +9 -10
- package/dist/runtime/components/elements/card/CardFooter.vue +9 -10
- package/dist/runtime/components/elements/card/CardHeader.vue +9 -10
- package/dist/runtime/components/elements/card/CardTitle.vue +11 -12
- package/dist/runtime/components/elements/collapsible/Collapsible.vue +11 -15
- package/dist/runtime/components/elements/collapsible/CollapsibleContent.vue +9 -12
- package/dist/runtime/components/elements/collapsible/CollapsibleTrigger.vue +5 -6
- package/dist/runtime/components/elements/dialog/Dialog.vue +35 -43
- package/dist/runtime/components/elements/dialog/DialogClose.vue +11 -34
- package/dist/runtime/components/elements/dialog/DialogContent.vue +35 -40
- package/dist/runtime/components/elements/dialog/DialogDescription.vue +15 -16
- package/dist/runtime/components/elements/dialog/DialogFooter.vue +9 -10
- package/dist/runtime/components/elements/dialog/DialogHeader.vue +9 -10
- package/dist/runtime/components/elements/dialog/DialogOverlay.vue +11 -13
- package/dist/runtime/components/elements/dialog/DialogScrollContent.vue +37 -39
- package/dist/runtime/components/elements/dialog/DialogTitle.vue +17 -19
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.vue +38 -85
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.vue +26 -43
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuGroup.vue +10 -14
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.vue +33 -58
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuLabel.vue +19 -21
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuRoot.vue +9 -13
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSeparator.vue +18 -25
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuShortcut.vue +9 -12
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSub.vue +13 -9
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.vue +21 -36
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubTrigger.vue +27 -52
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuTrigger.vue +17 -44
- package/dist/runtime/components/elements/pagination/Pagination.vue +31 -51
- package/dist/runtime/components/elements/pagination/PaginationEllipsis.vue +25 -27
- package/dist/runtime/components/elements/pagination/PaginationFirst.vue +25 -45
- package/dist/runtime/components/elements/pagination/PaginationLast.vue +25 -45
- package/dist/runtime/components/elements/pagination/PaginationListItem.vue +27 -50
- package/dist/runtime/components/elements/pagination/PaginationNext.vue +25 -45
- package/dist/runtime/components/elements/pagination/PaginationPrev.vue +25 -45
- package/dist/runtime/components/elements/popover/Popover.vue +16 -15
- package/dist/runtime/components/elements/popover/PopoverContent.vue +31 -39
- package/dist/runtime/components/elements/tabs/Tabs.vue +21 -32
- package/dist/runtime/components/elements/tabs/TabsContent.vue +18 -22
- package/dist/runtime/components/elements/tabs/TabsList.vue +14 -19
- package/dist/runtime/components/elements/tabs/TabsRoot.vue +13 -22
- package/dist/runtime/components/elements/tabs/TabsTrigger.vue +19 -47
- package/dist/runtime/components/elements/tooltip/Tooltip.vue +24 -36
- package/dist/runtime/components/elements/tooltip/TooltipContent.vue +27 -37
- package/dist/runtime/components/elements/tooltip/TooltipProvider.vue +7 -10
- package/dist/runtime/components/elements/tooltip/TooltipRoot.vue +9 -13
- package/dist/runtime/components/elements/tooltip/TooltipTrigger.vue +5 -34
- package/dist/runtime/components/forms/Checkbox.vue +42 -49
- package/dist/runtime/components/forms/FormGroup.vue +33 -40
- package/dist/runtime/components/forms/Input.vue +134 -118
- package/dist/runtime/components/forms/Slider.vue +33 -48
- package/dist/runtime/components/forms/Switch.vue +42 -43
- package/dist/runtime/components/forms/form/FormControl.vue +5 -4
- package/dist/runtime/components/forms/form/FormDescription.vue +12 -12
- package/dist/runtime/components/forms/form/FormField.vue +56 -65
- package/dist/runtime/components/forms/form/FormItem.vue +14 -14
- package/dist/runtime/components/forms/form/FormLabel.vue +13 -17
- package/dist/runtime/components/forms/form/FormMessage.vue +14 -14
- package/dist/runtime/components/forms/radio-group/RadioGroup.vue +62 -66
- package/dist/runtime/components/forms/radio-group/RadioGroupItem.vue +54 -60
- package/dist/runtime/components/forms/select/Select.vue +63 -81
- package/dist/runtime/components/forms/select/SelectContent.vue +38 -55
- package/dist/runtime/components/forms/select/SelectGroup.vue +16 -18
- package/dist/runtime/components/forms/select/SelectItem.vue +25 -31
- package/dist/runtime/components/forms/select/SelectItemIndicator.vue +15 -17
- package/dist/runtime/components/forms/select/SelectItemText.vue +5 -9
- package/dist/runtime/components/forms/select/SelectLabel.vue +10 -15
- package/dist/runtime/components/forms/select/SelectScrollDownButton.vue +19 -20
- package/dist/runtime/components/forms/select/SelectScrollUpButton.vue +19 -20
- package/dist/runtime/components/forms/select/SelectSeparator.vue +16 -18
- package/dist/runtime/components/forms/select/SelectTrigger.vue +53 -78
- package/dist/runtime/components/forms/select/SelectValue.vue +10 -15
- package/dist/runtime/components/misc/ThemeSwitcher.vue +69 -51
- package/dist/runtime/components/navigation/breadcrumb/Breadcrumb.vue +22 -35
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.vue +14 -13
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbItem.vue +9 -10
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbLink.vue +26 -46
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbList.vue +9 -10
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbPage.vue +7 -5
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbRoot.vue +8 -9
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.vue +13 -13
- package/dist/runtime/components/navigation-menu/NavigationMenu.vue +32 -52
- package/dist/runtime/components/navigation-menu/NavigationMenuContent.vue +19 -22
- package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.vue +24 -53
- package/dist/runtime/components/navigation-menu/NavigationMenuIndicator.vue +15 -18
- package/dist/runtime/components/navigation-menu/NavigationMenuItem.vue +5 -40
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue +28 -51
- package/dist/runtime/components/navigation-menu/NavigationMenuList.vue +22 -24
- package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.vue +34 -54
- package/dist/runtime/components/navigation-menu/NavigationMenuViewport.vue +26 -29
- package/dist/runtime/components/overlays/Toaster.vue +16 -19
- package/dist/runtime/components/overlays/toast/Toast.vue +38 -58
- package/dist/runtime/components/overlays/toast/ToastAction.vue +19 -42
- package/dist/runtime/components/overlays/toast/ToastClose.vue +20 -21
- package/dist/runtime/components/overlays/toast/ToastDescription.vue +16 -17
- package/dist/runtime/components/overlays/toast/ToastInfo.vue +9 -10
- package/dist/runtime/components/overlays/toast/ToastProvider.vue +7 -8
- package/dist/runtime/components/overlays/toast/ToastTitle.vue +16 -17
- package/dist/runtime/components/overlays/toast/ToastViewport.vue +16 -19
- package/dist/runtime/components/resizable/ResizableHandle.vue +36 -36
- package/dist/runtime/components/resizable/ResizablePanel.vue +17 -24
- package/dist/runtime/components/resizable/ResizablePanelGroup.vue +17 -22
- package/dist/runtime/components/scroll-area/ScrollArea.vue +23 -31
- package/dist/runtime/components/scroll-area/ScrollBar.vue +25 -29
- package/dist/runtime/components/sheet/Sheet.vue +29 -40
- package/dist/runtime/components/sheet/SheetClose.vue +12 -34
- package/dist/runtime/components/sheet/SheetContent.vue +29 -35
- package/dist/runtime/components/sheet/SheetDescription.vue +13 -13
- package/dist/runtime/components/sheet/SheetFooter.vue +11 -12
- package/dist/runtime/components/sheet/SheetHeader.vue +7 -8
- package/dist/runtime/components/sheet/SheetTitle.vue +12 -13
- package/dist/runtime/components/sheet/SheetTrigger.vue +7 -6
- package/dist/runtime/components/sidebar/Sidebar.vue +52 -48
- package/dist/runtime/components/sidebar/SidebarContent.vue +10 -11
- package/dist/runtime/components/sidebar/SidebarFooter.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarGroup.vue +10 -12
- package/dist/runtime/components/sidebar/SidebarGroupAction.vue +13 -13
- package/dist/runtime/components/sidebar/SidebarGroupContent.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarGroupLabel.vue +13 -13
- package/dist/runtime/components/sidebar/SidebarHeader.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarInput.vue +10 -26
- package/dist/runtime/components/sidebar/SidebarInset.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarMenu.vue +14 -16
- package/dist/runtime/components/sidebar/SidebarMenuAction.vue +13 -15
- package/dist/runtime/components/sidebar/SidebarMenuBadge.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarMenuButton.vue +28 -27
- package/dist/runtime/components/sidebar/SidebarMenuButtonChild.vue +41 -29
- package/dist/runtime/components/sidebar/SidebarMenuItem.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarMenuSkeleton.vue +14 -15
- package/dist/runtime/components/sidebar/SidebarMenuSub.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarMenuSubButton.vue +17 -19
- package/dist/runtime/components/sidebar/SidebarMenuSubItem.vue +9 -10
- package/dist/runtime/components/sidebar/SidebarProvider.vue +55 -38
- package/dist/runtime/components/sidebar/SidebarRail.vue +12 -12
- package/dist/runtime/components/sidebar/SidebarSeparator.vue +10 -11
- package/dist/runtime/components/sidebar/SidebarTrigger.vue +18 -38
- package/dist/types.d.mts +5 -3
- package/dist/types.d.ts +7 -0
- package/dist/una.config.d.ts +8 -0
- package/dist/una.config.mjs +1 -1
- package/package.json +10 -8
- package/dist/runtime/components/alert-dialog/AlertDialog.vue.d.ts +0 -45
- package/dist/runtime/components/alert-dialog/AlertDialogAction.vue.d.ts +0 -16
- package/dist/runtime/components/alert-dialog/AlertDialogCancel.vue.d.ts +0 -16
- package/dist/runtime/components/alert-dialog/AlertDialogContent.vue.d.ts +0 -45
- package/dist/runtime/components/alert-dialog/AlertDialogDescription.vue.d.ts +0 -13
- package/dist/runtime/components/alert-dialog/AlertDialogFooter.vue.d.ts +0 -13
- package/dist/runtime/components/alert-dialog/AlertDialogHeader.vue.d.ts +0 -13
- package/dist/runtime/components/alert-dialog/AlertDialogOverlay.vue.d.ts +0 -13
- package/dist/runtime/components/alert-dialog/AlertDialogTitle.vue.d.ts +0 -13
- package/dist/runtime/components/alert-dialog/AlertDialogTrigger.vue.d.ts +0 -13
- package/dist/runtime/components/aspect-ratio/AspectRatio.vue.d.ts +0 -18
- package/dist/runtime/components/combobox/Combobox.vue.d.ts +0 -89
- package/dist/runtime/components/combobox/ComboboxAnchor.vue.d.ts +0 -13
- package/dist/runtime/components/combobox/ComboboxEmpty.vue.d.ts +0 -13
- package/dist/runtime/components/combobox/ComboboxGroup.vue.d.ts +0 -17
- package/dist/runtime/components/combobox/ComboboxInput.vue.d.ts +0 -16
- package/dist/runtime/components/combobox/ComboboxItem.vue.d.ts +0 -18
- package/dist/runtime/components/combobox/ComboboxItemIndicator.vue.d.ts +0 -15
- package/dist/runtime/components/combobox/ComboboxLabel.vue.d.ts +0 -13
- package/dist/runtime/components/combobox/ComboboxList.vue.d.ts +0 -43
- package/dist/runtime/components/combobox/ComboboxSeparator.vue.d.ts +0 -13
- package/dist/runtime/components/combobox/ComboboxTrigger.vue.d.ts +0 -17
- package/dist/runtime/components/combobox/ComboboxViewport.vue.d.ts +0 -13
- package/dist/runtime/components/data/table/Table.vue.d.ts +0 -184
- package/dist/runtime/components/data/table/TableBody.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableCaption.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableCell.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableEmpty.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableFooter.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableHead.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableHeader.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableLoading.vue.d.ts +0 -15
- package/dist/runtime/components/data/table/TableRow.vue.d.ts +0 -15
- package/dist/runtime/components/elements/Accordion.vue.d.ts +0 -28
- package/dist/runtime/components/elements/Alert.vue.d.ts +0 -22
- package/dist/runtime/components/elements/AvatarGroup.vue.d.ts +0 -11
- package/dist/runtime/components/elements/Badge.vue.d.ts +0 -26
- package/dist/runtime/components/elements/Button.vue.d.ts +0 -34
- package/dist/runtime/components/elements/Icon.vue.d.ts +0 -3
- package/dist/runtime/components/elements/Indicator.vue.d.ts +0 -19
- package/dist/runtime/components/elements/Kbd.vue.d.ts +0 -13
- package/dist/runtime/components/elements/Label.vue.d.ts +0 -13
- package/dist/runtime/components/elements/Progress.vue.d.ts +0 -18
- package/dist/runtime/components/elements/Separator.vue.d.ts +0 -15
- package/dist/runtime/components/elements/Skeleton.vue.d.ts +0 -13
- package/dist/runtime/components/elements/Toggle.vue.d.ts +0 -22
- package/dist/runtime/components/elements/avatar/Avatar.vue.d.ts +0 -21
- package/dist/runtime/components/elements/avatar/AvatarFallback.vue.d.ts +0 -13
- package/dist/runtime/components/elements/avatar/AvatarImage.vue.d.ts +0 -3
- package/dist/runtime/components/elements/card/Card.vue.d.ts +0 -25
- package/dist/runtime/components/elements/card/CardContent.vue.d.ts +0 -13
- package/dist/runtime/components/elements/card/CardDescription.vue.d.ts +0 -13
- package/dist/runtime/components/elements/card/CardFooter.vue.d.ts +0 -13
- package/dist/runtime/components/elements/card/CardHeader.vue.d.ts +0 -13
- package/dist/runtime/components/elements/card/CardTitle.vue.d.ts +0 -13
- package/dist/runtime/components/elements/collapsible/Collapsible.vue.d.ts +0 -25
- package/dist/runtime/components/elements/collapsible/CollapsibleContent.vue.d.ts +0 -13
- package/dist/runtime/components/elements/collapsible/CollapsibleTrigger.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dialog/Dialog.vue.d.ts +0 -34
- package/dist/runtime/components/elements/dialog/DialogClose.vue.d.ts +0 -18
- package/dist/runtime/components/elements/dialog/DialogContent.vue.d.ts +0 -46
- package/dist/runtime/components/elements/dialog/DialogDescription.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dialog/DialogFooter.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dialog/DialogHeader.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dialog/DialogOverlay.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dialog/DialogScrollContent.vue.d.ts +0 -46
- package/dist/runtime/components/elements/dialog/DialogTitle.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.vue.d.ts +0 -61
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.vue.d.ts +0 -43
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuGroup.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.vue.d.ts +0 -14
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuLabel.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuRoot.vue.d.ts +0 -17
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSeparator.vue.d.ts +0 -3
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuShortcut.vue.d.ts +0 -13
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSub.vue.d.ts +0 -17
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.vue.d.ts +0 -45
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +0 -16
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuTrigger.vue.d.ts +0 -13
- package/dist/runtime/components/elements/pagination/Pagination.vue.d.ts +0 -41
- package/dist/runtime/components/elements/pagination/PaginationEllipsis.vue.d.ts +0 -15
- package/dist/runtime/components/elements/pagination/PaginationFirst.vue.d.ts +0 -18
- package/dist/runtime/components/elements/pagination/PaginationLast.vue.d.ts +0 -18
- package/dist/runtime/components/elements/pagination/PaginationListItem.vue.d.ts +0 -17
- package/dist/runtime/components/elements/pagination/PaginationNext.vue.d.ts +0 -18
- package/dist/runtime/components/elements/pagination/PaginationPrev.vue.d.ts +0 -18
- package/dist/runtime/components/elements/popover/Popover.vue.d.ts +0 -21
- package/dist/runtime/components/elements/popover/PopoverContent.vue.d.ts +0 -46
- package/dist/runtime/components/elements/tabs/Tabs.vue.d.ts +0 -28
- package/dist/runtime/components/elements/tabs/TabsContent.vue.d.ts +0 -13
- package/dist/runtime/components/elements/tabs/TabsList.vue.d.ts +0 -13
- package/dist/runtime/components/elements/tabs/TabsRoot.vue.d.ts +0 -17
- package/dist/runtime/components/elements/tabs/TabsTrigger.vue.d.ts +0 -13
- package/dist/runtime/components/elements/tooltip/Tooltip.vue.d.ts +0 -19
- package/dist/runtime/components/elements/tooltip/TooltipContent.vue.d.ts +0 -22
- package/dist/runtime/components/elements/tooltip/TooltipProvider.vue.d.ts +0 -15
- package/dist/runtime/components/elements/tooltip/TooltipRoot.vue.d.ts +0 -17
- package/dist/runtime/components/elements/tooltip/TooltipTrigger.vue.d.ts +0 -13
- package/dist/runtime/components/forms/Checkbox.vue.d.ts +0 -21
- package/dist/runtime/components/forms/FormGroup.vue.d.ts +0 -27
- package/dist/runtime/components/forms/Input.vue.d.ts +0 -31
- package/dist/runtime/components/forms/Slider.vue.d.ts +0 -25
- package/dist/runtime/components/forms/Switch.vue.d.ts +0 -27
- package/dist/runtime/components/forms/form/FormControl.vue.d.ts +0 -12
- package/dist/runtime/components/forms/form/FormDescription.vue.d.ts +0 -13
- package/dist/runtime/components/forms/form/FormField.vue.d.ts +0 -25
- package/dist/runtime/components/forms/form/FormItem.vue.d.ts +0 -13
- package/dist/runtime/components/forms/form/FormLabel.vue.d.ts +0 -13
- package/dist/runtime/components/forms/form/FormMessage.vue.d.ts +0 -3
- package/dist/runtime/components/forms/radio-group/RadioGroup.vue.d.ts +0 -29
- package/dist/runtime/components/forms/radio-group/RadioGroupItem.vue.d.ts +0 -22
- package/dist/runtime/components/forms/select/Select.vue.d.ts +0 -72
- package/dist/runtime/components/forms/select/SelectContent.vue.d.ts +0 -27
- package/dist/runtime/components/forms/select/SelectGroup.vue.d.ts +0 -13
- package/dist/runtime/components/forms/select/SelectItem.vue.d.ts +0 -17
- package/dist/runtime/components/forms/select/SelectItemIndicator.vue.d.ts +0 -15
- package/dist/runtime/components/forms/select/SelectItemText.vue.d.ts +0 -13
- package/dist/runtime/components/forms/select/SelectLabel.vue.d.ts +0 -13
- package/dist/runtime/components/forms/select/SelectScrollDownButton.vue.d.ts +0 -13
- package/dist/runtime/components/forms/select/SelectScrollUpButton.vue.d.ts +0 -13
- package/dist/runtime/components/forms/select/SelectSeparator.vue.d.ts +0 -3
- package/dist/runtime/components/forms/select/SelectTrigger.vue.d.ts +0 -15
- package/dist/runtime/components/forms/select/SelectValue.vue.d.ts +0 -13
- package/dist/runtime/components/misc/ThemeSwitcher.vue.d.ts +0 -16
- package/dist/runtime/components/navigation/breadcrumb/Breadcrumb.vue.d.ts +0 -45
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.vue.d.ts +0 -16
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbItem.vue.d.ts +0 -13
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbLink.vue.d.ts +0 -18
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbList.vue.d.ts +0 -13
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbPage.vue.d.ts +0 -16
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbRoot.vue.d.ts +0 -13
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.vue.d.ts +0 -16
- package/dist/runtime/components/navigation-menu/NavigationMenu.vue.d.ts +0 -46
- package/dist/runtime/components/navigation-menu/NavigationMenuContent.vue.d.ts +0 -39
- package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.vue.d.ts +0 -21
- package/dist/runtime/components/navigation-menu/NavigationMenuIndicator.vue.d.ts +0 -13
- package/dist/runtime/components/navigation-menu/NavigationMenuItem.vue.d.ts +0 -13
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.vue.d.ts +0 -27
- package/dist/runtime/components/navigation-menu/NavigationMenuList.vue.d.ts +0 -13
- package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.vue.d.ts +0 -18
- package/dist/runtime/components/navigation-menu/NavigationMenuViewport.vue.d.ts +0 -3
- package/dist/runtime/components/overlays/Toaster.vue.d.ts +0 -13
- package/dist/runtime/components/overlays/toast/Toast.vue.d.ts +0 -112
- package/dist/runtime/components/overlays/toast/ToastAction.vue.d.ts +0 -16
- package/dist/runtime/components/overlays/toast/ToastClose.vue.d.ts +0 -3
- package/dist/runtime/components/overlays/toast/ToastDescription.vue.d.ts +0 -13
- package/dist/runtime/components/overlays/toast/ToastInfo.vue.d.ts +0 -13
- package/dist/runtime/components/overlays/toast/ToastProvider.vue.d.ts +0 -15
- package/dist/runtime/components/overlays/toast/ToastTitle.vue.d.ts +0 -13
- package/dist/runtime/components/overlays/toast/ToastViewport.vue.d.ts +0 -3
- package/dist/runtime/components/resizable/ResizableHandle.vue.d.ts +0 -21
- package/dist/runtime/components/resizable/ResizablePanel.vue.d.ts +0 -24
- package/dist/runtime/components/resizable/ResizablePanelGroup.vue.d.ts +0 -19
- package/dist/runtime/components/scroll-area/ScrollArea.vue.d.ts +0 -17
- package/dist/runtime/components/scroll-area/ScrollBar.vue.d.ts +0 -6
- package/dist/runtime/components/sheet/Sheet.vue.d.ts +0 -36
- package/dist/runtime/components/sheet/SheetClose.vue.d.ts +0 -42
- package/dist/runtime/components/sheet/SheetContent.vue.d.ts +0 -68
- package/dist/runtime/components/sheet/SheetDescription.vue.d.ts +0 -12
- package/dist/runtime/components/sheet/SheetFooter.vue.d.ts +0 -12
- package/dist/runtime/components/sheet/SheetHeader.vue.d.ts +0 -12
- package/dist/runtime/components/sheet/SheetTitle.vue.d.ts +0 -12
- package/dist/runtime/components/sheet/SheetTrigger.vue.d.ts +0 -15
- package/dist/runtime/components/sidebar/Sidebar.vue.d.ts +0 -24
- package/dist/runtime/components/sidebar/SidebarContent.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarFooter.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarGroup.vue.d.ts +0 -16
- package/dist/runtime/components/sidebar/SidebarGroupAction.vue.d.ts +0 -36
- package/dist/runtime/components/sidebar/SidebarGroupContent.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarGroupLabel.vue.d.ts +0 -36
- package/dist/runtime/components/sidebar/SidebarHeader.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarInput.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarInset.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarMenu.vue.d.ts +0 -22
- package/dist/runtime/components/sidebar/SidebarMenuAction.vue.d.ts +0 -34
- package/dist/runtime/components/sidebar/SidebarMenuBadge.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarMenuButton.vue.d.ts +0 -19
- package/dist/runtime/components/sidebar/SidebarMenuButtonChild.vue.d.ts +0 -31
- package/dist/runtime/components/sidebar/SidebarMenuItem.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarMenuSkeleton.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarMenuSub.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarMenuSubButton.vue.d.ts +0 -16
- package/dist/runtime/components/sidebar/SidebarMenuSubItem.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarProvider.vue.d.ts +0 -20
- package/dist/runtime/components/sidebar/SidebarRail.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarSeparator.vue.d.ts +0 -12
- package/dist/runtime/components/sidebar/SidebarTrigger.vue.d.ts +0 -30
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NNavigationMenuItemProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type { NNavigationMenuLinkProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {
|
|
3
|
-
active: boolean | undefined;
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Slots = {} & {
|
|
6
|
-
default?: (props: typeof __VLS_6) => any;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
select: (payload: CustomEvent<{
|
|
10
|
-
originalEvent: Event;
|
|
11
|
-
}>) => any;
|
|
12
|
-
}, string, import("vue").PublicProps, Readonly<NNavigationMenuLinkProps> & Readonly<{
|
|
13
|
-
onSelect?: ((payload: CustomEvent<{
|
|
14
|
-
originalEvent: Event;
|
|
15
|
-
}>) => any) | undefined;
|
|
16
|
-
}>, {
|
|
17
|
-
as: import("reka-ui").AsTag | import("vue").Component;
|
|
18
|
-
btn: string;
|
|
19
|
-
navigationMenuLink: string;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
|
-
export default _default;
|
|
23
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
-
new (): {
|
|
25
|
-
$slots: S;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NNavigationMenuListProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuListProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import type { NNavigationMenuTriggerProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuTriggerProps> & Readonly<{}>, {
|
|
7
|
-
as: import("reka-ui").AsTag | import("vue").Component;
|
|
8
|
-
btn: string;
|
|
9
|
-
trailing: string;
|
|
10
|
-
navigationMenu: string;
|
|
11
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
|
-
export default _default;
|
|
14
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
-
new (): {
|
|
16
|
-
$slots: S;
|
|
17
|
-
};
|
|
18
|
-
};
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { NNavigationMenuViewportProps } from '../../types/index.js';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<NNavigationMenuViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
-
export default _default;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NToasterProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_9: string | number, __VLS_10: any;
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
[K in NonNullable<typeof __VLS_9>]?: (props: typeof __VLS_10) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToasterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToasterProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import type { NToastProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_10: {}, __VLS_15: {}, __VLS_20: {}, __VLS_25: {}, __VLS_30: {}, __VLS_32: {
|
|
3
|
-
actions: import("reka-ui").ToastActionProps[];
|
|
4
|
-
}, __VLS_40: {};
|
|
5
|
-
type __VLS_Slots = {} & {
|
|
6
|
-
leading?: (props: typeof __VLS_10) => any;
|
|
7
|
-
} & {
|
|
8
|
-
default?: (props: typeof __VLS_15) => any;
|
|
9
|
-
} & {
|
|
10
|
-
info?: (props: typeof __VLS_20) => any;
|
|
11
|
-
} & {
|
|
12
|
-
title?: (props: typeof __VLS_25) => any;
|
|
13
|
-
} & {
|
|
14
|
-
description?: (props: typeof __VLS_30) => any;
|
|
15
|
-
} & {
|
|
16
|
-
actions?: (props: typeof __VLS_32) => any;
|
|
17
|
-
} & {
|
|
18
|
-
closeIcon?: (props: typeof __VLS_40) => any;
|
|
19
|
-
};
|
|
20
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
21
|
-
pause: () => any;
|
|
22
|
-
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
23
|
-
"update:open": (value: boolean) => any;
|
|
24
|
-
resume: () => any;
|
|
25
|
-
swipeStart: (event: {
|
|
26
|
-
currentTarget: EventTarget & HTMLElement;
|
|
27
|
-
} & Omit<CustomEvent<{
|
|
28
|
-
originalEvent: PointerEvent;
|
|
29
|
-
delta: {
|
|
30
|
-
x: number;
|
|
31
|
-
y: number;
|
|
32
|
-
};
|
|
33
|
-
}>, "currentTarget">) => any;
|
|
34
|
-
swipeMove: (event: {
|
|
35
|
-
currentTarget: EventTarget & HTMLElement;
|
|
36
|
-
} & Omit<CustomEvent<{
|
|
37
|
-
originalEvent: PointerEvent;
|
|
38
|
-
delta: {
|
|
39
|
-
x: number;
|
|
40
|
-
y: number;
|
|
41
|
-
};
|
|
42
|
-
}>, "currentTarget">) => any;
|
|
43
|
-
swipeCancel: (event: {
|
|
44
|
-
currentTarget: EventTarget & HTMLElement;
|
|
45
|
-
} & Omit<CustomEvent<{
|
|
46
|
-
originalEvent: PointerEvent;
|
|
47
|
-
delta: {
|
|
48
|
-
x: number;
|
|
49
|
-
y: number;
|
|
50
|
-
};
|
|
51
|
-
}>, "currentTarget">) => any;
|
|
52
|
-
swipeEnd: (event: {
|
|
53
|
-
currentTarget: EventTarget & HTMLElement;
|
|
54
|
-
} & Omit<CustomEvent<{
|
|
55
|
-
originalEvent: PointerEvent;
|
|
56
|
-
delta: {
|
|
57
|
-
x: number;
|
|
58
|
-
y: number;
|
|
59
|
-
};
|
|
60
|
-
}>, "currentTarget">) => any;
|
|
61
|
-
}, string, import("vue").PublicProps, Readonly<NToastProps> & Readonly<{
|
|
62
|
-
onPause?: (() => any) | undefined;
|
|
63
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
64
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
65
|
-
onResume?: (() => any) | undefined;
|
|
66
|
-
onSwipeStart?: ((event: {
|
|
67
|
-
currentTarget: EventTarget & HTMLElement;
|
|
68
|
-
} & Omit<CustomEvent<{
|
|
69
|
-
originalEvent: PointerEvent;
|
|
70
|
-
delta: {
|
|
71
|
-
x: number;
|
|
72
|
-
y: number;
|
|
73
|
-
};
|
|
74
|
-
}>, "currentTarget">) => any) | undefined;
|
|
75
|
-
onSwipeMove?: ((event: {
|
|
76
|
-
currentTarget: EventTarget & HTMLElement;
|
|
77
|
-
} & Omit<CustomEvent<{
|
|
78
|
-
originalEvent: PointerEvent;
|
|
79
|
-
delta: {
|
|
80
|
-
x: number;
|
|
81
|
-
y: number;
|
|
82
|
-
};
|
|
83
|
-
}>, "currentTarget">) => any) | undefined;
|
|
84
|
-
onSwipeCancel?: ((event: {
|
|
85
|
-
currentTarget: EventTarget & HTMLElement;
|
|
86
|
-
} & Omit<CustomEvent<{
|
|
87
|
-
originalEvent: PointerEvent;
|
|
88
|
-
delta: {
|
|
89
|
-
x: number;
|
|
90
|
-
y: number;
|
|
91
|
-
};
|
|
92
|
-
}>, "currentTarget">) => any) | undefined;
|
|
93
|
-
onSwipeEnd?: ((event: {
|
|
94
|
-
currentTarget: EventTarget & HTMLElement;
|
|
95
|
-
} & Omit<CustomEvent<{
|
|
96
|
-
originalEvent: PointerEvent;
|
|
97
|
-
delta: {
|
|
98
|
-
x: number;
|
|
99
|
-
y: number;
|
|
100
|
-
};
|
|
101
|
-
}>, "currentTarget">) => any) | undefined;
|
|
102
|
-
}>, {
|
|
103
|
-
toast: import("vue").HTMLAttributes["class"];
|
|
104
|
-
closable: boolean;
|
|
105
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
106
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
107
|
-
export default _default;
|
|
108
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
109
|
-
new (): {
|
|
110
|
-
$slots: S;
|
|
111
|
-
};
|
|
112
|
-
};
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import type { NToastActionProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_10: string | number, __VLS_11: any;
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
[K in NonNullable<typeof __VLS_10>]?: (props: typeof __VLS_11) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastActionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastActionProps> & Readonly<{}>, {
|
|
7
|
-
size: string;
|
|
8
|
-
btn: string;
|
|
9
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
11
|
-
export default _default;
|
|
12
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
13
|
-
new (): {
|
|
14
|
-
$slots: S;
|
|
15
|
-
};
|
|
16
|
-
};
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { NToastCloseProps } from '../../../types/index.js';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<NToastCloseProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
-
export default _default;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NToastDescriptionProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastDescriptionProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NToastInfoProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_1: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_1) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastInfoProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastInfoProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { NToastProviderProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastProviderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastProviderProps> & Readonly<{}>, {
|
|
7
|
-
duration: number;
|
|
8
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
-
export default _default;
|
|
11
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
-
new (): {
|
|
13
|
-
$slots: S;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import type { NToastTitleProps } from '../../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NToastTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastTitleProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { NToastViewportProps } from '../../../types/index.js';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<NToastViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NToastViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
-
export default _default;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { NResizableHandleProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {}, __VLS_8: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
} & {
|
|
6
|
-
icon?: (props: typeof __VLS_8) => any;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_component: import("vue").DefineComponent<NResizableHandleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
dragging: (isDragging: boolean) => any;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<NResizableHandleProps> & Readonly<{
|
|
11
|
-
onDragging?: ((isDragging: boolean) => any) | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
resizableHandle: string;
|
|
14
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
-
export default _default;
|
|
17
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
-
new (): {
|
|
19
|
-
$slots: S;
|
|
20
|
-
};
|
|
21
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { NResizablePanelProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {
|
|
3
|
-
isCollapsed: boolean;
|
|
4
|
-
isExpanded: boolean;
|
|
5
|
-
};
|
|
6
|
-
type __VLS_Slots = {} & {
|
|
7
|
-
default?: (props: typeof __VLS_6) => any;
|
|
8
|
-
};
|
|
9
|
-
declare const __VLS_component: import("vue").DefineComponent<NResizablePanelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
-
resize: (size: number, prevSize: number | undefined) => any;
|
|
11
|
-
expand: () => any;
|
|
12
|
-
collapse: () => any;
|
|
13
|
-
}, string, import("vue").PublicProps, Readonly<NResizablePanelProps> & Readonly<{
|
|
14
|
-
onResize?: ((size: number, prevSize: number | undefined) => any) | undefined;
|
|
15
|
-
onExpand?: (() => any) | undefined;
|
|
16
|
-
onCollapse?: (() => any) | undefined;
|
|
17
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
-
new (): {
|
|
22
|
-
$slots: S;
|
|
23
|
-
};
|
|
24
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { NResizablePanelGroupProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {
|
|
3
|
-
layout: number[];
|
|
4
|
-
};
|
|
5
|
-
type __VLS_Slots = {} & {
|
|
6
|
-
default?: (props: typeof __VLS_6) => any;
|
|
7
|
-
};
|
|
8
|
-
declare const __VLS_component: import("vue").DefineComponent<NResizablePanelGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
-
layout: (val: number[]) => any;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<NResizablePanelGroupProps> & Readonly<{
|
|
11
|
-
onLayout?: ((val: number[]) => any) | undefined;
|
|
12
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
-
export default _default;
|
|
15
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
-
new (): {
|
|
17
|
-
$slots: S;
|
|
18
|
-
};
|
|
19
|
-
};
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import type { NScrollAreaProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_10: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_10) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NScrollAreaProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NScrollAreaProps> & Readonly<{}>, {
|
|
7
|
-
rounded: import("vue").HTMLAttributes["class"];
|
|
8
|
-
size: import("vue").HTMLAttributes["class"];
|
|
9
|
-
scrollArea: import("vue").HTMLAttributes["class"];
|
|
10
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
-
export default _default;
|
|
13
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
-
new (): {
|
|
15
|
-
$slots: S;
|
|
16
|
-
};
|
|
17
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { NScrollAreaScrollbarProps } from '../../types/index.js';
|
|
2
|
-
declare const _default: import("vue").DefineComponent<NScrollAreaScrollbarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NScrollAreaScrollbarProps> & Readonly<{}>, {
|
|
3
|
-
rounded: import("vue").HTMLAttributes["class"];
|
|
4
|
-
orientation: "vertical" | "horizontal";
|
|
5
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
export default _default;
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import type { NSheetProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
-
open: boolean;
|
|
4
|
-
}, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_43: {}, __VLS_48: {};
|
|
5
|
-
type __VLS_Slots = {} & {
|
|
6
|
-
root?: (props: typeof __VLS_6) => any;
|
|
7
|
-
} & {
|
|
8
|
-
trigger?: (props: typeof __VLS_11) => any;
|
|
9
|
-
} & {
|
|
10
|
-
content?: (props: typeof __VLS_26) => any;
|
|
11
|
-
} & {
|
|
12
|
-
header?: (props: typeof __VLS_31) => any;
|
|
13
|
-
} & {
|
|
14
|
-
title?: (props: typeof __VLS_36) => any;
|
|
15
|
-
} & {
|
|
16
|
-
description?: (props: typeof __VLS_41) => any;
|
|
17
|
-
} & {
|
|
18
|
-
default?: (props: typeof __VLS_43) => any;
|
|
19
|
-
} & {
|
|
20
|
-
footer?: (props: typeof __VLS_48) => any;
|
|
21
|
-
};
|
|
22
|
-
declare const __VLS_component: import("vue").DefineComponent<NSheetProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
|
-
"update:open": (value: boolean) => any;
|
|
24
|
-
}, string, import("vue").PublicProps, Readonly<NSheetProps> & Readonly<{
|
|
25
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
26
|
-
}>, {
|
|
27
|
-
overlay: boolean;
|
|
28
|
-
showClose: boolean;
|
|
29
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
30
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
31
|
-
export default _default;
|
|
32
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
33
|
-
new (): {
|
|
34
|
-
$slots: S;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import type { NSheetCloseProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetCloseProps>, {
|
|
7
|
-
btn: string;
|
|
8
|
-
label: string;
|
|
9
|
-
square: string;
|
|
10
|
-
icon: boolean;
|
|
11
|
-
ariaLabel: string;
|
|
12
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetCloseProps>, {
|
|
13
|
-
btn: string;
|
|
14
|
-
label: string;
|
|
15
|
-
square: string;
|
|
16
|
-
icon: boolean;
|
|
17
|
-
ariaLabel: string;
|
|
18
|
-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
20
|
-
export default _default;
|
|
21
|
-
type __VLS_WithDefaults<P, D> = {
|
|
22
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
23
|
-
default: D[K];
|
|
24
|
-
}> : P[K];
|
|
25
|
-
};
|
|
26
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
-
type __VLS_TypePropsToOption<T> = {
|
|
28
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
-
} : {
|
|
31
|
-
type: import('vue').PropType<T[K]>;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
36
|
-
new (): {
|
|
37
|
-
$slots: S;
|
|
38
|
-
};
|
|
39
|
-
};
|
|
40
|
-
type __VLS_PrettifyLocal<T> = {
|
|
41
|
-
[K in keyof T]: T[K];
|
|
42
|
-
} & {};
|
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import type { NSheetContentProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_14: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_14) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetContentProps>, {
|
|
7
|
-
sheet: string;
|
|
8
|
-
overlay: boolean;
|
|
9
|
-
showClose: boolean;
|
|
10
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
-
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
12
|
-
pointerDownOutside: (event: CustomEvent<{
|
|
13
|
-
originalEvent: PointerEvent;
|
|
14
|
-
}>) => any;
|
|
15
|
-
focusOutside: (event: CustomEvent<{
|
|
16
|
-
originalEvent: FocusEvent;
|
|
17
|
-
}>) => any;
|
|
18
|
-
interactOutside: (event: CustomEvent<{
|
|
19
|
-
originalEvent: PointerEvent;
|
|
20
|
-
}> | CustomEvent<{
|
|
21
|
-
originalEvent: FocusEvent;
|
|
22
|
-
}>) => any;
|
|
23
|
-
openAutoFocus: (event: Event) => any;
|
|
24
|
-
closeAutoFocus: (event: Event) => any;
|
|
25
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NSheetContentProps>, {
|
|
26
|
-
sheet: string;
|
|
27
|
-
overlay: boolean;
|
|
28
|
-
showClose: boolean;
|
|
29
|
-
}>>> & Readonly<{
|
|
30
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
31
|
-
onPointerDownOutside?: ((event: CustomEvent<{
|
|
32
|
-
originalEvent: PointerEvent;
|
|
33
|
-
}>) => any) | undefined;
|
|
34
|
-
onFocusOutside?: ((event: CustomEvent<{
|
|
35
|
-
originalEvent: FocusEvent;
|
|
36
|
-
}>) => any) | undefined;
|
|
37
|
-
onInteractOutside?: ((event: CustomEvent<{
|
|
38
|
-
originalEvent: PointerEvent;
|
|
39
|
-
}> | CustomEvent<{
|
|
40
|
-
originalEvent: FocusEvent;
|
|
41
|
-
}>) => any) | undefined;
|
|
42
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
43
|
-
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
44
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
45
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
46
|
-
export default _default;
|
|
47
|
-
type __VLS_WithDefaults<P, D> = {
|
|
48
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
49
|
-
default: D[K];
|
|
50
|
-
}> : P[K];
|
|
51
|
-
};
|
|
52
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
53
|
-
type __VLS_TypePropsToOption<T> = {
|
|
54
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
55
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
56
|
-
} : {
|
|
57
|
-
type: import('vue').PropType<T[K]>;
|
|
58
|
-
required: true;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
62
|
-
new (): {
|
|
63
|
-
$slots: S;
|
|
64
|
-
};
|
|
65
|
-
};
|
|
66
|
-
type __VLS_PrettifyLocal<T> = {
|
|
67
|
-
[K in keyof T]: T[K];
|
|
68
|
-
} & {};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
declare var __VLS_6: {};
|
|
2
|
-
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof __VLS_6) => any;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
-
new (): {
|
|
10
|
-
$slots: S;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
declare var __VLS_1: {};
|
|
2
|
-
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof __VLS_1) => any;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
-
new (): {
|
|
10
|
-
$slots: S;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
declare var __VLS_1: {};
|
|
2
|
-
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof __VLS_1) => any;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
-
new (): {
|
|
10
|
-
$slots: S;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
declare var __VLS_6: {};
|
|
2
|
-
type __VLS_Slots = {} & {
|
|
3
|
-
default?: (props: typeof __VLS_6) => any;
|
|
4
|
-
};
|
|
5
|
-
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
-
export default _default;
|
|
8
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
-
new (): {
|
|
10
|
-
$slots: S;
|
|
11
|
-
};
|
|
12
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { NSheetTriggerProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_6: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_6) => any;
|
|
5
|
-
};
|
|
6
|
-
declare const __VLS_component: import("vue").DefineComponent<NSheetTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSheetTriggerProps> & Readonly<{}>, {
|
|
7
|
-
asChild: boolean;
|
|
8
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
-
export default _default;
|
|
11
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
-
new (): {
|
|
13
|
-
$slots: S;
|
|
14
|
-
};
|
|
15
|
-
};
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { NSidebarProps } from '../../types/index.js';
|
|
2
|
-
declare var __VLS_5: {}, __VLS_10: {}, __VLS_15: {}, __VLS_20: {};
|
|
3
|
-
type __VLS_Slots = {} & {
|
|
4
|
-
default?: (props: typeof __VLS_5) => any;
|
|
5
|
-
} & {
|
|
6
|
-
header?: (props: typeof __VLS_10) => any;
|
|
7
|
-
} & {
|
|
8
|
-
content?: (props: typeof __VLS_15) => any;
|
|
9
|
-
} & {
|
|
10
|
-
footer?: (props: typeof __VLS_20) => any;
|
|
11
|
-
};
|
|
12
|
-
declare const __VLS_component: import("vue").DefineComponent<NSidebarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSidebarProps> & Readonly<{}>, {
|
|
13
|
-
collapsible: "offcanvas" | "icon" | "none";
|
|
14
|
-
sheet: "left" | "right";
|
|
15
|
-
sidebar: "sidebar" | "floating" | "inset";
|
|
16
|
-
rail: boolean;
|
|
17
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
-
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_WithSlots<T, S> = T & {
|
|
21
|
-
new (): {
|
|
22
|
-
$slots: S;
|
|
23
|
-
};
|
|
24
|
-
};
|