lucent-ui 0.4.0 → 0.4.2
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 +19 -19
- package/dist/index.d.ts +11 -1
- package/dist/index.js +316 -285
- package/dist-server/src/components/atoms/NavLink/NavLink.manifest.js +96 -0
- package/dist-server/src/components/molecules/Breadcrumb/Breadcrumb.manifest.js +76 -0
- package/dist-server/src/components/molecules/Collapsible/Collapsible.manifest.js +83 -0
- package/dist-server/src/components/molecules/PageLayout/PageLayout.manifest.js +160 -0
- package/dist-server/src/components/molecules/Tabs/Tabs.manifest.js +105 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -514,7 +514,7 @@ export declare interface NavLinkProps {
|
|
|
514
514
|
style?: CSSProperties;
|
|
515
515
|
}
|
|
516
516
|
|
|
517
|
-
export declare function PageLayout({ children, header, sidebar, sidebarWidth, headerHeight, sidebarCollapsed, mainStyle, style, }: PageLayoutProps): JSX_2.Element;
|
|
517
|
+
export declare function PageLayout({ children, header, sidebar, sidebarWidth, headerHeight, sidebarCollapsed, rightSidebar, rightSidebarWidth, rightSidebarCollapsed, footer, footerHeight, mainStyle, style, }: PageLayoutProps): JSX_2.Element;
|
|
518
518
|
|
|
519
519
|
export declare interface PageLayoutProps {
|
|
520
520
|
children: ReactNode;
|
|
@@ -526,6 +526,16 @@ export declare interface PageLayoutProps {
|
|
|
526
526
|
headerHeight?: number | string;
|
|
527
527
|
/** Collapse the sidebar to zero width */
|
|
528
528
|
sidebarCollapsed?: boolean;
|
|
529
|
+
/** Right panel content rendered as a flex sibling of <main> */
|
|
530
|
+
rightSidebar?: ReactNode;
|
|
531
|
+
/** Right panel width in px or any CSS value. Default: 240 */
|
|
532
|
+
rightSidebarWidth?: number | string;
|
|
533
|
+
/** Collapse the right panel to zero width */
|
|
534
|
+
rightSidebarCollapsed?: boolean;
|
|
535
|
+
/** Footer content rendered below the body row */
|
|
536
|
+
footer?: ReactNode;
|
|
537
|
+
/** Footer height in px or any CSS value. Default: 48 */
|
|
538
|
+
footerHeight?: number | string;
|
|
529
539
|
/** Style overrides for the main content card (border, borderRadius, boxShadow, etc.) */
|
|
530
540
|
mainStyle?: CSSProperties;
|
|
531
541
|
style?: CSSProperties;
|