@ambuj.bhaskar/react-component-library 0.29.2 → 0.30.0
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 +60 -60
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2238 -2230
- package/dist/index.umd.js +7 -7
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -669,6 +669,8 @@ declare type ChartData = {
|
|
|
669
669
|
data: number[];
|
|
670
670
|
color?: Color;
|
|
671
671
|
colors?: Color[];
|
|
672
|
+
barPercentage?: number;
|
|
673
|
+
categoryPercentage?: number;
|
|
672
674
|
}[];
|
|
673
675
|
};
|
|
674
676
|
|
|
@@ -1124,7 +1126,7 @@ declare type MapItem = {
|
|
|
1124
1126
|
position: TCoordinateType;
|
|
1125
1127
|
element: React.ReactNode;
|
|
1126
1128
|
icon?: string;
|
|
1127
|
-
count?:
|
|
1129
|
+
count?: string;
|
|
1128
1130
|
};
|
|
1129
1131
|
|
|
1130
1132
|
declare type MapItem_2 = {
|