I want a calendar in my webapp, but I don't want it to look like the standard Angular UI, or even a bootstrap UI. I want to dictate the look and feel myself.
It seems like it was easy to change the UI in Angular 1 by changing the template html (see Can you override specific templates in AngularUI Bootstrap?), but I can't understand how to do the same post Angular 2.
I'm working with an Angular Cli dev environment, just using the Angular Material datepicker from https://material.angular.io/components/datepicker/overview
How do I change how it looks?
Ultimately, I might want to just grab information from the datepicker, rather than displaying it - so I might want to know how many days there are in a given February, or whether September starts on a Tuesday? How would I do that?