2
0
Files
bot/packages/schemas/features/blocks/inputs/choice/constants.ts
Baptiste Arnaud 35300eaf34 ♻️ Introduce typebot v6 with events (#1013)
Closes #885
2023-11-08 15:34:16 +01:00

10 lines
323 B
TypeScript

import { defaultButtonLabel } from '../constants'
import { ChoiceInputBlock } from './schema'
export const defaultChoiceInputOptions = {
buttonLabel: defaultButtonLabel,
searchInputPlaceholder: 'Filter the options...',
isMultipleChoice: false,
isSearchable: false,
} as const satisfies ChoiceInputBlock['options']