@goodhood-web/ui 2.1.0-development.10 → 2.1.0-development.11
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 +3 -3
- package/index.js +36 -36
- package/index.mjs +738 -722
- package/lib/Atoms/Dropdowns/DropdownItem/DropdownItem.d.ts +3 -0
- package/lib/Atoms/Dropdowns/{DropdownOption/DropdownOption.types.d.ts → DropdownItem/DropdownItem.types.d.ts} +1 -1
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownCard.d.ts +3 -0
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownCard.types.d.ts +9 -0
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/Atoms/Dropdowns/DropdownOption/DropdownOption.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.d.ts +0 -3
- package/lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownOptionsCluster.types.d.ts +0 -4
package/index.d.ts
CHANGED
|
@@ -23,8 +23,8 @@ import { default as ThumbnailWrapper } from './lib/Atoms/Content/ThumbnailWrappe
|
|
|
23
23
|
import { default as UserAvatar } from './lib/Atoms/Content/UserAvatar/UserAvatar';
|
|
24
24
|
import { default as Divider } from './lib/Atoms/Divider/Divider';
|
|
25
25
|
import { default as DropdownHeader } from './lib/Atoms/Dropdowns/DropdownHeader/DropdownHeader';
|
|
26
|
-
import { default as
|
|
27
|
-
import { default as
|
|
26
|
+
import { default as DropdownItem } from './lib/Atoms/Dropdowns/DropdownItem/DropdownItem';
|
|
27
|
+
import { default as DropdownCard } from './lib/Atoms/Dropdowns/DropdownOptionsCluster/DropdownCard';
|
|
28
28
|
import { default as Select } from './lib/Atoms/Dropdowns/Select/Select';
|
|
29
29
|
import { default as Image } from './lib/Atoms/Image/Image';
|
|
30
30
|
import { default as CheckboxInput } from './lib/Atoms/Inputs/CheckboxInput/CheckboxInput';
|
|
@@ -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, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, CheckboxInput, CopyLinkButton, Divider, DropdownCard, DropdownHeader, DropdownItem, EmptyState, FeedItemCategory, FeedTile, Fieldset, Form, Icon, IconButton, Image, InputFieldSpecial, LabelPill, Legend, Loader, Markdown, MarketplaceItemCardless, MenuItem, MenuTile, Modal, NavBar, NavItem, NavigationTab, Notice, NotificationBubble, NotificationListItem, OverlayButton, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, SelectablePill, SelectablePillGroup, Sheet, Snackbar, Sticker, SwitcherToggle, TextAreaInput, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, Toggle, ToggleInput, Tooltip, Typography, UserAvatar, };
|