13 lines
374 B
TypeScript
13 lines
374 B
TypeScript
import { defaultButtonLabel } from '../constants'
|
|
import { PictureChoiceBlock } from './schema'
|
|
|
|
export const defaultPictureChoiceOptions = {
|
|
buttonLabel: defaultButtonLabel,
|
|
searchInputPlaceholder: 'Filter the options...',
|
|
isMultipleChoice: false,
|
|
isSearchable: false,
|
|
dynamicItems: {
|
|
isEnabled: false,
|
|
},
|
|
} as const satisfies PictureChoiceBlock['options']
|