@goodhood-web/ui 1.12.0-development.29 → 1.12.0-development.30

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.
@@ -0,0 +1,3 @@
1
+ import { default as useCopyToClipboard } from './useCopyToClipboard';
2
+
3
+ export { useCopyToClipboard };
@@ -0,0 +1,2 @@
1
+ declare function useCopyToClipboard(): readonly [boolean, (text: string) => void];
2
+ export default useCopyToClipboard;
package/index.d.ts CHANGED
@@ -9,6 +9,7 @@ import { default as Button } from './lib/Atoms/Buttons/Button/Button';
9
9
  import { default as ButtonPrimary } from './lib/Atoms/Buttons/ButtonPrimary/ButtonPrimary';
10
10
  import { default as ButtonSecondary } from './lib/Atoms/Buttons/ButtonSecondary/ButtonSecondary';
11
11
  import { default as ButtonTertiary } from './lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary';
12
+ import { default as CopyLinkButton } from './lib/Atoms/Buttons/CopyLinkButton/CopyLinkButton';
12
13
  import { default as IconButton } from './lib/Atoms/Buttons/IconButton/IconButton';
13
14
  import { default as TextButton } from './lib/Atoms/Buttons/TextButton/TextButton';
14
15
  import { default as FeedTile } from './lib/Atoms/Buttons/Tiles/FeedTile/FeedTile';
@@ -62,4 +63,4 @@ import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
62
63
  import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
63
64
  import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
64
65
 
65
- export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText, Bookmark, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, Divider, DropdownHeader, DropdownOption, DropdownOptionsCluster, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, LabelPill, Legend, Loader, Markdown, MarketplaceItemCardless, MenuItem, MenuTile, Modal, NavBar, NavItem, NavigationTab, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Typography, UserAvatar, };
66
+ export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText, Bookmark, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CopyLinkButton, CardBody, CardHeader, CheckboxInput, Divider, DropdownHeader, DropdownOption, DropdownOptionsCluster, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, LabelPill, Legend, Loader, Markdown, MarketplaceItemCardless, MenuItem, MenuTile, Modal, NavBar, NavItem, NavigationTab, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Typography, UserAvatar, };