MCPcopy Index your code
hub / github.com/angular/components / _handleKeydown

Method _handleKeydown

src/material/select/select.ts:895–899  ·  view source on GitHub ↗

Handles all keydown events on the select.

(event: KeyboardEvent)

Source from the content-addressed store, hash-verified

893
894 /** Handles all keydown events on the select. */
895 _handleKeydown(event: KeyboardEvent): void {
896 if (!this.disabled) {
897 this.panelOpen ? this._handleOpenKeydown(event) : this._handleClosedKeydown(event);
898 }
899 }
900
901 /** Handles keyboard events while the select is closed. */
902 private _handleClosedKeydown(event: KeyboardEvent): void {

Callers

nothing calls this directly

Calls 2

_handleOpenKeydownMethod · 0.95
_handleClosedKeydownMethod · 0.95

Tested by

no test coverage detected