2023-11-08 15:34:16 +01:00
|
|
|
import { defaultButtonLabel } from '../constants'
|
|
|
|
import { TextInputBlock } from './schema'
|
|
|
|
|
|
|
|
export const defaultTextInputOptions = {
|
|
|
|
isLong: false,
|
|
|
|
labels: { button: defaultButtonLabel, placeholder: 'Type your answer...' },
|
2024-06-26 10:13:38 +02:00
|
|
|
attachments: {
|
|
|
|
isEnabled: false,
|
|
|
|
visibility: 'Auto',
|
|
|
|
},
|
2023-11-08 15:34:16 +01:00
|
|
|
} as const satisfies TextInputBlock['options']
|