@tarojs/taro 4.1.12-beta.33 → 4.1.12-beta.34
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 +9 -9
- package/types/taro.config.d.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/taro",
|
|
3
|
-
"version": "4.1.12-beta.
|
|
3
|
+
"version": "4.1.12-beta.34",
|
|
4
4
|
"description": "Taro framework",
|
|
5
5
|
"author": "O2Team",
|
|
6
6
|
"license": "MIT",
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/postcss-url": "^10.0.4",
|
|
27
|
-
"@tarojs/
|
|
28
|
-
"@tarojs/
|
|
27
|
+
"@tarojs/runtime": "4.1.12-beta.34",
|
|
28
|
+
"@tarojs/api": "4.1.12-beta.34"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"html-webpack-plugin": "^5.6.0",
|
|
@@ -33,9 +33,9 @@
|
|
|
33
33
|
"webpack-chain": "^6.5.1",
|
|
34
34
|
"webpack-dev-server": "^4.15.2",
|
|
35
35
|
"rollup": "^3.29.4",
|
|
36
|
-
"@tarojs/components": "4.1.12-beta.
|
|
37
|
-
"@tarojs/
|
|
38
|
-
"@tarojs/
|
|
36
|
+
"@tarojs/components": "4.1.12-beta.34",
|
|
37
|
+
"@tarojs/shared": "4.1.12-beta.34",
|
|
38
|
+
"@tarojs/helper": "4.1.12-beta.34"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@types/react": "^18",
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
"webpack": "^5",
|
|
47
47
|
"webpack-chain": "^6",
|
|
48
48
|
"webpack-dev-server": "^4",
|
|
49
|
-
"@tarojs/helper": "4.1.12-beta.
|
|
50
|
-
"@tarojs/shared": "4.1.12-beta.
|
|
51
|
-
"@tarojs/components": "4.1.12-beta.
|
|
49
|
+
"@tarojs/helper": "4.1.12-beta.34",
|
|
50
|
+
"@tarojs/shared": "4.1.12-beta.34",
|
|
51
|
+
"@tarojs/components": "4.1.12-beta.34"
|
|
52
52
|
},
|
|
53
53
|
"peerDependenciesMeta": {
|
|
54
54
|
"@types/react": {
|
package/types/taro.config.d.ts
CHANGED
|
@@ -246,6 +246,12 @@ declare module './index' {
|
|
|
246
246
|
* shared 表示页面 wxss 样式将影响到自定义组件,自定义组件 wxss 中指定的样式也会影响页面和其他设置了 apply-shared 或 shared 的自定义组件。(这个选项在插件中不可用。)
|
|
247
247
|
*/
|
|
248
248
|
styleIsolation?: 'isolated' | 'apply-shared' | 'shared'
|
|
249
|
+
/**
|
|
250
|
+
* 构建期是否为递归壳 comp 开启额外实例绑定;同一编译 root 内任一页为 true 则该 root 的 comp 生效。
|
|
251
|
+
* 不会写入小程序页面 json。
|
|
252
|
+
* @default false
|
|
253
|
+
*/
|
|
254
|
+
forceCustomWrapper?: boolean
|
|
249
255
|
/**
|
|
250
256
|
* 设置导航栏额外图标,目前支持设置属性 icon,值为图标 url(以 https/http 开头)或 base64 字符串,大小建议 30*30 px
|
|
251
257
|
*
|