@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.
- package/index.d.ts +4 -2
- package/index.js +47 -78
- package/index.mjs +4260 -5758
- package/lib/FeedItemCategory/FeedItemCategory.d.ts +4 -0
- package/lib/FeedItemCategory/FeedItemCategory.types.d.ts +5 -0
- package/lib/Icon/icons/32x32/index.d.ts +3 -0
- package/lib/Icon/icons/index.d.ts +3 -0
- package/lib/ThumbnailWrapper/ThumbnailWrapper.d.ts +4 -0
- package/lib/ThumbnailWrapper/ThumbnailWrapper.types.d.ts +8 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -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,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
|
+
}
|