@goodhood-web/ui 1.2.0-development.10 → 1.2.0-development.2
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 +1 -2
- package/index.js +18 -31
- package/index.mjs +2507 -9189
- package/lib/BaseButton/BaseButton.d.ts +3 -4
- package/lib/Card/Card.types.d.ts +2 -2
- package/lib/Card/Card.utils.d.ts +3 -3
- package/lib/Card/CardBody/CardBody.types.d.ts +2 -2
- package/lib/Card/CardHeader/CardHeader.type.d.ts +3 -3
- package/lib/Fieldset/Fieldset.types.d.ts +2 -2
- package/lib/Form/Form.types.d.ts +2 -2
- package/lib/LabelPill/LabelPill.d.ts +1 -1
- package/lib/LabelPill/LabelPill.types.d.ts +0 -1
- package/lib/NavBar/NavItem/NavItem.types.d.ts +2 -2
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.d.ts +1 -1
- package/lib/PlaceholderThumbnail/PlaceholderThumbnail.type.d.ts +1 -1
- package/lib/Popup/Popup.types.d.ts +2 -2
- package/lib/TextButton/TextButton.types.d.ts +3 -3
- package/lib/TextInput/TextInput.types.d.ts +2 -2
- package/lib/Typography/Typography.types.d.ts +1 -1
- package/package.json +2 -2
- package/style.css +1 -1
- package/styles/_functions.scss +0 -10
- package/fonts/inter/Inter-Black.woff2 +0 -0
- package/fonts/inter/Inter-BlackItalic.woff2 +0 -0
- package/fonts/inter/Inter-Bold.woff2 +0 -0
- package/fonts/inter/Inter-BoldItalic.woff2 +0 -0
- package/fonts/inter/Inter-ExtraBold.woff2 +0 -0
- package/fonts/inter/Inter-ExtraBoldItalic.woff +0 -0
- package/fonts/inter/Inter-ExtraBoldItalic.woff2 +0 -0
- package/fonts/inter/Inter-ExtraLight.woff2 +0 -0
- package/fonts/inter/Inter-ExtraLightItalic.woff +0 -0
- package/fonts/inter/Inter-ExtraLightItalic.woff2 +0 -0
- package/fonts/inter/Inter-Italic.woff2 +0 -0
- package/fonts/inter/Inter-Light.woff2 +0 -0
- package/fonts/inter/Inter-LightItalic.woff2 +0 -0
- package/fonts/inter/Inter-Medium.woff2 +0 -0
- package/fonts/inter/Inter-MediumItalic.woff2 +0 -0
- package/fonts/inter/Inter-Regular.woff2 +0 -0
- package/fonts/inter/Inter-SemiBold.woff2 +0 -0
- package/fonts/inter/Inter-SemiBoldItalic.woff2 +0 -0
- package/fonts/inter/Inter-Thin.woff2 +0 -0
- package/fonts/inter/Inter-ThinItalic.woff2 +0 -0
- package/fonts/inter/Inter-italic.var.woff2 +0 -0
- package/fonts/inter/Inter-roman.var.woff2 +0 -0
- package/fonts/inter/Inter.var.woff2 +0 -0
- package/lib/Markdown/Markdown.d.ts +0 -6
- package/lib/Markdown/Markdown.types.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -10,7 +10,6 @@ import IconButton from './lib/IconButton/IconButton';
|
|
|
10
10
|
import Image from './lib/Image/Image';
|
|
11
11
|
import LabelPill from './lib/LabelPill/LabelPill';
|
|
12
12
|
import Legend from './lib/Legend/Legend';
|
|
13
|
-
import Markdown from './lib/Markdown/Markdown';
|
|
14
13
|
import MenuItem from './lib/MenuItem/MenuItem';
|
|
15
14
|
import NavBar from './lib/NavBar/NavBar';
|
|
16
15
|
import NavItem from './lib/NavBar/NavItem/NavItem';
|
|
@@ -24,4 +23,4 @@ import Thumbnail from './lib/Thumbnail/Thumbnail';
|
|
|
24
23
|
import Toggle from './lib/Toggle/Toggle';
|
|
25
24
|
import ToggleInput from './lib/ToggleInput/ToggleInput';
|
|
26
25
|
import Typography from './lib/Typography/Typography';
|
|
27
|
-
export { BaseButton, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, MenuItem, NavBar, NavItem, NotificationBubble, PlaceholderThumbnail, Popup, SmartLink, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography,
|
|
26
|
+
export { BaseButton, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, MenuItem, NavBar, NavItem, NotificationBubble, PlaceholderThumbnail, Popup, SmartLink, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, };
|