@ambuj.bhaskar/react-component-library 0.29.0 → 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,9 +1247,11 @@ 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
- export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;
1254
+ export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, inputWidth, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;
1252
1255
 
1253
1256
  export declare type PaginationProps = {
1254
1257
  totalPages: number;
@@ -1259,6 +1262,7 @@ export declare type PaginationProps = {
1259
1262
  color?: Color;
1260
1263
  size?: "s" | "m" | "l";
1261
1264
  width?: CSSstring;
1265
+ inputWidth?: CSSstring;
1262
1266
  showPages?: boolean;
1263
1267
  showArrows?: boolean;
1264
1268
  className?: string;