@tarojs/taro 3.6.19 → 3.6.20

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.19",
3
+ "version": "3.6.20",
4
4
  "description": "Taro framework",
5
5
  "homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
6
6
  "main": "index.js",
@@ -21,11 +21,11 @@
21
21
  "author": "O2Team",
22
22
  "license": "MIT",
23
23
  "dependencies": {
24
- "@tarojs/api": "3.6.19",
25
- "@tarojs/runtime": "3.6.19"
24
+ "@tarojs/api": "3.6.20",
25
+ "@tarojs/runtime": "3.6.20"
26
26
  },
27
27
  "devDependencies": {
28
- "@tarojs/helper": "3.6.19"
28
+ "@tarojs/helper": "3.6.20"
29
29
  },
30
30
  "peerDependenciesMeta": {
31
31
  "@types/react": {
@@ -664,7 +664,7 @@ declare module '../../index' {
664
664
  /** 创建的目录路径 */
665
665
  dirPath: string
666
666
  /** 是否在递归创建该目录的上级目录后再创建该目录。如果对应的上级目录已经存在,则不创建该上级目录。
667
- * 如 dirPath 为 a/b/c/d 且 recursive 为 true,将创建 a 目录,再在 a 目录下创建 b 目录,以此类推直至创建 a/b/c 目录下的 d 目录。
667
+ * 如 dirPath 为 a/b/c/d 且 recursive 为 true,将创建 a 目录,再在 a 目录下创建 b 目录,以此类推直至创建 a/b/c 目录下的 d 目录。
668
668
  * @default false
669
669
  */
670
670
  recursive?: boolean
@@ -17,6 +17,8 @@ declare module '../../index' {
17
17
  verify?: keyof Verify
18
18
  /** 不 reLaunch 目标小程序,直接打开目标跳转的小程序退后台时的页面,需满足以下条件:1. 目标跳转的小程序生命周期未被销毁;2. 且目标当次启动的path、query、apiCategory与上次启动相同。默认值为 false 。 */
19
19
  noRelaunchIfPathUnchanged?: boolean
20
+ /** 打开的小程序是否支持全屏 */
21
+ allowFullScreen?: boolean
20
22
  /** 接口调用成功的回调函数 */
21
23
  success?: (res: TaroGeneral.CallbackResult) => void
22
24
  /** 接口调用失败的回调函数 */