@natoora-libs/core 0.2.31 → 0.2.32
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/index.cjs +6 -2
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.d.cts +3 -1
- package/dist/components/index.d.ts +3 -1
- package/dist/components/index.js +6 -2
- package/dist/components/index.js.map +1 -1
- package/dist/index.cjs +5 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -6700,7 +6700,9 @@ var PaginationForTable = ({
|
|
|
6700
6700
|
pagination,
|
|
6701
6701
|
position = "relative",
|
|
6702
6702
|
style,
|
|
6703
|
-
updateFilters
|
|
6703
|
+
updateFilters,
|
|
6704
|
+
siblingCount = 1,
|
|
6705
|
+
boundaryCount = 1
|
|
6704
6706
|
}) => {
|
|
6705
6707
|
const { classes, cx } = useStyles34();
|
|
6706
6708
|
const handleChange = (event, value) => {
|
|
@@ -6724,7 +6726,9 @@ var PaginationForTable = ({
|
|
|
6724
6726
|
{
|
|
6725
6727
|
count: pagination.num_pages,
|
|
6726
6728
|
page,
|
|
6727
|
-
onChange: handleChange
|
|
6729
|
+
onChange: handleChange,
|
|
6730
|
+
siblingCount,
|
|
6731
|
+
boundaryCount
|
|
6728
6732
|
}
|
|
6729
6733
|
)
|
|
6730
6734
|
]
|