@tarojs/taro-h5 3.5.6-alpha.0 → 3.5.6-alpha.2
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/dist/api/base/weapp/life-cycle.d.ts +3 -6
- package/dist/api/base/weapp/life-cycle.js +14 -3
- package/dist/index.cjs.d.ts +2 -6
- package/dist/index.cjs.js +13 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.d.ts +2 -6
- package/dist/index.esm.js +13 -2
- package/dist/index.esm.js.map +1 -1
- package/dist/taroApis.d.ts +2 -6
- package/package.json +4 -4
package/dist/taroApis.d.ts
CHANGED
|
@@ -128,12 +128,8 @@ declare const offAudioInterruptionBegin: () => Promise<{
|
|
|
128
128
|
declare const offAppShow: typeof Taro.offWindowResize;
|
|
129
129
|
declare const offAppHide: typeof Taro.offWindowResize;
|
|
130
130
|
// 生命周期
|
|
131
|
-
declare const getLaunchOptionsSync:
|
|
132
|
-
|
|
133
|
-
}>;
|
|
134
|
-
declare const getEnterOptionsSync: () => Promise<{
|
|
135
|
-
errMsg: string;
|
|
136
|
-
}>;
|
|
131
|
+
declare const getLaunchOptionsSync: typeof Taro.getLaunchOptionsSync;
|
|
132
|
+
declare const getEnterOptionsSync: typeof Taro.getEnterOptionsSync;
|
|
137
133
|
// 画布
|
|
138
134
|
/** 创建离屏 canvas 实例 */
|
|
139
135
|
declare const createOffscreenCanvas: () => Promise<{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taro-h5",
|
|
3
|
-
"version": "3.5.6-alpha.
|
|
3
|
+
"version": "3.5.6-alpha.2",
|
|
4
4
|
"description": "Taro h5 framework",
|
|
5
5
|
"browser": "dist/index.esm.js",
|
|
6
6
|
"main:h5": "dist/index.js",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
"author": "O2Team",
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tarojs/api": "3.5.6-alpha.
|
|
27
|
-
"@tarojs/router": "3.5.6-alpha.
|
|
28
|
-
"@tarojs/runtime": "3.5.6-alpha.
|
|
26
|
+
"@tarojs/api": "3.5.6-alpha.2",
|
|
27
|
+
"@tarojs/router": "3.5.6-alpha.2",
|
|
28
|
+
"@tarojs/runtime": "3.5.6-alpha.2",
|
|
29
29
|
"base64-js": "^1.3.0",
|
|
30
30
|
"jsonp-retry": "^1.0.3",
|
|
31
31
|
"query-string": "^7.1.1",
|