From e4743001496e69caae5a8f4153bb0b6fa8398fa2 Mon Sep 17 00:00:00 2001 From: lancer <591320480@qq.com> Date: Fri, 5 Aug 2022 15:29:26 +0800 Subject: [PATCH] Description: add input component edittext IssueNo: https://gitee.com/openharmony/graphic_ui/issues/I5AD4A Feature or Bugfix: Feature Binary Source:No Signed-off-by: lancer --- api/config/css/cssConfig.json | 3 --- api/config/hml/basic/input.json | 26 ++++---------------------- 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/api/config/css/cssConfig.json b/api/config/css/cssConfig.json index 43d690d399..86342b4a3c 100644 --- a/api/config/css/cssConfig.json +++ b/api/config/css/cssConfig.json @@ -6871,9 +6871,6 @@ }, { "name": "placeholder-color", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ], "syntax": [ { "name": "" diff --git a/api/config/hml/basic/input.json b/api/config/hml/basic/input.json index 924a549eeb..5c6f300565 100644 --- a/api/config/hml/basic/input.json +++ b/api/config/hml/basic/input.json @@ -35,10 +35,7 @@ "name": "radio" }, { - "name": "text", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ] + "name": "text" }, { "name": "email", @@ -65,10 +62,7 @@ ] }, { - "name": "password", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ] + "name": "password" } ] }, @@ -112,32 +106,20 @@ }, { "name": "placeholder", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ], "required": false, "description": [ { - "name": "Content of the hint text. This attribute is available only when the component type is set to text, email, date, or time.", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ] + "name": "Content of the hint text. This attribute is available only when the component type is set to text, email, date, or time." } ], "type": "string" }, { "name": "maxlength", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ], "required": false, "description": [ { - "name": "Maximum number of characters that can be entered in the input box. If no value is specified, the number of characters is not limited.", - "syscap": [ - "SystemCapability.ArkUI.ArkUI.Full" - ] + "name": "Maximum number of characters that can be entered in the input box. If no value is specified, the number of characters is not limited." } ], "type": "string" -- Gitee