is there an angular 2 datepicker component that enables me to disable an array of specific dates?
I know that creating a custom wrapper for jquery datepicker is an option.
I found these 3 datepickers, but no one seem to capable of disabling certain dates.
https://github.com/kekeh/mydatepicker
https://github.com/jkuri/ng2-datepicker
www.primefaces.org/primeng/#/calendar
EDIT:
I will be getting the list in an http request. In addition, I need to disable all dates before the current date.
EDIT2:
It is a reservation use case. I need to disable all dates before today and I need to disable all dates from an array I will get in an http request.
The usage of validator is not a good option, because the user needs to see what he cannot choose.
EDIT3:
I have just found this one https://github.com/valor-software/ng2-bootstrap/tree/master/components/datepicker, I will go with this one and later post an answer.