Documentation
Upgrade Guide
- Debouncing the search-input prop when using the .sync modifier in
v-select
needs to be manually handled by the developer - Change prepend-icon/append-icon props to prev-icon/next-icon in
v-carousel
,v-date-picker
andv-tabs
- Default pickers' width was changed back from
330px
to290px
in #3170 - this is a breaking change if you're upgrading from 1.0.0-beta.5 (width of dialogs or menus should be adjusted) but nothing changes if you're upgrading from older versions
Things we broke
- #2978 Removed the debounce prop from
v-select
- #3152 prepend-icon/append-icon props were renamed to prev-icon/next-icon in
v-carousel
,v-date-picker
andv-tabs
Things we added
- #2668 Added the hide-overlay prop to
v-bottom-sheet
- #3055 Added auto-height to
v-snackbar
- #3073 Added new built in helper,
$vuetify.goTo
documentation (thanks @Zaken) - #3115 Added new prop reactive to
v-date-picker
. When enabled, will update the picker's model when year, month or day is changed. Without, will only react when the day is changed - #3148 Added sort-icon prop to
v-data-table
- #3152 Added next-icon and prev-icon props to
v-data-iterable
and expand-icon prop tov-expansion-panel-content
Things we changed
- 48a2a1a Updated elevation stylus variables to be editable (thanks @Banandrew)
- #2759
v-snackbar
should now better reflect Material Design spec (thanks @manico) - #2802 Added support for
v-footer
and auto height. - #3134 Improved keyboard interaction when using
v-select
- #3129 #3053 full-width columns in
v-data-table
now use the table's column count for theircolspan
instead ofcolspan="100%"
(thanks @NicoCevallos)
Things we fixed
- #2418 Fixed a bug where append and prepend-icon on
v-switch
andv-checkbox
was not styled properly - #2616 Fixed a bug where
v-time-picker
would reset to current time when explicitly cleared with a null value - #2677 Fixed a bug where
v-ripple
was not properly unbinding or updating (thanks @nkovacs) - #2791 Fixed a bug where
v-select
with the chips, multiple and tags prop was not working properly - #2942 Fixed a bug where
v-dialog
's activator slot was not properly stopping event propagation - #2970 Fixed a bug where snackbars would be limited to 50% screen width near the
sm
breakpoint - #3010 Fixed a bug where
v-tabs
would throw an error when building a nuxt application - #3020 Fixed a bug where icons were not showing properly in IE11 Compatibility View (thanks @krestaino)
- #3068 Fixed a bug where
v-btn
with the fab prop was not styled properly in IE11 - #3084 Fixed a bug that prevented content from showing when using the lazy prop but also having content set to active at runtime
- #3088 Fixed a bug where the no-data slot in
v-data-table
was not being wrapped in a<tr>
tag - #3094 Fixed a bug where
v-btn
styles forv-stepper
were affecting nested components - #3156 Fixed a bug where application components were not resolving their state properly
- #3160 Fixed a bug where
v-date-picker-title
was not using the proper transition when changing dates - #3162 Fixed a rendering issue in
v-time-picker
in Chrome 64 (from 0.17.7) - #3165 Fixed a bug where
v-select
with the dense prop was not scrolling the proper amount when using the keyboard (thanks @dalevfenton) - a9154e7 fixed a bug where the theme stylesheet would sometimes not be generated when using SSR