fix: bugfix release - radios and select
radios:
Previously, the radio input called writeValue() on change, which only updated
the internal signal but didn’t notify Angular’s form control. This caused the
radio value to always remain empty. Replaced it with changeValue() to correctly
propagate user changes through the ControlValueAccessor.
select:
Use [selected]="option.value === cva.value()" instead of [value] on <select>
to properly reflect programmatic value updates from the form control.
This fixes an issue where the first option was shown instead of the actual value.
Edited by Achim Schulenburg