From 27a1f4718abf358091e63d85e049d8fb47060ca9 Mon Sep 17 00:00:00 2001 From: qiaochenl Date: Wed, 7 Dec 2022 01:55:24 +0000 Subject: [PATCH 1/3] toggle slider code commit 12070955 Signed-off-by: qiaochenl --- compiler/components/slider.json | 2 +- compiler/components/toggle.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/components/slider.json b/compiler/components/slider.json index caf66ef1b..93bff0e40 100644 --- a/compiler/components/slider.json +++ b/compiler/components/slider.json @@ -3,6 +3,6 @@ "atomic": true, "attrs": [ "blockColor", "trackColor", "selectedColor", "minLabel", "maxLabel", "showSteps", "showTips", "trackThickness", - "onChange" + "onChange", "icon" ] } diff --git a/compiler/components/toggle.json b/compiler/components/toggle.json index fbee0bfff..240f341d8 100644 --- a/compiler/components/toggle.json +++ b/compiler/components/toggle.json @@ -1,4 +1,4 @@ { "name": "Toggle", - "attrs": ["onChange", "selectedColor", "switchPointColor"] + "attrs": ["onChange", "selectedColor", "switchPointColor", "showText", "textOn", "textOff"] } \ No newline at end of file -- Gitee From 215b5453e7875d874f7168b6a80a60b1c54aadcb Mon Sep 17 00:00:00 2001 From: qiaocehnl Date: Mon, 6 Feb 2023 02:18:51 +0000 Subject: [PATCH 2/3] arkui code commit 02061018 Signed-off-by: qiaocehnl --- compiler/components/textPicker.json | 2 +- compiler/components/textinput.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/compiler/components/textPicker.json b/compiler/components/textPicker.json index 2e3cb114e..a7e989c30 100644 --- a/compiler/components/textPicker.json +++ b/compiler/components/textPicker.json @@ -1,4 +1,4 @@ { "name": "TextPicker", - "attrs": ["defaultPickerItemHeight", "onAccept", "onCancel", "onChange"] + "attrs": ["defaultPickerItemHeight", "onAccept", "onCancel", "onChange", "speed"] } \ No newline at end of file diff --git a/compiler/components/textinput.json b/compiler/components/textinput.json index a74722b53..76c678008 100644 --- a/compiler/components/textinput.json +++ b/compiler/components/textinput.json @@ -5,6 +5,7 @@ "type", "placeholderColor", "placeholderFont", "enterKeyType", "caretColor", "maxLength", "onEditChanged", "onSubmit", "onChange", "onCopy", "OnCut", "OnPaste", "fontSize", "fontColor", "fontStyle", "fontWeight", "fontFamily", "inputFilter", "onEditChange", - "copyOption", "style" + "copyOption", "style", "autoComplete", "autoCheck", "completeLen", "completeColor", + "errorColor", "type", "mask", "maskLen" ] } \ No newline at end of file -- Gitee From 201421b03760cf493e7944d84c4a57fd74ea86dd Mon Sep 17 00:00:00 2001 From: qiaocehnl Date: Wed, 1 Mar 2023 06:26:43 +0000 Subject: [PATCH 3/3] code commit 03011421 Signed-off-by: qiaocehnl --- compiler/components/swiper.json | 2 +- compiler/components/textarea.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/components/swiper.json b/compiler/components/swiper.json index e54b1b906..ce4ab997d 100644 --- a/compiler/components/swiper.json +++ b/compiler/components/swiper.json @@ -3,6 +3,6 @@ "attrs": [ "index", "autoPlay", "interval", "indicator", "loop", "duration", "vertical", "itemSpace", "cachedCount", "displayMode", "displayCount", "effectMode", "disableSwipe", "curve", "onChange", - "indicatorStyle" + "indicatorStyle", "nextMargin", "previousMargin", "swiperAlign" ] } \ No newline at end of file diff --git a/compiler/components/textarea.json b/compiler/components/textarea.json index a2e98a0eb..b10ec5c4d 100644 --- a/compiler/components/textarea.json +++ b/compiler/components/textarea.json @@ -4,6 +4,6 @@ "attrs": [ "placeholderColor", "placeholderFont", "textAlign", "caretColor", "onChange", "onCopy", "OnCut", "OnPaste", "fontSize", "fontColor", "fontStyle", "fontWeight", "fontFamily", - "inputFilter", "copyOption" + "inputFilter", "copyOption", "scrollBar" ] } \ No newline at end of file -- Gitee