@pantheon-systems/pds-toolkit-react 1.0.0-dev.212 → 1.0.0-dev.213
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/navigation/navigation-types.d.ts +1 -1
- package/_dist/css/component-css/pds-dropdown-menu.css +1 -1
- package/_dist/css/component-css/pds-index.css +2 -2
- package/_dist/css/component-css/pds-side-nav-compact.css +1 -1
- package/_dist/css/pds-components.css +2 -2
- package/_dist/index.css +1 -1
- package/_dist/index.js +1755 -1785
- package/_dist/index.js.map +1 -1
- package/_dist/mocks/data/navigation-items.d.ts +12 -5
- package/package.json +1 -1
|
@@ -188,21 +188,28 @@ export declare const sideNavSampleMenuItemsCode: ({
|
|
|
188
188
|
export declare const sideNavCompactSampleMenuItems: ({
|
|
189
189
|
linkContent: React.JSX.Element;
|
|
190
190
|
links?: undefined;
|
|
191
|
-
isActive?: undefined;
|
|
192
191
|
} | {
|
|
193
192
|
linkContent: string;
|
|
194
193
|
links: {
|
|
195
194
|
linkContent: React.JSX.Element;
|
|
196
195
|
}[];
|
|
197
|
-
isActive?: undefined;
|
|
198
196
|
} | {
|
|
199
197
|
linkContent: React.JSX.Element;
|
|
200
|
-
isActive: boolean;
|
|
201
198
|
links: ({
|
|
202
199
|
linkContent: string;
|
|
203
|
-
links: {
|
|
200
|
+
links: ({
|
|
204
201
|
linkContent: React.JSX.Element;
|
|
205
|
-
|
|
202
|
+
links: ({
|
|
203
|
+
linkContent: React.JSX.Element;
|
|
204
|
+
isActive: boolean;
|
|
205
|
+
} | {
|
|
206
|
+
linkContent: React.JSX.Element;
|
|
207
|
+
isActive?: undefined;
|
|
208
|
+
})[];
|
|
209
|
+
} | {
|
|
210
|
+
linkContent: React.JSX.Element;
|
|
211
|
+
links?: undefined;
|
|
212
|
+
})[];
|
|
206
213
|
} | {
|
|
207
214
|
linkContent: React.JSX.Element;
|
|
208
215
|
links?: undefined;
|