@ardium-ui/ui 5.0.0-alpha.44 → 5.0.0-alpha.46

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.
@@ -12330,10 +12330,6 @@ class ArdiumRatingInputComponent extends _FormFieldComponentBase {
12330
12330
  this.highlightEvent.emit(hi);
12331
12331
  }
12332
12332
  });
12333
- effect(() => {
12334
- this.value(); // let the effect know when to fire
12335
- untracked(() => this._emitChange());
12336
- });
12337
12333
  }
12338
12334
  //! ControlValueAccessor's writeValue
12339
12335
  writeValue(v) {
@@ -12341,6 +12337,7 @@ class ArdiumRatingInputComponent extends _FormFieldComponentBase {
12341
12337
  }
12342
12338
  onStarClick(index) {
12343
12339
  this.value.set(index + 1);
12340
+ this._emitChange();
12344
12341
  this._emitTouched();
12345
12342
  }
12346
12343
  onStarHighlight(index) {