diff --git a/dist/calendar/components/month/index.d.ts b/dist/calendar/components/month/index.d.ts
index cb0ff5c3..3ccf85a6 100644
--- a/dist/calendar/components/month/index.d.ts
+++ b/dist/calendar/components/month/index.d.ts
@@ -1 +1,6 @@
-export {};
+export interface Day {
+ date: Date;
+ type: string;
+ text: number;
+ bottomInfo?: string;
+}
diff --git a/dist/calendar/index.js b/dist/calendar/index.js
index fe42145b..3b7b4540 100644
--- a/dist/calendar/index.js
+++ b/dist/calendar/index.js
@@ -7,6 +7,7 @@ const initialMaxDate = (() => {
const now = getToday();
return new Date(now.getFullYear(), now.getMonth() + 6, now.getDate()).getTime();
})();
+const getTime = (date) => date instanceof Date ? date.getTime() : date;
VantComponent({
props: {
title: {
@@ -182,7 +183,7 @@ VantComponent({
},
scrollIntoView() {
requestAnimationFrame(() => {
- const { currentDate, type, show, poppable, minDate, maxDate, } = this.data;
+ const { currentDate, type, show, poppable, minDate, maxDate } = this.data;
// @ts-ignore
const targetDate = type === 'single' ? currentDate : currentDate[0];
const displayed = show || !poppable;
@@ -215,7 +216,7 @@ VantComponent({
if (this.data.readonly) {
return;
}
- const { date } = event.detail;
+ let { date } = event.detail;
const { type, currentDate, allowSameDay } = this.data;
if (type === 'range') {
// @ts-ignore
@@ -223,6 +224,16 @@ VantComponent({
if (startDay && !endDay) {
const compareToStart = compareDay(date, startDay);
if (compareToStart === 1) {
+ const { days } = this.selectComponent('.month').data;
+ days.some((day, index) => {
+ const isDisabled = day.type === 'disabled' &&
+ getTime(startDay) < getTime(day.date) &&
+ getTime(day.date) < getTime(date);
+ if (isDisabled) {
+ ({ date } = days[index - 1]);
+ }
+ return isDisabled;
+ });
this.select([startDay, date], true);
}
else if (compareToStart === -1) {
@@ -290,7 +301,6 @@ VantComponent({
}
},
emit(date) {
- const getTime = (date) => date instanceof Date ? date.getTime() : date;
this.setData({
currentDate: Array.isArray(date) ? date.map(getTime) : getTime(date),
});
diff --git a/dist/collapse-item/animate.js b/dist/collapse-item/animate.js
index 9f672dba..f966ac59 100644
--- a/dist/collapse-item/animate.js
+++ b/dist/collapse-item/animate.js
@@ -1,24 +1,4 @@
-import { canIUseAnimate } from '../common/version';
import { getRect } from '../common/utils';
-function useAnimate(context, expanded, mounted, height) {
- const selector = '.van-collapse-item__wrapper';
- if (expanded) {
- context.animate(selector, [
- { height: 0, ease: 'ease-in-out', offset: 0 },
- { height: `${height}px`, ease: 'ease-in-out', offset: 1 },
- { height: `auto`, ease: 'ease-in-out', offset: 1 },
- ], mounted ? 300 : 0, () => {
- context.clearAnimation(selector);
- });
- return;
- }
- context.animate(selector, [
- { height: `${height}px`, ease: 'ease-in-out', offset: 0 },
- { height: 0, ease: 'ease-in-out', offset: 1 },
- ], 300, () => {
- context.clearAnimation(selector);
- });
-}
function useAnimation(context, expanded, mounted, height) {
const animation = wx.createAnimation({
duration: 0,
@@ -54,8 +34,6 @@ export function setContentAnimate(context, expanded, mounted) {
getRect(context, '.van-collapse-item__content')
.then((rect) => rect.height)
.then((height) => {
- canIUseAnimate()
- ? useAnimate(context, expanded, mounted, height)
- : useAnimation(context, expanded, mounted, height);
+ useAnimation(context, expanded, mounted, height);
});
}
diff --git a/dist/dropdown-menu/index.wxml b/dist/dropdown-menu/index.wxml
index 037ac3b6..cfd661d1 100644
--- a/dist/dropdown-menu/index.wxml
+++ b/dist/dropdown-menu/index.wxml
@@ -1,7 +1,7 @@
-