Skip to content

Releases: MikaelEdebro/vue-airbnb-style-datepicker

Customized date classes

30 Mar 07:17
Compare
Choose a tag to compare

Merged PR allowing to specify custom classes on specified dates:
#91

Vue 2.6 fixes

21 Mar 20:43
Compare
Choose a tag to compare

Includes fixes for:

Component showing incorrectly #65
:trigger support broken with Vue 2.6 #87
Vue is not defined on Examples page #89

Vuetify fixes & closeAfterSelect

02 Dec 18:29
Compare
Choose a tag to compare

In this release, I addressed some issues that this component had running together with Vuetify. Hopefully these issues should be resolved now.

Also a new prop closeAfterSelect, to allow you to close the datepicker after all dates have been selected.

Year/month dropdown

16 Nov 20:51
Compare
Choose a tag to compare

This release introduces some new features that makes it easier to jump months/years.

  • Year/month selection #40
  • Stylesheet breaks design #61
  • Make sure Prettier is ran on precommit hook, to enforce code consistency.

SSR support & enabled-dates prop

07 Oct 13:22
Compare
Choose a tag to compare
  • Fix for making plugin work in Server-Side Rendered projects.
  • New prop for enabled dates. Disable all dates except the ones specified in :enabled-dates="['2018-10-12', '2018-10-21']"

Accessibility support *breaking changes*

01 Oct 20:40
Compare
Choose a tag to compare

Note, there are a breaking change for people using a previous version of this plugin.
Path to CSS file has changed. See docs for new path:
https://mikaeledebro.gitbooks.io/vue-airbnb-style-datepicker/INSTALLATION.html

Accessibility support
This plugin now have better screen reader support. Thanks @coleww for the great contribution.

Travis CI integration & minor fix

23 Jul 15:10
Compare
Choose a tag to compare

Implemented Travis CI.

Also fix to allow setting dates to undefined, without it setting date to today.

Minor improvements

23 Jul 07:26
Compare
Choose a tag to compare

Issue 38 - Fix issue where datepicker did not update what months to show properly if minDate changed dynamically.

Issue 25 - Set classes on selected date (.asd__selected-date-one & .asd__selected-date-two)

Issue 37 - Fix mobile header fallback text. "Select date" for single mode, "Select dates" for range mode.

Emit event when changing months

03 Jun 20:58
Compare
Choose a tag to compare

New events added when changing months.

@previous-month="showVisibleMonths"
@next-month="showVisibleMonths"

methods: {
  showVisibleMonths(visibleMonths) {
    console.log(visibleMonths)   // ['2019-01-01', '2019-02-01']
  }
}

Trigger from variable

10 May 17:05
Compare
Choose a tag to compare

Now you can also trigger the datepicker by passing a boolean to :trigger="someBooleanData". See docs for more info.