@pantheon-systems/pds-toolkit-react 1.0.0-dev.173 → 1.0.0-dev.174
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/cards/CardSelectGroup/CardSelectGroup.d.ts +55 -37
- package/_dist/components/inputs/Textarea/Textarea.d.ts +101 -33
- package/_dist/css/component-css/pds-index.css +1 -1
- package/_dist/css/component-css/pds-textarea.css +1 -1
- package/_dist/css/pds-components.css +1 -1
- package/_dist/index.css +1 -1
- package/_dist/index.d.ts +4 -2
- package/_dist/index.js +2376 -2463
- package/_dist/index.js.map +1 -1
- package/package.json +1 -1
package/_dist/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ export { AvatarTileList } from './components/tiles/AvatarTileList/AvatarTileList
|
|
|
2
2
|
export { Breadcrumbs } from './components/Breadcrumbs/Breadcrumbs';
|
|
3
3
|
export { Button } from './components/buttons/Button/Button';
|
|
4
4
|
export { Card } from './components/cards/Card/Card';
|
|
5
|
-
export { CardSelectGroup } from './components/cards/CardSelectGroup/CardSelectGroup';
|
|
6
5
|
export { CTASlice } from './components/CTASlice/CTASlice';
|
|
7
6
|
export { DashboardSearch } from './components/navigation/DashboardSearch/DashboardSearch';
|
|
8
7
|
export { ExpansionPanel } from './components/expansion-panels/ExpansionPanel/ExpansionPanel';
|
|
@@ -31,7 +30,7 @@ export { StatsTileList } from './components/tiles/StatsTileList/StatsTileList';
|
|
|
31
30
|
export { Stepper } from './components/Stepper/Stepper';
|
|
32
31
|
export { Table } from './components/Table/Table';
|
|
33
32
|
export { TableOfContents } from './components/TableOfContents/TableOfContents';
|
|
34
|
-
export {
|
|
33
|
+
export { Tabs } from './components/Tabs/Tabs';
|
|
35
34
|
export { Tile } from './components/tiles/Tile/Tile';
|
|
36
35
|
export { TileGrid } from './components/tiles/TileGrid/TileGrid';
|
|
37
36
|
export { Toast } from './components/notifications/Toaster/Toast';
|
|
@@ -48,6 +47,7 @@ export * from './components/buttons/ButtonLink/ButtonLink';
|
|
|
48
47
|
export * from './components/buttons/IconButton/IconButton';
|
|
49
48
|
export * from './components/buttons/SegmentedButton/SegmentedButton';
|
|
50
49
|
export * from './components/Callout/Callout';
|
|
50
|
+
export * from './components/cards/CardSelectGroup/CardSelectGroup';
|
|
51
51
|
export * from './components/ComparisonList/ComparisonList';
|
|
52
52
|
export * from './components/CTALink/CTALink';
|
|
53
53
|
export * from './components/Icon/Icon';
|
|
@@ -58,6 +58,7 @@ export * from './components/inputs/Combobox/Combobox';
|
|
|
58
58
|
export * from './components/inputs/InputGroup/InputGroup';
|
|
59
59
|
export * from './components/inputs/Switch/Switch';
|
|
60
60
|
export * from './components/inputs/TextInput/TextInput';
|
|
61
|
+
export * from './components/inputs/Textarea/Textarea';
|
|
61
62
|
export * from './components/Modal/Modal';
|
|
62
63
|
export * from './components/navigation/DashboardNav/DashboardNav';
|
|
63
64
|
export * from './components/navigation/DropdownMenu/DropdownMenu';
|
|
@@ -80,6 +81,7 @@ export * from './components/SocialLinks/SocialLinks';
|
|
|
80
81
|
export * from './components/StatusIndicator/StatusIndicator';
|
|
81
82
|
export * from './components/Tabs/Tabs';
|
|
82
83
|
export * from './components/Tag/Tag';
|
|
84
|
+
export * from './components/inputs/Textarea/Textarea';
|
|
83
85
|
export * from './components/Tooltip/Tooltip';
|
|
84
86
|
export { FlexContainer } from './layouts/FlexContainer/FlexContainer';
|
|
85
87
|
export { SidebarLayout } from './layouts/SidebarLayout/SidebarLayout';
|