@una-ui/nuxt 0.67.3 → 0.67.4
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.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/alert-dialog/AlertDialog.d.vue.ts +45 -0
- package/dist/runtime/components/alert-dialog/AlertDialogAction.d.vue.ts +16 -0
- package/dist/runtime/components/alert-dialog/AlertDialogCancel.d.vue.ts +16 -0
- package/dist/runtime/components/alert-dialog/AlertDialogContent.d.vue.ts +29 -0
- package/dist/runtime/components/alert-dialog/AlertDialogDescription.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogFooter.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogHeader.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogOverlay.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogTitle.d.vue.ts +13 -0
- package/dist/runtime/components/alert-dialog/AlertDialogTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/aspect-ratio/AspectRatio.d.vue.ts +18 -0
- package/dist/runtime/components/combobox/Combobox.d.vue.ts +91 -0
- package/dist/runtime/components/combobox/Combobox.vue +0 -1
- package/dist/runtime/components/combobox/ComboboxAnchor.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxEmpty.d.vue.ts +15 -0
- package/dist/runtime/components/combobox/ComboboxGroup.d.vue.ts +17 -0
- package/dist/runtime/components/combobox/ComboboxInput.d.vue.ts +38 -0
- package/dist/runtime/components/combobox/ComboboxItem.d.vue.ts +18 -0
- package/dist/runtime/components/combobox/ComboboxItemIndicator.d.vue.ts +15 -0
- package/dist/runtime/components/combobox/ComboboxLabel.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxList.d.vue.ts +27 -0
- package/dist/runtime/components/combobox/ComboboxSeparator.d.vue.ts +13 -0
- package/dist/runtime/components/combobox/ComboboxTrigger.d.vue.ts +17 -0
- package/dist/runtime/components/combobox/ComboboxViewport.d.vue.ts +16 -0
- package/dist/runtime/components/data/table/Table.d.vue.ts +184 -0
- package/dist/runtime/components/data/table/TableBody.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableCaption.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableCell.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableEmpty.d.vue.ts +38 -0
- package/dist/runtime/components/data/table/TableFooter.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableHead.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableHeader.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableLoading.d.vue.ts +34 -0
- package/dist/runtime/components/data/table/TableRow.d.vue.ts +34 -0
- package/dist/runtime/components/drawer/Drawer.d.vue.ts +47 -0
- package/dist/runtime/components/drawer/DrawerClose.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerContent.d.vue.ts +29 -0
- package/dist/runtime/components/drawer/DrawerDescription.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerFooter.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerHeader.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerOverlay.d.vue.ts +3 -0
- package/dist/runtime/components/drawer/DrawerTitle.d.vue.ts +13 -0
- package/dist/runtime/components/drawer/DrawerTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Alert.d.vue.ts +18 -0
- package/dist/runtime/components/elements/AvatarGroup.d.vue.ts +11 -0
- package/dist/runtime/components/elements/Badge.d.vue.ts +22 -0
- package/dist/runtime/components/elements/Button.d.vue.ts +34 -0
- package/dist/runtime/components/elements/Icon.d.vue.ts +3 -0
- package/dist/runtime/components/elements/Indicator.d.vue.ts +19 -0
- package/dist/runtime/components/elements/Kbd.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Label.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Link.d.vue.ts +20 -0
- package/dist/runtime/components/elements/Progress.d.vue.ts +18 -0
- package/dist/runtime/components/elements/Separator.d.vue.ts +15 -0
- package/dist/runtime/components/elements/Skeleton.d.vue.ts +13 -0
- package/dist/runtime/components/elements/Toggle.d.vue.ts +22 -0
- package/dist/runtime/components/elements/accordion/Accordion.d.vue.ts +71 -0
- package/dist/runtime/components/elements/accordion/AccordionContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/accordion/AccordionHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/accordion/AccordionItem.d.vue.ts +27 -0
- package/dist/runtime/components/elements/accordion/AccordionTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/avatar/Avatar.d.vue.ts +21 -0
- package/dist/runtime/components/elements/avatar/AvatarFallback.d.vue.ts +13 -0
- package/dist/runtime/components/elements/avatar/AvatarImage.d.vue.ts +3 -0
- package/dist/runtime/components/elements/card/Card.d.vue.ts +25 -0
- package/dist/runtime/components/elements/card/CardContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardDescription.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardFooter.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/card/CardTitle.d.vue.ts +13 -0
- package/dist/runtime/components/elements/collapsible/Collapsible.d.vue.ts +25 -0
- package/dist/runtime/components/elements/collapsible/CollapsibleContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/collapsible/CollapsibleTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/Dialog.d.vue.ts +34 -0
- package/dist/runtime/components/elements/dialog/DialogClose.d.vue.ts +18 -0
- package/dist/runtime/components/elements/dialog/DialogContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/dialog/DialogDescription.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogFooter.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogHeader.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogOverlay.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dialog/DialogScrollContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/dialog/DialogTitle.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenu.d.vue.ts +45 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuContent.d.vue.ts +27 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuGroup.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuItem.d.vue.ts +14 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuLabel.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuRoot.d.vue.ts +17 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSeparator.d.vue.ts +3 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuShortcut.d.vue.ts +13 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSub.d.vue.ts +17 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubContent.d.vue.ts +29 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuSubTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/dropdown-menu/DropdownMenuTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/elements/pagination/Pagination.d.vue.ts +38 -0
- package/dist/runtime/components/elements/pagination/PaginationEllipsis.d.vue.ts +15 -0
- package/dist/runtime/components/elements/pagination/PaginationFirst.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationLast.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationListItem.d.vue.ts +17 -0
- package/dist/runtime/components/elements/pagination/PaginationNext.d.vue.ts +18 -0
- package/dist/runtime/components/elements/pagination/PaginationPrev.d.vue.ts +18 -0
- package/dist/runtime/components/elements/popover/Popover.d.vue.ts +21 -0
- package/dist/runtime/components/elements/popover/PopoverContent.d.vue.ts +30 -0
- package/dist/runtime/components/elements/tabs/Tabs.d.vue.ts +32 -0
- package/dist/runtime/components/elements/tabs/TabsContent.d.vue.ts +13 -0
- package/dist/runtime/components/elements/tabs/TabsList.d.vue.ts +15 -0
- package/dist/runtime/components/elements/tabs/TabsTrigger.d.vue.ts +16 -0
- package/dist/runtime/components/elements/tooltip/Tooltip.d.vue.ts +19 -0
- package/dist/runtime/components/elements/tooltip/TooltipContent.d.vue.ts +22 -0
- package/dist/runtime/components/elements/tooltip/TooltipProvider.d.vue.ts +15 -0
- package/dist/runtime/components/elements/tooltip/TooltipRoot.d.vue.ts +17 -0
- package/dist/runtime/components/elements/tooltip/TooltipTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/forms/Checkbox.d.vue.ts +21 -0
- package/dist/runtime/components/forms/FormGroup.d.vue.ts +27 -0
- package/dist/runtime/components/forms/Input.d.vue.ts +28 -0
- package/dist/runtime/components/forms/Slider.d.vue.ts +25 -0
- package/dist/runtime/components/forms/Switch.d.vue.ts +27 -0
- package/dist/runtime/components/forms/form/FormControl.d.vue.ts +12 -0
- package/dist/runtime/components/forms/form/FormDescription.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormField.d.vue.ts +25 -0
- package/dist/runtime/components/forms/form/FormItem.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormLabel.d.vue.ts +13 -0
- package/dist/runtime/components/forms/form/FormMessage.d.vue.ts +3 -0
- package/dist/runtime/components/forms/radio-group/RadioGroup.d.vue.ts +29 -0
- package/dist/runtime/components/forms/radio-group/RadioGroupItem.d.vue.ts +23 -0
- package/dist/runtime/components/forms/select/Select.d.vue.ts +70 -0
- package/dist/runtime/components/forms/select/Select.vue +1 -1
- package/dist/runtime/components/forms/select/Select.vue.d.ts +3 -3
- package/dist/runtime/components/forms/select/SelectContent.d.vue.ts +23 -0
- package/dist/runtime/components/forms/select/SelectGroup.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectItem.d.vue.ts +17 -0
- package/dist/runtime/components/forms/select/SelectItemIndicator.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectItemText.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectLabel.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectScrollDownButton.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectScrollUpButton.d.vue.ts +13 -0
- package/dist/runtime/components/forms/select/SelectSeparator.d.vue.ts +3 -0
- package/dist/runtime/components/forms/select/SelectTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/forms/select/SelectValue.d.vue.ts +13 -0
- package/dist/runtime/components/hover-card/HoverCard.d.vue.ts +25 -0
- package/dist/runtime/components/hover-card/HoverCardArrow.d.vue.ts +6 -0
- package/dist/runtime/components/hover-card/HoverCardContent.d.vue.ts +15 -0
- package/dist/runtime/components/hover-card/HoverCardTrigger.d.vue.ts +13 -0
- package/dist/runtime/components/misc/ThemeSwitcher.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/Breadcrumb.d.vue.ts +35 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbEllipsis.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbItem.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbLink.d.vue.ts +18 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbList.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbPage.d.vue.ts +16 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbRoot.d.vue.ts +13 -0
- package/dist/runtime/components/navigation/breadcrumb/BreadcrumbSeparator.d.vue.ts +16 -0
- package/dist/runtime/components/navigation-menu/NavigationMenu.d.vue.ts +46 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuContent.d.vue.ts +23 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuContentItem.d.vue.ts +21 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuIndicator.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuItem.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuLink.d.vue.ts +27 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuList.d.vue.ts +13 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuTrigger.d.vue.ts +18 -0
- package/dist/runtime/components/navigation-menu/NavigationMenuViewport.d.vue.ts +3 -0
- package/dist/runtime/components/number-field/NumberField.d.vue.ts +28 -0
- package/dist/runtime/components/number-field/NumberFieldContent.d.vue.ts +13 -0
- package/dist/runtime/components/number-field/NumberFieldDecrement.d.vue.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldIncrement.d.vue.ts +16 -0
- package/dist/runtime/components/number-field/NumberFieldInput.d.vue.ts +5 -0
- package/dist/runtime/components/overlays/Toaster.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/Toaster.vue +0 -1
- package/dist/runtime/components/overlays/toast/Toast.d.vue.ts +112 -0
- package/dist/runtime/components/overlays/toast/ToastAction.d.vue.ts +16 -0
- package/dist/runtime/components/overlays/toast/ToastClose.d.vue.ts +3 -0
- package/dist/runtime/components/overlays/toast/ToastDescription.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastInfo.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastProvider.d.vue.ts +15 -0
- package/dist/runtime/components/overlays/toast/ToastProvider.vue +0 -1
- package/dist/runtime/components/overlays/toast/ToastTitle.d.vue.ts +13 -0
- package/dist/runtime/components/overlays/toast/ToastViewport.d.vue.ts +3 -0
- package/dist/runtime/components/pin-input/PinInput.d.vue.ts +33 -0
- package/dist/runtime/components/pin-input/PinInputGroup.d.vue.ts +13 -0
- package/dist/runtime/components/pin-input/PinInputSeparator.d.vue.ts +15 -0
- package/dist/runtime/components/pin-input/PinInputSlot.d.vue.ts +5 -0
- package/dist/runtime/components/resizable/ResizableHandle.d.vue.ts +21 -0
- package/dist/runtime/components/resizable/ResizablePanel.d.vue.ts +21 -0
- package/dist/runtime/components/resizable/ResizablePanelGroup.d.vue.ts +17 -0
- package/dist/runtime/components/scroll-area/ScrollArea.d.vue.ts +17 -0
- package/dist/runtime/components/scroll-area/ScrollBar.d.vue.ts +6 -0
- package/dist/runtime/components/sheet/Sheet.d.vue.ts +36 -0
- package/dist/runtime/components/sheet/SheetClose.d.vue.ts +42 -0
- package/dist/runtime/components/sheet/SheetContent.d.vue.ts +52 -0
- package/dist/runtime/components/sheet/SheetDescription.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetFooter.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetHeader.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetTitle.d.vue.ts +12 -0
- package/dist/runtime/components/sheet/SheetTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/sidebar/Sidebar.d.vue.ts +24 -0
- package/dist/runtime/components/sidebar/SidebarContent.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarFooter.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarGroup.d.vue.ts +16 -0
- package/dist/runtime/components/sidebar/SidebarGroupAction.d.vue.ts +36 -0
- package/dist/runtime/components/sidebar/SidebarGroupContent.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarGroupLabel.d.vue.ts +36 -0
- package/dist/runtime/components/sidebar/SidebarHeader.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarInput.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarInset.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenu.d.vue.ts +22 -0
- package/dist/runtime/components/sidebar/SidebarMenuAction.d.vue.ts +34 -0
- package/dist/runtime/components/sidebar/SidebarMenuBadge.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuButton.d.vue.ts +19 -0
- package/dist/runtime/components/sidebar/SidebarMenuButtonChild.d.vue.ts +31 -0
- package/dist/runtime/components/sidebar/SidebarMenuItem.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSkeleton.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSub.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarMenuSubButton.d.vue.ts +16 -0
- package/dist/runtime/components/sidebar/SidebarMenuSubItem.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarProvider.d.vue.ts +20 -0
- package/dist/runtime/components/sidebar/SidebarRail.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarSeparator.d.vue.ts +12 -0
- package/dist/runtime/components/sidebar/SidebarTrigger.d.vue.ts +30 -0
- package/dist/runtime/components/stepper/Stepper.d.vue.ts +62 -0
- package/dist/runtime/components/stepper/StepperContainer.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperDescription.d.vue.ts +13 -0
- package/dist/runtime/components/stepper/StepperHeader.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperIndicator.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperItem.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperSeparator.d.vue.ts +6 -0
- package/dist/runtime/components/stepper/StepperTitle.d.vue.ts +13 -0
- package/dist/runtime/components/stepper/StepperTrigger.d.vue.ts +15 -0
- package/dist/runtime/components/stepper/StepperWrapper.d.vue.ts +15 -0
- package/dist/runtime/components/toggle-group/ToggleGroup.d.vue.ts +23 -0
- package/dist/runtime/components/toggle-group/ToggleGroupItem.d.vue.ts +18 -0
- package/dist/runtime/types/select.d.ts +4 -4
- package/package.json +5 -5
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { NAlertDialogProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
+
open: any;
|
|
4
|
+
}, __VLS_26: {}, __VLS_31: {}, __VLS_36: {}, __VLS_41: {}, __VLS_46: {}, __VLS_48: {}, __VLS_57: {}, __VLS_59: {}, __VLS_68: {};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (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
|
+
footer?: (props: typeof __VLS_46) => any;
|
|
19
|
+
} & {
|
|
20
|
+
'cancel-wrapper'?: (props: typeof __VLS_48) => any;
|
|
21
|
+
} & {
|
|
22
|
+
cancel?: (props: typeof __VLS_57) => any;
|
|
23
|
+
} & {
|
|
24
|
+
'action-wrapper'?: (props: typeof __VLS_59) => any;
|
|
25
|
+
} & {
|
|
26
|
+
action?: (props: typeof __VLS_68) => any;
|
|
27
|
+
};
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<NAlertDialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
29
|
+
cancel: (args_0: Event) => any;
|
|
30
|
+
"update:open": (value: boolean) => any;
|
|
31
|
+
action: (args_0: Event) => any;
|
|
32
|
+
}, string, import("vue").PublicProps, Readonly<NAlertDialogProps> & Readonly<{
|
|
33
|
+
onCancel?: ((args_0: Event) => any) | undefined;
|
|
34
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
35
|
+
onAction?: ((args_0: Event) => any) | undefined;
|
|
36
|
+
}>, {
|
|
37
|
+
overlay: boolean;
|
|
38
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
39
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { NAlertDialogActionProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_10: any, __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<NAlertDialogActionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogActionProps> & Readonly<{}>, {
|
|
7
|
+
label: 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
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { NAlertDialogCancelProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_10: any, __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<NAlertDialogCancelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogCancelProps> & Readonly<{}>, {
|
|
7
|
+
label: 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
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { NAlertDialogContentProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_13: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_13) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NAlertDialogContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
11
|
+
openAutoFocus: (event: Event) => any;
|
|
12
|
+
closeAutoFocus: (event: Event) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<NAlertDialogContentProps> & Readonly<{
|
|
14
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
15
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
16
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
17
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
18
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
19
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
20
|
+
}>, {
|
|
21
|
+
overlay: boolean;
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
23
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
26
|
+
new (): {
|
|
27
|
+
$slots: S;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogDescriptionProps } 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<NAlertDialogDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogDescriptionProps> & 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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogFooterProps } 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<NAlertDialogFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogFooterProps> & 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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogHeaderProps } 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<NAlertDialogHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogHeaderProps> & 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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogOverlayProps } 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<NAlertDialogOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogOverlayProps> & 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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogTitleProps } 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<NAlertDialogTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogTitleProps> & 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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAlertDialogTriggerProps } 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<NAlertDialogTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAlertDialogTriggerProps> & 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
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { NAspectRatioProps } from '../../types/aspect-ratio.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
aspect: any;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_6) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NAspectRatioProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAspectRatioProps> & Readonly<{}>, {
|
|
9
|
+
aspectRatio: string;
|
|
10
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
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
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import type { AcceptableValue } from 'reka-ui';
|
|
2
|
+
import type { ExtractItemType, NComboboxProps } from '../../types/index.js';
|
|
3
|
+
declare const _default: <T extends AcceptableValue, M extends boolean = false>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
+
readonly "onUpdate:modelValue"?: ((value: ExtractItemType<T>) => any) | undefined;
|
|
6
|
+
readonly onHighlight?: ((payload: {
|
|
7
|
+
ref: HTMLElement;
|
|
8
|
+
value: ExtractItemType<T>;
|
|
9
|
+
} | undefined) => any) | undefined;
|
|
10
|
+
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
11
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onHighlight" | "onUpdate:open"> & NComboboxProps<T, M> & Partial<{}>> & import("vue").PublicProps;
|
|
12
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
13
|
+
viewportRef: Readonly<import("vue").Ref<any, any>>;
|
|
14
|
+
}>): void;
|
|
15
|
+
attrs: any;
|
|
16
|
+
slots: {
|
|
17
|
+
default?: (props: {}) => any;
|
|
18
|
+
} & {
|
|
19
|
+
anchor?: (props: {}) => any;
|
|
20
|
+
} & {
|
|
21
|
+
'trigger-wrapper'?: (props: {}) => any;
|
|
22
|
+
} & {
|
|
23
|
+
trigger?: (props: {
|
|
24
|
+
modelValue: any;
|
|
25
|
+
open: any;
|
|
26
|
+
}) => any;
|
|
27
|
+
} & {
|
|
28
|
+
'input-wrapper'?: (props: {
|
|
29
|
+
modelValue: any;
|
|
30
|
+
open: any;
|
|
31
|
+
}) => any;
|
|
32
|
+
} & {
|
|
33
|
+
list?: (props: {}) => any;
|
|
34
|
+
} & {
|
|
35
|
+
'input-wrapper'?: (props: {
|
|
36
|
+
modelValue: any;
|
|
37
|
+
open: any;
|
|
38
|
+
}) => any;
|
|
39
|
+
} & {
|
|
40
|
+
header?: (props: {}) => any;
|
|
41
|
+
} & {
|
|
42
|
+
body?: (props: {}) => any;
|
|
43
|
+
} & {
|
|
44
|
+
empty?: (props: {}) => any;
|
|
45
|
+
} & {
|
|
46
|
+
group?: (props: {}) => any;
|
|
47
|
+
} & {
|
|
48
|
+
item?: (props: {
|
|
49
|
+
item: any;
|
|
50
|
+
selected: any;
|
|
51
|
+
}) => any;
|
|
52
|
+
} & {
|
|
53
|
+
label?: (props: {
|
|
54
|
+
item: any;
|
|
55
|
+
}) => any;
|
|
56
|
+
} & {
|
|
57
|
+
'item-indicator'?: (props: {
|
|
58
|
+
item: any;
|
|
59
|
+
}) => any;
|
|
60
|
+
} & {
|
|
61
|
+
group?: (props: {
|
|
62
|
+
group: any;
|
|
63
|
+
}) => any;
|
|
64
|
+
} & {
|
|
65
|
+
item?: (props: {
|
|
66
|
+
item: any;
|
|
67
|
+
group: any;
|
|
68
|
+
selected: any;
|
|
69
|
+
}) => any;
|
|
70
|
+
} & {
|
|
71
|
+
label?: (props: {
|
|
72
|
+
item: any;
|
|
73
|
+
}) => any;
|
|
74
|
+
} & {
|
|
75
|
+
indicator?: (props: {
|
|
76
|
+
item: any;
|
|
77
|
+
}) => any;
|
|
78
|
+
} & {
|
|
79
|
+
footer?: (props: {}) => any;
|
|
80
|
+
};
|
|
81
|
+
emit: ((evt: "update:modelValue", value: ExtractItemType<T>) => void) & ((evt: "highlight", payload: {
|
|
82
|
+
ref: HTMLElement;
|
|
83
|
+
value: ExtractItemType<T>;
|
|
84
|
+
} | undefined) => void) & ((evt: "update:open", value: boolean) => void);
|
|
85
|
+
}>) => import("vue").VNode & {
|
|
86
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
87
|
+
};
|
|
88
|
+
export default _default;
|
|
89
|
+
type __VLS_PrettifyLocal<T> = {
|
|
90
|
+
[K in keyof T]: T[K];
|
|
91
|
+
} & {};
|
|
@@ -49,7 +49,6 @@ const props = defineProps({
|
|
|
49
49
|
openOnFocus: { type: Boolean, required: false },
|
|
50
50
|
openOnClick: { type: Boolean, required: false },
|
|
51
51
|
ignoreFilter: { type: Boolean, required: false },
|
|
52
|
-
resetModelValueOnClear: { type: Boolean, required: false },
|
|
53
52
|
dir: { type: String, required: false },
|
|
54
53
|
disabled: { type: Boolean, required: false },
|
|
55
54
|
highlightOnHover: { type: Boolean, required: false },
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NComboboxAnchorProps } 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<NComboboxAnchorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxAnchorProps> & 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
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NComboboxEmptyProps } 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<NComboboxEmptyProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxEmptyProps> & Readonly<{}>, {
|
|
7
|
+
size: import("vue").HTMLAttributes["class"];
|
|
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
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { NComboboxGroupProps } from '../../types/index.js';
|
|
2
|
+
import type { AcceptableValue } from 'reka-ui';
|
|
3
|
+
declare const _default: <T extends AcceptableValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & NComboboxGroupProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
5
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
6
|
+
attrs: any;
|
|
7
|
+
slots: {
|
|
8
|
+
default?: (props: {}) => any;
|
|
9
|
+
};
|
|
10
|
+
emit: {};
|
|
11
|
+
}>) => import("vue").VNode & {
|
|
12
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
13
|
+
};
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_PrettifyLocal<T> = {
|
|
16
|
+
[K in keyof T]: T[K];
|
|
17
|
+
} & {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import type { NComboboxInputProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_12: any, __VLS_13: any;
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
[K in NonNullable<typeof __VLS_12>]?: (props: typeof __VLS_13) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NComboboxInputProps>, {
|
|
7
|
+
displayValue: () => "";
|
|
8
|
+
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (args_0: string) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<NComboboxInputProps>, {
|
|
11
|
+
displayValue: () => "";
|
|
12
|
+
}>>> & Readonly<{
|
|
13
|
+
"onUpdate:modelValue"?: ((args_0: string) => any) | undefined;
|
|
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_WithDefaults<P, D> = {
|
|
18
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_PrettifyLocal<P[K] & {
|
|
19
|
+
default: D[K];
|
|
20
|
+
}> : P[K];
|
|
21
|
+
};
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToOption<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
type __VLS_PrettifyLocal<T> = {
|
|
37
|
+
[K in keyof T]: T[K];
|
|
38
|
+
} & {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { NComboboxItemProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
4
|
+
readonly onSelect?: ((event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => any) | undefined;
|
|
5
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onSelect"> & NComboboxItemProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
6
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
|
+
attrs: any;
|
|
8
|
+
slots: {
|
|
9
|
+
default?: (props: {}) => any;
|
|
10
|
+
};
|
|
11
|
+
emit: (evt: "select", event: import("reka-ui").ListboxItemSelectEvent<import("reka-ui").AcceptableValue>) => void;
|
|
12
|
+
}>) => import("vue").VNode & {
|
|
13
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
14
|
+
};
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_PrettifyLocal<T> = {
|
|
17
|
+
[K in keyof T]: T[K];
|
|
18
|
+
} & {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NComboboxItemIndicatorProps } 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<NComboboxItemIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxItemIndicatorProps> & Readonly<{}>, {
|
|
7
|
+
icon: import("vue").HTMLAttributes["class"];
|
|
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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NComboboxLabelProps } 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<NComboboxLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxLabelProps> & 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
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { NComboboxListProps } 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<NComboboxListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
focusOutside: (event: import("reka-ui").FocusOutsideEvent) => any;
|
|
10
|
+
interactOutside: (event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<NComboboxListProps> & Readonly<{
|
|
12
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
13
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
14
|
+
onFocusOutside?: ((event: import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
15
|
+
onInteractOutside?: ((event: import("reka-ui").PointerDownOutsideEvent | import("reka-ui").FocusOutsideEvent) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
sideOffset: number;
|
|
18
|
+
align: "start" | "center" | "end";
|
|
19
|
+
position: "inline" | "popper";
|
|
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
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NComboboxSeparatorProps } 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<NComboboxSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxSeparatorProps> & 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
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { NComboboxTriggerProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_12: any, __VLS_13: any;
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
[K in NonNullable<typeof __VLS_12>]?: (props: typeof __VLS_13) => any;
|
|
5
|
+
} & {
|
|
6
|
+
wrapper?: (props: typeof __VLS_6) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NComboboxTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxTriggerProps> & Readonly<{}>, {
|
|
9
|
+
btn: string;
|
|
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
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { ComponentPublicInstance } from 'vue';
|
|
2
|
+
import type { NComboboxViewportProps } from '../../types/index.js';
|
|
3
|
+
declare var __VLS_7: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
default?: (props: typeof __VLS_7) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<NComboboxViewportProps, {
|
|
8
|
+
viewportRef: Readonly<import("vue").ShallowRef<ComponentPublicInstance | null>>;
|
|
9
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NComboboxViewportProps> & Readonly<{}>, {}, {}, {}, {}, 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
|
+
};
|