Returns the index of the currently-focused step header.
()
| 539 | |
| 540 | /** Returns the index of the currently-focused step header. */ |
| 541 | _getFocusIndex(): number | null { |
| 542 | return this._keyManager ? this._keyManager.activeItemIndex : this._selectedIndex(); |
| 543 | } |
| 544 | |
| 545 | private _updateSelectedItemIndex(newIndex: number): void { |
| 546 | const stepsArray = this.steps.toArray(); |
no outgoing calls