I'd like to "blur" (or unfocus, etc.) an input element from a controller.
I have reference to the input @ViewChild('searchInput') searchInput: ElementRef
This works:
this.searchInput.nativeElement.focus()
But this doesn't appear to:
this.searchInput.nativeElement.blur()