File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 13
13
[indeterminate] ="indeterminate "
14
14
[attr.aria-label] ="ariaLabel "
15
15
[attr.aria-labelledby] ="ariaLabelledby "
16
- [attr.aria-checked] ="getAriaChecked () "
16
+ [attr.aria-checked] ="_getAriaChecked () "
17
17
(change) ="_onInteractionEvent($event) "
18
18
(click) ="_onInputClick($event) ">
19
19
< div matRipple class ="mat-checkbox-ripple "
Original file line number Diff line number Diff line change @@ -303,7 +303,7 @@ export class MatCheckbox extends _MatCheckboxMixinBase implements ControlValueAc
303
303
this . _changeDetectorRef . markForCheck ( ) ;
304
304
}
305
305
306
- getAriaChecked ( ) : string {
306
+ _getAriaChecked ( ) : 'true' | 'false' | 'mixed' {
307
307
return this . checked ? 'true' : ( this . indeterminate ? 'mixed' : 'false' ) ;
308
308
}
309
309
You can’t perform that action at this time.
0 commit comments