@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.
@@ -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.