6eDesign / svelte-calendar

A lightweight datepicker with neat animations and a unique UX.
https://6edesign.github.io/svelte-calendar/
MIT License
543 stars 90 forks source link

fix: Scroll fails past start or end date #156

Open snopan opened 2 years ago

snopan commented 2 years ago

Purpose

When the calendar has start or end date defined like so image If you go a date anywhere before 24th on the next month image The left button to go back a month will fail, the same will happen if it's selecting date or year. The reason is becasue when clicking the left button it will select a date a month ago and if that date is unselectable (behind start date or after end date) then it will just give up. This also breaks scrolling because it's the same action as clicking the arrows. A possible solution is to take the start date or end date instead of doing nothing.

Changes