@pantheon-systems/pds-toolkit-react 2.0.0-alpha.15 → 2.0.0-alpha.16
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/ComparisonList/ComparisonList.d.ts +6 -1
- package/dist/components/Tabs/Tabs.d.ts +6 -1
- package/dist/components/icons/Icon/Icon.d.ts +2 -2
- package/dist/components/icons/PaymentIcon/PaymentIcon.d.ts +7 -3
- package/dist/components/icons/PlatformIcon/PlatformIcon.d.ts +6 -6
- package/dist/components/navigation/TabMenu/TabMenu.d.ts +6 -1
- package/dist/components/{Pagination → pagination/Pagination}/Pagination.d.ts +7 -2
- package/dist/components/pagination/PaginationCompact/PaginationCompact.d.ts +49 -0
- package/dist/components/pagination/PaginationMini/PaginationMini.d.ts +55 -0
- package/dist/css/component-css/pds-card-select-group.css +1 -1
- package/dist/css/component-css/pds-combobox.css +1 -1
- package/dist/css/component-css/pds-comparison-list.css +1 -1
- package/dist/css/component-css/pds-index.css +7 -5
- package/dist/css/component-css/pds-pagination-compact.css +1 -0
- package/dist/css/component-css/pds-pagination-mini.css +3 -0
- package/dist/css/component-css/pds-pagination.css +1 -1
- package/dist/css/component-css/pds-payment-icon.css +1 -1
- package/dist/css/component-css/pds-platform-icon.css +1 -1
- package/dist/css/component-css/pds-radio-group.css +1 -1
- package/dist/css/component-css/pds-select.css +1 -1
- package/dist/css/component-css/pds-tab-menu.css +2 -2
- package/dist/css/component-css/pds-tabs.css +1 -1
- package/dist/css/pds-components.css +7 -5
- package/dist/css/pds-core.css +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.js +4406 -3292
- package/dist/index.js.map +1 -1
- package/dist/index.source.d.ts +3 -1
- package/package.json +1 -1
- /package/dist/components/{Pagination → pagination/Pagination}/usePagination.d.ts +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -14,12 +14,16 @@ export * from './components/buttons/SSOButton/SSOButton';
|
|
|
14
14
|
export * from './components/buttons/UtilityButton/UtilityButton';
|
|
15
15
|
export * from './components/Callout/Callout';
|
|
16
16
|
export * from './components/cards/Card/Card';
|
|
17
|
+
export * from './components/cards/CardSelectGroup/CardSelectGroup';
|
|
17
18
|
export * from './components/charts/BarChart/BarChart';
|
|
18
19
|
export * from './components/charts/LineChart/LineChart';
|
|
19
20
|
export * from './components/charts/shared/types';
|
|
21
|
+
export * from './components/ComparisonList/ComparisonList';
|
|
20
22
|
export * from './components/Drawer/Drawer';
|
|
21
23
|
export * from './components/Dropdown/Dropdown';
|
|
22
24
|
export * from './components/icons/Icon/Icon';
|
|
25
|
+
export * from './components/icons/PaymentIcon/PaymentIcon';
|
|
26
|
+
export * from './components/icons/PlatformIcon/PlatformIcon';
|
|
23
27
|
export * from './components/inputs/Checkbox/Checkbox';
|
|
24
28
|
export * from './components/inputs/CheckboxFieldset/CheckboxFieldset';
|
|
25
29
|
export * from './components/inputs/CheckboxGroup/CheckboxGroup';
|
|
@@ -41,6 +45,7 @@ export * from './components/navigation/DropdownMenu/DropdownMenu';
|
|
|
41
45
|
export * from './components/navigation/SideNavGlobal/SideNavGlobal';
|
|
42
46
|
export * from './components/navigation/SideNavGlobal/SideNavGlobalItem';
|
|
43
47
|
export * from './components/navigation/SiteMenu/SiteMenu';
|
|
48
|
+
export * from './components/navigation/TabMenu/TabMenu';
|
|
44
49
|
export * from './components/navigation/UserMenu/UserMenu';
|
|
45
50
|
export * from './components/navigation/WorkspaceSelector/WorkspaceSelector';
|
|
46
51
|
export * from './components/notifications/Banner/Banner';
|
|
@@ -49,6 +54,9 @@ export * from './components/notifications/SectionMessage/SectionMessage';
|
|
|
49
54
|
export * from './components/notifications/Toaster/Toast';
|
|
50
55
|
export * from './components/notifications/Toaster/Toaster';
|
|
51
56
|
export * from './components/notifications/Toaster/useToast';
|
|
57
|
+
export * from './components/pagination/Pagination/Pagination';
|
|
58
|
+
export * from './components/pagination/PaginationCompact/PaginationCompact';
|
|
59
|
+
export * from './components/pagination/PaginationMini/PaginationMini';
|
|
52
60
|
export * from './components/panels/ExpansionPanel/ExpansionPanel';
|
|
53
61
|
export * from './components/panels/ExpansionPanelGroup/ExpansionPanelGroup';
|
|
54
62
|
export * from './components/panels/Panel/Panel';
|
|
@@ -61,6 +69,7 @@ export * from './components/progress-indicators/ProgressRing/ProgressRing';
|
|
|
61
69
|
export * from './components/Skiplink/Skiplink';
|
|
62
70
|
export * from './components/StatusIndicator/StatusIndicator';
|
|
63
71
|
export * from './components/Table/Table';
|
|
72
|
+
export * from './components/Tabs/Tabs';
|
|
64
73
|
export * from './components/ThemeSwitcher/ThemeSwitcher';
|
|
65
74
|
export * from './components/Tooltip/Tooltip';
|
|
66
75
|
export * from './libs/components/SiteOptionDisplay/SiteOptionDisplay';
|