@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.
- package/fesm2022/ardium-ui-ui.mjs +1 -4
- package/fesm2022/ardium-ui-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/prebuilt-themes/default/buttons/button.css +1 -1
- package/prebuilt-themes/default/buttons/fab.css +0 -1
- package/prebuilt-themes/default/buttons/fab.css.map +1 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css +0 -1
- package/prebuilt-themes/default/inputs/autocomplete-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/date-input.css +1 -2
- package/prebuilt-themes/default/inputs/date-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/file-input.css +2 -1
- package/prebuilt-themes/default/inputs/file-input.css.map +1 -1
- package/prebuilt-themes/default/inputs/hex-input.css +13 -13
- package/prebuilt-themes/default/select.css +6 -6
- package/themes/default/buttons/button.scss +1 -1
- package/themes/default/buttons/fab.scss +0 -1
- package/themes/default/inputs/autocomplete-input.scss +0 -1
- package/themes/default/inputs/date-input.scss +1 -2
- package/themes/default/inputs/file-input.scss +2 -1
- package/themes/default/inputs/hex-input.scss +13 -13
- package/themes/default/select.scss +6 -6
|
@@ -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) {
|