Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
15
Angular 19 - while compiling facing issue with theming
posted

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.

Parents
  • 820
    Offline posted

    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

Reply Children
No Data