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