Hello,
I'm trying to implement the HTML5 report viewer into my angular application. However during packages installation I get the following warnings:
npm WARN @progress/telerik-angular-report-viewer@3.18.323 requires a peer of @angular/common@^4.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN @progress/telerik-angular-report-viewer@3.18.323 requires a peer of @angular/core@^4.0.0 but none is installed. You must install peer dependencies yourself.
My verions on @angular/common and @angular/core is 5.2.5. Is there any compatibility issue? What are my options now (beside downgrading angular version)?
Best regards,
Marcin
6 Answers, 1 is accepted
The Telerik Angular Report Viewer is officially compatible with Angular 4 at the moment. However, you can go to your node_modules folder and modify the @progress/telerik-angular-report-viewer/package.json file as desired:
"peerDependencies"
: {
"@angular/common"
:
"^4.0.0"
,
// modify
"@angular/core"
:
"^4.0.0"
,
// modify
"jquery"
:
"^3.2.1"
,
"rxjs"
:
"^5.0.1"
},
We are going to release a version of the viewer officially compatible with Angular 5 in the next major release of the product.
Regards,
Nasko
Progress Telerik
We are aiming for a mid-May release of Telerik Reporting R2 2018.
Regards,
Nasko
Progress Telerik
HI there
Can you tell me if the latest release will be or is already compatible with Angular v6 ?
Regards
Paul
Hi Paul,
All I can say at the moment is that the mentioned mid-May release of Telerik Reporting R2 2018 is compatibile with Angular 5.
That's the version that I used and I don't know how the compability between newer versions looks like.
We support Angular 6 version applications - for more information about the project setup and example check Angular6 application working with local resources (without any CDNs) KB article.
Regards,
Silviya
Progress Telerik