After Successful migration from Angular 9 to 13, i upgraded Ignite from 9.1.8 to 13.2.4 but now the grid is rendering the columns vertically instead of horizontally. I use igx-tree grid and igx-gridIn styles.scss, i have made below changes:- Added @use '@infragistics/igniteui-angular/theming' as *;
- Added @include core();
Pakage.json has :
Hello,
After an investigation, I have determined that you don't need to install the igniteui-theming package explicitly, it comes with Ignite UI for Angular.
Additionally, for the licensed version @infragistics/igniteui-angular package should be installed. More information and a step by step guide with detailed setup instructions for using the private npm feed could be found in our licensing topic.
Regarding the IgxDialog component — starting from version 13.0, the default positionSettings animations (open/close) were changed to use fadeIn and fadeOut. If your project relies on the previous default animations, this change may cause the dialog to not behave as expected.
However, please keep in mind that support is applicable to two versions back - latest stable, and the previous major version, which means that version 13.2 is considered retired and is no longer eligible for Developer Support Services.
Regards, Monika Kirkova, Infragistics
Thank you. I wasn't aware of this. I am currently updating from Ignite 9.1.28 to 13.2.4 as my application is also upgrading from angular 9 to 13. I am a licensed user and it is enterprise-level change. It would be great if you can help with below things:Could you please provide sample?Do i need to install ignite-theming as well? if yes, which version?<igx-dialog> is not working in 13.2. For licensed do i import
import { IgxDialogModule, IgxButtonModule } from 'igniteui-angular'; or
import { IgxDialogModule, IgxButtonModule } from '@infragistics/ignite-angular'; ?
After an investigation, I have determined the style imports are correct, however, a theme should also be included for the grid. The core() function initializes base styles, but without a component theme, the grid will not style correctly.
The theme should be added as follows:
// src/styles.scss
@use "igniteui-angular/theming" as *;
@include core();
@include theme($default-palette);
Additionally, please check all breaking changes and the update guide from version 9 to version 13.2.
Please keep in mind that support is applicable to two versions back - latest stable, and the previous major version, which means that version 13.2 is considered retired and is no longer eligible for Developer Support Services.