@ambuj.bhaskar/react-component-library 0.20.3-alpha → 0.20.5-alpha

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/dist/index.d.ts CHANGED
@@ -949,11 +949,20 @@ export declare interface LoggedUser {
949
949
  declare type MapItem = {
950
950
  position: TPositionType;
951
951
  element: React.ReactNode;
952
+ icon?: string;
952
953
  };
953
954
 
954
955
  export declare const MapView: React.FC<MapViewProps>;
955
956
 
956
957
  export declare type MapViewProps = {
958
+ mapConfig: {
959
+ defaultZoom: number;
960
+ defaultCenter?: TPositionType;
961
+ defaultMapProvider: {
962
+ url: string;
963
+ attribution: string;
964
+ };
965
+ };
957
966
  items: MapItem[];
958
967
  width: string;
959
968
  height: string;