Currently I'm trying to upgrade PrimeNG in my Angular 7 project from ^5.2.7 to ^7.1.3. After the update, when I'm running "ng serve", I'm getting errors related to dropdown and multiselect. To fix this it suggests to install @angular/cdk. But after doing this step, I'm getting my styles crashed, because @angular/cdk changes all classes starting from "fa" (for font awesome) to "pi" (primeicons). And also added some new styling, for example on "ui-dropdown" class. which makes lots of problem in a big project. Is there any way to prevent style and class changing while updating PrimeNG?
Thanks in advance.