@tidbcloud/uikit 2.0.0-beta.80 → 2.0.0-beta.81

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,11 @@
1
1
  # @tidbcloud/uikit
2
2
 
3
+ ## 2.0.0-beta.81
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(theme): set overflow to unset in button style
8
+
3
9
  ## 2.0.0-beta.80
4
10
 
5
11
  ### Patch Changes
@@ -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,
@@ -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,
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.81",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",