@npm-questionpro/wick-ui-lib 1.3.3-next.0 → 1.3.4-next.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.
- package/dist/src/components/sidebar/WuSidebar.d.ts +1 -1
- package/dist/src/components/sidebar/index.d.ts +1 -1
- package/dist/src/{base/ui → components/sidebar/shadcn}/sidebar.d.ts +2 -2
- package/package.json +1 -1
- /package/dist/src/components/calendar/shadcn/{_calendar.d.ts → calendar.d.ts} +0 -0
- /package/dist/src/{base/ui → components/sidebar/shadcn}/sheet.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { SidebarContent, SidebarFooter, SidebarGroup, SidebarMenu, SidebarMenuItem, SidebarTrigger } from '
|
|
1
|
+
import { SidebarContent, SidebarFooter, SidebarGroup, SidebarMenu, SidebarMenuItem, SidebarTrigger } from './shadcn/sidebar';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
3
|
export type IWuSidebarProps = {
|
|
4
4
|
children: React.ReactNode;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export { useSidebar as useWuSidebar } from '
|
|
1
|
+
export { useSidebar as useWuSidebar } from './shadcn/sidebar';
|
|
2
2
|
export { WuSidebar, WuSidebarContent, WuSidebarFooter, WuSidebarGroup, WuSidebarItem, WuSidebarMenu, WuSidebarTrigger, type IWuSidebarGroupProps, type IWuSidebarItemProps, type IWuSidebarProps, } from './WuSidebar';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { VariantProps } from 'class-variance-authority';
|
|
2
|
-
import { TooltipContent } from '
|
|
2
|
+
import { TooltipContent } from '../../../base/ui/tooltip';
|
|
3
3
|
import * as React from 'react';
|
|
4
4
|
type ISidebarContext = {
|
|
5
5
|
state: 'expanded' | 'collapsed';
|
|
@@ -21,7 +21,7 @@ declare const Sidebar: React.ForwardRefExoticComponent<Omit<React.ClassAttribute
|
|
|
21
21
|
variant?: "sidebar" | "floating" | "inset";
|
|
22
22
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
23
23
|
}, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
24
|
-
declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<import('
|
|
24
|
+
declare const SidebarTrigger: React.ForwardRefExoticComponent<Omit<import('../../../base/ui/button').IButtonProps & React.RefAttributes<HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
25
25
|
declare const SidebarRail: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React.RefAttributes<HTMLButtonElement>>;
|
|
26
26
|
declare const SidebarInset: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
27
27
|
declare const SidebarInput: React.ForwardRefExoticComponent<Omit<React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>, "ref"> & React.RefAttributes<HTMLInputElement>>;
|
package/package.json
CHANGED
|
File without changes
|
|
File without changes
|