()
| 1650 | } |
| 1651 | |
| 1652 | getInputDOMRefSync() { |
| 1653 | if (isPhone() && this.Suggestions) { |
| 1654 | const picker = this.Suggestions._getPicker(); |
| 1655 | if (picker) { |
| 1656 | return picker.querySelector(".ui5-input-inner-phone")!.shadowRoot!.querySelector<HTMLInputElement>("input")!; |
| 1657 | } |
| 1658 | } |
| 1659 | |
| 1660 | return this.nativeInput; |
| 1661 | } |
| 1662 | |
| 1663 | /** |
| 1664 | * Returns a reference to the native input element |
no test coverage detected