@ambuj.bhaskar/react-component-library 0.20.5-alpha → 0.20.7-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 +142 -143
- package/dist/index.d.ts +6 -1
- package/dist/index.js +22653 -22496
- package/dist/index.umd.js +144 -145
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -323,6 +323,7 @@ export declare type AwiEmptyStateProps = {
|
|
|
323
323
|
textClass?: string;
|
|
324
324
|
noPadding?: boolean;
|
|
325
325
|
title?: string;
|
|
326
|
+
stateTitle?: string;
|
|
326
327
|
};
|
|
327
328
|
|
|
328
329
|
export declare const AwiGenerateHeader: default_2.FC<AwiGenerateHeaderProps>;
|
|
@@ -410,6 +411,7 @@ export declare interface AwiMessageProps {
|
|
|
410
411
|
isLoading?: boolean;
|
|
411
412
|
textClass?: string;
|
|
412
413
|
noPadding?: boolean;
|
|
414
|
+
iconName?: string;
|
|
413
415
|
}
|
|
414
416
|
|
|
415
417
|
export declare const AwiMessageScreen: React.FC<AwiMessageProps>;
|
|
@@ -896,7 +898,7 @@ declare type IconPositionType = "before" | "after";
|
|
|
896
898
|
|
|
897
899
|
export declare type IconProps = SVGprops & {
|
|
898
900
|
name: IconName;
|
|
899
|
-
size?: "xs" | "s" | "m" | "l" | "xl" | "auto";
|
|
901
|
+
size?: "xs" | "s" | "m" | "l" | "xl" | "auto" | "full";
|
|
900
902
|
className?: string;
|
|
901
903
|
color?: Color;
|
|
902
904
|
background?: Color | "none";
|
|
@@ -950,6 +952,7 @@ declare type MapItem = {
|
|
|
950
952
|
position: TPositionType;
|
|
951
953
|
element: React.ReactNode;
|
|
952
954
|
icon?: string;
|
|
955
|
+
count?: number;
|
|
953
956
|
};
|
|
954
957
|
|
|
955
958
|
export declare const MapView: React.FC<MapViewProps>;
|
|
@@ -967,7 +970,9 @@ export declare type MapViewProps = {
|
|
|
967
970
|
width: string;
|
|
968
971
|
height: string;
|
|
969
972
|
showCardPopup?: boolean;
|
|
973
|
+
showCountPopup?: boolean;
|
|
970
974
|
showNavigation?: boolean;
|
|
975
|
+
onCountPopupClick?: () => void;
|
|
971
976
|
navClassName?: string;
|
|
972
977
|
navButtonColor?: Color;
|
|
973
978
|
className?: string;
|