@goodhood-web/ui 4.3.0 → 4.4.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 +2 -1
- package/index.js +36 -36
- package/index.mjs +4421 -4385
- package/lib/Atoms/Buttons/ButtonPrimary/ButtonPrimary.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/Molecules/PostCard/PostCard.d.ts +4 -0
- package/lib/Molecules/PostCard/PostCard.types.d.ts +9 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -2,5 +2,5 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
import { ButtonProps, ButtonVariationProps } from '../Button/Button.types';
|
|
3
3
|
export interface ButtonPrimaryProps extends ButtonVariationProps, Omit<ButtonProps, 'children'> {
|
|
4
4
|
children?: ReactNode;
|
|
5
|
-
color?: 'highlight' | 'primary' | 'transparent';
|
|
5
|
+
color?: 'highlight' | 'primary' | 'transparent' | 'teal';
|
|
6
6
|
}
|
|
@@ -289,6 +289,12 @@ declare const iconsMap: {
|
|
|
289
289
|
desc?: string;
|
|
290
290
|
descId?: string;
|
|
291
291
|
}>;
|
|
292
|
+
readonly download: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
293
|
+
title?: string;
|
|
294
|
+
titleId?: string;
|
|
295
|
+
desc?: string;
|
|
296
|
+
descId?: string;
|
|
297
|
+
}>;
|
|
292
298
|
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
293
299
|
title?: string;
|
|
294
300
|
titleId?: string;
|
|
@@ -107,6 +107,12 @@ declare const IconsMap: {
|
|
|
107
107
|
desc?: string;
|
|
108
108
|
descId?: string;
|
|
109
109
|
}>;
|
|
110
|
+
readonly download: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
|
+
title?: string;
|
|
112
|
+
titleId?: string;
|
|
113
|
+
desc?: string;
|
|
114
|
+
descId?: string;
|
|
115
|
+
}>;
|
|
110
116
|
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
111
117
|
title?: string;
|
|
112
118
|
titleId?: string;
|
|
@@ -182,6 +182,12 @@ declare const iconsMap: {
|
|
|
182
182
|
desc?: string;
|
|
183
183
|
descId?: string;
|
|
184
184
|
}>;
|
|
185
|
+
readonly download: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
186
|
+
title?: string;
|
|
187
|
+
titleId?: string;
|
|
188
|
+
desc?: string;
|
|
189
|
+
descId?: string;
|
|
190
|
+
}>;
|
|
185
191
|
readonly emoji: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
186
192
|
title?: string;
|
|
187
193
|
titleId?: string;
|