feat(inputs): ✨ Add text options
This commit is contained in:
@ -24,6 +24,12 @@ export type TextStep = StepBase & {
|
||||
|
||||
export type TextInputStep = StepBase & {
|
||||
type: StepType.TEXT_INPUT
|
||||
options?: TextInputOptions
|
||||
}
|
||||
|
||||
export type TextInputOptions = {
|
||||
labels?: { placeholder?: string; button?: string }
|
||||
isLong?: boolean
|
||||
}
|
||||
|
||||
export type Target = { blockId: string; stepId?: string }
|
||||
|
Reference in New Issue
Block a user