react-magma-dom 4.1.1-next.2 → 4.2.0-next.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.
@@ -1673,3 +1673,4 @@ export declare const AdjustableRowNumber: {
1673
1673
  numberRows: number;
1674
1674
  };
1675
1675
  };
1676
+ export declare const NoRowsPerPageControl: (args: any) => JSX.Element;
@@ -18,7 +18,8 @@ export interface BaseTablePaginationProps extends React.HTMLAttributes<HTMLDivEl
18
18
  */
19
19
  onPageChange?: (event: React.SyntheticEvent, newPage: number) => void;
20
20
  /**
21
- * Event that fires when the number of rows per page changes
21
+ * Event that fires when the number of rows per page changes.
22
+ * If no function is passed, the rows per page select will be hidden
22
23
  */
23
24
  onRowsPerPageChange?: (newRowsPerPage: number) => void;
24
25
  /**