2
0
Files
bot/packages/schemas/features/blocks/inputs/text/constants.ts

12 lines
344 B
TypeScript
Raw Normal View History

import { defaultButtonLabel } from '../constants'
import { TextInputBlock } from './schema'
export const defaultTextInputOptions = {
isLong: false,
labels: { button: defaultButtonLabel, placeholder: 'Type your answer...' },
attachments: {
isEnabled: false,
visibility: 'Auto',
},
} as const satisfies TextInputBlock['options']