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