@ardium-ui/ui 5.0.0-alpha.40 → 5.0.0-alpha.41
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.
|
@@ -12121,7 +12121,7 @@ const StarColor = {
|
|
|
12121
12121
|
};
|
|
12122
12122
|
|
|
12123
12123
|
const _ratingInputDefaults = {
|
|
12124
|
-
...
|
|
12124
|
+
..._formFieldComponentDefaults,
|
|
12125
12125
|
color: StarColor.Gold,
|
|
12126
12126
|
max: 5,
|
|
12127
12127
|
};
|
|
@@ -12284,7 +12284,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
12284
12284
|
args: [ARD_STAR_BUTTON_DEFAULTS]
|
|
12285
12285
|
}] }] });
|
|
12286
12286
|
|
|
12287
|
-
class ArdiumRatingInputComponent extends
|
|
12287
|
+
class ArdiumRatingInputComponent extends _FormFieldComponentBase {
|
|
12288
12288
|
constructor(defaults) {
|
|
12289
12289
|
super(defaults);
|
|
12290
12290
|
this.wrapperClasses = input('');
|
|
@@ -12332,7 +12332,7 @@ class ArdiumRatingInputComponent extends _NgModelComponentBase {
|
|
|
12332
12332
|
});
|
|
12333
12333
|
effect(() => {
|
|
12334
12334
|
this.value(); // let the effect know when to fire
|
|
12335
|
-
this._emitChange();
|
|
12335
|
+
untracked(() => this._emitChange());
|
|
12336
12336
|
});
|
|
12337
12337
|
}
|
|
12338
12338
|
//! ControlValueAccessor's writeValue
|