()
| 377 | /** The step that is selected. */ |
| 378 | @Input() |
| 379 | get selected(): CdkStep | undefined { |
| 380 | return this.steps ? this.steps.toArray()[this.selectedIndex] : undefined; |
| 381 | } |
| 382 | set selected(step: CdkStep | undefined) { |
| 383 | this.selectedIndex = step && this.steps ? this.steps.toArray().indexOf(step) : -1; |
| 384 | } |
no outgoing calls
no test coverage detected