@goodhood-web/ui 1.6.0-development.50 → 1.6.0-development.51
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 +57 -57
- package/index.mjs +4798 -4032
- package/lib/Snackbar/Snackbar.d.ts +4 -0
- package/lib/Snackbar/Snackbar.types.d.ts +14 -0
- package/package.json +1 -1
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -29,6 +29,7 @@ import { default as PlaceholderThumbnail } from './lib/PlaceholderThumbnail/Plac
|
|
|
29
29
|
import { default as Popup } from './lib/Popup/Popup';
|
|
30
30
|
import { default as RadioButton } from './lib/RadioButton/RadioButton';
|
|
31
31
|
import { default as RadioButtonCluster } from './lib/RadioButtonCluster/RadioButtonCluster';
|
|
32
|
+
import { default as Snackbar } from './lib/Snackbar/Snackbar';
|
|
32
33
|
import { default as Select } from './lib/Select/Select';
|
|
33
34
|
import { default as Sheet } from './lib/Sheet/Sheet';
|
|
34
35
|
import { default as Sticker } from './lib/Sticker/Sticker';
|
|
@@ -41,4 +42,4 @@ import { default as Toggle } from './lib/Toggle/Toggle';
|
|
|
41
42
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
42
43
|
import { default as Typography } from './lib/Typography/Typography';
|
|
43
44
|
|
|
44
|
-
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, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, };
|
|
45
|
+
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, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Snackbar, Select, Sticker, TextArea, TextButton, TextInput, Thumbnail, Tile, Toggle, ToggleInput, Typography, };
|