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.
- package/dist/components/Table/Table.stories.d.ts +1 -0
- package/dist/components/Table/TablePagination.d.ts +2 -1
- package/dist/esm/index.js +3708 -3719
- package/dist/esm/index.js.map +1 -1
- package/dist/properties.json +55 -17
- package/dist/react-magma-dom.cjs.development.js +1981 -1992
- package/dist/react-magma-dom.cjs.development.js.map +1 -1
- package/dist/react-magma-dom.cjs.production.min.js +1 -1
- package/dist/react-magma-dom.cjs.production.min.js.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
/**
|