@tidbcloud/uikit 2.0.0-beta.25 → 2.0.0-beta.26

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.26
4
+
5
+ ### Patch Changes
6
+
7
+ - fix modal border radius
8
+
3
9
  ## 2.0.0-beta.25
4
10
 
5
11
  ### Patch Changes
@@ -656,7 +656,9 @@ const theme = {
656
656
  },
657
657
  body: {
658
658
  padding: 24,
659
- backgroundColor: theme2.colors.carbon[0]
659
+ backgroundColor: theme2.colors.carbon[0],
660
+ borderBottomLeftRadius: theme2.defaultRadius,
661
+ borderBottomRightRadius: theme2.defaultRadius
660
662
  }
661
663
  })
662
664
  },
@@ -654,7 +654,9 @@ const theme = {
654
654
  },
655
655
  body: {
656
656
  padding: 24,
657
- backgroundColor: theme2.colors.carbon[0]
657
+ backgroundColor: theme2.colors.carbon[0],
658
+ borderBottomLeftRadius: theme2.defaultRadius,
659
+ borderBottomRightRadius: theme2.defaultRadius
658
660
  }
659
661
  })
660
662
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.0.0-beta.25",
3
+ "version": "2.0.0-beta.26",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",