()
| 1177 | } |
| 1178 | |
| 1179 | _clearPopoverFocusAndSelection() { |
| 1180 | if (!this.showSuggestions || !this.Suggestions) { |
| 1181 | return; |
| 1182 | } |
| 1183 | |
| 1184 | this.hasSuggestionItemSelected = false; |
| 1185 | |
| 1186 | this.Suggestions?._deselectItems(); |
| 1187 | this.Suggestions?._clearItemFocus(); |
| 1188 | } |
| 1189 | |
| 1190 | _click() { |
| 1191 | if (isPhone() && !this.readonly && this.Suggestions) { |
no test coverage detected