OverviewGetting startedDatepickerDescriptionPropsCustomizationDatepicker attached to the inputChange visual themeUtilities
Customize UI
Description
Datepicker is a component which allows user to see and pick from Calendar of provided dates. It contains:
Header
with selected date and Datepicker title.Selector
, which allows switching between precisions and step between months.Day
,Month
andYear
calendars.
Demo datepicker
Feb 6th
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
Props
initialDate
Class(Date)
new Date(2020, 0, 6)
today
Class(Date)
new Date(Date.now())
startDate
Class(Date)
new Date(2020, 0, 1)
endDate
Class(Date)
new Date(2020, 1, 25)
showHeader
bool
true
title
string
[Empty string]
minPrecision
'year' │ 'month' │ 'day'
'day'
onDateSet
func
required
wrapperClassName
string
[Empty string]
renderDayAs
elementType
Day
dayCalendarClassName
string
[Empty string]
renderMonthAs
elementType
Month
monthCalendarClassName
string
[Empty string]
renderYearAs
elementType
Year
yearCalendarClassName
string
[Empty string]
renderWeekdaysAs
elementType
Weekdays
renderHeaderAs
elementType
HeaderUI
renderSelectorAs
elementType
SelectorVisual
disableDate
func
({isWeekend, precision, date}) => false
highlightDate
func
({isWeekend, precision, date}) => false
highlightWeekends
bool
true
dateFnsLocale
{}
theme
{}
Customization
No header
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Disable weekend highlight
Jan 6th
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
With custom locale
янв. 6-е
пн
вт
ср
чт
пт
сб
вс
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
You can provide any locale included in date-fns
or create a custom one. First day of the week is defined inside locale object, see locale.options.weekStartsOn
.
Disable and highlight dates
Jan 6th
Su
Mo
Tu
We
Th
Fr
Sa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
You can disable (custom style and non-clickable) or highlight (custom style) any rendered date.
Define minimal precision of Calendar
Setting minPrecision
prop allows defining what kind of date user is able to select. E.g. if minPrecision === 'month''
, user can select only between months and years. Read more.
Jan 6th
Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
Nov
Dec
Override CSS wrapper class name
You can override wrapping className of Datepicker
with wrapperClassName
prop.
<Datepicker wrapperClassName="foo" />