@goodhood-web/ui 2.0.0-development.1 → 2.0.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 -2
- package/index.js +2 -2
- package/index.mjs +1015 -1008
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.d.ts +2 -0
- package/lib/Atoms/Buttons/OverlayButton/OverlayButton.types.d.ts +7 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/Atoms/Buttons/Bookmark/Bookmark.d.ts +0 -2
- package/lib/Atoms/Buttons/Bookmark/Bookmark.types.d.ts +0 -4
package/index.d.ts
CHANGED
|
@@ -5,13 +5,13 @@ import { default as FeedItemCategory } from './lib/Atoms/Badges/FeedItemCategory
|
|
|
5
5
|
import { default as LabelPill } from './lib/Atoms/Badges/LabelPill/LabelPill';
|
|
6
6
|
import { default as Sticker } from './lib/Atoms/Badges/Sticker/Sticker';
|
|
7
7
|
import { default as Tooltip } from './lib/Atoms/Badges/Tooltip/Tooltip';
|
|
8
|
-
import { default as Bookmark } from './lib/Atoms/Buttons/Bookmark/Bookmark';
|
|
9
8
|
import { default as Button } from './lib/Atoms/Buttons/Button/Button';
|
|
10
9
|
import { default as ButtonPrimary } from './lib/Atoms/Buttons/ButtonPrimary/ButtonPrimary';
|
|
11
10
|
import { default as ButtonSecondary } from './lib/Atoms/Buttons/ButtonSecondary/ButtonSecondary';
|
|
12
11
|
import { default as ButtonTertiary } from './lib/Atoms/Buttons/ButtonTertiary/ButtonTertiary';
|
|
13
12
|
import { default as CopyLinkButton } from './lib/Atoms/Buttons/CopyLinkButton/CopyLinkButton';
|
|
14
13
|
import { default as IconButton } from './lib/Atoms/Buttons/IconButton/IconButton';
|
|
14
|
+
import { default as OverlayButton } from './lib/Atoms/Buttons/OverlayButton/OverlayButton';
|
|
15
15
|
import { default as TextButton } from './lib/Atoms/Buttons/TextButton/TextButton';
|
|
16
16
|
import { default as FeedTile } from './lib/Atoms/Buttons/Tiles/FeedTile/FeedTile';
|
|
17
17
|
import { default as MenuTile } from './lib/Atoms/Buttons/Tiles/MenuTile/MenuTile';
|
|
@@ -63,4 +63,4 @@ import { default as BottomSheet } from './lib/Organisms/Modals/BottomSheet/Botto
|
|
|
63
63
|
import { default as Modal } from './lib/Organisms/Modals/Modal/Modal';
|
|
64
64
|
import { default as Popup } from './lib/Organisms/Modals/Popup/Popup';
|
|
65
65
|
import { default as Sheet } from './lib/Organisms/Modals/Sheet/Sheet';
|
|
66
|
-
export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText,
|
|
66
|
+
export { ActionBar, Badge, BadgeIcon, BadgeLabel, BodyText, OverlayButton, 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, Tooltip, Typography, UserAvatar, };
|