@goodhood-web/ui 3.3.0-development.20 → 3.3.0-development.21
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 +5 -1
- package/index.js +45 -45
- package/index.mjs +3407 -3400
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.d.ts +1 -1
- package/lib/Atoms/Content/PoiAvatar/PoiAvatar.type.d.ts +2 -0
- package/lib/Base/Icon/icons/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/32x32/index.d.ts +6 -0
- package/lib/Base/Icon/icons/outline/index.d.ts +6 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { PoiAvatarType } from './PoiAvatar.type';
|
|
2
|
-
export declare const PoiAvatar: ({ size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const PoiAvatar: ({ alt, imageSrc, size, type }: PoiAvatarType) => import("react/jsx-runtime").JSX.Element;
|
|
3
3
|
export default PoiAvatar;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
export declare const poiAvatarSizes: readonly ["48", "56", "64", "80"];
|
|
2
2
|
export type TSize = (typeof poiAvatarSizes)[number];
|
|
3
3
|
export interface PoiAvatarType {
|
|
4
|
+
alt?: string;
|
|
5
|
+
imageSrc?: string;
|
|
4
6
|
size: TSize;
|
|
5
7
|
type: 'business' | 'special_place' | 'organisation';
|
|
6
8
|
}
|
|
@@ -979,6 +979,12 @@ declare const iconsMap: {
|
|
|
979
979
|
desc?: string;
|
|
980
980
|
descId?: string;
|
|
981
981
|
}>;
|
|
982
|
+
readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
983
|
+
title?: string;
|
|
984
|
+
titleId?: string;
|
|
985
|
+
desc?: string;
|
|
986
|
+
descId?: string;
|
|
987
|
+
}>;
|
|
982
988
|
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
983
989
|
title?: string;
|
|
984
990
|
titleId?: string;
|
|
@@ -485,6 +485,12 @@ declare const IconsMap: {
|
|
|
485
485
|
desc?: string;
|
|
486
486
|
descId?: string;
|
|
487
487
|
}>;
|
|
488
|
+
readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
489
|
+
title?: string;
|
|
490
|
+
titleId?: string;
|
|
491
|
+
desc?: string;
|
|
492
|
+
descId?: string;
|
|
493
|
+
}>;
|
|
488
494
|
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
489
495
|
title?: string;
|
|
490
496
|
titleId?: string;
|
|
@@ -892,6 +892,12 @@ declare const iconsMap: {
|
|
|
892
892
|
desc?: string;
|
|
893
893
|
descId?: string;
|
|
894
894
|
}>;
|
|
895
|
+
readonly percentage_alt: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
896
|
+
title?: string;
|
|
897
|
+
titleId?: string;
|
|
898
|
+
desc?: string;
|
|
899
|
+
descId?: string;
|
|
900
|
+
}>;
|
|
895
901
|
readonly phone: import('react').FunctionComponent<import('react').SVGProps<SVGSVGElement> & {
|
|
896
902
|
title?: string;
|
|
897
903
|
titleId?: string;
|