@pantheon-systems/pds-toolkit-react 1.0.0-dev.141 → 1.0.0-dev.143
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/buttons/SegmentedButton/SegmentedButton.d.ts +46 -0
- package/_dist/components/navigation/DashboardSearch/DashboardSearch.d.ts +3 -1
- package/_dist/css/component-css/pds-index.css +1 -1
- package/_dist/css/component-css/pds-segmented-button.css +1 -0
- package/_dist/css/pds-components.css +1 -1
- package/_dist/css/pds-layouts.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +6 -5
- package/_dist/index.js +2078 -1993
- package/_dist/index.js.map +1 -1
- package/_dist/layouts/DashboardLayout/DashboardLayout.d.ts +9 -1
- package/package.json +1 -1
|
@@ -17,6 +17,14 @@ interface DashboardLayoutProps {
|
|
|
17
17
|
* Whether the sidebar is initially expanded
|
|
18
18
|
*/
|
|
19
19
|
initialSidebarExpanded?: boolean;
|
|
20
|
+
/**
|
|
21
|
+
* Width of the sidebar when collapsed in rems
|
|
22
|
+
*/
|
|
23
|
+
sidebarCollapsedWidth?: number;
|
|
24
|
+
/**
|
|
25
|
+
* Width of the sidebar when expanded in rems
|
|
26
|
+
*/
|
|
27
|
+
sidebarExpandedWidth?: number;
|
|
20
28
|
/**
|
|
21
29
|
* Sidebar toggle label
|
|
22
30
|
*/
|
|
@@ -33,5 +41,5 @@ interface DashboardLayoutProps {
|
|
|
33
41
|
/**
|
|
34
42
|
* DashboardLayout UI component
|
|
35
43
|
*/
|
|
36
|
-
export declare const DashboardLayout: ({ children, hasSidebarToggle, initialSidebarExpanded, sidebarToggleLabel, skiplinkText, className, ...props }: DashboardLayoutProps) => React.JSX.Element;
|
|
44
|
+
export declare const DashboardLayout: ({ children, hasSidebarToggle, initialSidebarExpanded, sidebarCollapsedWidth, sidebarExpandedWidth, sidebarToggleLabel, skiplinkText, className, ...props }: DashboardLayoutProps) => React.JSX.Element;
|
|
37
45
|
export {};
|