@goodhood-web/ui 3.3.0-development.27 → 3.3.0-development.29
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 +4544 -4396
- package/lib/Atoms/Badges/Sticker/Sticker.d.ts +1 -1
- package/lib/Atoms/Badges/Sticker/Sticker.types.d.ts +9 -4
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.d.ts +3 -0
- package/lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO.types.d.ts +7 -0
- package/lib/Atoms/Buttons/TextButton/TextButton.d.ts +1 -1
- package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +2 -1
- package/lib/Molecules/Notices/EmptyState/EmptyState.types.d.ts +4 -1
- package/lib/Organisms/Modals/BottomSheet/BottomSheet.d.ts +1 -1
- package/lib/Organisms/Modals/BottomSheet/BottomSheet.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { default as LabelPill } from './lib/Atoms/Badges/LabelPill/LabelPill';
|
|
|
9
9
|
import { default as Sticker } from './lib/Atoms/Badges/Sticker/Sticker';
|
|
10
10
|
import { default as Tooltip } from './lib/Atoms/Badges/Tooltip/Tooltip';
|
|
11
11
|
import { default as Button } from './lib/Atoms/Buttons/Button/Button';
|
|
12
|
+
import { default as ButtonGoogleSSO } from './lib/Atoms/Buttons/ButtonGoogleSSO/ButtonGoogleSSO';
|
|
12
13
|
import { default as ButtonPrimary } from './lib/Atoms/Buttons/ButtonPrimary/ButtonPrimary';
|
|
13
14
|
import { default as ButtonSecondary } from './lib/Atoms/Buttons/ButtonSecondary/ButtonSecondary';
|
|
14
15
|
import { default as ButtonTertiary } from './lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary';
|
|
@@ -83,4 +84,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
|
83
84
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
84
85
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
85
86
|
export * from './lib/Base/Typography';
|
|
86
|
-
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselNavigation, CarouselIndicator, CheckboxInput, CopyLinkButton, ContentCreatorTile, DateTimeInput, Divider, DropdownCard, DropdownHeader, DropdownItem, PopupItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputFieldSpecial, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, LabelPill, Legend, ListItem, ListItemCluster, Loader, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, };
|
|
87
|
+
export { Accordion, AccordionItem, ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonGoogleSSO, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CarouselNavigation, CarouselIndicator, CheckboxInput, CopyLinkButton, ContentCreatorTile, DateTimeInput, Divider, DropdownCard, DropdownHeader, DropdownItem, PopupItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, FlagIcon, Form, GalleryPlaceholder, Icon, IconButton, Image, InputFieldSpecial, LogoBadgeCompact, LogoBadgeSpacious, LogoTextHorizontal, LogoTextVertical, LabelPill, Legend, ListItem, ListItemCluster, Loader, Markdown, MenuItem, MenuTile, Modal, NavBar, NavigationTab, NavItem, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, PoiAvatar, Popup, ProgressBar, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, SocialIcon, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, useCopyToClipboard, UserAvatar, UserAvatarCluster, };
|