Skip to Content
Creation UI 15.0 is released 🎉

Calendar

Single date selection

Date range selection

Date range selection and two months view

Component API

Calendar component props

PropDefaultDescription
onClick—
onClick: (date: CalendarDateValue) => void

Callback function to be called when the calendar date is clicked

modedate
date | range

The mode of the calendar. Select single date or date range.

weekStartsOn—
1 | 2 | 3 | 4 | 5 | 6 | 7

The day of the week to start on. Default is 1 (Monday)

valueundefined
Date | null | undefined

Date of highlighted day

className—
string

Class names to add to wrapper component

numberOfMonths1
1 | 2

The number of months to display.

todayText"Today"
string

The text to display for the today date.

Dynamic value type

Type of value and onChange callback depends on the selected calendar mode.

type CalendarDateValue = Date | null | undefined
ModeValue type
dateCalendarDateValue
range[CalendarDateValue, CalendarDateValue]
Last updated on