@yuuvis/client-framework 2.10.0 → 2.10.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/fesm2022/yuuvis-client-framework-datepicker.mjs +2 -6
- package/fesm2022/yuuvis-client-framework-datepicker.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-forms.mjs +9 -9
- package/fesm2022/yuuvis-client-framework-forms.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-object-preview.mjs +13 -16
- package/fesm2022/yuuvis-client-framework-object-preview.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs +1 -1
- package/fesm2022/yuuvis-client-framework-sequence-list.mjs.map +1 -1
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs +2 -2
- package/fesm2022/yuuvis-client-framework-widget-grid.mjs.map +1 -1
- package/lib/assets/i18n/de.json +3 -0
- package/lib/assets/i18n/en.json +3 -0
- package/object-preview/lib/components/object-preview/object-preview.component.d.ts +97 -1
- package/object-preview/lib/services/object-preview.service.d.ts +1 -1
- package/package.json +4 -4
- package/sequence-list/lib/sequence-list.component.d.ts +1 -1
- package/sequence-list/lib/sequence-list.interface.d.ts +1 -1
|
@@ -1554,9 +1554,7 @@ class DatepickerComponent {
|
|
|
1554
1554
|
return this.#datepickerService.getErrors();
|
|
1555
1555
|
}
|
|
1556
1556
|
writeValue(value) {
|
|
1557
|
-
|
|
1558
|
-
this.#datepickerService.setValue(value || null, true);
|
|
1559
|
-
}
|
|
1557
|
+
this.#datepickerService.setValue(value && DatepickerUtils.isValidDate(value) ? value : null, true);
|
|
1560
1558
|
}
|
|
1561
1559
|
registerOnChange(fn) {
|
|
1562
1560
|
this.propagateChange = fn;
|
|
@@ -1605,9 +1603,7 @@ class DatepickerComponent {
|
|
|
1605
1603
|
}
|
|
1606
1604
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: DatepickerComponent, decorators: [{
|
|
1607
1605
|
type: Component,
|
|
1608
|
-
args: [{ selector: 'yuv-datepicker', standalone: true, imports: [CommonModule, MatIconModule, DateInputComponent,
|
|
1609
|
-
YmtIconButtonDirective,
|
|
1610
|
-
MatButtonModule, ReactiveFormsModule], providers: [
|
|
1606
|
+
args: [{ selector: 'yuv-datepicker', standalone: true, imports: [CommonModule, MatIconModule, DateInputComponent, YmtIconButtonDirective, MatButtonModule, ReactiveFormsModule], providers: [
|
|
1611
1607
|
DatepickerService,
|
|
1612
1608
|
{
|
|
1613
1609
|
provide: NG_VALUE_ACCESSOR,
|