@undefine-ui/design-system 3.4.0 → 3.4.2

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/dist/index.cjs CHANGED
@@ -2165,7 +2165,7 @@ var MuiTabs = {
2165
2165
  * DEFAULT PROPS
2166
2166
  *************************************** */
2167
2167
  defaultProps: {
2168
- textColor: "inherit",
2168
+ textColor: "primary",
2169
2169
  variant: "scrollable",
2170
2170
  allowScrollButtonsMobile: true
2171
2171
  },
@@ -2175,13 +2175,12 @@ var MuiTabs = {
2175
2175
  styleOverrides: {
2176
2176
  flexContainer: ({ ownerState, theme }) => ({
2177
2177
  ...ownerState.variant !== "fullWidth" && {
2178
- gap: "24px",
2178
+ gap: "4px",
2179
2179
  [theme.breakpoints.up("sm")]: {
2180
- gap: "40px"
2180
+ gap: "4px"
2181
2181
  }
2182
2182
  }
2183
- }),
2184
- indicator: { backgroundColor: "currentColor" }
2183
+ })
2185
2184
  }
2186
2185
  };
2187
2186
  var MuiTab = {
@@ -2197,13 +2196,14 @@ var MuiTab = {
2197
2196
  opacity: 1,
2198
2197
  minWidth: 48,
2199
2198
  minHeight: 48,
2200
- padding: theme.spacing(1, 0),
2201
- color: theme.vars.palette.text.secondary,
2199
+ padding: theme.spacing(1.25, 1.5),
2200
+ fontSize: theme.typography.h8.fontSize,
2201
+ color: theme.vars.palette.text.disable,
2202
2202
  fontWeight: theme.typography.fontWeightMedium,
2203
2203
  lineHeight: theme.typography.body2.lineHeight,
2204
2204
  [`&.${import_Tab.tabClasses.selected}`]: {
2205
- color: theme.vars.palette.text.primary,
2206
- fontWeight: theme.typography.fontWeightSemiBold
2205
+ color: theme.vars.palette.primary.main,
2206
+ fontWeight: theme.typography.fontWeightMedium
2207
2207
  }
2208
2208
  })
2209
2209
  }