@rafal.lemieszewski/tide-ui 0.6.1 → 0.7.1
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/components/ui/sidebar.d.ts +6 -0
- package/dist/index.cjs.js +349 -349
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +684 -536
- package/dist/index.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -53,12 +53,16 @@ declare const SidebarMenuButton: React.ForwardRefExoticComponent<Omit<React.Clas
|
|
|
53
53
|
asChild?: boolean;
|
|
54
54
|
isActive?: boolean;
|
|
55
55
|
tooltip?: string | React.ComponentProps<typeof TooltipPrimitive.Content>;
|
|
56
|
+
enhancedHover?: boolean;
|
|
57
|
+
preserveActiveOnFocus?: boolean;
|
|
58
|
+
variant?: "default" | "enhanced";
|
|
56
59
|
} & VariantProps<(props?: ({
|
|
57
60
|
variant?: "default" | "outline" | null | undefined;
|
|
58
61
|
size?: "default" | "sm" | "lg" | null | undefined;
|
|
59
62
|
} & import('class-variance-authority/types').ClassProp) | undefined) => string>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
60
63
|
declare const SidebarMenuAction: React.ForwardRefExoticComponent<Omit<import('./button').ButtonProps & React.RefAttributes<HTMLButtonElement> & {
|
|
61
64
|
showOnHover?: boolean;
|
|
65
|
+
size?: "sm" | "md" | "lg";
|
|
62
66
|
}, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
63
67
|
declare const SidebarMenuBadge: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
64
68
|
declare const SidebarMenuSkeleton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
|
|
@@ -70,5 +74,7 @@ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<Omit<React.C
|
|
|
70
74
|
asChild?: boolean;
|
|
71
75
|
size?: "sm" | "md";
|
|
72
76
|
isActive?: boolean;
|
|
77
|
+
enhancedHover?: boolean;
|
|
78
|
+
preserveActiveOnFocus?: boolean;
|
|
73
79
|
}, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
|
|
74
80
|
export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarSearchButton, SidebarSearchTrigger, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, };
|