@tidbcloud/uikit 2.0.0-beta.110 → 2.0.0-beta.111

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,12 @@
1
1
  # @tidbcloud/uikit
2
2
 
3
+ ## 2.0.0-beta.111
4
+
5
+ ### Patch Changes
6
+
7
+ - fix(theme): update default transition property to 'fade-down' to them… ([#403](https://github.com/tidbcloud/tidbcloud-uikit/pull/403))
8
+ - fix: storybook emotion support to uikit and update imports ([#402](https://github.com/tidbcloud/tidbcloud-uikit/pull/402))
9
+
3
10
  ## 2.0.0-beta.110
4
11
 
5
12
  ### Minor Changes
@@ -793,7 +793,8 @@ const theme = createTheme.createTheme({
793
793
  padding: 0,
794
794
  centered: true,
795
795
  transitionProps: {
796
- duration: 200
796
+ duration: 200,
797
+ transition: "fade-down"
797
798
  },
798
799
  overlayProps: {
799
800
  backgroundOpacity: 0.9,
@@ -791,7 +791,8 @@ const theme = createTheme({
791
791
  padding: 0,
792
792
  centered: true,
793
793
  transitionProps: {
794
- duration: 200
794
+ duration: 200,
795
+ transition: "fade-down"
795
796
  },
796
797
  overlayProps: {
797
798
  backgroundOpacity: 0.9,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tidbcloud/uikit",
3
- "version": "2.0.0-beta.110",
3
+ "version": "2.0.0-beta.111",
4
4
  "description": "tidbcloud uikit",
5
5
  "type": "module",
6
6
  "main": "dist/primitive/index.cjs",