@goodhood-web/ui 1.8.0-development.19 → 1.8.0-development.20
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 +21 -21
- package/index.mjs +432 -432
- package/lib/MenuTile/MenuTile.d.ts +4 -0
- package/lib/{Tile/Tile.type.d.ts → MenuTile/MenuTile.type.d.ts} +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/lib/Tile/Tile.d.ts +0 -4
package/index.d.ts
CHANGED
|
@@ -25,6 +25,7 @@ import { default as Legend } from './lib/Legend/Legend';
|
|
|
25
25
|
import { default as Loader } from './lib/Loader/Loader';
|
|
26
26
|
import { default as Markdown } from './lib/Markdown/Markdown';
|
|
27
27
|
import { default as MenuItem } from './lib/MenuItem/MenuItem';
|
|
28
|
+
import { default as MenuTile } from './lib/MenuTile/MenuTile';
|
|
28
29
|
import { default as Modal } from './lib/Modal/Modal';
|
|
29
30
|
import { default as NavBar } from './lib/NavBar/NavBar';
|
|
30
31
|
import { default as NavItem } from './lib/NavBar/NavItem/NavItem';
|
|
@@ -45,9 +46,8 @@ import { default as TextInput } from './lib/TextInput/TextInput';
|
|
|
45
46
|
import { default as Thumbnail } from './lib/Thumbnail/Thumbnail';
|
|
46
47
|
import { default as ThumbnailWithLabel } from './lib/ThumbnailWithLabel/ThumbnailWithLabel';
|
|
47
48
|
import { default as ThumbnailWrapper } from './lib/ThumbnailWrapper/ThumbnailWrapper';
|
|
48
|
-
import { default as Tile } from './lib/Tile/Tile';
|
|
49
49
|
import { default as Toggle } from './lib/Toggle/Toggle';
|
|
50
50
|
import { default as ToggleInput } from './lib/ToggleInput/ToggleInput';
|
|
51
51
|
import { default as Typography } from './lib/Typography/Typography';
|
|
52
52
|
|
|
53
|
-
export { BodyText, ActionBar, FeedTile, Badge, BadgeIcon, BadgeLabel, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, Divider, EmptyState, FeedItemCategory, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sheet, Snackbar, Sticker, TextArea, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper,
|
|
53
|
+
export { BodyText, ActionBar, FeedTile, Badge, BadgeIcon, BadgeLabel, BottomSheet, Button, ButtonPrimary, ButtonSecondary, ButtonTertiary, Card, CardBody, CardHeader, Divider, EmptyState, FeedItemCategory, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, Loader, Markdown, MenuItem, Modal, NavBar, NavItem, Notice, NotificationBubble, NotificationListItem, PlaceholderThumbnail, Popup, RadioButton, RadioButtonCluster, Select, Sheet, Snackbar, Sticker, TextArea, TextButton, TextInput, Thumbnail, ThumbnailWithLabel, ThumbnailWrapper, MenuTile, Toggle, ToggleInput, Typography, };
|