@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,13 @@
|
|
|
1
|
+
import type { NSelectItemIndicatorProps } 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<NSelectItemIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectItemIndicatorProps> & 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 { NSelectItemTextProps } 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<NSelectItemTextProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectItemTextProps> & 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 { NSelectLabelProps } 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<NSelectLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectLabelProps> & 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 { NSelectScrollDownButtonProps } 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<NSelectScrollDownButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectScrollDownButtonProps> & 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 { NSelectScrollUpButtonProps } 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<NSelectScrollUpButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectScrollUpButtonProps> & 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 { NSelectSeparator } from '../../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NSelectSeparator, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectSeparator> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NSelectTriggerProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_9: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_9) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NSelectTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectTriggerProps> & Readonly<{}>, {
|
|
7
|
+
select: string;
|
|
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 { NSelectValueProps } 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<NSelectValueProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSelectValueProps> & 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 { NHoverCardProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_11: {
|
|
3
|
+
open: any;
|
|
4
|
+
}, __VLS_16: {};
|
|
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_16) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<NHoverCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
"update:open": (value: boolean) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<NHoverCardProps> & Readonly<{
|
|
15
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
hoverCard: import("vue").HTMLAttributes["class"];
|
|
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,6 @@
|
|
|
1
|
+
import type { NHoverCardArrowProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NHoverCardArrowProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NHoverCardArrowProps> & Readonly<{}>, {
|
|
3
|
+
width: number;
|
|
4
|
+
height: number;
|
|
5
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NHoverCardContentProps } 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<NHoverCardContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NHoverCardContentProps> & Readonly<{}>, {
|
|
7
|
+
sideOffset: 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,13 @@
|
|
|
1
|
+
import type { NHoverCardTriggerProps } 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<NHoverCardTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NHoverCardTriggerProps> & 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,16 @@
|
|
|
1
|
+
declare var __VLS_5: {
|
|
2
|
+
open: any;
|
|
3
|
+
}, __VLS_10: {};
|
|
4
|
+
type __VLS_Slots = {} & {
|
|
5
|
+
trigger?: (props: typeof __VLS_5) => any;
|
|
6
|
+
} & {
|
|
7
|
+
content?: (props: typeof __VLS_10) => any;
|
|
8
|
+
};
|
|
9
|
+
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>;
|
|
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,35 @@
|
|
|
1
|
+
import type { NBreadcrumbProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_5: {
|
|
3
|
+
items: any;
|
|
4
|
+
}, __VLS_10: {
|
|
5
|
+
item: any;
|
|
6
|
+
}, __VLS_15: {
|
|
7
|
+
item: any;
|
|
8
|
+
}, __VLS_20: {
|
|
9
|
+
item: any;
|
|
10
|
+
index: any;
|
|
11
|
+
isActive: boolean;
|
|
12
|
+
}, __VLS_22: {
|
|
13
|
+
item: any;
|
|
14
|
+
}, __VLS_33: {};
|
|
15
|
+
type __VLS_Slots = {} & {
|
|
16
|
+
root?: (props: typeof __VLS_5) => any;
|
|
17
|
+
} & {
|
|
18
|
+
list?: (props: typeof __VLS_10) => any;
|
|
19
|
+
} & {
|
|
20
|
+
item?: (props: typeof __VLS_15) => any;
|
|
21
|
+
} & {
|
|
22
|
+
default?: (props: typeof __VLS_20) => any;
|
|
23
|
+
} & {
|
|
24
|
+
dropdown?: (props: typeof __VLS_22) => any;
|
|
25
|
+
} & {
|
|
26
|
+
separator?: (props: typeof __VLS_33) => any;
|
|
27
|
+
};
|
|
28
|
+
declare const __VLS_component: import("vue").DefineComponent<NBreadcrumbProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
29
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
30
|
+
export default _default;
|
|
31
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import type { NBreadcrumbEllipsisProps } 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<NBreadcrumbEllipsisProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbEllipsisProps> & Readonly<{}>, {
|
|
7
|
+
size: string;
|
|
8
|
+
icon: 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,13 @@
|
|
|
1
|
+
import type { NBreadcrumbItemProps } 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<NBreadcrumbItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbItemProps> & 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 { NBreadcrumbLinkProps } 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<NBreadcrumbLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbLinkProps> & Readonly<{}>, {
|
|
7
|
+
size: string;
|
|
8
|
+
breadcrumbActive: string;
|
|
9
|
+
breadcrumbInactive: string;
|
|
10
|
+
active: boolean;
|
|
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,13 @@
|
|
|
1
|
+
import type { NBreadcrumbListProps } 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<NBreadcrumbListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbListProps> & 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,16 @@
|
|
|
1
|
+
import type { HTMLAttributes } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
class?: HTMLAttributes['class'];
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
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,13 @@
|
|
|
1
|
+
import type { NBreadcrumbRootProps } 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<NBreadcrumbRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbRootProps> & 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,16 @@
|
|
|
1
|
+
import type { NBreadcrumbSeparatorProps } 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<NBreadcrumbSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NBreadcrumbSeparatorProps> & Readonly<{}>, {
|
|
7
|
+
size: string;
|
|
8
|
+
icon: 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,46 @@
|
|
|
1
|
+
import type { NNavigationMenuItemProps, NNavigationMenuProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: <T extends U[], U extends NNavigationMenuItemProps>(__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 "onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
5
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, "onUpdate:modelValue"> & NNavigationMenuProps<T> & Partial<{}>> & import("vue").PublicProps;
|
|
6
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{}>): void;
|
|
7
|
+
attrs: any;
|
|
8
|
+
slots: {
|
|
9
|
+
[x: string]: ((props: {
|
|
10
|
+
item: any;
|
|
11
|
+
active: any;
|
|
12
|
+
}) => any) | undefined;
|
|
13
|
+
} & {
|
|
14
|
+
[x: string]: ((props: {
|
|
15
|
+
items: any;
|
|
16
|
+
item: any;
|
|
17
|
+
}) => any) | undefined;
|
|
18
|
+
} & {
|
|
19
|
+
[x: string]: ((props: {
|
|
20
|
+
item: any;
|
|
21
|
+
}) => any) | undefined;
|
|
22
|
+
} & {
|
|
23
|
+
default?: (props: {
|
|
24
|
+
items: any;
|
|
25
|
+
}) => any;
|
|
26
|
+
} & {
|
|
27
|
+
list?: (props: {
|
|
28
|
+
items: any;
|
|
29
|
+
}) => any;
|
|
30
|
+
} & {
|
|
31
|
+
trigger?: (props: {
|
|
32
|
+
modelValue: any;
|
|
33
|
+
item: any;
|
|
34
|
+
index: any;
|
|
35
|
+
}) => any;
|
|
36
|
+
} & {
|
|
37
|
+
viewport?: (props: {}) => any;
|
|
38
|
+
};
|
|
39
|
+
emit: (evt: "update:modelValue", value: string) => void;
|
|
40
|
+
}>) => import("vue").VNode & {
|
|
41
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
42
|
+
};
|
|
43
|
+
export default _default;
|
|
44
|
+
type __VLS_PrettifyLocal<T> = {
|
|
45
|
+
[K in keyof T]: T[K];
|
|
46
|
+
} & {};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { NNavigationMenuContentProps } 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<NNavigationMenuContentProps, {}, {}, {}, {}, 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<NNavigationMenuContentProps> & 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
|
+
}>, {}, {}, {}, {}, 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,21 @@
|
|
|
1
|
+
import type { NNavigationMenuListItemProps } 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<NNavigationMenuListItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
select: (payload: CustomEvent<{
|
|
8
|
+
originalEvent: Event;
|
|
9
|
+
}>) => any;
|
|
10
|
+
}, string, import("vue").PublicProps, Readonly<NNavigationMenuListItemProps> & Readonly<{
|
|
11
|
+
onSelect?: ((payload: CustomEvent<{
|
|
12
|
+
originalEvent: Event;
|
|
13
|
+
}>) => 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_WithSlots<T, S> = T & {
|
|
18
|
+
new (): {
|
|
19
|
+
$slots: S;
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NNavigationMenuIndicatorProps } 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<NNavigationMenuIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuIndicatorProps> & 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 { NNavigationMenuItemProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuItemProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { NNavigationMenuLinkProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
active: any;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_6) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuLinkProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
select: (payload: CustomEvent<{
|
|
10
|
+
originalEvent: Event;
|
|
11
|
+
}>) => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<NNavigationMenuLinkProps> & Readonly<{
|
|
13
|
+
onSelect?: ((payload: CustomEvent<{
|
|
14
|
+
originalEvent: Event;
|
|
15
|
+
}>) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
18
|
+
btn: string;
|
|
19
|
+
navigationMenuLink: string;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
24
|
+
new (): {
|
|
25
|
+
$slots: S;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NNavigationMenuListProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuListProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuListProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { NNavigationMenuTriggerProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NNavigationMenuTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuTriggerProps> & Readonly<{}>, {
|
|
7
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
8
|
+
btn: string;
|
|
9
|
+
trailing: string;
|
|
10
|
+
navigationMenu: string;
|
|
11
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { NNavigationMenuViewportProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NNavigationMenuViewportProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNavigationMenuViewportProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import type { NNumberFieldProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_11: {}, __VLS_17: {}, __VLS_27: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
5
|
+
} & {
|
|
6
|
+
content?: (props: typeof __VLS_11) => any;
|
|
7
|
+
} & {
|
|
8
|
+
decrement?: (props: typeof __VLS_17) => any;
|
|
9
|
+
} & {
|
|
10
|
+
increment?: (props: typeof __VLS_27) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<NNumberFieldProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
|
+
"update:modelValue": (val: number) => any;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<NNumberFieldProps> & Readonly<{
|
|
15
|
+
"onUpdate:modelValue"?: ((val: number) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
size: import("vue").HTMLAttributes["class"];
|
|
18
|
+
leading: string;
|
|
19
|
+
trailing: string;
|
|
20
|
+
numberField: import("vue").HTMLAttributes["class"];
|
|
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,13 @@
|
|
|
1
|
+
import type { NNumberFieldContentProps } 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<NNumberFieldContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldContentProps> & 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,16 @@
|
|
|
1
|
+
import type { NNumberFieldDecrementProps } 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<NNumberFieldDecrementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldDecrementProps> & Readonly<{}>, {
|
|
7
|
+
size: import("vue").HTMLAttributes["class"];
|
|
8
|
+
icon: 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 { NNumberFieldIncrementProps } 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<NNumberFieldIncrementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldIncrementProps> & Readonly<{}>, {
|
|
7
|
+
size: import("vue").HTMLAttributes["class"];
|
|
8
|
+
icon: 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,5 @@
|
|
|
1
|
+
import type { NNumberFieldInputProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NNumberFieldInputProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NNumberFieldInputProps> & Readonly<{}>, {
|
|
3
|
+
numberField: import("vue").HTMLAttributes["class"];
|
|
4
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
export default _default;
|