@goodhood-web/ui 1.8.0-development.1 → 1.8.0-development.3
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 +4 -2
- package/index.js +35 -35
- package/index.mjs +2464 -2428
- package/lib/FeedItemCategory/FeedItemCategory.d.ts +4 -0
- package/lib/FeedItemCategory/FeedItemCategory.types.d.ts +5 -0
- package/lib/Thumbnail/Thumbnail.d.ts +1 -1
- package/lib/Thumbnail/Thumbnail.type.d.ts +1 -0
- package/lib/ThumbnailWrapper/ThumbnailWrapper.d.ts +4 -0
- package/lib/ThumbnailWrapper/ThumbnailWrapper.types.d.ts +8 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { default as CardBody } from './lib/Card/CardBody/CardBody';
|
|
|
10
10
|
import { default as CardHeader } from './lib/Card/CardHeader/CardHeader';
|
|
11
11
|
import { default as Divider } from './lib/Divider/Divider';
|
|
12
12
|
import { default as EmptyState } from './lib/EmptyState/EmptyState';
|
|
13
|
+
import { default as FeedItemCategory } from './lib/FeedItemCategory/FeedItemCategory';
|
|
13
14
|
import { default as Fieldset } from './lib/Fieldset/Fieldset';
|
|
14
15
|
import { default as Form } from './lib/Form/Form';
|
|
15
16
|
import { default as Icon } from './lib/Icon/Icon';
|
|
@@ -30,17 +31,18 @@ import { default as PlaceholderThumbnail } from './lib/PlaceholderThumbnail/Plac
|
|
|
30
31
|
import { default as Popup } from './lib/Popup/Popup';
|
|
31
32
|
import { default as RadioButton } from './lib/RadioButton/RadioButton';
|
|
32
33
|
import { default as RadioButtonCluster } from './lib/RadioButtonCluster/RadioButtonCluster';
|
|
33
|
-
import { default as Snackbar } from './lib/Snackbar/Snackbar';
|
|
34
34
|
import { default as Select } from './lib/Select/Select';
|
|
35
35
|
import { default as Sheet } from './lib/Sheet/Sheet';
|
|
36
|
+
import { default as Snackbar } from './lib/Snackbar/Snackbar';
|
|
36
37
|
import { default as Sticker } from './lib/Sticker/Sticker';
|
|
37
38
|
import { default as TextArea } from './lib/TextArea/TextArea';
|
|
38
39
|
import { default as TextButton } from './lib/TextButton/TextButton';
|
|
39
40
|
import { default as TextInput } from './lib/TextInput/TextInput';
|
|
40
41
|
import { default as Thumbnail } from './lib/Thumbnail/Thumbnail';
|
|
42
|
+
import { default as ThumbnailWrapper } from './lib/ThumbnailWrapper/ThumbnailWrapper';
|
|
41
43
|
import { default as Tile } from './lib/Tile/Tile';
|
|
42
44
|
import { default as Toggle } from './lib/Toggle/Toggle';
|
|
43
45
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
44
46
|
import { default as Typography } from './lib/Typography/Typography';
|
|
45
47
|
|
|
46
|
-
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, EmptyState, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, Sheet, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Snackbar, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, };
|
|
48
|
+
export { Accordion, AccordionItem, Badge, BadgeIcon, BadgeLabel, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, EmptyState, FeedItemCategory, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, Sheet, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Snackbar, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, ThumbnailWrapper, };
|