MCPcopy Create free account
hub / github.com/angular/components / selected

Method selected

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

Source from the content-addressed store, hash-verified

381 /** The step that is selected. */
382 @Input()
383 get selected(): CdkStep | undefined {
384 return this.steps ? this.steps.toArray()[this.selectedIndex] : undefined;
385 }
386 set selected(step: CdkStep | undefined) {
387 this.selectedIndex = step && this.steps ? this.steps.toArray().indexOf(step) : -1;
388 }

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