(focusOptions?: FocusOptions | undefined)
| 79 | } |
| 80 | |
| 81 | async focus(focusOptions?: FocusOptions | undefined): Promise<void> { |
| 82 | this.setAttribute("tabindex", "-1"); |
| 83 | HTMLElement.prototype.focus.call(this, focusOptions); |
| 84 | this._handleCustomFocusOutline(); |
| 85 | return Promise.resolve(); |
| 86 | } |
| 87 | |
| 88 | _handleCustomFocusOutline() { |
| 89 | if (this._renderDummyCell && !this._hasPopin && document.activeElement === this) { |