From 144a87fae4992c52cffbe715ca09f8c0ff098a3a Mon Sep 17 00:00:00 2001 From: dujingcheng Date: Sun, 29 Jan 2023 11:13:15 +0000 Subject: [PATCH 1/2] uiSyntax Signed-off-by: dujingcheng Change-Id: I45cc5768ba924f47ab101a1ce196828edec35a79 --- modulecheck/forms.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index 404d2789..c08035a9 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -23,6 +23,7 @@ "name", "description", "src", + "uiSyntax", "window", "colorMode", "formConfigAbility", @@ -156,6 +157,15 @@ "description": "Indicates the src of form.", "type": "string" }, + "uiSyntax": { + "description": "This tag identifies the ui syntax.", + "type": "string", + "default": "hml", + "enum": [ + "hml", + "arkts" + ] + }, "window": { "description": "Defines window-related configurations. This attribute is not supported by devices running the OHOS.", "type": "object", -- Gitee From 2fd9d0134f2618fef49e89499a811c54b410e569 Mon Sep 17 00:00:00 2001 From: keerecles Date: Fri, 3 Feb 2023 17:32:53 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=B8=B4=E6=97=B6SDK?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: keerecles Change-Id: I340e58a6bc95e2fba86a3414270db9735af5289b --- modulecheck/forms.json | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index c08035a9..1a5c10bb 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -24,6 +24,7 @@ "description", "src", "uiSyntax", + "type", "window", "colorMode", "formConfigAbility", @@ -166,6 +167,15 @@ "arkts" ] }, + "type": { + "description": "This tag identifies the card Type. The value can be JS or eTS.", + "type": "string", + "enum": [ + "JS", + "eTS" + ], + "default": "JS" + }, "window": { "description": "Defines window-related configurations. This attribute is not supported by devices running the OHOS.", "type": "object", -- Gitee