@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,25 @@
|
|
|
1
|
+
interface MenubarSubRootProps {
|
|
2
|
+
defaultOpen?: boolean;
|
|
3
|
+
open?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
default?(_: any): any;
|
|
9
|
+
};
|
|
10
|
+
refs: {};
|
|
11
|
+
rootEl: any;
|
|
12
|
+
};
|
|
13
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
14
|
+
declare const __VLS_component: import('vue').DefineComponent<MenubarSubRootProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
15
|
+
"update:open": (payload: boolean) => any;
|
|
16
|
+
}, string, import('vue').PublicProps, Readonly<MenubarSubRootProps> & Readonly<{
|
|
17
|
+
"onUpdate:open"?: ((payload: boolean) => any) | undefined;
|
|
18
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { MenubarSubContentProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = MenubarSubContentProps & {
|
|
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
|
+
openAutoFocus: (event: Event) => any;
|
|
21
|
+
closeAutoFocus: (event: Event) => any;
|
|
22
|
+
entryFocus: (event: Event) => any;
|
|
23
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
24
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
25
|
+
onPointerDownOutside?: ((event: import('reka-ui').PointerDownOutsideEvent) => any) | undefined;
|
|
26
|
+
onFocusOutside?: ((event: import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
27
|
+
onInteractOutside?: ((event: import('reka-ui').PointerDownOutsideEvent | import('reka-ui').FocusOutsideEvent) => any) | undefined;
|
|
28
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
29
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
30
|
+
onEntryFocus?: ((event: Event) => any) | undefined;
|
|
31
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
33
|
+
export default _default;
|
|
34
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
35
|
+
new (): {
|
|
36
|
+
$slots: S;
|
|
37
|
+
};
|
|
38
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { MenubarSubTriggerProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = MenubarSubTriggerProps & {
|
|
4
|
+
class?: HTMLAttributes["class"];
|
|
5
|
+
inset?: boolean;
|
|
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,22 @@
|
|
|
1
|
+
import { MenubarTriggerProps } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = MenubarTriggerProps & {
|
|
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,15 @@
|
|
|
1
|
+
export { default as Menubar } from './Menubar.vue';
|
|
2
|
+
export { default as MenubarCheckboxItem } from './MenubarCheckboxItem.vue';
|
|
3
|
+
export { default as MenubarContent } from './MenubarContent.vue';
|
|
4
|
+
export { default as MenubarGroup } from './MenubarGroup.vue';
|
|
5
|
+
export { default as MenubarItem } from './MenubarItem.vue';
|
|
6
|
+
export { default as MenubarLabel } from './MenubarLabel.vue';
|
|
7
|
+
export { default as MenubarMenu } from './MenubarMenu.vue';
|
|
8
|
+
export { default as MenubarRadioGroup } from './MenubarRadioGroup.vue';
|
|
9
|
+
export { default as MenubarRadioItem } from './MenubarRadioItem.vue';
|
|
10
|
+
export { default as MenubarSeparator } from './MenubarSeparator.vue';
|
|
11
|
+
export { default as MenubarShortcut } from './MenubarShortcut.vue';
|
|
12
|
+
export { default as MenubarSub } from './MenubarSub.vue';
|
|
13
|
+
export { default as MenubarSubContent } from './MenubarSubContent.vue';
|
|
14
|
+
export { default as MenubarSubTrigger } from './MenubarSubTrigger.vue';
|
|
15
|
+
export { default as MenubarTrigger } from './MenubarTrigger.vue';
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { AcceptableValue } from 'reka-ui';
|
|
2
|
+
import { HTMLAttributes } from 'vue';
|
|
3
|
+
type __VLS_Props = {
|
|
4
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
5
|
+
class?: HTMLAttributes["class"];
|
|
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, {
|
|
17
|
+
"update:modelValue": () => any;
|
|
18
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
19
|
+
"onUpdate:modelValue"?: (() => any) | undefined;
|
|
20
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
declare function __VLS_template(): {
|
|
2
|
+
attrs: Partial<import('vue').OptgroupHTMLAttributes & import('vue').ReservedProps>;
|
|
3
|
+
slots: {
|
|
4
|
+
default?(_: {}): any;
|
|
5
|
+
};
|
|
6
|
+
refs: {};
|
|
7
|
+
rootEl: HTMLOptGroupElement;
|
|
8
|
+
};
|
|
9
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
|
+
declare const __VLS_component: import('vue').DefineComponent<{
|
|
11
|
+
class?: any;
|
|
12
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
13
|
+
label?: string | undefined | undefined;
|
|
14
|
+
innerHTML?: string | undefined | undefined;
|
|
15
|
+
style?: import('vue').StyleValue;
|
|
16
|
+
accesskey?: string | undefined | undefined;
|
|
17
|
+
contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
18
|
+
contextmenu?: string | undefined | undefined;
|
|
19
|
+
dir?: string | undefined | undefined;
|
|
20
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
21
|
+
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
22
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
23
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
24
|
+
id?: string | undefined | undefined;
|
|
25
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
26
|
+
lang?: string | undefined | undefined;
|
|
27
|
+
placeholder?: string | undefined | undefined;
|
|
28
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
29
|
+
tabindex?: (string | number) | undefined;
|
|
30
|
+
title?: string | undefined | undefined;
|
|
31
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
32
|
+
radiogroup?: string | undefined | undefined;
|
|
33
|
+
role?: string | undefined | undefined;
|
|
34
|
+
about?: string | undefined | undefined;
|
|
35
|
+
datatype?: string | undefined | undefined;
|
|
36
|
+
inlist?: any;
|
|
37
|
+
prefix?: string | undefined | undefined;
|
|
38
|
+
property?: string | undefined | undefined;
|
|
39
|
+
resource?: string | undefined | undefined;
|
|
40
|
+
typeof?: string | undefined | undefined;
|
|
41
|
+
vocab?: string | undefined | undefined;
|
|
42
|
+
autocapitalize?: string | undefined | undefined;
|
|
43
|
+
autocorrect?: string | undefined | undefined;
|
|
44
|
+
autosave?: string | undefined | undefined;
|
|
45
|
+
color?: string | undefined | undefined;
|
|
46
|
+
itemprop?: string | undefined | undefined;
|
|
47
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
48
|
+
itemtype?: string | undefined | undefined;
|
|
49
|
+
itemid?: string | undefined | undefined;
|
|
50
|
+
itemref?: string | undefined | undefined;
|
|
51
|
+
results?: (string | number) | undefined;
|
|
52
|
+
security?: string | undefined | undefined;
|
|
53
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
54
|
+
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
55
|
+
is?: string | undefined | undefined;
|
|
56
|
+
exportparts?: string | undefined;
|
|
57
|
+
part?: string | undefined;
|
|
58
|
+
'aria-activedescendant'?: string | undefined | undefined;
|
|
59
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
60
|
+
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
61
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
62
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
63
|
+
'aria-colcount'?: (string | number) | undefined;
|
|
64
|
+
'aria-colindex'?: (string | number) | undefined;
|
|
65
|
+
'aria-colspan'?: (string | number) | undefined;
|
|
66
|
+
'aria-controls'?: string | undefined | undefined;
|
|
67
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "page" | "step" | "location" | "date" | undefined;
|
|
68
|
+
'aria-describedby'?: string | undefined | undefined;
|
|
69
|
+
'aria-details'?: string | undefined | undefined;
|
|
70
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
71
|
+
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
72
|
+
'aria-errormessage'?: string | undefined | undefined;
|
|
73
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
74
|
+
'aria-flowto'?: string | undefined | undefined;
|
|
75
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
76
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
77
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
78
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
79
|
+
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
80
|
+
'aria-label'?: string | undefined | undefined;
|
|
81
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
82
|
+
'aria-level'?: (string | number) | undefined;
|
|
83
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
84
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
85
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
86
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
87
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
88
|
+
'aria-owns'?: string | undefined | undefined;
|
|
89
|
+
'aria-placeholder'?: string | undefined | undefined;
|
|
90
|
+
'aria-posinset'?: (string | number) | undefined;
|
|
91
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
92
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
93
|
+
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
94
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
95
|
+
'aria-roledescription'?: string | undefined | undefined;
|
|
96
|
+
'aria-rowcount'?: (string | number) | undefined;
|
|
97
|
+
'aria-rowindex'?: (string | number) | undefined;
|
|
98
|
+
'aria-rowspan'?: (string | number) | undefined;
|
|
99
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
100
|
+
'aria-setsize'?: (string | number) | undefined;
|
|
101
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
102
|
+
'aria-valuemax'?: (string | number) | undefined;
|
|
103
|
+
'aria-valuemin'?: (string | number) | undefined;
|
|
104
|
+
'aria-valuenow'?: (string | number) | undefined;
|
|
105
|
+
'aria-valuetext'?: string | undefined | undefined;
|
|
106
|
+
onCopy?: ((payload: ClipboardEvent) => void) | undefined;
|
|
107
|
+
onCut?: ((payload: ClipboardEvent) => void) | undefined;
|
|
108
|
+
onPaste?: ((payload: ClipboardEvent) => void) | undefined;
|
|
109
|
+
onCompositionend?: ((payload: CompositionEvent) => void) | undefined;
|
|
110
|
+
onCompositionstart?: ((payload: CompositionEvent) => void) | undefined;
|
|
111
|
+
onCompositionupdate?: ((payload: CompositionEvent) => void) | undefined;
|
|
112
|
+
onDrag?: ((payload: DragEvent) => void) | undefined;
|
|
113
|
+
onDragend?: ((payload: DragEvent) => void) | undefined;
|
|
114
|
+
onDragenter?: ((payload: DragEvent) => void) | undefined;
|
|
115
|
+
onDragexit?: ((payload: DragEvent) => void) | undefined;
|
|
116
|
+
onDragleave?: ((payload: DragEvent) => void) | undefined;
|
|
117
|
+
onDragover?: ((payload: DragEvent) => void) | undefined;
|
|
118
|
+
onDragstart?: ((payload: DragEvent) => void) | undefined;
|
|
119
|
+
onDrop?: ((payload: DragEvent) => void) | undefined;
|
|
120
|
+
onFocus?: ((payload: FocusEvent) => void) | undefined;
|
|
121
|
+
onFocusin?: ((payload: FocusEvent) => void) | undefined;
|
|
122
|
+
onFocusout?: ((payload: FocusEvent) => void) | undefined;
|
|
123
|
+
onBlur?: ((payload: FocusEvent) => void) | undefined;
|
|
124
|
+
onChange?: ((payload: Event) => void) | undefined;
|
|
125
|
+
onBeforeinput?: ((payload: InputEvent) => void) | undefined;
|
|
126
|
+
onFormdata?: ((payload: FormDataEvent) => void) | undefined;
|
|
127
|
+
onInput?: ((payload: InputEvent) => void) | undefined;
|
|
128
|
+
onReset?: ((payload: Event) => void) | undefined;
|
|
129
|
+
onSubmit?: ((payload: SubmitEvent) => void) | undefined;
|
|
130
|
+
onInvalid?: ((payload: Event) => void) | undefined;
|
|
131
|
+
onFullscreenchange?: ((payload: Event) => void) | undefined;
|
|
132
|
+
onFullscreenerror?: ((payload: Event) => void) | undefined;
|
|
133
|
+
onLoad?: ((payload: Event) => void) | undefined;
|
|
134
|
+
onError?: ((payload: Event) => void) | undefined;
|
|
135
|
+
onKeydown?: ((payload: KeyboardEvent) => void) | undefined;
|
|
136
|
+
onKeypress?: ((payload: KeyboardEvent) => void) | undefined;
|
|
137
|
+
onKeyup?: ((payload: KeyboardEvent) => void) | undefined;
|
|
138
|
+
onDblclick?: ((payload: MouseEvent) => void) | undefined;
|
|
139
|
+
onMousedown?: ((payload: MouseEvent) => void) | undefined;
|
|
140
|
+
onMouseenter?: ((payload: MouseEvent) => void) | undefined;
|
|
141
|
+
onMouseleave?: ((payload: MouseEvent) => void) | undefined;
|
|
142
|
+
onMousemove?: ((payload: MouseEvent) => void) | undefined;
|
|
143
|
+
onMouseout?: ((payload: MouseEvent) => void) | undefined;
|
|
144
|
+
onMouseover?: ((payload: MouseEvent) => void) | undefined;
|
|
145
|
+
onMouseup?: ((payload: MouseEvent) => void) | undefined;
|
|
146
|
+
onAbort?: ((payload: UIEvent) => void) | undefined;
|
|
147
|
+
onCanplay?: ((payload: Event) => void) | undefined;
|
|
148
|
+
onCanplaythrough?: ((payload: Event) => void) | undefined;
|
|
149
|
+
onDurationchange?: ((payload: Event) => void) | undefined;
|
|
150
|
+
onEmptied?: ((payload: Event) => void) | undefined;
|
|
151
|
+
onEncrypted?: ((payload: MediaEncryptedEvent) => void) | undefined;
|
|
152
|
+
onEnded?: ((payload: Event) => void) | undefined;
|
|
153
|
+
onLoadeddata?: ((payload: Event) => void) | undefined;
|
|
154
|
+
onLoadedmetadata?: ((payload: Event) => void) | undefined;
|
|
155
|
+
onLoadstart?: ((payload: Event) => void) | undefined;
|
|
156
|
+
onPause?: ((payload: Event) => void) | undefined;
|
|
157
|
+
onPlay?: ((payload: Event) => void) | undefined;
|
|
158
|
+
onPlaying?: ((payload: Event) => void) | undefined;
|
|
159
|
+
onProgress?: ((payload: ProgressEvent<EventTarget>) => void) | undefined;
|
|
160
|
+
onRatechange?: ((payload: Event) => void) | undefined;
|
|
161
|
+
onSeeked?: ((payload: Event) => void) | undefined;
|
|
162
|
+
onSeeking?: ((payload: Event) => void) | undefined;
|
|
163
|
+
onStalled?: ((payload: Event) => void) | undefined;
|
|
164
|
+
onSuspend?: ((payload: Event) => void) | undefined;
|
|
165
|
+
onTimeupdate?: ((payload: Event) => void) | undefined;
|
|
166
|
+
onVolumechange?: ((payload: Event) => void) | undefined;
|
|
167
|
+
onWaiting?: ((payload: Event) => void) | undefined;
|
|
168
|
+
onSelect?: ((payload: Event) => void) | undefined;
|
|
169
|
+
onScroll?: ((payload: Event) => void) | undefined;
|
|
170
|
+
onScrollend?: ((payload: Event) => void) | undefined;
|
|
171
|
+
onTouchcancel?: ((payload: TouchEvent) => void) | undefined;
|
|
172
|
+
onTouchend?: ((payload: TouchEvent) => void) | undefined;
|
|
173
|
+
onTouchmove?: ((payload: TouchEvent) => void) | undefined;
|
|
174
|
+
onTouchstart?: ((payload: TouchEvent) => void) | undefined;
|
|
175
|
+
onAuxclick?: ((payload: PointerEvent) => void) | undefined;
|
|
176
|
+
onClick?: ((payload: PointerEvent) => void) | undefined;
|
|
177
|
+
onContextmenu?: ((payload: PointerEvent) => void) | undefined;
|
|
178
|
+
onGotpointercapture?: ((payload: PointerEvent) => void) | undefined;
|
|
179
|
+
onLostpointercapture?: ((payload: PointerEvent) => void) | undefined;
|
|
180
|
+
onPointerdown?: ((payload: PointerEvent) => void) | undefined;
|
|
181
|
+
onPointermove?: ((payload: PointerEvent) => void) | undefined;
|
|
182
|
+
onPointerup?: ((payload: PointerEvent) => void) | undefined;
|
|
183
|
+
onPointercancel?: ((payload: PointerEvent) => void) | undefined;
|
|
184
|
+
onPointerenter?: ((payload: PointerEvent) => void) | undefined;
|
|
185
|
+
onPointerleave?: ((payload: PointerEvent) => void) | undefined;
|
|
186
|
+
onPointerover?: ((payload: PointerEvent) => void) | undefined;
|
|
187
|
+
onPointerout?: ((payload: PointerEvent) => void) | undefined;
|
|
188
|
+
onBeforetoggle?: ((payload: ToggleEvent) => void) | undefined;
|
|
189
|
+
onToggle?: ((payload: ToggleEvent) => void) | undefined;
|
|
190
|
+
onWheel?: ((payload: WheelEvent) => void) | undefined;
|
|
191
|
+
onAnimationcancel?: ((payload: AnimationEvent) => void) | undefined;
|
|
192
|
+
onAnimationstart?: ((payload: AnimationEvent) => void) | undefined;
|
|
193
|
+
onAnimationend?: ((payload: AnimationEvent) => void) | undefined;
|
|
194
|
+
onAnimationiteration?: ((payload: AnimationEvent) => void) | undefined;
|
|
195
|
+
onSecuritypolicyviolation?: ((payload: SecurityPolicyViolationEvent) => void) | undefined;
|
|
196
|
+
onTransitioncancel?: ((payload: TransitionEvent) => void) | undefined;
|
|
197
|
+
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
198
|
+
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
199
|
+
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
200
|
+
key?: PropertyKey | undefined;
|
|
201
|
+
ref?: import('vue').VNodeRef | undefined;
|
|
202
|
+
ref_for?: boolean | undefined | undefined;
|
|
203
|
+
ref_key?: string | undefined | undefined;
|
|
204
|
+
}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
|
|
205
|
+
class?: any;
|
|
206
|
+
disabled?: (boolean | "true" | "false") | undefined;
|
|
207
|
+
label?: string | undefined | undefined;
|
|
208
|
+
innerHTML?: string | undefined | undefined;
|
|
209
|
+
style?: import('vue').StyleValue;
|
|
210
|
+
accesskey?: string | undefined | undefined;
|
|
211
|
+
contenteditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
212
|
+
contextmenu?: string | undefined | undefined;
|
|
213
|
+
dir?: string | undefined | undefined;
|
|
214
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
215
|
+
enterkeyhint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
216
|
+
enterKeyHint?: "done" | "search" | "enter" | "go" | "next" | "previous" | "send" | undefined;
|
|
217
|
+
hidden?: "" | (boolean | "true" | "false") | "hidden" | "until-found" | undefined;
|
|
218
|
+
id?: string | undefined | undefined;
|
|
219
|
+
inert?: (boolean | "true" | "false") | undefined;
|
|
220
|
+
lang?: string | undefined | undefined;
|
|
221
|
+
placeholder?: string | undefined | undefined;
|
|
222
|
+
spellcheck?: (boolean | "true" | "false") | undefined;
|
|
223
|
+
tabindex?: (string | number) | undefined;
|
|
224
|
+
title?: string | undefined | undefined;
|
|
225
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
226
|
+
radiogroup?: string | undefined | undefined;
|
|
227
|
+
role?: string | undefined | undefined;
|
|
228
|
+
about?: string | undefined | undefined;
|
|
229
|
+
datatype?: string | undefined | undefined;
|
|
230
|
+
inlist?: any;
|
|
231
|
+
prefix?: string | undefined | undefined;
|
|
232
|
+
property?: string | undefined | undefined;
|
|
233
|
+
resource?: string | undefined | undefined;
|
|
234
|
+
typeof?: string | undefined | undefined;
|
|
235
|
+
vocab?: string | undefined | undefined;
|
|
236
|
+
autocapitalize?: string | undefined | undefined;
|
|
237
|
+
autocorrect?: string | undefined | undefined;
|
|
238
|
+
autosave?: string | undefined | undefined;
|
|
239
|
+
color?: string | undefined | undefined;
|
|
240
|
+
itemprop?: string | undefined | undefined;
|
|
241
|
+
itemscope?: (boolean | "true" | "false") | undefined;
|
|
242
|
+
itemtype?: string | undefined | undefined;
|
|
243
|
+
itemid?: string | undefined | undefined;
|
|
244
|
+
itemref?: string | undefined | undefined;
|
|
245
|
+
results?: (string | number) | undefined;
|
|
246
|
+
security?: string | undefined | undefined;
|
|
247
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
248
|
+
inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
249
|
+
is?: string | undefined | undefined;
|
|
250
|
+
exportparts?: string | undefined;
|
|
251
|
+
part?: string | undefined;
|
|
252
|
+
'aria-activedescendant'?: string | undefined | undefined;
|
|
253
|
+
'aria-atomic'?: (boolean | "true" | "false") | undefined;
|
|
254
|
+
'aria-autocomplete'?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
255
|
+
'aria-busy'?: (boolean | "true" | "false") | undefined;
|
|
256
|
+
'aria-checked'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
257
|
+
'aria-colcount'?: (string | number) | undefined;
|
|
258
|
+
'aria-colindex'?: (string | number) | undefined;
|
|
259
|
+
'aria-colspan'?: (string | number) | undefined;
|
|
260
|
+
'aria-controls'?: string | undefined | undefined;
|
|
261
|
+
'aria-current'?: "time" | (boolean | "true" | "false") | "page" | "step" | "location" | "date" | undefined;
|
|
262
|
+
'aria-describedby'?: string | undefined | undefined;
|
|
263
|
+
'aria-details'?: string | undefined | undefined;
|
|
264
|
+
'aria-disabled'?: (boolean | "true" | "false") | undefined;
|
|
265
|
+
'aria-dropeffect'?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
266
|
+
'aria-errormessage'?: string | undefined | undefined;
|
|
267
|
+
'aria-expanded'?: (boolean | "true" | "false") | undefined;
|
|
268
|
+
'aria-flowto'?: string | undefined | undefined;
|
|
269
|
+
'aria-grabbed'?: (boolean | "true" | "false") | undefined;
|
|
270
|
+
'aria-haspopup'?: "dialog" | "menu" | (boolean | "true" | "false") | "listbox" | "tree" | "grid" | undefined;
|
|
271
|
+
'aria-hidden'?: (boolean | "true" | "false") | undefined;
|
|
272
|
+
'aria-invalid'?: (boolean | "true" | "false") | "grammar" | "spelling" | undefined;
|
|
273
|
+
'aria-keyshortcuts'?: string | undefined | undefined;
|
|
274
|
+
'aria-label'?: string | undefined | undefined;
|
|
275
|
+
'aria-labelledby'?: string | undefined | undefined;
|
|
276
|
+
'aria-level'?: (string | number) | undefined;
|
|
277
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
278
|
+
'aria-modal'?: (boolean | "true" | "false") | undefined;
|
|
279
|
+
'aria-multiline'?: (boolean | "true" | "false") | undefined;
|
|
280
|
+
'aria-multiselectable'?: (boolean | "true" | "false") | undefined;
|
|
281
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined | undefined;
|
|
282
|
+
'aria-owns'?: string | undefined | undefined;
|
|
283
|
+
'aria-placeholder'?: string | undefined | undefined;
|
|
284
|
+
'aria-posinset'?: (string | number) | undefined;
|
|
285
|
+
'aria-pressed'?: (boolean | "true" | "false") | "mixed" | undefined;
|
|
286
|
+
'aria-readonly'?: (boolean | "true" | "false") | undefined;
|
|
287
|
+
'aria-relevant'?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
288
|
+
'aria-required'?: (boolean | "true" | "false") | undefined;
|
|
289
|
+
'aria-roledescription'?: string | undefined | undefined;
|
|
290
|
+
'aria-rowcount'?: (string | number) | undefined;
|
|
291
|
+
'aria-rowindex'?: (string | number) | undefined;
|
|
292
|
+
'aria-rowspan'?: (string | number) | undefined;
|
|
293
|
+
'aria-selected'?: (boolean | "true" | "false") | undefined;
|
|
294
|
+
'aria-setsize'?: (string | number) | undefined;
|
|
295
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
296
|
+
'aria-valuemax'?: (string | number) | undefined;
|
|
297
|
+
'aria-valuemin'?: (string | number) | undefined;
|
|
298
|
+
'aria-valuenow'?: (string | number) | undefined;
|
|
299
|
+
'aria-valuetext'?: string | undefined | undefined;
|
|
300
|
+
onCopy?: ((payload: ClipboardEvent) => void) | undefined;
|
|
301
|
+
onCut?: ((payload: ClipboardEvent) => void) | undefined;
|
|
302
|
+
onPaste?: ((payload: ClipboardEvent) => void) | undefined;
|
|
303
|
+
onCompositionend?: ((payload: CompositionEvent) => void) | undefined;
|
|
304
|
+
onCompositionstart?: ((payload: CompositionEvent) => void) | undefined;
|
|
305
|
+
onCompositionupdate?: ((payload: CompositionEvent) => void) | undefined;
|
|
306
|
+
onDrag?: ((payload: DragEvent) => void) | undefined;
|
|
307
|
+
onDragend?: ((payload: DragEvent) => void) | undefined;
|
|
308
|
+
onDragenter?: ((payload: DragEvent) => void) | undefined;
|
|
309
|
+
onDragexit?: ((payload: DragEvent) => void) | undefined;
|
|
310
|
+
onDragleave?: ((payload: DragEvent) => void) | undefined;
|
|
311
|
+
onDragover?: ((payload: DragEvent) => void) | undefined;
|
|
312
|
+
onDragstart?: ((payload: DragEvent) => void) | undefined;
|
|
313
|
+
onDrop?: ((payload: DragEvent) => void) | undefined;
|
|
314
|
+
onFocus?: ((payload: FocusEvent) => void) | undefined;
|
|
315
|
+
onFocusin?: ((payload: FocusEvent) => void) | undefined;
|
|
316
|
+
onFocusout?: ((payload: FocusEvent) => void) | undefined;
|
|
317
|
+
onBlur?: ((payload: FocusEvent) => void) | undefined;
|
|
318
|
+
onChange?: ((payload: Event) => void) | undefined;
|
|
319
|
+
onBeforeinput?: ((payload: InputEvent) => void) | undefined;
|
|
320
|
+
onFormdata?: ((payload: FormDataEvent) => void) | undefined;
|
|
321
|
+
onInput?: ((payload: InputEvent) => void) | undefined;
|
|
322
|
+
onReset?: ((payload: Event) => void) | undefined;
|
|
323
|
+
onSubmit?: ((payload: SubmitEvent) => void) | undefined;
|
|
324
|
+
onInvalid?: ((payload: Event) => void) | undefined;
|
|
325
|
+
onFullscreenchange?: ((payload: Event) => void) | undefined;
|
|
326
|
+
onFullscreenerror?: ((payload: Event) => void) | undefined;
|
|
327
|
+
onLoad?: ((payload: Event) => void) | undefined;
|
|
328
|
+
onError?: ((payload: Event) => void) | undefined;
|
|
329
|
+
onKeydown?: ((payload: KeyboardEvent) => void) | undefined;
|
|
330
|
+
onKeypress?: ((payload: KeyboardEvent) => void) | undefined;
|
|
331
|
+
onKeyup?: ((payload: KeyboardEvent) => void) | undefined;
|
|
332
|
+
onDblclick?: ((payload: MouseEvent) => void) | undefined;
|
|
333
|
+
onMousedown?: ((payload: MouseEvent) => void) | undefined;
|
|
334
|
+
onMouseenter?: ((payload: MouseEvent) => void) | undefined;
|
|
335
|
+
onMouseleave?: ((payload: MouseEvent) => void) | undefined;
|
|
336
|
+
onMousemove?: ((payload: MouseEvent) => void) | undefined;
|
|
337
|
+
onMouseout?: ((payload: MouseEvent) => void) | undefined;
|
|
338
|
+
onMouseover?: ((payload: MouseEvent) => void) | undefined;
|
|
339
|
+
onMouseup?: ((payload: MouseEvent) => void) | undefined;
|
|
340
|
+
onAbort?: ((payload: UIEvent) => void) | undefined;
|
|
341
|
+
onCanplay?: ((payload: Event) => void) | undefined;
|
|
342
|
+
onCanplaythrough?: ((payload: Event) => void) | undefined;
|
|
343
|
+
onDurationchange?: ((payload: Event) => void) | undefined;
|
|
344
|
+
onEmptied?: ((payload: Event) => void) | undefined;
|
|
345
|
+
onEncrypted?: ((payload: MediaEncryptedEvent) => void) | undefined;
|
|
346
|
+
onEnded?: ((payload: Event) => void) | undefined;
|
|
347
|
+
onLoadeddata?: ((payload: Event) => void) | undefined;
|
|
348
|
+
onLoadedmetadata?: ((payload: Event) => void) | undefined;
|
|
349
|
+
onLoadstart?: ((payload: Event) => void) | undefined;
|
|
350
|
+
onPause?: ((payload: Event) => void) | undefined;
|
|
351
|
+
onPlay?: ((payload: Event) => void) | undefined;
|
|
352
|
+
onPlaying?: ((payload: Event) => void) | undefined;
|
|
353
|
+
onProgress?: ((payload: ProgressEvent<EventTarget>) => void) | undefined;
|
|
354
|
+
onRatechange?: ((payload: Event) => void) | undefined;
|
|
355
|
+
onSeeked?: ((payload: Event) => void) | undefined;
|
|
356
|
+
onSeeking?: ((payload: Event) => void) | undefined;
|
|
357
|
+
onStalled?: ((payload: Event) => void) | undefined;
|
|
358
|
+
onSuspend?: ((payload: Event) => void) | undefined;
|
|
359
|
+
onTimeupdate?: ((payload: Event) => void) | undefined;
|
|
360
|
+
onVolumechange?: ((payload: Event) => void) | undefined;
|
|
361
|
+
onWaiting?: ((payload: Event) => void) | undefined;
|
|
362
|
+
onSelect?: ((payload: Event) => void) | undefined;
|
|
363
|
+
onScroll?: ((payload: Event) => void) | undefined;
|
|
364
|
+
onScrollend?: ((payload: Event) => void) | undefined;
|
|
365
|
+
onTouchcancel?: ((payload: TouchEvent) => void) | undefined;
|
|
366
|
+
onTouchend?: ((payload: TouchEvent) => void) | undefined;
|
|
367
|
+
onTouchmove?: ((payload: TouchEvent) => void) | undefined;
|
|
368
|
+
onTouchstart?: ((payload: TouchEvent) => void) | undefined;
|
|
369
|
+
onAuxclick?: ((payload: PointerEvent) => void) | undefined;
|
|
370
|
+
onClick?: ((payload: PointerEvent) => void) | undefined;
|
|
371
|
+
onContextmenu?: ((payload: PointerEvent) => void) | undefined;
|
|
372
|
+
onGotpointercapture?: ((payload: PointerEvent) => void) | undefined;
|
|
373
|
+
onLostpointercapture?: ((payload: PointerEvent) => void) | undefined;
|
|
374
|
+
onPointerdown?: ((payload: PointerEvent) => void) | undefined;
|
|
375
|
+
onPointermove?: ((payload: PointerEvent) => void) | undefined;
|
|
376
|
+
onPointerup?: ((payload: PointerEvent) => void) | undefined;
|
|
377
|
+
onPointercancel?: ((payload: PointerEvent) => void) | undefined;
|
|
378
|
+
onPointerenter?: ((payload: PointerEvent) => void) | undefined;
|
|
379
|
+
onPointerleave?: ((payload: PointerEvent) => void) | undefined;
|
|
380
|
+
onPointerover?: ((payload: PointerEvent) => void) | undefined;
|
|
381
|
+
onPointerout?: ((payload: PointerEvent) => void) | undefined;
|
|
382
|
+
onBeforetoggle?: ((payload: ToggleEvent) => void) | undefined;
|
|
383
|
+
onToggle?: ((payload: ToggleEvent) => void) | undefined;
|
|
384
|
+
onWheel?: ((payload: WheelEvent) => void) | undefined;
|
|
385
|
+
onAnimationcancel?: ((payload: AnimationEvent) => void) | undefined;
|
|
386
|
+
onAnimationstart?: ((payload: AnimationEvent) => void) | undefined;
|
|
387
|
+
onAnimationend?: ((payload: AnimationEvent) => void) | undefined;
|
|
388
|
+
onAnimationiteration?: ((payload: AnimationEvent) => void) | undefined;
|
|
389
|
+
onSecuritypolicyviolation?: ((payload: SecurityPolicyViolationEvent) => void) | undefined;
|
|
390
|
+
onTransitioncancel?: ((payload: TransitionEvent) => void) | undefined;
|
|
391
|
+
onTransitionend?: ((payload: TransitionEvent) => void) | undefined;
|
|
392
|
+
onTransitionrun?: ((payload: TransitionEvent) => void) | undefined;
|
|
393
|
+
onTransitionstart?: ((payload: TransitionEvent) => void) | undefined;
|
|
394
|
+
key?: PropertyKey | undefined;
|
|
395
|
+
ref?: import('vue').VNodeRef | undefined;
|
|
396
|
+
ref_for?: boolean | undefined | undefined;
|
|
397
|
+
ref_key?: string | undefined | undefined;
|
|
398
|
+
}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLOptGroupElement>;
|
|
399
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
400
|
+
export default _default;
|
|
401
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
402
|
+
new (): {
|
|
403
|
+
$slots: S;
|
|
404
|
+
};
|
|
405
|
+
};
|