()
| 266 | } |
| 267 | |
| 268 | _onFocusOut() { |
| 269 | if (this.disabled || this.getFocusDomRef()!.matches(":has(:focus-within)")) { |
| 270 | return; |
| 271 | } |
| 272 | |
| 273 | this._resetActionButtonStates(); |
| 274 | this._setTabIndexValue(); |
| 275 | } |
| 276 | |
| 277 | handleTouchStart(e: TouchEvent | MouseEvent) { |
| 278 | e.stopPropagation(); |
nothing calls this directly
no test coverage detected