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 1313 [indeterminate] ="indeterminate "
1414 [attr.aria-label] ="ariaLabel "
1515 [attr.aria-labelledby] ="ariaLabelledby "
16- [attr.aria-checked] ="getAriaChecked () "
16+ [attr.aria-checked] ="_getAriaChecked () "
1717 (change) ="_onInteractionEvent($event) "
1818 (click) ="_onInputClick($event) ">
1919 < 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
303303 this . _changeDetectorRef . markForCheck ( ) ;
304304 }
305305
306- getAriaChecked ( ) : string {
306+ _getAriaChecked ( ) : 'true' | 'false' | 'mixed' {
307307 return this . checked ? 'true' : ( this . indeterminate ? 'mixed' : 'false' ) ;
308308 }
309309
You can’t perform that action at this time.
0 commit comments