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 @@ - + { + this.swiping = true; this.setData({ container: () => this.createSelectorQuery().select('.van-tabs'), }); @@ -191,6 +192,7 @@ VantComponent({ lineOffsetLeft += (rect.width - lineRect.width) / 2 + (ellipsis ? 0 : 8); this.setData({ lineOffsetLeft }); + this.swiping = true; if (skipTransition) { nextTick(() => { this.setData({ skipTransition: false }); @@ -231,13 +233,13 @@ VantComponent({ this.touchStart(event); }, onTouchMove(event) { - if (!this.data.swipeable) + if (!this.data.swipeable || !this.swiping) return; this.touchMove(event); }, // watch swipe touch end onTouchEnd() { - if (!this.data.swipeable) + if (!this.data.swipeable || !this.swiping) return; const { direction, deltaX, offsetX } = this; const minSwipeDistance = 50; @@ -247,6 +249,7 @@ VantComponent({ this.setCurrentIndex(index); } } + this.swiping = false; }, getAvaiableTab(direction) { const { tabs, currentIndex } = this.data; diff --git a/dist/tabs/index.wxss b/dist/tabs/index.wxss index de423313..bb592c3a 100644 --- a/dist/tabs/index.wxss +++ b/dist/tabs/index.wxss @@ -1 +1 @@ -@import '../common/index.wxss';.van-tabs{-webkit-tap-highlight-color:transparent;position:relative}.van-tabs__wrap{display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-left:8px;padding-right:8px}.van-tabs__scroll{background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{margin:0 var(--padding-md,16px)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{display:flex;position:relative;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{border:1px solid var(--tabs-default-color,#ee0a24);border-radius:2px;box-sizing:border-box;height:var(--tabs-card-height,30px)}.van-tabs__nav--card .van-tab{border-right:1px solid var(--tabs-default-color,#ee0a24);color:var(--tabs-default-color,#ee0a24);line-height:calc(var(--tabs-card-height, 30px) - 2px)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{background-color:var(--tabs-default-color,#ee0a24);color:#fff}.van-tabs__nav--card .van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{background-color:var(--tabs-bottom-bar-color,#ee0a24);border-radius:var(--tabs-bottom-bar-height,3px);bottom:0;height:var(--tabs-bottom-bar-height,3px);left:0;position:absolute;z-index:1}.van-tabs__track{height:100%;position:relative;width:100%}.van-tabs__track--animated{display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:var(--tabs-card-height,30px)}.van-tab{box-sizing:border-box;color:var(--tab-text-color,#646566);cursor:pointer;flex:1;font-size:var(--tab-font-size,14px);line-height:var(--tabs-line-height,44px);min-width:0;padding:0 5px;position:relative;text-align:center}.van-tab--active{color:var(--tab-active-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{display:inline-block;position:relative!important;top:-1px!important;transform:translateX(0)!important} \ No newline at end of file +@import '../common/index.wxss';.van-tabs{-webkit-tap-highlight-color:transparent;position:relative}.van-tabs__wrap{display:flex;overflow:hidden}.van-tabs__wrap--scrollable .van-tab{flex:0 0 22%}.van-tabs__wrap--scrollable .van-tab--complete{flex:1 0 auto!important;padding:0 12px}.van-tabs__wrap--scrollable .van-tabs__nav--complete{padding-left:8px;padding-right:8px}.van-tabs__scroll{background-color:var(--tabs-nav-background-color,#fff)}.van-tabs__scroll--line{box-sizing:initial;height:calc(100% + 15px)}.van-tabs__scroll--card{border:1px solid var(--tabs-default-color,#ee0a24);border-radius:2px;box-sizing:border-box;margin:0 var(--padding-md,16px);width:calc(100% - var(--padding-md, 16px)*2)}.van-tabs__scroll::-webkit-scrollbar{display:none}.van-tabs__nav{display:flex;position:relative;-webkit-user-select:none;user-select:none}.van-tabs__nav--card{box-sizing:border-box;height:var(--tabs-card-height,30px)}.van-tabs__nav--card .van-tab{border-right:1px solid var(--tabs-default-color,#ee0a24);color:var(--tabs-default-color,#ee0a24);line-height:calc(var(--tabs-card-height, 30px) - 2px)}.van-tabs__nav--card .van-tab:last-child{border-right:none}.van-tabs__nav--card .van-tab.van-tab--active{background-color:var(--tabs-default-color,#ee0a24);color:#fff}.van-tabs__nav--card .van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tabs__line{background-color:var(--tabs-bottom-bar-color,#ee0a24);border-radius:var(--tabs-bottom-bar-height,3px);bottom:0;height:var(--tabs-bottom-bar-height,3px);left:0;position:absolute;z-index:1}.van-tabs__track{height:100%;position:relative;width:100%}.van-tabs__track--animated{display:flex;transition-property:left}.van-tabs__content{overflow:hidden}.van-tabs--line .van-tabs__wrap{height:var(--tabs-line-height,44px)}.van-tabs--card .van-tabs__wrap{height:var(--tabs-card-height,30px)}.van-tab{box-sizing:border-box;color:var(--tab-text-color,#646566);cursor:pointer;flex:1;font-size:var(--tab-font-size,14px);line-height:var(--tabs-line-height,44px);min-width:0;padding:0 5px;position:relative;text-align:center}.van-tab--active{color:var(--tab-active-text-color,#323233);font-weight:var(--font-weight-bold,500)}.van-tab--disabled{color:var(--tab-disabled-text-color,#c8c9cc)}.van-tab__title__info{display:inline-block;position:relative!important;top:-1px!important;transform:translateX(0)!important} \ No newline at end of file diff --git a/dist/toast/index.wxml b/dist/toast/index.wxml index 635e7d61..f5c4f732 100644 --- a/dist/toast/index.wxml +++ b/dist/toast/index.wxml @@ -10,12 +10,15 @@ custom-class="van-toast__container" > {{ message }} + + + - + {{ message }} + + +