@acorex/components 20.3.1 → 20.3.3
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/acorex-components-datetime-picker.mjs +6 -0
- package/fesm2022/acorex-components-datetime-picker.mjs.map +1 -1
- package/fesm2022/acorex-components-dialog.mjs +2 -2
- package/fesm2022/acorex-components-dialog.mjs.map +1 -1
- package/fesm2022/acorex-components-notification.mjs +6 -2
- package/fesm2022/acorex-components-notification.mjs.map +1 -1
- package/fesm2022/acorex-components-number-box.mjs +4 -5
- package/fesm2022/acorex-components-number-box.mjs.map +1 -1
- package/fesm2022/acorex-components-toast.mjs +2 -2
- package/fesm2022/acorex-components-toast.mjs.map +1 -1
- package/notification/index.d.ts +2 -0
- package/number-box/index.d.ts +1 -1
- package/package.json +7 -7
|
@@ -208,6 +208,12 @@ class AXDateTimePickerComponent extends classes(MXCalendarBaseComponent, (MXValu
|
|
|
208
208
|
async ngOnInit() {
|
|
209
209
|
super.ngOnInit();
|
|
210
210
|
this._detectParts();
|
|
211
|
+
this.minValueChange.subscribe((value) => {
|
|
212
|
+
this.checkSelectedMinValue(this.calendarService.convert(value, this.calendar()));
|
|
213
|
+
});
|
|
214
|
+
this.maxValueChange.subscribe((value) => {
|
|
215
|
+
this.checkSelectedMaxValue(this.calendarService.convert(value, this.calendar()));
|
|
216
|
+
});
|
|
211
217
|
}
|
|
212
218
|
/**
|
|
213
219
|
* Handles changes to the internal value of the component.
|