@@ -18,6 +18,7 @@ import CustomDateFormat from "../../examples/customDateFormat?raw";
18
18
import CustomClassName from "../../examples/customClassName?raw" ;
19
19
import CustomCalendarClassName from "../../examples/customCalendarClassName?raw" ;
20
20
import CustomDayClassName from "../../examples/customDayClassName?raw" ;
21
+ import CustomWeekClassName from "../../examples/customWeekClassName?raw" ;
21
22
import CustomTimeClassName from "../../examples/customTimeClassName?raw" ;
22
23
import Today from "../../examples/today?raw" ;
23
24
import PlaceholderText from "../../examples/placeholderText?raw" ;
@@ -100,6 +101,7 @@ import CustomTimeInput from "../../examples/customTimeInput?raw";
100
101
import CloseOnScroll from "../../examples/closeOnScroll?raw" ;
101
102
import CloseOnScrollCallback from "../../examples/closeOnScrollCallback?raw" ;
102
103
import SelectsRange from "../../examples/selectsRange?raw" ;
104
+ import SelectsRangeWithCustomSeparator from "../../examples/customRangeSeparator?raw" ;
103
105
import selectsRangeWithDisabledDates from "../../examples/selectsRangeWithDisabledDates?raw" ;
104
106
import CalendarStartDay from "../../examples/calendarStartDay?raw" ;
105
107
import ExternalForm from "../../examples/externalForm?raw" ;
@@ -222,6 +224,10 @@ export default class exampleComponents extends React.Component {
222
224
title : "Custom day class name" ,
223
225
component : CustomDayClassName ,
224
226
} ,
227
+ {
228
+ title : "Custom week class name" ,
229
+ component : CustomWeekClassName ,
230
+ } ,
225
231
{
226
232
title : "Custom date format" ,
227
233
component : CustomDateFormat ,
@@ -242,6 +248,10 @@ export default class exampleComponents extends React.Component {
242
248
title : "Date range for one datepicker" ,
243
249
component : SelectsRange ,
244
250
} ,
251
+ {
252
+ title : "Date range for one datepicker with custom range separator" ,
253
+ component : SelectsRangeWithCustomSeparator ,
254
+ } ,
245
255
{
246
256
title : "Date range for one datepicker with disabled dates highlighted" ,
247
257
component : selectsRangeWithDisabledDates ,
0 commit comments