File tree Expand file tree Collapse file tree 6 files changed +18
-3
lines changed
cdk-experimental/radio-group Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 32
32
"strictInjectionParameters" : true ,
33
33
"strictInputAccessModifiers" : true ,
34
34
"strictTemplates" : true ,
35
+ "strictInputTypes" : true ,
36
+ "strictOutputEventTypes" : true ,
37
+ "strictDomEventTypes" : true ,
35
38
"typeCheckHostBindings" : true
36
39
}
37
40
}
Original file line number Diff line number Diff line change 51
51
"angularCompilerOptions" : {
52
52
"strictTemplates" : true ,
53
53
"typeCheckHostBindings" : true ,
54
+ "strictInputAccessModifiers" : true ,
55
+ "strictInputTypes" : true ,
56
+ "strictOutputEventTypes" : true ,
57
+ "strictDomEventTypes" : true ,
54
58
"extendedDiagnostics" : {
55
59
"defaultCategory" : " error"
56
60
}
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export class CdkRadioButton<V> {
186
186
protected id = computed ( ( ) => this . _generatedId ) ;
187
187
188
188
/** The value associated with the radio button. */
189
- protected value = input . required < V > ( ) ;
189
+ readonly value = input . required < V > ( ) ;
190
190
191
191
/** The parent RadioGroup UIPattern. */
192
192
protected group = computed ( ( ) => this . _cdkRadioGroup . pattern ) ;
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ export class MatChipAction {
77
77
* Private API to allow focusing this chip when it is disabled.
78
78
*/
79
79
@Input ( )
80
- private _allowFocusWhenDisabled = false ;
80
+ _allowFocusWhenDisabled = false ;
81
81
82
82
/**
83
83
* Determine the value of the disabled attribute for this chip action.
Original file line number Diff line number Diff line change 30
30
// not find an associated module for test components and error out.
31
31
"compileNonExportedClasses" : false ,
32
32
"typeCheckHostBindings" : true ,
33
- "strictTemplates" : true
33
+ "strictTemplates" : true ,
34
+ "strictInputAccessModifiers" : true ,
35
+ "strictInputTypes" : true ,
36
+ "strictOutputEventTypes" : true ,
37
+ "strictDomEventTypes" : true
34
38
}
35
39
}
Original file line number Diff line number Diff line change 44
44
"angularCompilerOptions" : {
45
45
"strictTemplates" : true ,
46
46
"typeCheckHostBindings" : true ,
47
+ "strictInputAccessModifiers" : true ,
48
+ "strictInputTypes" : true ,
49
+ "strictOutputEventTypes" : true ,
50
+ "strictDomEventTypes" : true ,
47
51
"extendedDiagnostics" : {
48
52
"defaultCategory" : " error"
49
53
}
You can’t perform that action at this time.
0 commit comments