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 79a2567 commit 23d04cdCopy full SHA for 23d04cd
src/lib/stepper/step-header.ts
@@ -9,6 +9,7 @@
9
import {Component, Input, ViewEncapsulation} from '@angular/core';
10
import {coerceBooleanProperty, coerceNumberProperty} from '@angular/cdk/coercion';
11
import {MdStepLabel} from './step-label';
12
+import {MATERIAL_COMPATIBILITY_MODE} from '../core/compatibility/compatibility';
13
14
@Component({
15
moduleId: module.id,
@@ -19,7 +20,8 @@ import {MdStepLabel} from './step-label';
19
20
'class': 'mat-step-header',
21
'role': 'tab',
22
},
- encapsulation: ViewEncapsulation.None
23
+ encapsulation: ViewEncapsulation.None,
24
+ providers: [{provide: MATERIAL_COMPATIBILITY_MODE, useValue: false}],
25
})
26
export class MdStepHeader {
27
/** Icon for the given step. */
0 commit comments