I recently upgraded ngx-mask to version 16.2.6, and after the upgrade, I'm facing an issue where the Angular compiler can't find NgxMaskModule exported from 'ngx-mask'.
The error message I'm receiving is:
ERROR in ./src/.....ts:2:10
TS2305: Module '"ngx-mask"' has no exported member 'NgxMaskModule'.
Here's how I'm importing NgxMaskModule in my Angular module:
import { NgxMaskModule } from 'ngx-mask';
I've checked the documentation and other resources, but couldn't find any breaking changes related to this.
Has anyone else faced this issue after upgrading? Is there a new way to import NgxMaskModule or have there been any changes in the recent versions of ngx-mask that I might have missed?