I want to disable paste. But using (paste)="false" with digitOnly directive doesn't work. ``` <input [(ngModel)]="test" placeholder="Enter Value" type="text" digitOnly [pattern]="getInputPattern()" (input)="onInputChange()" (paste)="false">
I want to disable paste. But using (paste)="false" with digitOnly directive doesn't work.