@ambuj.bhaskar/react-component-library 0.20.5-alpha → 0.20.6-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/assets/index.css +1 -1
- package/dist/index.cjs +111 -111
- package/dist/index.d.ts +3 -0
- package/dist/index.js +6881 -6870
- package/dist/index.umd.js +114 -114
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -950,6 +950,7 @@ declare type MapItem = {
|
|
|
950
950
|
position: TPositionType;
|
|
951
951
|
element: React.ReactNode;
|
|
952
952
|
icon?: string;
|
|
953
|
+
count?: number;
|
|
953
954
|
};
|
|
954
955
|
|
|
955
956
|
export declare const MapView: React.FC<MapViewProps>;
|
|
@@ -967,7 +968,9 @@ export declare type MapViewProps = {
|
|
|
967
968
|
width: string;
|
|
968
969
|
height: string;
|
|
969
970
|
showCardPopup?: boolean;
|
|
971
|
+
showCountPopup?: boolean;
|
|
970
972
|
showNavigation?: boolean;
|
|
973
|
+
onCountPopupClick?: () => void;
|
|
971
974
|
navClassName?: string;
|
|
972
975
|
navButtonColor?: Color;
|
|
973
976
|
className?: string;
|