@tidbcloud/uikit 2.0.0-beta.78 → 2.0.0-beta.79

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.79
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(theme): set default variant to light for Badge component
8
+
3
9
  ## 2.0.0-beta.78
4
10
 
5
11
  ### Patch Changes
@@ -636,7 +636,8 @@ const theme = createTheme.createTheme({
636
636
  Badge: {
637
637
  defaultProps: {
638
638
  color: "peacock",
639
- size: "md"
639
+ size: "md",
640
+ variant: "light"
640
641
  },
641
642
  styles(theme2, props) {
642
643
  const color = props.color ?? theme2.primaryColor;
@@ -634,7 +634,8 @@ const theme = createTheme({
634
634
  Badge: {
635
635
  defaultProps: {
636
636
  color: "peacock",
637
- size: "md"
637
+ size: "md",
638
+ variant: "light"
638
639
  },
639
640
  styles(theme2, props) {
640
641
  const color = props.color ?? theme2.primaryColor;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.0.0-beta.78",
3
+ "version": "2.0.0-beta.79",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",