Releases: mathieustan/vue-datepicker
Releases · mathieustan/vue-datepicker
v0.2.11
v0.2.10
What's new in v0.2.10
🐛 Fixes
- Fixed presets (range wasn't updated)
v0.2.9
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
What's new in v0.2.8
💄 Styles
- Fixed year flexbox style when using fullscreen mode
v0.2.7
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
What's new in v0.2.6
🐛 Fixes
- Fixed lang in date range
v0.2.5
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
What's new in v0.2.4
📦 Build
- Added min.css file to dist folder 🤦
v0.2.3
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
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