@ethlete/cdk 4.62.0 → 4.63.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ethlete/cdk
2
2
 
3
+ ## 4.63.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [`df0f93b`](https://github.com/ethlete-io/ethdk/commit/df0f93b61b1e6004160eaed8250f646dff5848ae) Thanks [@TomTomB](https://github.com/TomTomB)! - Allow any value to be used for radio components
8
+
3
9
  ## 4.62.0
4
10
 
5
11
  ### Minor Changes
@@ -6174,7 +6174,7 @@ class RadioDirective {
6174
6174
  this.input = inject(INPUT_TOKEN);
6175
6175
  this._value$ = new BehaviorSubject(null);
6176
6176
  this._disabled$ = new BehaviorSubject(false);
6177
- this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => inputValue === value));
6177
+ this.checked$ = combineLatest([this.input.value$, this._value$]).pipe(map(([inputValue, value]) => equal(inputValue, value)));
6178
6178
  this.disabled$ = combineLatest([this.input.disabled$, this._disabled$]).pipe(map(([inputDisabled, disabled]) => inputDisabled || disabled));
6179
6179
  this.hostClassBindings = signalHostClasses({
6180
6180
  'et-radio--checked': toSignal(this.checked$),