@pantheon-systems/pds-toolkit-react 1.0.0-dev.164 → 1.0.0-dev.166
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/PantheonLogo/PantheonLogo.d.ts +41 -24
- package/_dist/components/PantheonLogo/pantheon-logo-data.d.ts +4 -0
- package/_dist/components/buttons/ButtonLink/ButtonLink.d.ts +1 -0
- package/_dist/components/navigation/DashboardNav/DashboardNavItem.d.ts +1 -1
- package/_dist/components/navigation/DashboardNav/dashboard-nav-sample-content.d.ts +30 -3
- package/_dist/components/navigation/Navbar/Navbar.d.ts +2 -4
- package/_dist/css/component-css/pds-dashboard-nav.css +1 -1
- package/_dist/css/component-css/pds-index.css +1 -1
- package/_dist/css/pds-components.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +1 -1
- package/_dist/index.js +1723 -1767
- package/_dist/index.js.map +1 -1
- package/package.json +1 -1
- package/_dist/components/navigation/DashboardNav/DashboardNav.d.ts +0 -35
package/package.json
CHANGED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import React, { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { DashboardNavItem } from './DashboardNavItem';
|
|
3
|
-
import './dashboard-nav.css';
|
|
4
|
-
/**
|
|
5
|
-
* Prop types for DashboardNav
|
|
6
|
-
*/
|
|
7
|
-
export interface DashboardNavProps extends ComponentPropsWithoutRef<'nav'> {
|
|
8
|
-
/**
|
|
9
|
-
* Aria label for the navigation.
|
|
10
|
-
*/
|
|
11
|
-
ariaLabel: string;
|
|
12
|
-
/**
|
|
13
|
-
* Labels for translatable strings.
|
|
14
|
-
*/
|
|
15
|
-
labels?: {
|
|
16
|
-
submenu: string;
|
|
17
|
-
toggle: string;
|
|
18
|
-
};
|
|
19
|
-
/**
|
|
20
|
-
* Menu items to render.
|
|
21
|
-
*/
|
|
22
|
-
menuItems: DashboardNavItem[];
|
|
23
|
-
/**
|
|
24
|
-
* Text to display in the mobile menu trigger button when no active link is found.
|
|
25
|
-
*/
|
|
26
|
-
mobileMenuSelectTextFallback?: string;
|
|
27
|
-
/**
|
|
28
|
-
* Additional class names
|
|
29
|
-
*/
|
|
30
|
-
className?: string;
|
|
31
|
-
}
|
|
32
|
-
/**
|
|
33
|
-
* DashboardNav UI component
|
|
34
|
-
*/
|
|
35
|
-
export declare const DashboardNav: ({ ariaLabel, labels, menuItems, mobileMenuSelectTextFallback, className, ...props }: DashboardNavProps) => React.JSX.Element;
|