@rafal.lemieszewski/tide-ui 0.5.4 → 0.6.0

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.
@@ -48,7 +48,7 @@ export { CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, C
48
48
  export { Combobox, MultiCombobox } from './ui/combobox';
49
49
  export type { ComboboxProps, ComboboxOption, ComboboxTriggerProps, MultiComboboxProps, MultiComboboxTriggerProps, } from './ui/combobox';
50
50
  export { Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, } from './ui/breadcrumb';
51
- export { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarInput, SidebarRail, SidebarSeparator, SidebarGroup, SidebarGroupAction, SidebarGroupLabel, SidebarGroupContent, SidebarMenu, SidebarMenuItem, SidebarMenuButton, SidebarMenuAction, SidebarMenuBadge, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubItem, SidebarMenuSubButton, SidebarInset, SidebarProvider, SidebarTrigger, useSidebar, } from './ui/sidebar';
51
+ export { Sidebar, SidebarContent, SidebarFooter, SidebarHeader, SidebarInput, SidebarSearchButton, SidebarSearchTrigger, SidebarRail, SidebarSeparator, SidebarGroup, SidebarGroupAction, SidebarGroupLabel, SidebarGroupContent, SidebarMenu, SidebarMenuItem, SidebarMenuButton, SidebarMenuAction, SidebarMenuBadge, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubItem, SidebarMenuSubButton, SidebarInset, SidebarProvider, SidebarTrigger, useSidebar, } from './ui/sidebar';
52
52
  export { Drawer, DrawerPortal, DrawerOverlay, DrawerTrigger, DrawerClose, DrawerContent, DrawerHeader, DrawerFooter, DrawerTitle, DrawerDescription, } from './ui/drawer';
53
53
  export { Sheet, SheetPortal, SheetOverlay, SheetTrigger, SheetClose, SheetContent, SheetHeader, SheetFooter, SheetTitle, SheetDescription, } from './ui/sheet';
54
54
  export type { SheetContentProps } from './ui/sheet';
@@ -9,6 +9,7 @@ declare const DropdownMenuDesktopContent: React.ForwardRefExoticComponent<Omit<D
9
9
  declare const DropdownMenuDesktopItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & {
10
10
  inset?: boolean;
11
11
  destructive?: boolean;
12
+ icon?: string;
12
13
  } & React.RefAttributes<HTMLDivElement>>;
13
14
  declare const DropdownMenuDesktopCheckboxItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
14
15
  declare const DropdownMenuDesktopRadioItem: React.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -36,6 +37,7 @@ declare const ResponsiveDropdownMenuTrigger: React.ForwardRefExoticComponent<Res
36
37
  interface ResponsiveDropdownMenuItemProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Item> {
37
38
  inset?: boolean;
38
39
  destructive?: boolean;
40
+ icon?: string;
39
41
  }
40
42
  declare const ResponsiveDropdownMenuItem: React.ForwardRefExoticComponent<ResponsiveDropdownMenuItemProps & React.RefAttributes<HTMLDivElement>>;
41
43
  interface ResponsiveDropdownMenuCheckboxItemProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.CheckboxItem> {
@@ -44,6 +46,7 @@ interface ResponsiveDropdownMenuCheckboxItemProps extends React.ComponentPropsWi
44
46
  declare const ResponsiveDropdownMenuCheckboxItem: React.ForwardRefExoticComponent<ResponsiveDropdownMenuCheckboxItemProps & React.RefAttributes<HTMLDivElement>>;
45
47
  interface ResponsiveDropdownMenuRadioItemProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.RadioItem> {
46
48
  value: string;
49
+ icon?: string;
47
50
  }
48
51
  declare const ResponsiveDropdownMenuRadioItem: React.ForwardRefExoticComponent<ResponsiveDropdownMenuRadioItemProps & React.RefAttributes<HTMLDivElement>>;
49
52
  interface ResponsiveDropdownMenuLabelProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.Label> {
@@ -63,6 +66,7 @@ interface ResponsiveDropdownMenuSubProps {
63
66
  declare const ResponsiveDropdownMenuSub: ({ children }: ResponsiveDropdownMenuSubProps) => import("react/jsx-runtime").JSX.Element;
64
67
  interface ResponsiveDropdownMenuSubTriggerProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubTrigger> {
65
68
  inset?: boolean;
69
+ icon?: string;
66
70
  }
67
71
  declare const ResponsiveDropdownMenuSubTrigger: React.ForwardRefExoticComponent<ResponsiveDropdownMenuSubTriggerProps & React.RefAttributes<HTMLButtonElement>>;
68
72
  interface ResponsiveDropdownMenuSubContentProps extends React.ComponentPropsWithoutRef<typeof DropdownMenuPrimitive.SubContent> {
@@ -27,6 +27,14 @@ declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<import('./but
27
27
  declare const SidebarRail: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
28
28
  declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
29
29
  declare const SidebarInput: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
30
+ declare const SidebarSearchButton: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
31
+ onOpenChange?: (open: boolean) => void;
32
+ shortcuts?: string[];
33
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
34
+ declare const SidebarSearchTrigger: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLButtonElement> & React.ButtonHTMLAttributes<HTMLButtonElement> & {
35
+ onOpenChange?: (open: boolean) => void;
36
+ shortcuts?: string[];
37
+ }, "ref"> & React.RefAttributes<HTMLButtonElement>>;
30
38
  declare const SidebarHeader: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
31
39
  declare const SidebarFooter: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
32
40
  declare const SidebarSeparator: React.ForwardRefExoticComponent<Omit<import('./separator').SeparatorProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
@@ -63,4 +71,4 @@ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<Omit<React.C
63
71
  size?: "sm" | "md";
64
72
  isActive?: boolean;
65
73
  }, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
66
- export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, };
74
+ 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, };