()
| 1639 | } |
| 1640 | |
| 1641 | getInputDOMRef() { |
| 1642 | if (isPhone() && this.Suggestions) { |
| 1643 | const picker = this.Suggestions._getPicker(); |
| 1644 | if (picker) { |
| 1645 | return picker.querySelector<Input>(".ui5-input-inner-phone")!; |
| 1646 | } |
| 1647 | } |
| 1648 | |
| 1649 | return this.nativeInput; |
| 1650 | } |
| 1651 | |
| 1652 | getInputDOMRefSync() { |
| 1653 | if (isPhone() && this.Suggestions) { |
no test coverage detected