@una-ui/nuxt 0.67.2 → 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/slots/FormFieldDefault.js +5 -1
- 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,3 @@
|
|
|
1
|
+
import type { NDrawerOverlayProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NDrawerOverlayProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDrawerOverlayProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NDrawerTitleProps } 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<NDrawerTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDrawerTitleProps> & 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 { NDrawerTriggerProps } 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<NDrawerTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NDrawerTriggerProps> & 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 { NAlertProps } from '../../types/index.js';
|
|
2
|
+
type __VLS_Slots = {
|
|
3
|
+
default?: any;
|
|
4
|
+
title?: any;
|
|
5
|
+
description?: any;
|
|
6
|
+
icon?: any;
|
|
7
|
+
closeIcon?: any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<NAlertProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
10
|
+
icon: string | 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,11 @@
|
|
|
1
|
+
import type { NAvatarGroupProps } from '../../types/index.js';
|
|
2
|
+
declare const __VLS_component: import("vue").DefineComponent<NAvatarGroupProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarGroupProps> & Readonly<{}>, {
|
|
3
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
4
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
6
|
+
export default _default;
|
|
7
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
8
|
+
new (): {
|
|
9
|
+
$slots: S;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { NBadgeProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_4: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_4) => any;
|
|
5
|
+
};
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<NBadgeProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, any, string, import("vue").PublicProps, any, {
|
|
7
|
+
una: {
|
|
8
|
+
badgeDefaultVariant?: string;
|
|
9
|
+
badge?: string;
|
|
10
|
+
badgeIconBase?: string;
|
|
11
|
+
badgeClose?: string;
|
|
12
|
+
badgeCloseIconBase?: string;
|
|
13
|
+
badgeCloseIcon?: string;
|
|
14
|
+
};
|
|
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,34 @@
|
|
|
1
|
+
import type { NButtonProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_10: {}, __VLS_19: {}, __VLS_28: {}, __VLS_37: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
loading?: (props: typeof __VLS_10) => any;
|
|
5
|
+
} & {
|
|
6
|
+
leading?: (props: typeof __VLS_19) => any;
|
|
7
|
+
} & {
|
|
8
|
+
default?: (props: typeof __VLS_28) => any;
|
|
9
|
+
} & {
|
|
10
|
+
trailing?: (props: typeof __VLS_37) => any;
|
|
11
|
+
};
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<NButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NButtonProps> & Readonly<{}>, {
|
|
13
|
+
una: {
|
|
14
|
+
btnDefaultVariant?: string;
|
|
15
|
+
btn?: string;
|
|
16
|
+
btnLabel?: string;
|
|
17
|
+
btnIconLabel?: string;
|
|
18
|
+
btnLoading?: string;
|
|
19
|
+
btnTrailing?: string;
|
|
20
|
+
btnLeading?: string;
|
|
21
|
+
btnLoadingIcon?: string;
|
|
22
|
+
};
|
|
23
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
24
|
+
size: string;
|
|
25
|
+
type: "button" | "submit" | "reset";
|
|
26
|
+
loadingPlacement: "leading" | "trailing" | "label";
|
|
27
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
28
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
29
|
+
export default _default;
|
|
30
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
31
|
+
new (): {
|
|
32
|
+
$slots: S;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import type { NIconProps } from '../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { NIndicatorProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_1: {}, __VLS_7: {}, __VLS_9: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_1) => any;
|
|
5
|
+
} & {
|
|
6
|
+
indicator?: (props: typeof __VLS_7) => any;
|
|
7
|
+
} & {
|
|
8
|
+
label?: (props: typeof __VLS_9) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<NIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NIndicatorProps> & Readonly<{}>, {
|
|
11
|
+
visible: boolean;
|
|
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,13 @@
|
|
|
1
|
+
import type { NKbdProps } 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<NKbdProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NKbdProps> & 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 { NLabelProps } 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<NLabelProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NLabelProps> & 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,20 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
+
resolveLinkClass: (route: any, $route: any, { isActive, isExactActive }: {
|
|
3
|
+
isActive: boolean;
|
|
4
|
+
isExactActive: boolean;
|
|
5
|
+
}) => string | null;
|
|
6
|
+
resolveNavLinkActive: (route: any, $route: any, { isActive, isExactActive }: {
|
|
7
|
+
isActive: boolean;
|
|
8
|
+
isExactActive: boolean;
|
|
9
|
+
}) => string | null;
|
|
10
|
+
resolveNavLinkInactive: (route: any, $route: any, { isActive, isExactActive }: {
|
|
11
|
+
isActive: boolean;
|
|
12
|
+
isExactActive: boolean;
|
|
13
|
+
}) => string | null;
|
|
14
|
+
isLinkActive: ({ route: linkRoute, isActive, isExactActive }: any) => any;
|
|
15
|
+
label: any;
|
|
16
|
+
disabled: any;
|
|
17
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {} | {
|
|
18
|
+
[x: string]: any;
|
|
19
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
20
|
+
export default _default;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { NProgressProps } from '../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
modelValue: any;
|
|
4
|
+
};
|
|
5
|
+
type __VLS_Slots = {} & {
|
|
6
|
+
default?: (props: typeof __VLS_6) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NProgressProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NProgressProps> & Readonly<{}>, {
|
|
9
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
10
|
+
progress: import("vue").HTMLAttributes["class"];
|
|
11
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
12
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
13
|
+
export default _default;
|
|
14
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
15
|
+
new (): {
|
|
16
|
+
$slots: S;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { NSeparatorProps } 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<NSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSeparatorProps> & Readonly<{}>, {
|
|
7
|
+
orientation: "vertical" | "horizontal";
|
|
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 { NSkeletonProps } 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<NSkeletonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NSkeletonProps> & 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,22 @@
|
|
|
1
|
+
import type { NToggleProps } from '../../types/index.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<NToggleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
+
"update:modelValue": (value: boolean) => any;
|
|
8
|
+
}, string, import("vue").PublicProps, Readonly<NToggleProps> & Readonly<{
|
|
9
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
10
|
+
}>, {
|
|
11
|
+
icon: boolean;
|
|
12
|
+
square: import("vue").HTMLAttributes["class"];
|
|
13
|
+
toggleOn: string;
|
|
14
|
+
toggleOff: string;
|
|
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,71 @@
|
|
|
1
|
+
import type { NAccordionProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
modelValue: any;
|
|
4
|
+
}, __VLS_12: any, __VLS_13: {
|
|
5
|
+
open: any;
|
|
6
|
+
item: any;
|
|
7
|
+
index: any;
|
|
8
|
+
}, __VLS_15: {
|
|
9
|
+
open: any;
|
|
10
|
+
item: any;
|
|
11
|
+
index: any;
|
|
12
|
+
}, __VLS_18: any, __VLS_19: {
|
|
13
|
+
open: any;
|
|
14
|
+
item: any;
|
|
15
|
+
index: any;
|
|
16
|
+
}, __VLS_21: {
|
|
17
|
+
open: any;
|
|
18
|
+
item: any;
|
|
19
|
+
index: any;
|
|
20
|
+
}, __VLS_24: any, __VLS_25: {
|
|
21
|
+
open: any;
|
|
22
|
+
item: any;
|
|
23
|
+
index: any;
|
|
24
|
+
}, __VLS_27: {
|
|
25
|
+
open: any;
|
|
26
|
+
item: any;
|
|
27
|
+
index: any;
|
|
28
|
+
}, __VLS_30: any, __VLS_31: {
|
|
29
|
+
open: any;
|
|
30
|
+
item: any;
|
|
31
|
+
index: any;
|
|
32
|
+
}, __VLS_33: {
|
|
33
|
+
open: any;
|
|
34
|
+
item: any;
|
|
35
|
+
index: any;
|
|
36
|
+
};
|
|
37
|
+
type __VLS_Slots = {} & {
|
|
38
|
+
[K in NonNullable<typeof __VLS_12>]?: (props: typeof __VLS_13) => any;
|
|
39
|
+
} & {
|
|
40
|
+
[K in NonNullable<typeof __VLS_18>]?: (props: typeof __VLS_19) => any;
|
|
41
|
+
} & {
|
|
42
|
+
[K in NonNullable<typeof __VLS_24>]?: (props: typeof __VLS_25) => any;
|
|
43
|
+
} & {
|
|
44
|
+
[K in NonNullable<typeof __VLS_30>]?: (props: typeof __VLS_31) => any;
|
|
45
|
+
} & {
|
|
46
|
+
default?: (props: typeof __VLS_6) => any;
|
|
47
|
+
} & {
|
|
48
|
+
item?: (props: typeof __VLS_15) => any;
|
|
49
|
+
} & {
|
|
50
|
+
header?: (props: typeof __VLS_21) => any;
|
|
51
|
+
} & {
|
|
52
|
+
trigger?: (props: typeof __VLS_27) => any;
|
|
53
|
+
} & {
|
|
54
|
+
content?: (props: typeof __VLS_33) => any;
|
|
55
|
+
};
|
|
56
|
+
declare const __VLS_component: import("vue").DefineComponent<NAccordionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
57
|
+
"update:modelValue": (value: string | string[] | undefined) => any;
|
|
58
|
+
}, string, import("vue").PublicProps, Readonly<NAccordionProps> & Readonly<{
|
|
59
|
+
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
|
|
60
|
+
}>, {
|
|
61
|
+
type: "multiple" | "single";
|
|
62
|
+
accordion: string;
|
|
63
|
+
collapsible: boolean;
|
|
64
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
65
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
66
|
+
export default _default;
|
|
67
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
68
|
+
new (): {
|
|
69
|
+
$slots: S;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { NAccordionContentProps } from '../../../types/accordion.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<NAccordionContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAccordionContentProps> & 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 { NAccordionHeaderProps } from '../../../types/accordion.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<NAccordionHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAccordionHeaderProps> & 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 { NAccordionItemProps } from '../../../types/accordion.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
open: any;
|
|
4
|
+
}, __VLS_15: {
|
|
5
|
+
open: any;
|
|
6
|
+
}, __VLS_20: {
|
|
7
|
+
open: any;
|
|
8
|
+
}, __VLS_25: {
|
|
9
|
+
open: any;
|
|
10
|
+
};
|
|
11
|
+
type __VLS_Slots = {} & {
|
|
12
|
+
default?: (props: typeof __VLS_6) => any;
|
|
13
|
+
} & {
|
|
14
|
+
header?: (props: typeof __VLS_15) => any;
|
|
15
|
+
} & {
|
|
16
|
+
trigger?: (props: typeof __VLS_20) => any;
|
|
17
|
+
} & {
|
|
18
|
+
content?: (props: typeof __VLS_25) => any;
|
|
19
|
+
};
|
|
20
|
+
declare const __VLS_component: import("vue").DefineComponent<NAccordionItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAccordionItemProps> & 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,16 @@
|
|
|
1
|
+
import type { NAccordionTriggerProps } from '../../../types/accordion.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<NAccordionTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAccordionTriggerProps> & Readonly<{}>, {
|
|
7
|
+
btn: string;
|
|
8
|
+
trailing: 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,21 @@
|
|
|
1
|
+
import type { NAvatarProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {}, __VLS_14: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
default?: (props: typeof __VLS_6) => any;
|
|
5
|
+
} & {
|
|
6
|
+
fallback?: (props: typeof __VLS_14) => any;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_component: import("vue").DefineComponent<NAvatarProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarProps> & Readonly<{}>, {
|
|
9
|
+
as: import("reka-ui").AsTag | import("vue").Component;
|
|
10
|
+
rounded: import("vue").HTMLAttributes["class"];
|
|
11
|
+
size: import("vue").HTMLAttributes["class"];
|
|
12
|
+
square: import("vue").HTMLAttributes["class"];
|
|
13
|
+
avatar: import("vue").HTMLAttributes["class"];
|
|
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 { NAvatarAvatarFallbackProps } 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<NAvatarAvatarFallbackProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarAvatarFallbackProps> & 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 { NAvatarImageProps } from '../../../types/index.js';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<NAvatarImageProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NAvatarImageProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { NCardProps } from '../../../types/card.js';
|
|
2
|
+
declare var __VLS_1: {}, __VLS_6: {}, __VLS_11: {}, __VLS_16: {}, __VLS_21: {}, __VLS_26: {};
|
|
3
|
+
type __VLS_Slots = {} & {
|
|
4
|
+
root?: (props: typeof __VLS_1) => any;
|
|
5
|
+
} & {
|
|
6
|
+
header?: (props: typeof __VLS_6) => any;
|
|
7
|
+
} & {
|
|
8
|
+
title?: (props: typeof __VLS_11) => any;
|
|
9
|
+
} & {
|
|
10
|
+
description?: (props: typeof __VLS_16) => any;
|
|
11
|
+
} & {
|
|
12
|
+
default?: (props: typeof __VLS_21) => any;
|
|
13
|
+
} & {
|
|
14
|
+
footer?: (props: typeof __VLS_26) => any;
|
|
15
|
+
};
|
|
16
|
+
declare const __VLS_component: import("vue").DefineComponent<NCardProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardProps> & Readonly<{}>, {
|
|
17
|
+
card: 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,13 @@
|
|
|
1
|
+
import type { NCardContentProps } 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<NCardContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardContentProps> & 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 { NCardDescriptionProps } 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<NCardDescriptionProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardDescriptionProps> & 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 { NCardFooterProps } 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<NCardFooterProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardFooterProps> & 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 { NCardHeaderProps } 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<NCardHeaderProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardHeaderProps> & 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 { NCardTitleProps } 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<NCardTitleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCardTitleProps> & 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 { NCollapsibleProps } from '../../../types/index.js';
|
|
2
|
+
declare var __VLS_6: {
|
|
3
|
+
open: any;
|
|
4
|
+
}, __VLS_11: {
|
|
5
|
+
open: any;
|
|
6
|
+
}, __VLS_16: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_6) => any;
|
|
9
|
+
} & {
|
|
10
|
+
trigger?: (props: typeof __VLS_11) => any;
|
|
11
|
+
} & {
|
|
12
|
+
content?: (props: typeof __VLS_16) => any;
|
|
13
|
+
};
|
|
14
|
+
declare const __VLS_component: import("vue").DefineComponent<NCollapsibleProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
"update:open": (value: boolean) => any;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<NCollapsibleProps> & Readonly<{
|
|
17
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
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,13 @@
|
|
|
1
|
+
import type { NCollapsibleContentProps } 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<NCollapsibleContentProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<NCollapsibleContentProps> & 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 { CollapsibleTriggerProps } from 'reka-ui';
|
|
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<CollapsibleTriggerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<CollapsibleTriggerProps> & 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
|
+
};
|