@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.
- package/date-picker/calendar/range-picker-panel/component.d.ts +1 -1
- package/esm2020/date-picker/calendar/range-picker-panel/component.mjs +3 -3
- package/fesm2015/alauda-ui.mjs +1 -1
- package/fesm2015/alauda-ui.mjs.map +1 -1
- package/fesm2020/alauda-ui.mjs +1 -1
- package/fesm2020/alauda-ui.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/alauda-ui.mjs
CHANGED
|
@@ -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;
|