feat: Add support for hidden attributes to form item types (#20956)
This commit is contained in:
parent
945d1569ee
commit
8ac3bd1768
2 changed files with 13 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue