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