react-multi-date-picker icon indicating copy to clipboard operation
react-multi-date-picker copied to clipboard

DatePanel with markFocused does not style the active datetime with Calendar set to multiple and range

Open noah-franklin opened this issue 1 year ago • 1 comments

This is my component

    <Calendar
       style={{ width: "100%" }} // Adjust the width and height as needed
       className="bg-dark"
       multiple
       range
       rangeHover
       format="MM/DD/YYYY HH:mm"
       plugins={[
         <TimePicker hideSeconds position="bottom" />,
         <DatePanel markFocused />,
       ]}
     />

Im guessing markFocus doesnt support multiple range dates in terms of styling, the functionality is there.

noah-franklin avatar Sep 24 '24 17:09 noah-franklin