diff --git a/projects/components/src/radio/radio-group.component.ts b/projects/components/src/radio/radio-group.component.ts index fea3f0db3..8c7a0d05d 100644 --- a/projects/components/src/radio/radio-group.component.ts +++ b/projects/components/src/radio/radio-group.component.ts @@ -85,6 +85,10 @@ export class RadioGroupComponent implements ControlValueAccessor, OnInit { this.setSelection(value); } + public setDisabledState(isDisabled?: boolean): void { + this.disabled = isDisabled ?? false; + } + public registerOnChange(onChange: (value?: string) => void): void { this.propagateControlValueChange = onChange; }