Hi Team ,
After installing below packages in Angular19 application ,
"@infragistics/igniteui-angular": "^19.1.8",
"igniteui-theming": "^21.0.2",
We are getting below errors ,
src/igx-global-them.scss ,
Thanks,
Rajender Lekkala.
Hello,
Thank you for posting in our community!
I have been looking into your question, and what I can say is that igniteui-angular 19.1.x has a peer dependency on igniteui-theming 17.1.0, as can be seen in the package.json file here.
Having this in mind, to install and use the proper version, you can perform one of the following options:
1) Uninstall the package and install version 17.1.0.
npm uninstall igniteui-theming npm install igniteui-theming@17.1.0
2) Uninstall both packages and install the @infragistics/igniteui-angular package via ng add.
npm uninstall igniteui-theming npm uninstall @infragistics/igniteui-angular ng add @infragistics/igniteui-angular@19.1
The second approach is the recommended one since the command will take care to install the desired version along with all of its dependencies, font imports, and style references to your project.
Please test it on your side and let me know how it behaves.
Looking forward to your reply.
Sincerely, Riva Ivanova Software Developer
@Reva Ivanova ,
Thanks for ur help, it's working now .
I am glad I was able to assist you with this matter and that everything is now working as expected.
Thank you for using Infragistics components.