To enable highlight dates in multiple colors. Let's say one uses react-datepicker for booking appointments.
UserA sets array of available dates that can be booked and UserB sees highlighted savailable dates from UserA which can be booked. And that is ok for UserB, only one dataset of highlighted dates.
But for UserA, I want two datasets to be highlighted in two different colors:
first dataset is UserA's availabilities set by himself
second dataset is array of booked dates by UserB
So, as react-datepicker consumer, I want to be able to highlight multiple datasets in different colors.
To enable highlight dates in multiple colors. Let's say one uses
react-datepicker
for booking appointments.UserA
sets array of available dates that can be booked andUserB
sees highlighted savailable dates fromUserA
which can be booked. And that is ok forUserB
, only one dataset of highlighted dates. But forUserA
, I want two datasets to be highlighted in two different colors:UserA's
availabilities set by himselfUserB
So, as
react-datepicker
consumer, I want to be able to highlight multiple datasets in different colors.