angular icon indicating copy to clipboard operation
angular copied to clipboard

Datepicker Angular 13 support

Open vpetrusevici opened this issue 3 years ago • 8 comments

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

vpetrusevici avatar Nov 06 '21 15:11 vpetrusevici

@matheo I'm sorry to bother you. Are you still support this lib?

vpetrusevici avatar Nov 07 '21 11:11 vpetrusevici

I created an updated package with support Angular 13 and luxon 2 https://www.npmjs.com/package/@vpetrusevici/datepicker

vpetrusevici avatar Nov 09 '21 16:11 vpetrusevici

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

matheo avatar Nov 30 '21 01:11 matheo

Does DatePicker work with Angular 13 yet? It is not correctly rendering. datepicker issue

jbistis avatar Jan 06 '22 20:01 jbistis

@matheo, are there plans to support angular 13?

jbistis avatar Jan 09 '22 11:01 jbistis

Version 13.0.0-beta.1 still renders incorrectly with Angular 13

tutkli avatar Feb 10 '22 15:02 tutkli

Have you guys configured the styles with the new SASS modules? https://github.com/matheo/angular/tree/master/libs/datepicker#angular-12

matheo avatar Feb 10 '22 16:02 matheo

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"]
         }
       }
      }
    }
  }

tutkli avatar Feb 11 '22 08:02 tutkli