From 4c2305e36f55e59aba632daecdb7c4a3b11b9f8d Mon Sep 17 00:00:00 2001 From: liumingyue Date: Thu, 29 May 2025 20:39:42 +0800 Subject: [PATCH] =?UTF-8?q?module.json5=E6=96=B0=E5=A2=9E=E5=AD=97?= =?UTF-8?q?=E6=AE=B5formExtentionModule=E3=80=81formWidgetModule?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: liumingyue --- modulecheck/module.json | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/modulecheck/module.json b/modulecheck/module.json index 1714bd49..e0b2b7e5 100644 --- a/modulecheck/module.json +++ b/modulecheck/module.json @@ -51,7 +51,8 @@ "targetPriority", "generateBuildHash", "routerMap", - "appStartup" + "appStartup", + "formWidgetModule" ] }, "required": [ @@ -150,6 +151,7 @@ "routerMap", "appEnvironments", "appStartup", + "formExtensionModule", "hnpPackages" ] }, @@ -204,7 +206,9 @@ "proxyData", "routerMap", "appEnvironments", - "appStartup" + "appStartup", + "formExtensionModule", + "formWidgetModule" ] }, "required": [ @@ -1764,6 +1768,18 @@ "pattern": "^[$]profile:[0-9a-zA-Z_.]+$", "maxLength": 255 }, + "formExtensionModule": { + "description": "Module name for associating the frontend form package with the backend form.", + "type": "string", + "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$", + "maxLength": 128 + }, + "formWidgetModule": { + "description": "The backend of the application package form is associated with the frontend module name.", + "type": "string", + "pattern": "^[a-zA-Z][0-9a-zA-Z_.]*$", + "maxLength": 128 + }, "hnpPackages": { "description": "Native package configuration file.", "type": "array", -- Gitee