()
| 502 | } |
| 503 | |
| 504 | _onInputFocusOut() { |
| 505 | this._inputFocused = false; |
| 506 | this._onInputChange(); |
| 507 | } |
| 508 | |
| 509 | _onMouseWheel(e: WheelEvent) { |
| 510 | if (this.disabled || this.readonly || !this._isFocused) { |
nothing calls this directly
no test coverage detected