@goodhood-web/ui 4.1.0-development.7 → 4.1.0-development.8
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 +67 -67
- package/index.mjs +1588 -1586
- package/lib/Base/Icon/icons/filled/32x32/index.d.ts +6 -0
- package/lib/Base/Icon/icons/filled/index.d.ts +6 -0
- package/lib/Base/Icon/icons/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/_mixins.scss +11 -7
|
@@ -17,5 +17,11 @@ declare const IconsMap: {
|
|
|
17
17
|
desc?: string;
|
|
18
18
|
descId?: string;
|
|
19
19
|
}>;
|
|
20
|
+
readonly star_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
21
|
+
title?: string;
|
|
22
|
+
titleId?: string;
|
|
23
|
+
desc?: string;
|
|
24
|
+
descId?: string;
|
|
25
|
+
}>;
|
|
20
26
|
};
|
|
21
27
|
export default IconsMap;
|
|
@@ -40,6 +40,12 @@ declare const iconsMap: {
|
|
|
40
40
|
desc?: string;
|
|
41
41
|
descId?: string;
|
|
42
42
|
}>;
|
|
43
|
+
readonly star_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
44
|
+
title?: string;
|
|
45
|
+
titleId?: string;
|
|
46
|
+
desc?: string;
|
|
47
|
+
descId?: string;
|
|
48
|
+
}>;
|
|
43
49
|
};
|
|
44
50
|
};
|
|
45
51
|
export default iconsMap;
|
|
@@ -97,6 +97,12 @@ declare const iconsMap: {
|
|
|
97
97
|
desc?: string;
|
|
98
98
|
descId?: string;
|
|
99
99
|
}>;
|
|
100
|
+
readonly star_filled: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
101
|
+
title?: string;
|
|
102
|
+
titleId?: string;
|
|
103
|
+
desc?: string;
|
|
104
|
+
descId?: string;
|
|
105
|
+
}>;
|
|
100
106
|
};
|
|
101
107
|
};
|
|
102
108
|
outline: {
|
|
@@ -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' | 'quote-large' | 'detail-small' | 'detail-small-bold';
|
|
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';
|
|
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;
|