pge-front-common 14.0.55 → 14.0.57

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.esm.js CHANGED
@@ -1268,9 +1268,9 @@ var Pagination = function (_a) {
1268
1268
  handlePage(Number(value));
1269
1269
  } }),
1270
1270
  React__default.createElement("div", { className: styles$h.separatorItem }),
1271
- React__default.createElement("button", { className: styles$h.navButton, onClick: handlePrevious, disabled: currentPage === 1 },
1271
+ React__default.createElement("button", { className: styles$h.navButton, onClick: handlePrevious, disabled: currentPage === 1, "aria-label": "P\u00E1gina anterior" },
1272
1272
  React__default.createElement(IconArrowLeft, { fill: "currentColor" })),
1273
- React__default.createElement("button", { className: styles$h.navButton, onClick: handleNext, disabled: currentPage === countPage },
1273
+ React__default.createElement("button", { className: styles$h.navButton, onClick: handleNext, disabled: currentPage === countPage, "aria-label": "Pr\u00F3xima p\u00E1gina" },
1274
1274
  React__default.createElement(IconArrowRight, { fill: "currentColor" })))));
1275
1275
  };
1276
1276
 
@@ -21523,7 +21523,9 @@ var selectColourStyles = function (isInvalid, isMobile) { return ({
21523
21523
  ? "0px 0px 0px 2px #DC354580"
21524
21524
  : isFocused
21525
21525
  ? "0px 0px 0px 2px #0091ea80"
21526
- : "0px hsl(0, 0%, 96%)", backgroundColor: isDisabled ? "var(--input-disabled-bg-color)" : "white" }));
21526
+ : "0px hsl(0, 0%, 96%)", backgroundColor: isDisabled ? "var(--input-disabled-bg-color)" : "white", ":hover": {
21527
+ backgroundColor: isDisabled ? "var(--input-disabled-bg-color)" : "#005a9214",
21528
+ } }));
21527
21529
  },
21528
21530
  option: function (styles, _a) {
21529
21531
  var isDisabled = _a.isDisabled, isSelected = _a.isSelected, isFocused = _a.isFocused;