@eclass/ui-kit 1.53.5 → 1.53.6

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.
@@ -1889,27 +1889,28 @@ const NavBarButton = ({
1889
1889
  id: isAccessibility ? "UserWayButton" : "",
1890
1890
  onClick: isAccessibility ? triggerWidget : onClick,
1891
1891
  sx: {
1892
+ cursor: "pointer",
1892
1893
  display: "flex",
1893
1894
  gap: "8px",
1894
1895
  h: "30px",
1895
1896
  maxH: "30px",
1896
1897
  _hover: {
1897
- ".icon": {
1898
+ ".nav-bar-icon": {
1898
1899
  bg: hoverBg
1899
1900
  },
1900
- ".text": {
1901
+ ".nav-bar-text": {
1901
1902
  color: vars("colors-neutral-white")
1902
1903
  }
1903
1904
  },
1904
1905
  _active: {
1905
- ".icon": {
1906
+ ".nav-bar-icon": {
1906
1907
  bg: onlyLink || isAccessibility ? hoverBg : activeBg
1907
1908
  },
1908
- ".text": {
1909
+ ".nav-bar-text": {
1909
1910
  color: vars("colors-neutral-white")
1910
1911
  }
1911
1912
  },
1912
- ".icon": {
1913
+ ".nav-bar-icon": {
1913
1914
  alignItems: "center",
1914
1915
  bg: vars("colors-main-blueGrey"),
1915
1916
  borderRadius: "100%",
@@ -1921,20 +1922,19 @@ const NavBarButton = ({
1921
1922
  role: "button",
1922
1923
  width: "30px"
1923
1924
  },
1924
- ".text": {
1925
+ ".nav-bar-text": {
1925
1926
  alignContent: "center",
1927
+ color: vars("colors-neutral-silverSand"),
1926
1928
  fontSize: "12px",
1927
1929
  fontWeight: "500",
1928
- forntFamily: "Roboto",
1929
- color: vars("colors-neutral-silverSand")
1930
+ fontFamily: "Roboto"
1930
1931
  }
1931
1932
  },
1932
1933
  children: [/* @__PURE__ */ jsx(Box, {
1933
- className: "icon",
1934
+ className: "nav-bar-icon",
1934
1935
  children: buttonType[type].icon
1935
1936
  }), /* @__PURE__ */ jsx(Box, {
1936
- as: "span",
1937
- className: "text",
1937
+ className: "nav-bar-text",
1938
1938
  children: buttonType[type].text
1939
1939
  })]
1940
1940
  });
@@ -5956,18 +5956,18 @@ const GoToCalendar = ({
5956
5956
  position: "relative",
5957
5957
  sx: {
5958
5958
  _hover: {
5959
- ".icon": {
5959
+ ".nav-bar-icon": {
5960
5960
  bg: hoverBg
5961
5961
  },
5962
- ".text": {
5962
+ ".nav-bar-text": {
5963
5963
  color: vars("colors-neutral-white")
5964
5964
  }
5965
5965
  },
5966
5966
  _active: {
5967
- ".icon": {
5967
+ ".nav-bar-icon": {
5968
5968
  bg: onlyToCalendar ? hoverBg : activeBg
5969
5969
  },
5970
- ".text": {
5970
+ ".nav-bar-text": {
5971
5971
  color: vars("colors-neutral-white")
5972
5972
  }
5973
5973
  }