@alauda/ui 6.5.4 → 6.5.5-beta

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.
@@ -4242,7 +4242,7 @@ class DateRangePickerPanelComponent extends CommonFormControl {
4242
4242
  return date[side === Side.Left ? 'isAfter' : 'isBefore'](constrainValue, YEAR);
4243
4243
  }
4244
4244
  return !date[side === Side.Left ? 'isBefore' : 'isAfter'](constrainValue, MONTH);
4245
- }, this.disabledDate);
4245
+ }, (...arg) => this.disabledDate(...arg, this.rangeValue[0]));
4246
4246
  }
4247
4247
  getDisabledTimeCachedFn(side) {
4248
4248
  let cacheSelectedDate;