I´m working in a application implementing the new drag and drop from angular material CDK and i´m trying to cancel the drag event of the element pressing Esc, i
Esc
You can use something like...
@HostListener('window:keyup', ['$event']) handleKeyboardEvent(event: KeyboardEvent) { if (event.code === 'Escape') { // call dragend event } }