@ambuj.bhaskar/react-component-library 0.18.7-alpha → 0.18.9-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/index.d.ts CHANGED
@@ -360,7 +360,7 @@ declare type Option_2 = {
360
360
  value: string | number;
361
361
  };
362
362
 
363
- export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, }: PaginationProps) => JSX_2.Element;
363
+ export declare const Pagination: ({ totalPages, currentPage, onPageChange, onNext, onPrev, color, size, width, showPages, showArrows, className, }: PaginationProps) => JSX_2.Element;
364
364
 
365
365
  export declare type PaginationProps = {
366
366
  totalPages: number;
@@ -370,6 +370,10 @@ export declare type PaginationProps = {
370
370
  onPrev: () => void;
371
371
  color?: Color;
372
372
  size?: "s" | "m" | "l";
373
+ width?: CSSstring;
374
+ showPages?: boolean;
375
+ showArrows?: boolean;
376
+ className?: string;
373
377
  };
374
378
 
375
379
  export declare const Select: React.FC<SelectProps>;