angular
angular copied to clipboard
Datepicker Angular 13 support
Hi, DatePicker currently doesn't work with Angular 13. I tried to create a PR to fix it but looks like I need your help to finish it. https://github.com/matheo/angular/pull/44
@matheo I'm sorry to bother you. Are you still support this lib?
I created an updated package with support Angular 13 and luxon 2 https://www.npmjs.com/package/@vpetrusevici/datepicker
Thanks for this @vpetrusevici
I will be upgrading this repo in the next few days creating the 11.x
and 12.x
branches in the process
Does DatePicker work with Angular 13 yet? It is not correctly rendering.
@matheo, are there plans to support angular 13?
Version 13.0.0-beta.1 still renders incorrectly with Angular 13
Have you guys configured the styles with the new SASS modules? https://github.com/matheo/angular/tree/master/libs/datepicker#angular-12
Have you guys configured the styles with the new SASS modules? https://github.com/matheo/angular/tree/master/libs/datepicker#angular-12
Hello, @matheo , this worked perfectly, thank you for answering.
Just a thing. stylePreprocessorOptions configuration in angular.json
goes under "options"
"projects": {
"[your-project]": {
"architect": {
"build": {
...
"options": {
...
"stylePreprocessorOptions": {
"includePaths": ["node_modules"]
}
}
}
}
}