feat: Add support for hidden attributes to form item types (#20956)

This commit is contained in:
croatialu
2025-06-18 11:30:30 +08:00
committed by GitHub
parent 945d1569ee
commit 8ac3bd1768
2 changed files with 13 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ export type TextTypeFormItem = {
variable: string
required: boolean
max_length: number
hide: boolean
}
export type SelectTypeFormItem = {
@@ -98,6 +99,7 @@ export type SelectTypeFormItem = {
variable: string
required: boolean
options: string[]
hide: boolean
}
export type ParagraphTypeFormItem = {
@@ -105,6 +107,7 @@ export type ParagraphTypeFormItem = {
label: string
variable: string
required: boolean
hide: boolean
}
/**
* User Input Form Item