()
| 1567 | } |
| 1568 | |
| 1569 | get inner(): HTMLInputElement { |
| 1570 | return (isPhone() && this.open) |
| 1571 | ? this._getPickerInput().shadowRoot!.querySelector("input")! |
| 1572 | : this.shadowRoot!.querySelector<HTMLInputElement>("[inner-input]")!; |
| 1573 | } |
| 1574 | |
| 1575 | _getPicker() { |
| 1576 | return this.shadowRoot!.querySelector<ResponsivePopover>("[ui5-responsive-popover]")!; |
nothing calls this directly
no test coverage detected