Creating a timepicker with a min value on a DST start day (e.g. March 10, 2019), before the start time, causes the drop down to options to loop over pre-DST start times:
12:30 AM, 1:00 AM, 1:30 AM, 1:00 AM, 1:30 AM, 1:00 AM....
Expected: Time options should continue through the day:
12:30 AM, 1:00 AM, 1:30 AM, 2:00 AM, 2:30 AM, 3:00 AM....
I noticed the error originally in version "2018.3.1017", but it is still happening in "2019.1.220".
https://dojo.telerik.com/ayamEFuZ/4
If the dojo link doesn't work, here's a screenshot and code snippet.<input id="timepicker" />
<script>
$(document).ready(function () {
// create TimePicker with broken drop down picker options
$("#timepicker").kendoTimePicker({
min: new Date(2019, 2, 10, 0, 30)
});
});
</script>