@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
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import type { NPopoverContentProps } 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<NPopoverContentProps, {}, {}, {}, {}, 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<NPopoverContentProps> & 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
|
+
sideOffset: number;
|
|
22
|
+
align: "start" | "center" | "end";
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import type { NTabsProps } from '../../../types/tabs.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
+
items: any;
|
|
4
|
+
}, __VLS_16: {
|
|
5
|
+
item: any;
|
|
6
|
+
disabled: any;
|
|
7
|
+
}, __VLS_21: {
|
|
8
|
+
item: any;
|
|
9
|
+
};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
default?: (props: typeof __VLS_6) => any;
|
|
12
|
+
} & {
|
|
13
|
+
list?: (props: typeof __VLS_11) => any;
|
|
14
|
+
} & {
|
|
15
|
+
trigger?: (props: typeof __VLS_16) => any;
|
|
16
|
+
} & {
|
|
17
|
+
content?: (props: typeof __VLS_21) => any;
|
|
18
|
+
};
|
|
19
|
+
declare const __VLS_component: import("vue").DefineComponent<NTabsProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
20
|
+
"update:modelValue": (payload: string | number) => any;
|
|
21
|
+
}, string, import("vue").PublicProps, Readonly<NTabsProps> & Readonly<{
|
|
22
|
+
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
23
|
+
}>, {
|
|
24
|
+
size: import("vue").HTMLAttributes["class"];
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
26
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
|
+
export default _default;
|
|
28
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
29
|
+
new (): {
|
|
30
|
+
$slots: S;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NTabsContentProps } from '../../../types/tabs.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<NTabsContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NTabsContentProps> & 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 { NTabsListProps } from '../../../types/tabs.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<NTabsListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NTabsListProps> & 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,16 @@
|
|
|
1
|
+
import type { NTabsTriggerProps } from '../../../types/tabs.js';
|
|
2
|
+
declare var __VLS_7: any, __VLS_8: any;
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
[K in NonNullable<typeof __VLS_7>]?: (props: typeof __VLS_8) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NTabsTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NTabsTriggerProps> & Readonly<{}>, {
|
|
7
|
+
size: string;
|
|
8
|
+
tabsActive: 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,19 @@
|
|
|
1
|
+
import type { NTooltipProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_11: {}, __VLS_16: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_11) => any;
|
|
5
|
+
} & {
|
|
6
|
+
content?: (props: typeof __VLS_16) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NTooltipProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:open": (value: boolean) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<NTooltipProps> & Readonly<{
|
|
11
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
12
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
16
|
+
new (): {
|
|
17
|
+
$slots: S;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { NTooltipContentProps } 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<NTooltipContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: Event) => any;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<NTooltipContentProps> & Readonly<{
|
|
10
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
11
|
+
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
sideOffset: number;
|
|
14
|
+
tooltip: import("vue").HTMLAttributes["class"];
|
|
15
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
16
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NTooltipProviderProps } 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<NTooltipProviderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NTooltipProviderProps> & Readonly<{}>, {
|
|
7
|
+
delayDuration: number;
|
|
8
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
10
|
+
export default _default;
|
|
11
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
12
|
+
new (): {
|
|
13
|
+
$slots: S;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { NTooltipRootProps } 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<NTooltipRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:open": (value: boolean) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<NTooltipRootProps> & Readonly<{
|
|
9
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
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,13 @@
|
|
|
1
|
+
import type { NTooltipTriggerProps } 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<NTooltipTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NTooltipTriggerProps> & 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,21 @@
|
|
|
1
|
+
import type { NCheckboxProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_9: any, __VLS_17: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
icon?: (props: typeof __VLS_9) => any;
|
|
5
|
+
} & {
|
|
6
|
+
default?: (props: typeof __VLS_17) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NCheckboxProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: boolean | "indeterminate") => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<NCheckboxProps> & Readonly<{
|
|
11
|
+
"onUpdate:modelValue"?: ((value: boolean | "indeterminate") => any) | undefined;
|
|
12
|
+
}>, {
|
|
13
|
+
forceMount: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { NFormGroupProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_1: {}, __VLS_3: {}, __VLS_8: {}, __VLS_10: {}, __VLS_16: {}, __VLS_18: {}, __VLS_20: {}, __VLS_22: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
top?: (props: typeof __VLS_1) => any;
|
|
5
|
+
} & {
|
|
6
|
+
label?: (props: typeof __VLS_3) => any;
|
|
7
|
+
} & {
|
|
8
|
+
hint?: (props: typeof __VLS_8) => any;
|
|
9
|
+
} & {
|
|
10
|
+
description?: (props: typeof __VLS_10) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_16) => any;
|
|
13
|
+
} & {
|
|
14
|
+
bottom?: (props: typeof __VLS_18) => any;
|
|
15
|
+
} & {
|
|
16
|
+
message?: (props: typeof __VLS_20) => any;
|
|
17
|
+
} & {
|
|
18
|
+
counter?: (props: typeof __VLS_22) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<NFormGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormGroupProps> & Readonly<{}>, {}, {}, {}, {}, 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,28 @@
|
|
|
1
|
+
import type { NInputProps } from '../../types/index.js';
|
|
2
|
+
type __VLS_Props = NInputProps;
|
|
3
|
+
type __VLS_Slots = {
|
|
4
|
+
leading?: any;
|
|
5
|
+
trailing?: any;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_PublicProps = __VLS_Props & {
|
|
8
|
+
modelValue?: string | number | null | undefined;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {
|
|
11
|
+
focus: () => void | undefined;
|
|
12
|
+
blur: () => void | undefined;
|
|
13
|
+
select: () => void | undefined;
|
|
14
|
+
inputRef: import("vue").Ref<HTMLTextAreaElement | undefined, HTMLTextAreaElement | undefined>;
|
|
15
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{}>, {
|
|
16
|
+
size: string;
|
|
17
|
+
resize: string | null;
|
|
18
|
+
type: HTMLInputElement["type"] | "textarea";
|
|
19
|
+
autofocusDelay: number;
|
|
20
|
+
rows: number;
|
|
21
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
22
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
25
|
+
new (): {
|
|
26
|
+
$slots: S;
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { NSliderProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_12: {}, __VLS_18: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
'slider-track'?: (props: typeof __VLS_6) => any;
|
|
5
|
+
} & {
|
|
6
|
+
'slider-range'?: (props: typeof __VLS_12) => any;
|
|
7
|
+
} & {
|
|
8
|
+
'slider-thumb'?: (props: typeof __VLS_18) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<NSliderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (payload: number[] | undefined) => any;
|
|
12
|
+
valueCommit: (payload: number[]) => any;
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<NSliderProps> & Readonly<{
|
|
14
|
+
"onUpdate:modelValue"?: ((payload: number[] | undefined) => any) | undefined;
|
|
15
|
+
onValueCommit?: ((payload: number[]) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
slider: string;
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { NSwitchProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_10: {
|
|
3
|
+
modelValue: any;
|
|
4
|
+
}, __VLS_15: {
|
|
5
|
+
modelValue: any;
|
|
6
|
+
};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
icon?: (props: typeof __VLS_10) => any;
|
|
9
|
+
} & {
|
|
10
|
+
'loading-icon'?: (props: typeof __VLS_15) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<NSwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (payload: boolean) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<NSwitchProps> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((payload: boolean) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
size: import("vue").HTMLAttributes["class"];
|
|
18
|
+
switchChecked: import("vue").HTMLAttributes["class"];
|
|
19
|
+
switchUnchecked: import("vue").HTMLAttributes["class"];
|
|
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,12 @@
|
|
|
1
|
+
declare var __VLS_6: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_6) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
7
|
+
export default _default;
|
|
8
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
9
|
+
new (): {
|
|
10
|
+
$slots: S;
|
|
11
|
+
};
|
|
12
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NFormDescriptionProps } 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<NFormDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormDescriptionProps> & 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,25 @@
|
|
|
1
|
+
import type { NFormFieldProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_9: {}, __VLS_11: {}, __VLS_16: {}, __VLS_18: {}, __VLS_30: {}, __VLS_32: {}, __VLS_34: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
top?: (props: typeof __VLS_9) => any;
|
|
5
|
+
} & {
|
|
6
|
+
label?: (props: typeof __VLS_11) => any;
|
|
7
|
+
} & {
|
|
8
|
+
hint?: (props: typeof __VLS_16) => any;
|
|
9
|
+
} & {
|
|
10
|
+
description?: (props: typeof __VLS_18) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_30) => any;
|
|
13
|
+
} & {
|
|
14
|
+
bottom?: (props: typeof __VLS_32) => any;
|
|
15
|
+
} & {
|
|
16
|
+
message?: (props: typeof __VLS_34) => any;
|
|
17
|
+
};
|
|
18
|
+
declare const __VLS_component: import("vue").DefineComponent<NFormFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormFieldProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
19
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
20
|
+
export default _default;
|
|
21
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NFormItemProps } 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<NFormItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormItemProps> & 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 { NFormLabelProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_5: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_5) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NFormLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormLabelProps> & 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,3 @@
|
|
|
1
|
+
import type { NFormMessageProps } from '../../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NFormMessageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NFormMessageProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import type { AcceptableValue } from 'reka-ui';
|
|
2
|
+
import type { NRadioGroupItemProps, NRadioGroupProps } from '../../../types/index.js';
|
|
3
|
+
declare const _default: <T extends AcceptableValue, Item extends T | NRadioGroupItemProps<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<{
|
|
4
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
|
+
readonly "onUpdate:modelValue"?: ((payload: string) => any) | undefined;
|
|
6
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & NRadioGroupProps<T, Item> & Partial<{}>> & import("vue").PublicProps;
|
|
7
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
8
|
+
attrs: any;
|
|
9
|
+
slots: {
|
|
10
|
+
default?: (props: {
|
|
11
|
+
modelValue: any;
|
|
12
|
+
}) => any;
|
|
13
|
+
} & {
|
|
14
|
+
label?: (props: {
|
|
15
|
+
item: any;
|
|
16
|
+
}) => any;
|
|
17
|
+
} & {
|
|
18
|
+
description?: (props: {
|
|
19
|
+
item: any;
|
|
20
|
+
}) => any;
|
|
21
|
+
};
|
|
22
|
+
emit: (evt: "update:modelValue", payload: string) => void;
|
|
23
|
+
}>) => import("vue").VNode & {
|
|
24
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
25
|
+
};
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_PrettifyLocal<T> = {
|
|
28
|
+
[K in keyof T]: T[K];
|
|
29
|
+
} & {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NRadioGroupItemProps } from '../../../types/index.js';
|
|
2
|
+
type __VLS_Props = NRadioGroupItemProps;
|
|
3
|
+
declare var __VLS_9: {}, __VLS_17: {}, __VLS_19: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
icon?: (props: typeof __VLS_9) => any;
|
|
6
|
+
} & {
|
|
7
|
+
default?: (props: typeof __VLS_17) => any;
|
|
8
|
+
} & {
|
|
9
|
+
description?: (props: typeof __VLS_19) => any;
|
|
10
|
+
};
|
|
11
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
12
|
+
size: import("vue").HTMLAttributes["class"];
|
|
13
|
+
icon: import("vue").HTMLAttributes["class"];
|
|
14
|
+
square: import("vue").HTMLAttributes["class"];
|
|
15
|
+
radioGroup: import("vue").HTMLAttributes["class"];
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import type { AcceptableValue } from 'reka-ui';
|
|
2
|
+
import type { NSelectProps } 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: T) => any) | undefined;
|
|
6
|
+
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open"> & NSelectProps<T, M> & Partial<{}>> & import("vue").PublicProps;
|
|
8
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
9
|
+
attrs: any;
|
|
10
|
+
slots: {
|
|
11
|
+
default?: (props: {
|
|
12
|
+
modelValue: any;
|
|
13
|
+
open: any;
|
|
14
|
+
}) => any;
|
|
15
|
+
} & {
|
|
16
|
+
'trigger-wrapper'?: (props: {
|
|
17
|
+
modelValue: any;
|
|
18
|
+
open: any;
|
|
19
|
+
}) => any;
|
|
20
|
+
} & {
|
|
21
|
+
trigger?: (props: {
|
|
22
|
+
modelValue: any;
|
|
23
|
+
open: any;
|
|
24
|
+
}) => any;
|
|
25
|
+
} & {
|
|
26
|
+
value?: (props: {
|
|
27
|
+
modelValue: any;
|
|
28
|
+
open: any;
|
|
29
|
+
}) => any;
|
|
30
|
+
} & {
|
|
31
|
+
content?: (props: {
|
|
32
|
+
items: any;
|
|
33
|
+
}) => any;
|
|
34
|
+
} & {
|
|
35
|
+
label?: (props: {
|
|
36
|
+
label: any;
|
|
37
|
+
}) => any;
|
|
38
|
+
} & {
|
|
39
|
+
item?: (props: {
|
|
40
|
+
item: any;
|
|
41
|
+
}) => any;
|
|
42
|
+
} & {
|
|
43
|
+
indicator?: (props: {
|
|
44
|
+
item: any;
|
|
45
|
+
}) => any;
|
|
46
|
+
} & {
|
|
47
|
+
group?: (props: {
|
|
48
|
+
items: any;
|
|
49
|
+
}) => any;
|
|
50
|
+
} & {
|
|
51
|
+
label?: (props: {
|
|
52
|
+
label: any;
|
|
53
|
+
}) => any;
|
|
54
|
+
} & {
|
|
55
|
+
item?: (props: {
|
|
56
|
+
item: any;
|
|
57
|
+
}) => any;
|
|
58
|
+
} & {
|
|
59
|
+
indicator?: (props: {
|
|
60
|
+
item: any;
|
|
61
|
+
}) => any;
|
|
62
|
+
};
|
|
63
|
+
emit: ((evt: "update:modelValue", value: T) => void) & ((evt: "update:open", value: boolean) => void);
|
|
64
|
+
}>) => import("vue").VNode & {
|
|
65
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
66
|
+
};
|
|
67
|
+
export default _default;
|
|
68
|
+
type __VLS_PrettifyLocal<T> = {
|
|
69
|
+
[K in keyof T]: T[K];
|
|
70
|
+
} & {};
|
|
@@ -13,7 +13,7 @@ import SelectSeparator from "./SelectSeparator.vue";
|
|
|
13
13
|
import SelectTrigger from "./SelectTrigger.vue";
|
|
14
14
|
import SelectValue from "./SelectValue.vue";
|
|
15
15
|
const props = defineProps({
|
|
16
|
-
items: { type:
|
|
16
|
+
items: { type: Array, required: false },
|
|
17
17
|
labelKey: { type: null, required: false, default: "label" },
|
|
18
18
|
valueKey: { type: null, required: false, default: "value" },
|
|
19
19
|
label: { type: String, required: false },
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { AcceptableValue } from 'reka-ui';
|
|
2
|
-
import type { NSelectProps
|
|
3
|
-
declare const _default: <T extends AcceptableValue,
|
|
2
|
+
import type { NSelectProps } 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
4
|
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5
5
|
readonly "onUpdate:modelValue"?: ((value: T) => any) | undefined;
|
|
6
6
|
readonly "onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
7
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open"> & NSelectProps<T,
|
|
7
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue" | "onUpdate:open"> & NSelectProps<T, M> & Partial<{}>> & import("vue").PublicProps;
|
|
8
8
|
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
9
9
|
attrs: any;
|
|
10
10
|
slots: {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NSelectContentProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_17: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_17) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NSelectContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
8
|
+
pointerDownOutside: (event: import("reka-ui").PointerDownOutsideEvent) => any;
|
|
9
|
+
closeAutoFocus: (event: Event) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<NSelectContentProps> & Readonly<{
|
|
11
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
12
|
+
onPointerDownOutside?: ((event: import("reka-ui").PointerDownOutsideEvent) => any) | undefined;
|
|
13
|
+
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
14
|
+
}>, {
|
|
15
|
+
position: "item-aligned" | "popper";
|
|
16
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
17
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NSelectGroupProps } 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<NSelectGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectGroupProps> & 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 { NSelectItemProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_9: {}, __VLS_14: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
indicator?: (props: typeof __VLS_9) => any;
|
|
5
|
+
} & {
|
|
6
|
+
default?: (props: typeof __VLS_14) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NSelectItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectItemProps> & Readonly<{}>, {
|
|
9
|
+
selectItem: import("vue").HTMLAttributes["class"];
|
|
10
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
12
|
+
export default _default;
|
|
13
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
14
|
+
new (): {
|
|
15
|
+
$slots: S;
|
|
16
|
+
};
|
|
17
|
+
};
|