We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ff6fc8 commit 73e9d9cCopy full SHA for 73e9d9c
src/lib/stepper/step-header.ts
@@ -39,7 +39,7 @@ export class MatStepHeader implements OnDestroy {
39
private _intlSubscription: Subscription;
40
41
/** State of the given step. */
42
- @Input() state: StepState | string;
+ @Input() state: StepState;
43
44
/** Label of the given step. */
45
@Input() label: MatStepLabel | string;
src/lib/stepper/stepper-icon.ts
@@ -27,7 +27,7 @@ export interface MatStepperIconContext {
27
})
28
export class MatStepperIcon {
29
/** Name of the icon to be overridden. */
30
- @Input('matStepperIcon') name: StepState | string;
+ @Input('matStepperIcon') name: StepState;
31
32
constructor(public templateRef: TemplateRef<MatStepperIconContext>) {}
33
}
0 commit comments