wakirin / Litepicker

Date range picker - lightweight, no dependencies
MIT License
898 stars 132 forks source link

Disable weekdays #286

Open jcsdesterke opened 2 years ago

jcsdesterke commented 2 years ago

Hello there,

My questions is if it is possible to en/disable specific weekdays. For instance disable all wednesdays or mondays.

Thanks!

jcsdesterke commented 2 years ago

Solution:

lockDaysFilter: (day) => {
                const d = day.getDay();

                return [2, 3, 4, 6, 0].includes(d);
            },