()
| 1422 | } |
| 1423 | |
| 1424 | _afterOpenPicker() { |
| 1425 | // Set initial focus to the native input |
| 1426 | if (isPhone()) { |
| 1427 | this.previousValue = this.value; |
| 1428 | (this.getInputDOMRef())!.focus(); |
| 1429 | this._composition?.addEventListeners(); |
| 1430 | } |
| 1431 | |
| 1432 | this._handlePickerAfterOpen(); |
| 1433 | } |
| 1434 | |
| 1435 | _afterClosePicker() { |
| 1436 | // close device's keyboard and prevent further typing |
nothing calls this directly
no test coverage detected