@tidbcloud/uikit 2.2.3 → 2.2.4

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.2.4
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(theme): Remove unnecessary borderColor from disabled state button styling ([#501](https://github.com/tidbcloud/tidbcloud-uikit/pull/501))
8
+
3
9
  ## 2.2.3
4
10
 
5
11
  ### Patch Changes
@@ -244,7 +244,6 @@ const theme = createTheme.createTheme({
244
244
  },
245
245
  "&:disabled, &[data-disabled]": {
246
246
  color: themeColor(theme2, "carbon", 6),
247
- borderColor: themeColor(theme2, "carbon", borderColorShade + 1),
248
247
  backgroundColor: themeColor(theme2, "carbon", 2)
249
248
  }
250
249
  };
@@ -242,7 +242,6 @@ const theme = createTheme({
242
242
  },
243
243
  "&:disabled, &[data-disabled]": {
244
244
  color: themeColor(theme2, "carbon", 6),
245
- borderColor: themeColor(theme2, "carbon", borderColorShade + 1),
246
245
  backgroundColor: themeColor(theme2, "carbon", 2)
247
246
  }
248
247
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.2.3",
3
+ "version": "2.2.4",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",