()
| 349 | /** The index of the selected step. */ |
| 350 | @Input({transform: numberAttribute}) |
| 351 | get selectedIndex(): number { |
| 352 | return this._selectedIndex(); |
| 353 | } |
| 354 | set selectedIndex(index: number) { |
| 355 | if (this._steps) { |
| 356 | // Ensure that the index can't be out of bounds. |
nothing calls this directly
no test coverage detected