@goodhood-web/ui 4.5.0-development.9 → 4.5.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/index.js +38 -38
- package/index.mjs +2824 -2816
- package/lib/Atoms/Buttons/TextButton/TextButton.types.d.ts +1 -1
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/24x24/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/lib/Base/Typography/Typography.types.d.ts +1 -1
- package/package.json +1 -1
- package/style.css +1 -1
- package/styles/_design-tokens-landing.scss +299 -23
|
@@ -4,7 +4,7 @@ import { NotificationBubbleProps } from '../../NotificationBubble/NotificationBu
|
|
|
4
4
|
import { ButtonProps } from '../Button/Button.types';
|
|
5
5
|
export interface TextButtonProps extends Omit<ButtonProps, 'role' | 'className'> {
|
|
6
6
|
className?: string;
|
|
7
|
-
color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark' | 'default' | 'teal';
|
|
7
|
+
color: 'green' | 'blue' | 'deepPurple' | 'pinkLight' | 'pinkDark' | 'default' | 'teal' | 'tealAlt';
|
|
8
8
|
inline?: boolean;
|
|
9
9
|
leftIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|
|
10
10
|
rightIcon?: ReactElement<IconProps | NotificationBubbleProps>;
|
|
@@ -439,6 +439,12 @@ declare const iconsMap: {
|
|
|
439
439
|
desc?: string;
|
|
440
440
|
descId?: string;
|
|
441
441
|
}>;
|
|
442
|
+
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
443
|
+
title?: string;
|
|
444
|
+
titleId?: string;
|
|
445
|
+
desc?: string;
|
|
446
|
+
descId?: string;
|
|
447
|
+
}>;
|
|
442
448
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
443
449
|
title?: string;
|
|
444
450
|
titleId?: string;
|
|
@@ -203,6 +203,12 @@ declare const IconsMap: {
|
|
|
203
203
|
desc?: string;
|
|
204
204
|
descId?: string;
|
|
205
205
|
}>;
|
|
206
|
+
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
|
+
title?: string;
|
|
208
|
+
titleId?: string;
|
|
209
|
+
desc?: string;
|
|
210
|
+
descId?: string;
|
|
211
|
+
}>;
|
|
206
212
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
207
213
|
title?: string;
|
|
208
214
|
titleId?: string;
|
|
@@ -302,6 +302,12 @@ declare const iconsMap: {
|
|
|
302
302
|
desc?: string;
|
|
303
303
|
descId?: string;
|
|
304
304
|
}>;
|
|
305
|
+
readonly link: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
306
|
+
title?: string;
|
|
307
|
+
titleId?: string;
|
|
308
|
+
desc?: string;
|
|
309
|
+
descId?: string;
|
|
310
|
+
}>;
|
|
305
311
|
readonly loudspeaker: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
306
312
|
title?: string;
|
|
307
313
|
titleId?: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ComponentPropsWithoutRef, ElementType, PropsWithChildren } from 'react';
|
|
2
|
-
export type TypographyTypeLanding = 'claim' | 'claim-uppercase' | 'h1' | 'h1-uppercase' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'overline' | 'body-large' | 'body-large-semibold' | 'body' | 'body-semibold' | 'body-italic' | 'body-large-italic' | 'quote-large' | 'detail-small' | 'detail-small-bold';
|
|
2
|
+
export type TypographyTypeLanding = 'claim' | 'claim-uppercase' | 'h1' | 'h1-uppercase' | 'h2' | 'h2-uppercase' | 'h3' | 'h4' | 'h5' | 'h6' | 'overline' | 'body-large' | 'body-large-semibold' | 'body' | 'body-semibold' | 'body-small' | 'body-small-semibold' | 'body-small-italic' | 'body-italic' | 'body-large-italic' | 'quote-large' | 'detail-small' | 'detail-small-bold';
|
|
3
3
|
export type TypographyTypeProduct = 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7' | 'h8' | 'body-large' | 'body-regular' | 'body-semibold' | 'body-italic' | 'body-text-link' | 'detail-medium' | 'detail-bold' | 'detail-upper-case' | 'detail-regular' | 'detail-text-link';
|
|
4
4
|
type AsProp<C extends ElementType> = {
|
|
5
5
|
as?: C;
|