@eclass/ui-kit 1.51.13 → 1.51.14

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.
@@ -35227,14 +35227,15 @@ const GoToCalendar = ({
35227
35227
  onlyToCalendar,
35228
35228
  onClick
35229
35229
  }) => {
35230
- var _a;
35230
+ var _a, _b;
35231
+ const activeBg = (_a = vars("colors-main-deepSkyBlue")) != null ? _a : "#0189FF";
35231
35232
  return /* @__PURE__ */ jsx(NewTooltip, {
35232
35233
  label: text != null ? text : "Calendario",
35233
35234
  m: "2px 0 0 0",
35234
35235
  isDisabled: tooltipDisabled,
35235
35236
  children: /* @__PURE__ */ jsx(MenuButton, {
35236
35237
  onClick: () => onlyToCalendar && onClick && onClick(),
35237
- background: (_a = vars("colors-main-blueGrey")) != null ? _a : "#60798E",
35238
+ background: (_b = vars("colors-main-blueGrey")) != null ? _b : "#60798E",
35238
35239
  border: "1px solid transparent",
35239
35240
  borderRadius: "100%",
35240
35241
  height: "30px !important",
@@ -35242,6 +35243,12 @@ const GoToCalendar = ({
35242
35243
  padding: "0 !important",
35243
35244
  margin: "0 !important",
35244
35245
  position: "relative",
35246
+ _active: {
35247
+ bg: activeBg,
35248
+ "&:hover": {
35249
+ bg: activeBg
35250
+ }
35251
+ },
35245
35252
  _hover: {
35246
35253
  bg: "rgba(96, 121, 142, 0.8)"
35247
35254
  },