@tarojs/taro 3.6.7-alpha.1 → 3.6.8
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 +4 -4
- package/types/taro.config.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taro",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.8",
|
|
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.
|
|
25
|
-
"@tarojs/runtime": "3.6.
|
|
24
|
+
"@tarojs/api": "3.6.8",
|
|
25
|
+
"@tarojs/runtime": "3.6.8"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
|
-
"@tarojs/helper": "3.6.
|
|
28
|
+
"@tarojs/helper": "3.6.8"
|
|
29
29
|
},
|
|
30
30
|
"peerDependenciesMeta": {
|
|
31
31
|
"@types/react": {
|
package/types/taro.config.d.ts
CHANGED
|
@@ -154,6 +154,11 @@ declare module './index' {
|
|
|
154
154
|
* @default: false
|
|
155
155
|
*/
|
|
156
156
|
disableScroll?: boolean
|
|
157
|
+
/** 是否使用页面全局滚动,MPA下默认为全局滚动,SPA默认为局部滚动
|
|
158
|
+
* 只在H5生效
|
|
159
|
+
* @default: MPA:true SPA:false
|
|
160
|
+
*/
|
|
161
|
+
usingWindowScroll?: boolean
|
|
157
162
|
/** 禁止页面右滑手势返回
|
|
158
163
|
*
|
|
159
164
|
* **注意** 自微信客户端 7.0.5 开始,页面配置中的 disableSwipeBack 属性将不再生效,
|