@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.
@@ -6383,11 +6383,18 @@ var useStyles33 = makeStyles33()((theme) => ({
6383
6383
  borderRadius: "0 0 4px 4px",
6384
6384
  width: "100%",
6385
6385
  height: paginationHeight,
6386
+ overflow: "hidden",
6386
6387
  "& > *": {
6387
6388
  margin: theme.spacing(2)
6388
6389
  },
6389
- "& .MuiTypography-body1": {
6390
- fontSize: ".850rem"
6390
+ "& .MuiPagination-root": {
6391
+ minWidth: 0
6392
+ },
6393
+ "& .MuiPagination-ul": {
6394
+ flexWrap: "nowrap"
6395
+ },
6396
+ "& .MuiPaginationItem-root": {
6397
+ flexShrink: 0
6391
6398
  }
6392
6399
  },
6393
6400
  fixed: {
@@ -6428,16 +6435,16 @@ var PaginationForTable = ({
6428
6435
  "Page: ",
6429
6436
  page
6430
6437
  ] }),
6431
- /* @__PURE__ */ jsx104(
6438
+ /* @__PURE__ */ jsx104("div", { style: { overflowX: "auto", maxWidth: 400 }, children: /* @__PURE__ */ jsx104(
6432
6439
  Pagination,
6433
6440
  {
6434
6441
  count: pagination.num_pages,
6435
- page,
6442
+ page: Number(page),
6436
6443
  onChange: handleChange,
6437
6444
  siblingCount,
6438
6445
  boundaryCount
6439
6446
  }
6440
- )
6447
+ ) })
6441
6448
  ]
6442
6449
  }
6443
6450
  ) });