использую версию flatpicr.js 4.5.2 в стороннем компоненте
необобходимо сделать активными только пятницы и субботы
на сайте
https://flatpickr.js.org/examples/
в примерах есть такой код
но не понятно, куда его прописать, или где вызвать?
Disabling dates by a function:#
The function takes in a Date object, and should return a boolean value.
If the function returns true, the date will be disabled.
This flexibility allows us to use any arbitrary logic to disable dates.
The example below disables Saturdays and Sundays.
{
"disable": [
function(date) {
// return true to disable
return (date.getDay() === 5 || date.getDay() === 6);
}
],
"locale": {
"firstDayOfWeek": 1 // start week on Monday
}
}