@ambuj.bhaskar/react-component-library 0.20.2-alpha → 0.20.4-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;
@@ -962,6 +971,8 @@ export declare type MapViewProps = {
962
971
  navClassName?: string;
963
972
  navButtonColor?: Color;
964
973
  className?: string;
974
+ focusedIndex?: number;
975
+ onFocusedIndexChange?: (index: number) => void;
965
976
  };
966
977
 
967
978
  export declare const MathAnnotationHelper: {