@reeverdev/ui 0.1.40 → 0.1.41
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/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +6 -0
- package/dist/index.d.ts +6 -0
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -785,6 +785,12 @@ declare const Sidebar: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttri
|
|
|
785
785
|
side?: "left" | "right";
|
|
786
786
|
variant?: "sidebar" | "floating" | "inset";
|
|
787
787
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
788
|
+
/**
|
|
789
|
+
* When true, sidebar uses relative positioning instead of fixed.
|
|
790
|
+
* Useful for embedding sidebar in bounded containers like previews.
|
|
791
|
+
* Toggle functionality still works.
|
|
792
|
+
*/
|
|
793
|
+
embedded?: boolean;
|
|
788
794
|
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
789
795
|
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
790
796
|
declare const SidebarRail: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
package/dist/index.d.ts
CHANGED
|
@@ -785,6 +785,12 @@ declare const Sidebar: React$1.ForwardRefExoticComponent<Omit<React$1.ClassAttri
|
|
|
785
785
|
side?: "left" | "right";
|
|
786
786
|
variant?: "sidebar" | "floating" | "inset";
|
|
787
787
|
collapsible?: "offcanvas" | "icon" | "none";
|
|
788
|
+
/**
|
|
789
|
+
* When true, sidebar uses relative positioning instead of fixed.
|
|
790
|
+
* Useful for embedding sidebar in bounded containers like previews.
|
|
791
|
+
* Toggle functionality still works.
|
|
792
|
+
*/
|
|
793
|
+
embedded?: boolean;
|
|
788
794
|
}, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
789
795
|
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
790
796
|
declare const SidebarRail: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|