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

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
@@ -969,6 +969,7 @@ export declare type FloorMapViewProps = {
969
969
  enableDrawing?: boolean;
970
970
  onShapeSave?: (feature: FeatureType) => void;
971
971
  drawOptions?: DrawOptions;
972
+ origin?: Origin;
972
973
  };
973
974
 
974
975
  export declare const Heatmap: React.FC<HeatmapProps>;
@@ -1246,6 +1247,8 @@ declare type Option_2 = {
1246
1247
  value: string | number;
1247
1248
  };
1248
1249
 
1250
+ declare type Origin = "top-left" | "bottom-left";
1251
+
1249
1252
  declare type OverridableAntdProps = Omit<TableProps_2<any>, "size" | "title" | "footer">;
1250
1253
 
1251
1254
  export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, inputWidth, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;