When activating showMonthDropdown and showYearDropdown with minDate and/or maxDate it will show all the months that can be selected in the dropdown.
But how can I show only the years that I define in minDate or maxDate in dropdown. Or how can I make other years non-selectable.
<ReactDatePicker
minDate={new Date(2019,11)}
maxDate={new Date()}
showMonthDropdown
showYearDropdown
dropdownMode="select"
/>
Here, months other than December in the dropdown (i.e. November 2019 and earlier) should be unselectable in the month dropdown.
How can I do that
expected behavior