@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 +8 -7
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2152,7 +2152,7 @@ var MuiTabs = {
|
|
|
2152
2152
|
* DEFAULT PROPS
|
|
2153
2153
|
*************************************** */
|
|
2154
2154
|
defaultProps: {
|
|
2155
|
-
textColor: "
|
|
2155
|
+
textColor: "primary",
|
|
2156
2156
|
variant: "scrollable",
|
|
2157
2157
|
allowScrollButtonsMobile: true
|
|
2158
2158
|
},
|
|
@@ -2162,9 +2162,9 @@ var MuiTabs = {
|
|
|
2162
2162
|
styleOverrides: {
|
|
2163
2163
|
flexContainer: ({ ownerState, theme }) => ({
|
|
2164
2164
|
...ownerState.variant !== "fullWidth" && {
|
|
2165
|
-
gap: "
|
|
2165
|
+
gap: "4px",
|
|
2166
2166
|
[theme.breakpoints.up("sm")]: {
|
|
2167
|
-
gap: "
|
|
2167
|
+
gap: "4px"
|
|
2168
2168
|
}
|
|
2169
2169
|
}
|
|
2170
2170
|
}),
|
|
@@ -2184,13 +2184,14 @@ var MuiTab = {
|
|
|
2184
2184
|
opacity: 1,
|
|
2185
2185
|
minWidth: 48,
|
|
2186
2186
|
minHeight: 48,
|
|
2187
|
-
padding: theme.spacing(1,
|
|
2188
|
-
|
|
2187
|
+
padding: theme.spacing(1.25, 1.5),
|
|
2188
|
+
fontSize: theme.typography.h8.fontSize,
|
|
2189
|
+
color: theme.vars.palette.text.disable,
|
|
2189
2190
|
fontWeight: theme.typography.fontWeightMedium,
|
|
2190
2191
|
lineHeight: theme.typography.body2.lineHeight,
|
|
2191
2192
|
[`&.${tabClasses.selected}`]: {
|
|
2192
|
-
color: theme.vars.palette.
|
|
2193
|
-
fontWeight: theme.typography.
|
|
2193
|
+
color: theme.vars.palette.primary.main,
|
|
2194
|
+
fontWeight: theme.typography.fontWeightMedium
|
|
2194
2195
|
}
|
|
2195
2196
|
})
|
|
2196
2197
|
}
|