Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"strictInputTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true,
"typeCheckHostBindings": true
}
}
4 changes: 4 additions & 0 deletions src/bazel-tsconfig-build.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@
"angularCompilerOptions": {
"strictTemplates": true,
"typeCheckHostBindings": true,
"strictInputAccessModifiers": true,
"strictInputTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true,
"extendedDiagnostics": {
"defaultCategory": "error"
}
Expand Down
2 changes: 1 addition & 1 deletion src/cdk-experimental/radio-group/radio-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export class CdkRadioButton<V> {
protected id = computed(() => this._generatedId);

/** The value associated with the radio button. */
protected value = input.required<V>();
readonly value = input.required<V>();

/** The parent RadioGroup UIPattern. */
protected group = computed(() => this._cdkRadioGroup.pattern);
Expand Down
2 changes: 1 addition & 1 deletion src/material/chips/chip-action.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export class MatChipAction {
* Private API to allow focusing this chip when it is disabled.
*/
@Input()
private _allowFocusWhenDisabled = false;
_allowFocusWhenDisabled = false;

/**
* Determine the value of the disabled attribute for this chip action.
Expand Down
6 changes: 5 additions & 1 deletion src/tsconfig-legacy.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@
// not find an associated module for test components and error out.
"compileNonExportedClasses": false,
"typeCheckHostBindings": true,
"strictTemplates": true
"strictTemplates": true,
"strictInputAccessModifiers": true,
"strictInputTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true
}
}
4 changes: 4 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
"angularCompilerOptions": {
"strictTemplates": true,
"typeCheckHostBindings": true,
"strictInputAccessModifiers": true,
"strictInputTypes": true,
"strictOutputEventTypes": true,
"strictDomEventTypes": true,
"extendedDiagnostics": {
"defaultCategory": "error"
}
Expand Down
Loading