@yuuvis/client-framework 2.1.18 → 2.1.20

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.
@@ -359,6 +359,11 @@ class DatetimeComponent extends AbstractMatFormField {
359
359
  value = new Date(value);
360
360
  this.#propagate(value);
361
361
  }
362
+ else if (value && !this.withTime()) {
363
+ // for resolution 'date' we have to re-propagate the value as a string
364
+ // in the format 'yyyy-MM-dd' like expected for resolution date
365
+ this.#propagate(value);
366
+ }
362
367
  this.value = value || null;
363
368
  }
364
369
  #propagate(value) {