New things
While updating v-date-picker
for #596, I decided to do a small QoL change to how the date-format prop works. Now, v-model will always emit an ISO formatted date string. There is a new prop, formatted-value which will emit the date-format function. This will allow you to get a custom date format without jumping through hoops with computed properties. I also added the ability to pass a timestamp as the model value. A new documentation example has been added showing how to use this new functionality.
Things we fixed
- #603 Added default transform so
v-parallax
doesn't appear to jump when loading in some situations c003fac - #601 Fixed a bug where default slot was not working properly in
v-tabs
a56114b - #591 Fixed a bug where 0 was being interpreted as false when checking if
v-text-field
had data or not 10be646 - #571 Added hide-overlay prop in the overlayable mixin to actually check the property c03425f
- #572 Fixed a bug where
v-card
with the horizontal prop had border radius on the inside of the image 9f23bca - #579 Fixed a rendering issue with
v-tooltip
on IE11 - #587 Fixed a bug where the disabled state of
v-text-field
was not properly showing the bottom dotted border a6ec4f7 - #596 Fixed a bug in
v-date-picker
where an improper comparison could cause an error.