I am trying to capture every delete and backspace happening in an form input field, and I have doing it the following way:
<input (keyup.enter)="sendData()" (keyup.delete)="clear()" (keyup.backspace)="clear()">
It does work for backspace presses but not when combined with left nor right shift. How can I cover these cases?