@goodhood-web/ui 1.7.0 → 1.8.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.
@@ -0,0 +1,4 @@
1
+ import { default as FeedItemCategoryProps } from './FeedItemCategory.types';
2
+
3
+ declare const FeedItemCategory: ({ className, text, type }: FeedItemCategoryProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default FeedItemCategory;
@@ -0,0 +1,5 @@
1
+ export default interface FeedItemCategoryProps {
2
+ className?: string;
3
+ text: string;
4
+ type: 'closedPost' | 'theme';
5
+ }
@@ -120,6 +120,9 @@ declare const IconsMap: {
120
120
  readonly gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
121
121
  title?: string | undefined;
122
122
  }>;
123
+ readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
124
+ title?: string | undefined;
125
+ }>;
123
126
  readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
124
127
  title?: string | undefined;
125
128
  }>;
@@ -264,6 +264,9 @@ declare const iconsMap: {
264
264
  readonly gift: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
265
265
  title?: string | undefined;
266
266
  }>;
267
+ readonly globe: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
268
+ title?: string | undefined;
269
+ }>;
267
270
  readonly group: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
268
271
  title?: string | undefined;
269
272
  }>;
@@ -0,0 +1,4 @@
1
+ import { default as ThumbnailWrapperProps } from './ThumbnailWrapper.types';
2
+
3
+ declare const ThumbnailWrapper: ({ ariaLabel, children, thumbnail }: ThumbnailWrapperProps) => import("react/jsx-runtime").JSX.Element;
4
+ export default ThumbnailWrapper;
@@ -0,0 +1,8 @@
1
+ import { BadgeOwnProps } from '@mui/base/Badge/Badge.types';
2
+ import { ThumbnailCircularProps, ThumbnailSquareProps } from '../Thumbnail/Thumbnail.type';
3
+
4
+ export default interface ThumbnailWrapperProps {
5
+ ariaLabel?: string;
6
+ children: BadgeOwnProps['children'];
7
+ thumbnail: ThumbnailCircularProps | ThumbnailSquareProps;
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "1.7.0",
3
+ "version": "1.8.0-development.2",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {