@ambuj.bhaskar/react-component-library 0.29.1 → 0.29.3

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
@@ -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
 
@@ -969,6 +971,7 @@ export declare type FloorMapViewProps = {
969
971
  enableDrawing?: boolean;
970
972
  onShapeSave?: (feature: FeatureType) => void;
971
973
  drawOptions?: DrawOptions;
974
+ origin?: Origin;
972
975
  };
973
976
 
974
977
  export declare const Heatmap: React.FC<HeatmapProps>;
@@ -1123,7 +1126,7 @@ declare type MapItem = {
1123
1126
  position: TCoordinateType;
1124
1127
  element: React.ReactNode;
1125
1128
  icon?: string;
1126
- count?: number;
1129
+ count?: string;
1127
1130
  };
1128
1131
 
1129
1132
  declare type MapItem_2 = {
@@ -1246,6 +1249,8 @@ declare type Option_2 = {
1246
1249
  value: string | number;
1247
1250
  };
1248
1251
 
1252
+ declare type Origin = "top-left" | "bottom-left";
1253
+
1249
1254
  declare type OverridableAntdProps = Omit<TableProps_2<any>, "size" | "title" | "footer">;
1250
1255
 
1251
1256
  export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, inputWidth, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;