From 07f5de71bb0f8085387b0d39a85b2bfdb7ce844f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=82=96=E8=91=9B?= Date: Sat, 28 Jun 2025 10:50:59 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E6=94=AF=E6=8C=81=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E8=B0=83=E6=95=B4=E5=B0=BA=E5=AF=B8=E7=9A=84?= =?UTF-8?q?=E8=83=BD=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李肖葛 --- modulecheck/forms.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index a3943553..ce9f586d 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -47,7 +47,9 @@ "renderingMode", "enableBlurBackground", "funInteractionParams", - "sceneAnimationParams" + "sceneAnimationParams", + "resizable", + "groupId" ] }, "required": [ @@ -383,6 +385,17 @@ } } } + }, + "resizable": { + "description": "This label indicates whether the form can resizable.", + "type": "boolean", + "default": false + }, + "groupId": { + "description": "The group id of the form.", + "type": "string", + "pattern": "^[0-9]*$", + "maxLength": 127 } } } -- Gitee From 1371c3962ff8008bae249b2cdd3c2a7be0072f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E8=82=96=E8=91=9B?= Date: Sat, 28 Jun 2025 15:31:18 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E6=94=AF=E6=8C=81=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=8D=A1=E7=89=87=E8=B0=83=E6=95=B4=E5=B0=BA=E5=AF=B8=E7=9A=84?= =?UTF-8?q?=E8=83=BD=E5=8A=9B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 李肖葛 --- modulecheck/forms.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modulecheck/forms.json b/modulecheck/forms.json index ce9f586d..b1ebaea9 100644 --- a/modulecheck/forms.json +++ b/modulecheck/forms.json @@ -392,10 +392,10 @@ "default": false }, "groupId": { - "description": "The group id of the form.", + "description": "The group id of the form. Forms in the same group can be resized.", "type": "string", "pattern": "^[0-9]*$", - "maxLength": 127 + "maxLength": 2 } } } -- Gitee