@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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodhood-web/ui",
3
- "version": "3.3.0-development.20",
3
+ "version": "3.3.0-development.21",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "repository": "https://github.com/good-hood-gmbh/goodhood-web",