feat: Add support for hidden attributes to form item types (#20956)
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user