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 17bb753 commit 2b86789Copy full SHA for 2b86789
src/material-experimental/mdc-list/list-base.ts
@@ -22,6 +22,10 @@ import {startWith} from 'rxjs/operators';
22
23
@Directive()
24
export class MatListBase {
25
+ // @HostBinding is used in the class as it is expected to be extended. Since @Component decorator
26
+ // metadata is not inherited by child classes, instead the host binding data is defined in a way
27
+ // that can be inherited.
28
+ // tslint:disable-next-line:no-host-decorator-in-concrete
29
@HostBinding('class.mdc-list--non-interactive')
30
_isNonInteractive: boolean;
31
}
0 commit comments