@pantheon-systems/pds-toolkit-react 1.0.0-dev.172 → 1.0.0-dev.173
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/SocialLinks/SocialLinks.d.ts +22 -12
- package/_dist/components/navigation/DashboardSearch/DashboardSearch.d.ts +3 -3
- package/_dist/css/pds-core.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +1 -1
- package/_dist/index.js +1618 -1626
- package/_dist/index.js.map +1 -1
- package/_dist/layouts/DashboardLayout/DashboardLayout.d.ts +5 -1
- package/package.json +1 -1
|
@@ -41,8 +41,12 @@ export interface DashboardLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
41
41
|
* Additional class names. Will be merged with existing component root classes.
|
|
42
42
|
*/
|
|
43
43
|
className?: string;
|
|
44
|
+
/**
|
|
45
|
+
* for admin view UI changes
|
|
46
|
+
*/
|
|
47
|
+
isAdmin?: boolean;
|
|
44
48
|
}
|
|
45
49
|
/**
|
|
46
50
|
* DashboardLayout UI component
|
|
47
51
|
*/
|
|
48
|
-
export declare const DashboardLayout: ({ children, hasSidebarToggle, initialSidebarExpanded, logoLinkContent, sidebarCollapsedWidth, sidebarExpandedWidth, sidebarToggleLabel, skiplinkText, className, ...props }: DashboardLayoutProps) => React.JSX.Element;
|
|
52
|
+
export declare const DashboardLayout: ({ children, hasSidebarToggle, initialSidebarExpanded, isAdmin, logoLinkContent, sidebarCollapsedWidth, sidebarExpandedWidth, sidebarToggleLabel, skiplinkText, className, ...props }: DashboardLayoutProps) => React.JSX.Element;
|