@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
@@ -154,6 +154,9 @@ function mergeProTableProps(props) {
154
154
  td: {
155
155
  borderBottom: enableRowVirtualization ? "none !important" : void 0
156
156
  }
157
+ },
158
+ "&:not([data-striped], [data-striped='false'])": {
159
+ backgroundColor: theme.colors.carbon[0]
157
160
  }
158
161
  }
159
162
  };
@@ -152,6 +152,9 @@ function mergeProTableProps(props) {
152
152
  td: {
153
153
  borderBottom: enableRowVirtualization ? "none !important" : void 0
154
154
  }
155
+ },
156
+ "&:not([data-striped], [data-striped='false'])": {
157
+ backgroundColor: theme.colors.carbon[0]
155
158
  }
156
159
  }
157
160
  };
@@ -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
  };
@@ -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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.0.0-beta.80",
3
+ "version": "2.0.0-beta.82",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",