@pantheon-systems/pds-toolkit-react 2.0.0-alpha.12 → 2.0.0-alpha.13
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/ThemeSwitcher/ThemeSwitcher.d.ts +14 -8
- package/dist/components/icons/Icon/generated-icon-data.d.ts +9 -2
- package/dist/components/inputs/Datepicker/Datepicker.d.ts +15 -1
- package/dist/components/notifications/Toaster/Toast.d.ts +12 -1
- package/dist/components/notifications/Toaster/Toaster.d.ts +16 -7
- package/dist/components/notifications/Toaster/useToast.d.ts +2 -0
- package/dist/components/panels/ExpansionPanel/ExpansionPanel.d.ts +1 -2
- package/dist/components/panels/ExpansionPanelGroup/ExpansionPanelGroup.d.ts +1 -2
- package/dist/components/progress-indicators/ProgressBar/ProgressBar.d.ts +3 -4
- package/dist/components/progress-indicators/ProgressRing/ProgressRing.d.ts +2 -3
- package/dist/css/component-css/pds-dropdown.css +1 -1
- package/dist/css/component-css/pds-expansion-panel.css +1 -1
- package/dist/css/component-css/pds-index.css +5 -5
- package/dist/css/component-css/pds-nav-menu.css +1 -1
- package/dist/css/component-css/pds-progress-bar.css +1 -1
- package/dist/css/component-css/pds-progress-ring.css +1 -1
- package/dist/css/component-css/pds-side-nav-global.css +1 -1
- package/dist/css/component-css/pds-theme-switcher.css +1 -1
- package/dist/css/component-css/pds-toaster.css +1 -1
- package/dist/css/component-css/pds-user-menu.css +1 -1
- package/dist/css/component-css/pds-workspace-selector.css +1 -1
- package/dist/css/pds-components.css +5 -5
- package/dist/css/pds-core.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.js +2991 -2556
- package/dist/index.js.map +1 -1
- package/dist/libs/types/custom-types.d.ts +8 -0
- package/dist/libs/types/navigation-types.d.ts +1 -1
- package/dist/svg/pause.svg +3 -0
- package/package.json +5 -5
package/dist/index.d.ts
CHANGED
|
@@ -36,6 +36,7 @@ export * from './components/navigation/DropdownMenu/DropdownMenu';
|
|
|
36
36
|
export * from './components/navigation/SideNavGlobal/SideNavGlobal';
|
|
37
37
|
export * from './components/navigation/SideNavGlobal/SideNavGlobalItem';
|
|
38
38
|
export * from './components/navigation/SiteMenu/SiteMenu';
|
|
39
|
+
export * from './components/navigation/UserMenu/UserMenu';
|
|
39
40
|
export * from './components/navigation/WorkspaceSelector/WorkspaceSelector';
|
|
40
41
|
export * from './components/notifications/Banner/Banner';
|
|
41
42
|
export * from './components/notifications/InlineMessage/InlineMessage';
|
|
@@ -43,14 +44,19 @@ export * from './components/notifications/SectionMessage/SectionMessage';
|
|
|
43
44
|
export * from './components/notifications/Toaster/Toast';
|
|
44
45
|
export * from './components/notifications/Toaster/Toaster';
|
|
45
46
|
export * from './components/notifications/Toaster/useToast';
|
|
47
|
+
export * from './components/panels/ExpansionPanel/ExpansionPanel';
|
|
48
|
+
export * from './components/panels/ExpansionPanelGroup/ExpansionPanelGroup';
|
|
46
49
|
export * from './components/panels/Panel/Panel';
|
|
47
50
|
export * from './components/panels/PanelList/PanelRow';
|
|
48
51
|
export * from './components/PantheonLogo/PantheonLogo';
|
|
49
52
|
export * from './components/Picture/Picture';
|
|
50
53
|
export * from './components/Popover/Popover';
|
|
54
|
+
export * from './components/progress-indicators/ProgressBar/ProgressBar';
|
|
55
|
+
export * from './components/progress-indicators/ProgressRing/ProgressRing';
|
|
51
56
|
export * from './components/Skiplink/Skiplink';
|
|
52
57
|
export * from './components/StatusIndicator/StatusIndicator';
|
|
53
58
|
export * from './components/Table/Table';
|
|
59
|
+
export * from './components/ThemeSwitcher/ThemeSwitcher';
|
|
54
60
|
export * from './components/Tooltip/Tooltip';
|
|
55
61
|
export * from './components/VideoEmbed/VideoEmbed';
|
|
56
62
|
export * from './libs/components/SiteOptionDisplay/SiteOptionDisplay';
|