Skip to content

Releases: mathieustan/vue-datepicker

v0.2.11

16 Nov 08:49
Compare
Choose a tag to compare

What's new in v0.2.11

πŸ’„ Style

  • Design has change a little (days will be bigger on fullscreen mobile)

✨ Feature

  • New slot : 'input-icon' Allows to use a custom icon inside input. (close #72)

v0.2.10

12 Nov 17:47
Compare
Choose a tag to compare

What's new in v0.2.10

πŸ› Fixes

  • Fixed presets (range wasn't updated)

v0.2.9

12 Nov 17:26
Compare
Choose a tag to compare

What's new in v0.2.9

Huge refacto on components :)

πŸ› Fixes

  • Fixed allowedDates to work with date/month/quarter & year
  • Fixed controls (navigation will be locked when reach max/min dates)
  • Fixed 'quarter' type, when date is undefined.
  • FulllScreen mobile activate dynamically on resize

πŸ’₯ Breaking

  • Removed prop noInput (useless we can use custom activator)
  • Updated day slot (don't need to design it anymore)

πŸ†• News

  • mobileBreakpoint prop: Used to set when to toggle between normal datepicker & fullscreen datepicker. Used with fullscreenMobile prop
  • Allows to show month/year when init datepicker (for example a birthday picker)
  • min-date & max-date will automatically set years range.

I might have missed things, because I've rewritten so much on this version.

v0.2.8

04 Sep 09:49
Compare
Choose a tag to compare

What's new in v0.2.8

πŸ’„ Styles

  • Fixed year flexbox style when using fullscreen mode

v0.2.7

04 Sep 09:23
Compare
Choose a tag to compare

What's new in v0.2.7

✨ New

  • new prop: content-class. Applies custom class to datepicker content

⚑ Performances

  • LazyLoad content

πŸ’„ Styles

  • Fixed close icon when fullscreenMobile is active
  • IE 11 compatiblity (removed grid, replaced by flexbox)

πŸ› Doc

  • Fixed IE 11 intersection observer error

v0.2.6

10 Jun 08:02
Compare
Choose a tag to compare

What's new in v0.2.6

πŸ› Fixes

  • Fixed lang in date range

v0.2.5

09 Jun 14:22
Compare
Choose a tag to compare

What's new in v0.2.5

✨ New

  • custom slot : day => Allows to change day appearance, but you can also use tooltip or anything else if needed
  • Added swedish locale thanks to @bjorkgard

πŸ› Fixes

  • GMT could do a bug in year selection : fixed #47

🎨 Refactor

  • Extracted day logic in its own component (VDPickerTableDay)

πŸ“ Doc

  • Added navigation to see all examples

v0.2.4

05 Jun 06:42
Compare
Choose a tag to compare

What's new in v0.2.4

πŸ“¦ Build

  • Added min.css file to dist folder 🀦

v0.2.3

26 May 10:48
Compare
Choose a tag to compare

What's new in v0.2.3

πŸ’₯ Breaking change

  • ⚠️ Important ! Styles from components are extracted. You need to import minified css like this :
import VueDatePicker from '@mathieustan/vue-datepicker';
import '@mathieustan/vue-datepicker/dist/vue-datepicker.min.css';

Vue.use(VueDatePicker);

✨ News

  • (Props) allowedDates - Function which set allowed dates (allowedDates: (date) => .... // date is a javascript date)

πŸ“¦ Build

  • Rollup allows to add scss file in js component file
  • Rollup dependencies have been updated
  • Banner has been added to lib
  • πŸ†• Commitizen with commitlint to handle commit messages

More

  • Components have been renamed & css classes have changed

v0.2.3-rc.2

15 Apr 09:59
Compare
Choose a tag to compare

What's new in v0.2.3-rc.2

✨ News

  • (Props) clearable - Add input clear functionality (doc)
  • Removed default color on input (#38) (Input color will be active only when menu is visible. If color is needed, you can style set color on parent div)

πŸ› Fixes

  • Allows to scroll on mobile without closing picker

πŸ“ Doc

  • Doc update to be more easily maintainable and clearer