pge-front-common 14.0.55 → 14.0.56

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/lib/index.js CHANGED
@@ -1288,9 +1288,9 @@ var Pagination = function (_a) {
1288
1288
  handlePage(Number(value));
1289
1289
  } }),
1290
1290
  React.createElement("div", { className: styles$h.separatorItem }),
1291
- React.createElement("button", { className: styles$h.navButton, onClick: handlePrevious, disabled: currentPage === 1 },
1291
+ React.createElement("button", { className: styles$h.navButton, onClick: handlePrevious, disabled: currentPage === 1, "aria-label": "P\u00E1gina anterior" },
1292
1292
  React.createElement(IconArrowLeft, { fill: "currentColor" })),
1293
- React.createElement("button", { className: styles$h.navButton, onClick: handleNext, disabled: currentPage === countPage },
1293
+ React.createElement("button", { className: styles$h.navButton, onClick: handleNext, disabled: currentPage === countPage, "aria-label": "Pr\u00F3xima p\u00E1gina" },
1294
1294
  React.createElement(IconArrowRight, { fill: "currentColor" })))));
1295
1295
  };
1296
1296