@goodhood-web/ui 1.2.0 → 1.4.0-development.1
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 +8 -2
- package/index.js +63 -18
- package/index.mjs +5090 -2821
- 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 +9 -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/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/Loader/Loader.d.ts +2 -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/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
- package/utils/index.d.ts +3 -0
- package/lib/Card/Card.utils.d.ts +0 -3
- package/lib/SmartLink/SmartLink.d.ts +0 -3
- package/lib/SmartLink/SmartLink.types.d.ts +0 -9
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { BaseButtonProps } from '../BaseButton/BaseButton';
|
|
3
|
-
export interface SmartLinkProps extends Omit<BaseButtonProps, 'type' | 'role' | 'onClick'> {
|
|
4
|
-
children: ReactNode;
|
|
5
|
-
href?: string;
|
|
6
|
-
onClick?: () => void;
|
|
7
|
-
rel?: string;
|
|
8
|
-
target?: string;
|
|
9
|
-
}
|