@tidbcloud/uikit 2.0.0-beta.80 → 2.0.0-beta.82
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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @tidbcloud/uikit
|
|
2
2
|
|
|
3
|
+
## 2.0.0-beta.82
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fix tabs hover dark style & protabe row dark theme style
|
|
8
|
+
|
|
9
|
+
## 2.0.0-beta.81
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- fix(theme): set overflow to unset in button style
|
|
14
|
+
|
|
3
15
|
## 2.0.0-beta.80
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/theme/theme.cjs
CHANGED
|
@@ -260,6 +260,7 @@ const theme = createTheme.createTheme({
|
|
|
260
260
|
fontSize: props.size === "xs" ? 12 : 14
|
|
261
261
|
},
|
|
262
262
|
root: {
|
|
263
|
+
overflow: "unset",
|
|
263
264
|
paddingLeft: 12,
|
|
264
265
|
paddingRight: 12,
|
|
265
266
|
...variantStyle,
|
|
@@ -319,7 +320,8 @@ const theme = createTheme.createTheme({
|
|
|
319
320
|
color: themeColor(theme2, "carbon", 9)
|
|
320
321
|
},
|
|
321
322
|
"&:hover": {
|
|
322
|
-
color: themeColor(theme2, "carbon", 9)
|
|
323
|
+
color: themeColor(theme2, "carbon", 9),
|
|
324
|
+
backgroundColor: "transparent"
|
|
323
325
|
}
|
|
324
326
|
}
|
|
325
327
|
};
|
package/dist/theme/theme.js
CHANGED
|
@@ -258,6 +258,7 @@ const theme = createTheme({
|
|
|
258
258
|
fontSize: props.size === "xs" ? 12 : 14
|
|
259
259
|
},
|
|
260
260
|
root: {
|
|
261
|
+
overflow: "unset",
|
|
261
262
|
paddingLeft: 12,
|
|
262
263
|
paddingRight: 12,
|
|
263
264
|
...variantStyle,
|
|
@@ -317,7 +318,8 @@ const theme = createTheme({
|
|
|
317
318
|
color: themeColor(theme2, "carbon", 9)
|
|
318
319
|
},
|
|
319
320
|
"&:hover": {
|
|
320
|
-
color: themeColor(theme2, "carbon", 9)
|
|
321
|
+
color: themeColor(theme2, "carbon", 9),
|
|
322
|
+
backgroundColor: "transparent"
|
|
321
323
|
}
|
|
322
324
|
}
|
|
323
325
|
};
|