@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.
@@ -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;
@@ -0,0 +1,4 @@
1
+ import { default as React } from 'react';
2
+ import { PostCardProps } from './PostCard.types';
3
+ declare const PostCard: React.FC<PostCardProps>;
4
+ export default PostCard;
@@ -0,0 +1,9 @@
1
+ export type PostCardProps = {
2
+ avatar: string;
3
+ description: string;
4
+ image: string;
5
+ location: string;
6
+ name: string;
7
+ tag?: string;
8
+ title: string;
9
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "4.3.0",
3
+ "version": "4.4.0-development.2",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",