@goodhood-web/ui 4.3.0 → 4.4.0-development.2
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 +36 -36
- package/index.mjs +4421 -4385
- package/lib/Atoms/Buttons/ButtonPrimary/ButtonPrimary.types.d.ts +1 -1
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/lib/Molecules/PostCard/PostCard.d.ts +4 -0
- package/lib/Molecules/PostCard/PostCard.types.d.ts +9 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ import { default as NavItem } from './lib/Molecules/Navigation/NavBar/NavItem/Na
|
|
|
76
76
|
import { default as EmptyState } from './lib/Molecules/Notices/EmptyState/EmptyState';
|
|
77
77
|
import { default as Notice } from './lib/Molecules/Notices/Notice/Notice';
|
|
78
78
|
import { default as Snackbar } from './lib/Molecules/Notices/Snackbar/Snackbar';
|
|
79
|
+
import { default as PostCard } from './lib/Molecules/PostCard/PostCard';
|
|
79
80
|
import { default as RadioButtonCluster } from './lib/Molecules/Selections/RadioButtonCluster/RadioButtonCluster';
|
|
80
81
|
import { default as SelectablePillGroup } from './lib/Molecules/Selections/SelectablePillGroup/SelectablePillGroup';
|
|
81
82
|
import { default as SwitcherToggle } from './lib/Molecules/Selections/SwitcherToggle/SwitcherToggle';
|
|
@@ -89,4 +90,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
|
89
90
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
90
91
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
91
92
|
export * from './lib/Base/Typography';
|
|
92
|
-
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonGoogleSSO, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselIndicator, CarouselNavigation, CheckboxInput, ContentCreatorTile, CopyLinkButton, DateTimeInput, Divider, DropdownButton, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputDetails, InputFieldSpecial, LabelPill, Legend, List, ListItem, ListItemCluster, Loader, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Neighbour, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, PopupItem, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, VisualContent, };
|
|
93
|
+
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonGoogleSSO, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselIndicator, CarouselNavigation, CheckboxInput, ContentCreatorTile, CopyLinkButton, DateTimeInput, Divider, DropdownButton, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputDetails, InputFieldSpecial, LabelPill, Legend, List, ListItem, ListItemCluster, Loader, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Neighbour, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, PopupItem, PostCard, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, VisualContent, };
|