Selects and focuses the next step in list.
()
| 496 | |
| 497 | /** Selects and focuses the next step in list. */ |
| 498 | next(): void { |
| 499 | this.selectedIndex = Math.min(this._selectedIndex() + 1, this.steps.length - 1); |
| 500 | } |
| 501 | |
| 502 | /** Selects and focuses the previous step in list. */ |
| 503 | previous(): void { |