lecom-ui 5.2.92 → 5.2.93

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.
@@ -187,6 +187,7 @@ const Pagination = ({
187
187
  activeColor,
188
188
  showPerPageSelector = true
189
189
  }) => {
190
+ const { t } = useTranslation();
190
191
  const mapPaginationItem = (item) => {
191
192
  const componentProps = {
192
193
  onClick: item.onClick,
@@ -227,6 +228,7 @@ const Pagination = ({
227
228
  totalRowsSelected
228
229
  }
229
230
  ),
231
+ !showPerPageSelector && totalRowsSelected > 0 && /* @__PURE__ */ React.createElement(Typography, { variant: "heading-xxsmall-600", textColor: "text-grey-800" }, totalRowsSelected, " ", t("pagination.selectedProcess")),
230
232
  /* @__PURE__ */ React.createElement("nav", { role: "navigation", "aria-label": "pagination" }, /* @__PURE__ */ React.createElement(PaginationContent, null, itemsPage.map((item) => /* @__PURE__ */ React.createElement(PaginationItem, { key: item.id }, mapPaginationItem(item)))))
231
233
  );
232
234
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lecom-ui",
3
- "version": "5.2.92",
3
+ "version": "5.2.93",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",