-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Closed
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgent
Description
Bug, feature request, or proposal:
Bug
Current
panelClosingActions
doesn't emit an event for when the autocomplete is closed due to the escape key
Expected
if (event.keyCode === ESCAPE && this.panelOpen) {
this._escapeKeyStream.next();
}
// ...
get panelClosingActions(): Observable<MdOptionSelectionChange> {
return merge(
this.optionSelections,
this.autocomplete._keyManager.tabOut,
this._outsideClickStream,
this._escapeKeyStream
);
}
What are the steps to reproduce?
https://plnkr.co/edit/R0CPBfwzKS54o5Fd7fsx?p=preview
What is the use-case or motivation for changing an existing behavior?
Metadata
Metadata
Assignees
Labels
P3An issue that is relevant to core functions, but does not impede progress. Important, but not urgentAn issue that is relevant to core functions, but does not impede progress. Important, but not urgent