* The ui5-input "input" event handler - fire input even when the user types * @protected
(e: Event)
| 666 | * @protected |
| 667 | */ |
| 668 | _onInputInput(e: Event) { |
| 669 | this._updateValueAndFireEvents((e.target as DatePicker).value, false, ["input"], false); |
| 670 | } |
| 671 | |
| 672 | /** |
| 673 | * Checks if the provided value is valid and within valid range. |
nothing calls this directly
no test coverage detected