@tarojs/taro 3.5.0-beta.3 → 3.5.0-beta.4
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/compile.d.ts +1 -0
- package/types/taro.component.d.ts +0 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taro",
|
|
3
|
-
"version": "3.5.0-beta.
|
|
3
|
+
"version": "3.5.0-beta.4",
|
|
4
4
|
"description": "Taro framework",
|
|
5
5
|
"homepage": "https://github.com/nervjs/taro/tree/master/packages/taro#readme",
|
|
6
6
|
"main": "index.js",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"author": "O2Team",
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tarojs/api": "3.5.0-beta.
|
|
28
|
-
"@tarojs/runtime": "3.5.0-beta.
|
|
27
|
+
"@tarojs/api": "3.5.0-beta.4",
|
|
28
|
+
"@tarojs/runtime": "3.5.0-beta.4"
|
|
29
29
|
},
|
|
30
30
|
"peerDependenciesMeta": {
|
|
31
31
|
"@types/react": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"optional": true
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "7aca7841ed7e2af1b182ff5d24e91f44730ce783"
|
|
45
45
|
}
|
package/types/compile.d.ts
CHANGED
|
@@ -185,10 +185,4 @@ declare module './index' {
|
|
|
185
185
|
/** 页面的组件选项 */
|
|
186
186
|
options?: Record<string, unknown>
|
|
187
187
|
}
|
|
188
|
-
interface TaroStatic {
|
|
189
|
-
memo<P = {}>(
|
|
190
|
-
FunctionComponent: FunctionComponent<P>,
|
|
191
|
-
compare?: (oldProps: P, newProps: P) => boolean
|
|
192
|
-
): FunctionComponent<P>
|
|
193
|
-
}
|
|
194
188
|
}
|