@undefine-ui/design-system 3.4.0 → 3.4.1

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,9 +2175,9 @@ 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
2183
  }),
@@ -2197,13 +2197,14 @@ var MuiTab = {
2197
2197
  opacity: 1,
2198
2198
  minWidth: 48,
2199
2199
  minHeight: 48,
2200
- padding: theme.spacing(1, 0),
2201
- color: theme.vars.palette.text.secondary,
2200
+ padding: theme.spacing(1.25, 1.5),
2201
+ fontSize: theme.typography.h8.fontSize,
2202
+ color: theme.vars.palette.text.disable,
2202
2203
  fontWeight: theme.typography.fontWeightMedium,
2203
2204
  lineHeight: theme.typography.body2.lineHeight,
2204
2205
  [`&.${import_Tab.tabClasses.selected}`]: {
2205
- color: theme.vars.palette.text.primary,
2206
- fontWeight: theme.typography.fontWeightSemiBold
2206
+ color: theme.vars.palette.primary.main,
2207
+ fontWeight: theme.typography.fontWeightMedium
2207
2208
  }
2208
2209
  })
2209
2210
  }