@tarojs/components 3.6.22-nightly.9 → 3.6.23-nightly.0
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 +3 -3
- package/types/Input.d.ts +2 -1
- package/types/Map.d.ts +0 -2
- package/types/Picker.d.ts +1 -1
- package/types/PickerView.d.ts +1 -0
- package/types/ShareElement.d.ts +1 -0
- package/types/Slider.d.ts +2 -1
- package/types/Swiper.d.ts +1 -1
- package/types/Switch.d.ts +2 -1
- package/types/Textarea.d.ts +2 -1
- package/types/Video.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/components",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.23-nightly.0",
|
|
4
4
|
"description": "Taro 组件库",
|
|
5
5
|
"browser": "dist/index.js",
|
|
6
6
|
"main:h5": "dist/index.js",
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
"resolve-pathname": "^3.0.0",
|
|
37
37
|
"tslib": "^2.6.2",
|
|
38
38
|
"swiper": "6.8.0",
|
|
39
|
-
"@tarojs/components-advanced": "3.6.
|
|
40
|
-
"@tarojs/taro": "3.6.
|
|
39
|
+
"@tarojs/components-advanced": "3.6.23-nightly.0",
|
|
40
|
+
"@tarojs/taro": "3.6.23-nightly.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@babel/generator": "^7.20.0",
|
package/types/Input.d.ts
CHANGED
|
@@ -6,7 +6,8 @@ interface InputProps extends StandardProps, FormItemProps {
|
|
|
6
6
|
*/
|
|
7
7
|
value?: string
|
|
8
8
|
/** 设置 React 非受控输入框的初始内容
|
|
9
|
-
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn
|
|
9
|
+
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
|
|
10
|
+
* @unique
|
|
10
11
|
*/
|
|
11
12
|
defaultValue?: string
|
|
12
13
|
/** input 的类型
|
package/types/Map.d.ts
CHANGED
|
@@ -637,7 +637,6 @@ declare namespace MapProps {
|
|
|
637
637
|
longitude: number
|
|
638
638
|
latitude: number
|
|
639
639
|
}
|
|
640
|
-
|
|
641
640
|
interface onPolylineTapEventDetail {
|
|
642
641
|
polylineId: number
|
|
643
642
|
longitude: number
|
|
@@ -648,7 +647,6 @@ declare namespace MapProps {
|
|
|
648
647
|
errCode: number
|
|
649
648
|
errMsg: string
|
|
650
649
|
}
|
|
651
|
-
|
|
652
650
|
interface onInterpolatePointEventDetail {
|
|
653
651
|
markerId: number
|
|
654
652
|
longitude: number
|
package/types/Picker.d.ts
CHANGED
package/types/PickerView.d.ts
CHANGED
package/types/ShareElement.d.ts
CHANGED
package/types/Slider.d.ts
CHANGED
|
@@ -27,7 +27,8 @@ interface SliderProps extends StandardProps, FormItemProps {
|
|
|
27
27
|
*/
|
|
28
28
|
value?: number
|
|
29
29
|
/** 设置 React 非受控状态下的初始取值
|
|
30
|
-
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn
|
|
30
|
+
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
|
|
31
|
+
* @unique
|
|
31
32
|
*/
|
|
32
33
|
defaultValue?: string
|
|
33
34
|
/** 背景条的颜色(请使用 backgroundColor)
|
package/types/Swiper.d.ts
CHANGED
package/types/Switch.d.ts
CHANGED
|
@@ -7,7 +7,8 @@ interface SwitchProps extends StandardProps, FormItemProps {
|
|
|
7
7
|
*/
|
|
8
8
|
checked?: boolean
|
|
9
9
|
/** 设置在 React 非受控状态下,当前是否选中
|
|
10
|
-
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn
|
|
10
|
+
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
|
|
11
|
+
* @unique
|
|
11
12
|
*/
|
|
12
13
|
defaultChecked?: boolean
|
|
13
14
|
/** 是否禁用
|
package/types/Textarea.d.ts
CHANGED
|
@@ -6,7 +6,8 @@ interface TextareaProps extends StandardProps, FormItemProps {
|
|
|
6
6
|
*/
|
|
7
7
|
value?: string
|
|
8
8
|
/** 设置 React 非受控输入框的初始内容
|
|
9
|
-
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn
|
|
9
|
+
* @supported weapp, alipay, swan, tt, qq, jd, h5, rn, harmony_hybrid
|
|
10
|
+
* @unique
|
|
10
11
|
*/
|
|
11
12
|
defaultValue?: string
|
|
12
13
|
/** 输入框为空时占位符
|
package/types/Video.d.ts
CHANGED
|
@@ -315,7 +315,7 @@ interface VideoProps extends StandardProps {
|
|
|
315
315
|
onTimeUpdate?: CommonEventFunction<VideoProps.onTimeUpdateEventDetail>
|
|
316
316
|
/** 当视频进入和退出全屏时触发
|
|
317
317
|
*
|
|
318
|
-
* @supported
|
|
318
|
+
* @supported h5, rn, harmony_hybrid
|
|
319
319
|
*/
|
|
320
320
|
onFullscreenChange?: CommonEventFunction<VideoProps.onFullscreenChangeEventDetail>
|
|
321
321
|
/** 视频出现缓冲时触发
|