@natoora-libs/core 0.2.32 → 0.2.33

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.
@@ -6676,11 +6676,18 @@ var useStyles34 = (0, import_mui36.makeStyles)()((theme) => ({
6676
6676
  borderRadius: "0 0 4px 4px",
6677
6677
  width: "100%",
6678
6678
  height: paginationHeight,
6679
+ overflow: "hidden",
6679
6680
  "& > *": {
6680
6681
  margin: theme.spacing(2)
6681
6682
  },
6682
- "& .MuiTypography-body1": {
6683
- fontSize: ".850rem"
6683
+ "& .MuiPagination-root": {
6684
+ minWidth: 0
6685
+ },
6686
+ "& .MuiPagination-ul": {
6687
+ flexWrap: "nowrap"
6688
+ },
6689
+ "& .MuiPaginationItem-root": {
6690
+ flexShrink: 0
6684
6691
  }
6685
6692
  },
6686
6693
  fixed: {
@@ -6721,16 +6728,16 @@ var PaginationForTable = ({
6721
6728
  "Page: ",
6722
6729
  page
6723
6730
  ] }),
6724
- /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6731
+ /* @__PURE__ */ (0, import_jsx_runtime105.jsx)("div", { style: { overflowX: "auto", maxWidth: 400 }, children: /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(
6725
6732
  import_material52.Pagination,
6726
6733
  {
6727
6734
  count: pagination.num_pages,
6728
- page,
6735
+ page: Number(page),
6729
6736
  onChange: handleChange,
6730
6737
  siblingCount,
6731
6738
  boundaryCount
6732
6739
  }
6733
- )
6740
+ ) })
6734
6741
  ]
6735
6742
  }
6736
6743
  ) });