Reputation: 51
In my company, we upgraded our angular and primeng to version 13. The following styles are removed:
But we used them in our application.
Should we replace them? Or we have to adjust our css class?
Thank you, very much!
Upvotes: 0
Views: 2336
Reputation: 783
you could try and replace them.Based on this commit for example
ui-state-active
becomes p-highlight
. Better approach will be to use custom external classes and don't relay on primeng classes as much as you can. tabmenu has styleClass
property which can be used
Upvotes: 3