@pantheon-systems/pds-toolkit-react 1.0.0 → 1.1.1
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/DashboardSearch/DashboardSearch.d.ts +3 -3
- package/_dist/css/component-css/pds-dashboard-search.css +1 -1
- package/_dist/css/component-css/pds-index.css +3 -3
- package/_dist/css/component-css/pds-navbar.css +1 -1
- package/_dist/css/component-css/pds-workspace-selector.css +1 -1
- package/_dist/css/pds-components.css +3 -3
- package/_dist/css/pds-core.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +1 -0
- package/_dist/index.js +2269 -2346
- package/_dist/index.js.map +1 -1
- package/_dist/layouts/AppLayout/AppLayout.d.ts +1 -1
- package/_dist/{components/navigation/DashboardSearch → libs/components/SiteOptionDisplay}/SiteOptionDisplay.d.ts +5 -1
- package/package.json +1 -1
|
@@ -37,7 +37,7 @@ interface AppLayoutProps extends ComponentPropsWithoutRef<'div'> {
|
|
|
37
37
|
/**
|
|
38
38
|
* Element type for the main content area.
|
|
39
39
|
*/
|
|
40
|
-
mainContentElement
|
|
40
|
+
mainContentElement?: 'div' | 'main';
|
|
41
41
|
/**
|
|
42
42
|
* Additional props for the main content element.
|
|
43
43
|
*/
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef } from 'react';
|
|
2
|
-
import { SiteStatus, SiteType } from '
|
|
2
|
+
import { SiteStatus, SiteType } from '../../types/custom-types';
|
|
3
|
+
import './site-option-display.css';
|
|
4
|
+
/**
|
|
5
|
+
* Site option item type.
|
|
6
|
+
*/
|
|
3
7
|
export type SiteOption = {
|
|
4
8
|
/**
|
|
5
9
|
* ID of the site.
|