File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/material-experimental/mdc-list Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -21,16 +21,18 @@ import {Subscription} from 'rxjs';
21
21
import { startWith } from 'rxjs/operators' ;
22
22
23
23
@Directive ( )
24
+ /** @docs -private */
24
25
export abstract class MatListBase {
25
26
// @HostBinding is used in the class as it is expected to be extended. Since @Component decorator
26
27
// metadata is not inherited by child classes, instead the host binding data is defined in a way
27
28
// that can be inherited.
28
29
// tslint:disable-next-line:no-host-decorator-in-concrete
29
30
@HostBinding ( 'class.mdc-list--non-interactive' )
30
- _isNonInteractive : boolean ;
31
+ _isNonInteractive : boolean = false ;
31
32
}
32
33
33
34
@Directive ( )
35
+ /** @docs -private */
34
36
export abstract class MatListItemBase implements AfterContentInit , OnDestroy , RippleTarget {
35
37
lines : QueryList < ElementRef < Element > > ;
36
38
You can’t perform that action at this time.
0 commit comments