@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 +9 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +9 -9
- 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,13 +2162,12 @@ 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
|
-
})
|
|
2171
|
-
indicator: { backgroundColor: "currentColor" }
|
|
2170
|
+
})
|
|
2172
2171
|
}
|
|
2173
2172
|
};
|
|
2174
2173
|
var MuiTab = {
|
|
@@ -2184,13 +2183,14 @@ var MuiTab = {
|
|
|
2184
2183
|
opacity: 1,
|
|
2185
2184
|
minWidth: 48,
|
|
2186
2185
|
minHeight: 48,
|
|
2187
|
-
padding: theme.spacing(1,
|
|
2188
|
-
|
|
2186
|
+
padding: theme.spacing(1.25, 1.5),
|
|
2187
|
+
fontSize: theme.typography.h8.fontSize,
|
|
2188
|
+
color: theme.vars.palette.text.disable,
|
|
2189
2189
|
fontWeight: theme.typography.fontWeightMedium,
|
|
2190
2190
|
lineHeight: theme.typography.body2.lineHeight,
|
|
2191
2191
|
[`&.${tabClasses.selected}`]: {
|
|
2192
|
-
color: theme.vars.palette.
|
|
2193
|
-
fontWeight: theme.typography.
|
|
2192
|
+
color: theme.vars.palette.primary.main,
|
|
2193
|
+
fontWeight: theme.typography.fontWeightMedium
|
|
2194
2194
|
}
|
|
2195
2195
|
})
|
|
2196
2196
|
}
|