@goodhood-web/ui 1.1.0-development.23 → 1.1.0-development.25
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 +16 -16
- package/index.mjs +798 -767
- package/lib/NavBar/NavBar.d.ts +4 -0
- package/lib/NavBar/NavBar.types.d.ts +6 -0
- package/lib/NavBar/NavItem/NavItem.d.ts +4 -0
- package/lib/NavBar/NavItem/NavItem.types.d.ts +10 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +3 -0
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +7 -0
- package/package.json +2 -2
- package/style.css +1 -1
package/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import LabelPill from './lib/LabelPill/LabelPill';
|
|
|
13
13
|
import Legend from './lib/Legend/Legend';
|
|
14
14
|
import MenuItem from './lib/MenuItem/MenuItem';
|
|
15
15
|
import NotificationBubble from './lib/NotificationBubble/NotificationBubble';
|
|
16
|
+
import PlaceholderThumbnail from './lib/PlaceholderThumbnail/PlaceholderThumbnail';
|
|
16
17
|
import SmartLink from './lib/SmartLink/SmartLink';
|
|
17
18
|
import TextButton from './lib/TextButton/TextButton';
|
|
18
19
|
import TextInput from './lib/TextInput/TextInput';
|
|
@@ -20,4 +21,4 @@ import Thumbnail from './lib/Thumbnail/Thumbnail';
|
|
|
20
21
|
import Toggle from './lib/Toggle/Toggle';
|
|
21
22
|
import ToggleInput from './lib/ToggleInput/ToggleInput';
|
|
22
23
|
import Typography from './lib/Typography/Typography';
|
|
23
|
-
export { BaseButton, Card, CardBody, CardHeader, ContentCreatorButton, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, MenuItem, NotificationBubble, SmartLink, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, };
|
|
24
|
+
export { BaseButton, Card, CardBody, CardHeader, ContentCreatorButton, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, MenuItem, NotificationBubble, PlaceholderThumbnail, SmartLink, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, };
|