@m4l/components 9.2.9 → 9.2.10

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.
@@ -69,7 +69,7 @@ const tabStyles = {
69
69
  * - Estilos para los estados hover, focus-visible y active.
70
70
  */
71
71
  "&:hover": {
72
- background: theme.vars.palette[ownerState.tabColor || "default"].hover
72
+ background: theme.vars.palette[ownerState.tabColor || "default"].hoverOpacity
73
73
  },
74
74
  "&:active": {
75
75
  background: theme.vars.palette[ownerState.tabColor || "default"].activeOpacity
@@ -4,14 +4,14 @@ const tabsStyles = {
4
4
  */
5
5
  root: ({ theme }) => ({
6
6
  position: "relative",
7
- zIndex: 2,
7
+ zIndex: "unset",
8
8
  display: "flex",
9
9
  overflow: "auto",
10
10
  width: "100%",
11
11
  height: "fit-content",
12
12
  maxWidth: "fit-content",
13
13
  minHeight: "fit-content",
14
- background: theme.vars.palette.default.enabled,
14
+ background: theme.vars.palette.default.enabledOpacity,
15
15
  paddingBottom: theme.vars.size.baseSpacings.sp0,
16
16
  gap: theme.vars.size.baseSpacings.sp0,
17
17
  borderRadius: theme.vars.size.borderRadius.r1,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@m4l/components",
3
- "version": "9.2.9",
3
+ "version": "9.2.10",
4
4
  "license": "UNLICENSED",
5
5
  "lint-staged": {
6
6
  "*.{js,ts,tsx}": "eslint --fix --max-warnings 0 --no-warn-ignored"