@yuuvis/client-framework 2.1.19 → 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.
- package/fesm2022/yuuvis-client-framework-forms.mjs +5 -0
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-details.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-form.mjs +4 -3
- package/fesm2022/yuuvis-client-framework-object-form.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-tile-list.mjs +4 -4
- package/fesm2022/yuuvis-client-framework-tile-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs +0 -1
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs.map +1 -1
- package/package.json +8 -8
|
@@ -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) {
|