@tarojs/taro 3.6.31-canary.1 → 3.6.32-alpha.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tarojs/taro",
3
- "version": "3.6.31-canary.1",
3
+ "version": "3.6.32-alpha.1",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -21,15 +21,15 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.31-canary.1"
24
+ "@tarojs/api": "3.6.32-alpha.1"
25
25
  },
26
26
  "devDependencies": {
27
- "@tarojs/helper": "3.6.31-canary.1",
28
- "@tarojs/runtime": "3.6.31-canary.1"
27
+ "@tarojs/helper": "3.6.32-alpha.1",
28
+ "@tarojs/runtime": "3.6.32-alpha.1"
29
29
  },
30
30
  "peerDependencies": {
31
- "@tarojs/helper": "~3.6.31-canary.1",
32
- "@tarojs/runtime": "~3.6.31-canary.1"
31
+ "@tarojs/helper": "~3.6.32-alpha.1",
32
+ "@tarojs/runtime": "~3.6.32-alpha.1"
33
33
  },
34
34
  "peerDependenciesMeta": {
35
35
  "@types/react": {
@@ -14,6 +14,8 @@ export interface IH5RouterConfig {
14
14
  lazyload?: boolean | ((pagename: string) => boolean)
15
15
  renamePagename?: (pagename: string) => string
16
16
  forcePath?: string
17
+ /** 加上这个参数,可以解决返回页面的时候白屏的问题,但是某些不支持 :has() 选择器的浏览器会有问题 */
18
+ enhanceAnimation?: boolean
17
19
  }
18
20
 
19
21
  export interface IH5Config {