Brad

Results 3 comments of Brad

The reason for this is `import { createTextMaskInputElement } from 'text-mask-core/dist/textMaskCore'` in `angular2TextMask.ts`. ngcc doesn't like deep imports. I don't believe it would cause any problems being just a simple...

Modifying the node_modules package locally is not an efficient solution to this. I feel a lot of things would need to be changed in the text-mask package to make this...

I took a page out of angular material's book to overcome this. ```typescript import { ChangeDetectorRef, Component, ElementRef, OnDestroy, OnInit, ViewChild } from '@angular/core'; import { ViewportRuler } from '@angular/cdk/scrolling';...