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

13 lines
378 B
TypeScript

import { defaultButtonLabel } from '../constants'
import { DateInputBlock } from './schema'
export const defaultDateInputOptions = {
hasTime: false,
isRange: false,
labels: { button: defaultButtonLabel, from: 'From:', to: 'To:' },
format: 'dd/MM/yyyy',
formatWithTime: 'dd/MM/yyyy HH:mm',
} as const satisfies DateInputBlock['options'] & {
formatWithTime: string
}