@tarojs/components 4.0.0-canary.6 → 4.0.0-canary.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/common.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/components",
|
|
3
|
-
"version": "4.0.0-canary.
|
|
3
|
+
"version": "4.0.0-canary.8",
|
|
4
4
|
"description": "Taro 组件库",
|
|
5
5
|
"browser": "dist/index.js",
|
|
6
6
|
"main:h5": "dist/index.js",
|
|
@@ -37,9 +37,9 @@
|
|
|
37
37
|
"resolve-pathname": "^3.0.0",
|
|
38
38
|
"swiper": "6.8.0",
|
|
39
39
|
"weui": "^1.1.2",
|
|
40
|
-
"@tarojs/components-advanced": "4.0.0-canary.
|
|
41
|
-
"@tarojs/
|
|
42
|
-
"@tarojs/
|
|
40
|
+
"@tarojs/components-advanced": "4.0.0-canary.8",
|
|
41
|
+
"@tarojs/taro": "4.0.0-canary.8",
|
|
42
|
+
"@tarojs/router": "4.0.0-canary.8"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/generator": "^7.20.0",
|
package/types/common.d.ts
CHANGED
|
@@ -31,6 +31,11 @@ export interface StandardProps<T = any, TouchEvent extends BaseTouchEvent<any> =
|
|
|
31
31
|
* @supported weapp, harmony
|
|
32
32
|
*/
|
|
33
33
|
compileMode?: boolean | string
|
|
34
|
+
/**
|
|
35
|
+
* 自定义容器组件的方向
|
|
36
|
+
* @supported harmony
|
|
37
|
+
*/
|
|
38
|
+
harmonyDirection?: 'row' | 'column'
|
|
34
39
|
}
|
|
35
40
|
|
|
36
41
|
export interface FormItemProps {
|