@goodhood-web/ui 1.2.0 → 1.3.0
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/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/index.d.ts +6 -1
- package/index.js +62 -18
- package/index.mjs +4311 -2695
- package/lib/Accordion/Accordion.d.ts +3 -0
- package/lib/Accordion/Accordion.types.d.ts +7 -0
- package/lib/Accordion/AccordionItem.d.ts +3 -0
- package/lib/Accordion/AccordionItem.types.d.ts +8 -0
- package/lib/BaseButton/BaseButton.d.ts +7 -3
- package/lib/Button/Button.d.ts +3 -0
- package/lib/Button/Button.types.d.ts +23 -0
- package/lib/ButtonPrimary/ButtonPrimary.d.ts +3 -0
- package/lib/ButtonPrimary/ButtonPrimary.types.d.ts +10 -0
- 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/IconButton/IconButton.d.ts +1 -1
- package/lib/IconButton/IconButton.types.d.ts +6 -3
- package/lib/LabelPill/LabelPill.d.ts +1 -1
- package/lib/LabelPill/LabelPill.types.d.ts +1 -0
- package/lib/Markdown/Markdown.d.ts +7 -0
- package/lib/Markdown/Markdown.types.d.ts +0 -0
- package/lib/Modal/Backdrop/Backdrop.d.ts +4 -0
- package/lib/Modal/Backdrop/Backdrop.types.d.ts +3 -0
- package/lib/Modal/Modal.d.ts +3 -0
- package/lib/Modal/Modal.types.d.ts +12 -0
- 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.d.ts +1 -1
- package/lib/Popup/Popup.types.d.ts +4 -2
- package/lib/SmartLink/SmartLink.d.ts +4 -1
- package/lib/TextButton/TextButton.d.ts +1 -1
- package/lib/TextButton/TextButton.types.d.ts +6 -5
- 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 +13 -3
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,8 @@
|
|
|
1
|
+
import Accordion from './lib/Accordion/Accordion';
|
|
2
|
+
import AccordionItem from './lib/Accordion/AccordionItem';
|
|
1
3
|
import BaseButton from './lib/BaseButton/BaseButton';
|
|
4
|
+
import Button from './lib/Button/Button';
|
|
5
|
+
import ButtonPrimary from './lib/ButtonPrimary/ButtonPrimary';
|
|
2
6
|
import Card from './lib/Card/Card';
|
|
3
7
|
import CardBody from './lib/Card/CardBody/CardBody';
|
|
4
8
|
import CardHeader from './lib/Card/CardHeader/CardHeader';
|
|
@@ -10,6 +14,7 @@ import IconButton from './lib/IconButton/IconButton';
|
|
|
10
14
|
import Image from './lib/Image/Image';
|
|
11
15
|
import LabelPill from './lib/LabelPill/LabelPill';
|
|
12
16
|
import Legend from './lib/Legend/Legend';
|
|
17
|
+
import Markdown from './lib/Markdown/Markdown';
|
|
13
18
|
import MenuItem from './lib/MenuItem/MenuItem';
|
|
14
19
|
import NavBar from './lib/NavBar/NavBar';
|
|
15
20
|
import NavItem from './lib/NavBar/NavItem/NavItem';
|
|
@@ -23,4 +28,4 @@ import Thumbnail from './lib/Thumbnail/Thumbnail';
|
|
|
23
28
|
import Toggle from './lib/Toggle/Toggle';
|
|
24
29
|
import ToggleInput from './lib/ToggleInput/ToggleInput';
|
|
25
30
|
import Typography from './lib/Typography/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, };
|
|
31
|
+
export { AccordionItem, Accordion, BaseButton, Button, ButtonPrimary, Card, CardBody, CardHeader, Divider, Fieldset, Form, Icon, IconButton, Image, LabelPill, Legend, MenuItem, NavBar, NavItem, NotificationBubble, PlaceholderThumbnail, Popup, SmartLink, TextButton, TextInput, Thumbnail, Toggle, ToggleInput, Typography, Markdown, };
|