@goodhood-web/ui 3.0.1-development.1 → 3.1.0
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 +180 -180
- package/index.mjs +13470 -13845
- package/lib/Atoms/Dropdowns/DropdownCard/DropdownCard.types.d.ts +2 -2
- package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +1 -1
- package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.types.d.ts +5 -3
- package/lib/Atoms/Dropdowns/PopupItem/PopupItem.d.ts +3 -0
- package/lib/Atoms/Dropdowns/PopupItem/PopupItem.types.d.ts +7 -0
- package/lib/Atoms/Dropdowns/Select/Select.d.ts +1 -1
- package/lib/Atoms/Dropdowns/Select/Select.example.d.ts +3 -1
- package/lib/Atoms/Dropdowns/Select/Select.types.d.ts +4 -10
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { default as Divider } from './lib/Atoms/Divider/Divider';
|
|
|
29
29
|
import { default as DropdownCard } from './lib/Atoms/Dropdowns/DropdownCard/DropdownCard';
|
|
30
30
|
import { default as DropdownHeader } from './lib/Atoms/Dropdowns/DropdownHeader/DropdownHeader';
|
|
31
31
|
import { default as DropdownItem } from './lib/Atoms/Dropdowns/DropdownItem/DropdownItem';
|
|
32
|
+
import { default as PopupItem } from './lib/Atoms/Dropdowns/PopupItem/PopupItem';
|
|
32
33
|
import { default as Select } from './lib/Atoms/Dropdowns/Select/Select';
|
|
33
34
|
import { default as Image } from './lib/Atoms/Image/Image';
|
|
34
35
|
import { default as CheckboxInput } from './lib/Atoms/Inputs/CheckboxInput/CheckboxInput';
|
|
@@ -71,4 +72,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
|
71
72
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
72
73
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
73
74
|
export * from './lib/Base/Typography';
|
|
74
|
-
export { ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, CopyLinkButton, DateTimeInput, Divider, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, 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, };
|
|
75
|
+
export { ActionBar, AvatarWithPlaceholder, Badge, BadgeIcon, BadgeLabel, BodyText, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, CopyLinkButton, DateTimeInput, Divider, DropdownCard, DropdownHeader, DropdownItem, PopupItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, 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, };
|