after reading How to use MatPaginatorIntl? I have successfully managed to adapt a MatPaginatorIntl to my needs.
However, I would like to know how to use different MatPaginatorIntl for different sorts of table in my Angular App?
I have added to my AppModule.ts
providers: [{ provide: MatPaginatorIntl, useClass: MatPaginatorIntlCro}],
But just adding another MatPaginatorIntl as a Provider won't change my issue because I can only provide one.
So I probably have to find a way to use different providers of MatPaginatorIntl for differen tables. Does anyone have an idea how to approach this?
Thank you very much in advance!