MCPcopy
hub / github.com/angular/components / selected

Method selected

src/cdk/stepper/stepper.ts:379–381  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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 }

Callers 15

ToolbarWidgetClass · 0.45
grid.spec.tsFile · 0.45
toolbar.spec.tsFile · 0.45
grid.spec.tsFile · 0.45
GridClass · 0.45
toggleOneMethod · 0.45
setDefaultStateMethod · 0.45
_updateStateMethod · 0.45
grid.spec.tsFile · 0.45
GridCellPatternClass · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected