@ballistix.digital/react-components 0.5.10 → 0.6.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/index.d.ts CHANGED
@@ -524,6 +524,7 @@ declare const base$b: {
524
524
  divider: string;
525
525
  label: string;
526
526
  icon: string;
527
+ pageSizeList: string;
527
528
  };
528
529
  type TPanelPaginationNavigationStyles = DeepPartialType$1<typeof base$b>;
529
530
 
@@ -536,6 +537,9 @@ type TProps$5 = {
536
537
  max: number;
537
538
  current: number;
538
539
  }) => ReactNode;
540
+ pageSizeOptions?: number[];
541
+ defaultPageSize?: number;
542
+ onChangePageSize?: (pageSize: number) => void;
539
543
  styles?: TPanelPaginationNavigationStyles;
540
544
  onChange?: (current: number) => void;
541
545
  };