(e: CustomEvent<TableRowForwardAfterEventDetail>)
| 805 | } |
| 806 | |
| 807 | _onForwardAfter(e: CustomEvent<TableRowForwardAfterEventDetail>) { |
| 808 | this.lastFocusedElement = e.detail.target; |
| 809 | |
| 810 | if (!this.growsWithButton) { |
| 811 | this._focusForwardElement(true); |
| 812 | } else { |
| 813 | this.morеBtn!.focus(); |
| 814 | } |
| 815 | } |
| 816 | |
| 817 | _focusForwardElement(isAfter: boolean) { |
| 818 | this._forwardingFocus = true; |
nothing calls this directly
no test coverage detected