@goodhood-web/ui 3.0.0-development.1 → 3.0.0-development.3
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/index.d.ts +2 -1
- package/index.js +29 -29
- package/index.mjs +1580 -1573
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.d.ts +3 -0
- package/lib/Atoms/Content/GroupAvatar/GroupAvatar.types.d.ts +10 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -17,6 +17,7 @@ import { default as TextButton } from './lib/Atoms/Buttons/TextButton/TextButton
|
|
|
17
17
|
import { default as FeedTile } from './lib/Atoms/Buttons/Tiles/FeedTile/FeedTile';
|
|
18
18
|
import { default as MenuTile } from './lib/Atoms/Buttons/Tiles/MenuTile/MenuTile';
|
|
19
19
|
import { default as BodyText } from './lib/Atoms/Content/BodyText/BodyText';
|
|
20
|
+
import { default as GroupAvatar } from './lib/Atoms/Content/GroupAvatar/GroupAvatar';
|
|
20
21
|
import { default as PlaceholderThumbnail } from './lib/Atoms/Content/PlaceholderThumbnail/PlaceholderThumbnail';
|
|
21
22
|
import { default as Thumbnail } from './lib/Atoms/Content/Thumbnail/Thumbnail';
|
|
22
23
|
import { default as ThumbnailWithLabel } from './lib/Atoms/Content/ThumbnailWithLabel/ThumbnailWithLabel';
|
|
@@ -67,4 +68,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
|
67
68
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
68
69
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
69
70
|
export * from './lib/Base/Typography';
|
|
70
|
-
export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, CopyLinkButton, Divider, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, LabelPill, Legend, ListItem, ListItemCluster, Loader, Markdown, MenuItem, MenuTile, Modal, NavBar, NavItem, NavigationTab, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, UserAvatar, UserAvatarCluster, useCopyToClipboard, };
|
|
71
|
+
export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, CopyLinkButton, Divider, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, GroupAvatar, Icon, IconButton, Image, InputFieldSpecial, LabelPill, Legend, ListItem, ListItemCluster, Loader, Markdown, MenuItem, MenuTile, Modal, NavBar, NavItem, NavigationTab, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, UserAvatar, UserAvatarCluster, useCopyToClipboard, };
|