@eagami/ui 4.8.0 → 4.8.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eagami/ui",
3
- "version": "4.8.0",
3
+ "version": "4.8.1",
4
4
  "description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
5
5
  "author": "Michal Wiraszka <michal@eagami.com>",
6
6
  "license": "MIT",
@@ -1171,6 +1171,10 @@ declare class ColorPickerComponent implements ControlValueAccessor {
1171
1171
  * expanded back into a 6-digit canonical form. */
1172
1172
  readonly hexInputValue: i0.WritableSignal<string>;
1173
1173
  private readonly _formDisabled;
1174
+ /** The last value this component emitted, so the value-sync effect can tell an
1175
+ * external `[(value)]` / reset change from its own commit and skip the echo. */
1176
+ private lastCommitted;
1177
+ private readonly valueSync;
1174
1178
  private onChange;
1175
1179
  private onTouched;
1176
1180
  readonly isDisabled: i0.Signal<boolean>;