Notes from the Author
Selection controls (v-checkbox
, v-radio
, v-switch
) have had their default color changed from accent to primary; Specification reference. You can revert this by setting the color prop to accent.
// Template
<v-checkbox color="accent" />
<v-radio-group>
<v-radio color="accent" />
</v-radio-group>
<v-switch color="accent" />
The v-navigation-drawer
mini-variant has had it's default width changed from 80px -> 56px. This was to ensure icons were properly aligned when in mini mode; Reference issue. You can revert this by setting the mini-variant-width prop to 80.
<v-navigation-drawer
mini-variant
mini-variant-width="80"
>
...
</v-navigation-drawer>
If you have any additional questions, please reach out to me in the Release Migration channel of the community.
🔧 Bug Fixes
- activatable: stop activator event listener propagation (be58395), closes #3333
- application-service: overwrite location sizes when registering (59a6bbf), closes #9797
- detachable: change detach target (6d001c7), closes #9906
- framework: update colors to match spec (103becb)
- SelectionControls: change selection-control disabled color (f6ef33c), closes #9280
- SelectionControls: properly align slotted labels (840f0ce), closes #10214
- VBanner: hook up missing color support (8f1ed83), closes #10216
- VBottomSheet: remove min-width and update flex (22cf5a1), closes #10261
- VChip: remove user-selection when used as link (603496e), closes #9737
- VCombobox: do not add search to list when selecting items with keyboard (#9866) (78aa42f), closes #6697 vuetifyjs/vuetify#8841 /github.com/vuetifyjs/vuetify/pull/9866/files/ba3f8a40b327e7509272530fe40ffe726f016a02#r359313120
- VDialog: remove unnecessary event.stopPropagation (9ca0519), closes #10167
- VFileInput: filter out values that are not instance of File (ebdb4f6), closes #10281
- VFileInput: remove input from normal document flow (7fa2e79), closes #8931
- VFileInput: set value to undefined by default and on clear (19bdb4c), closes #10287
- VIcon: apply default tabindex if click listener present (86133ea), closes #10265
- VInput: apply correct placeholder color (f6d0d61), closes #10221
- VListGroup: allow user to hide prepend-icon in subgroup (172724e), closes #8980
- VMenu: remove unnecessary event.stopPropagation (5af2cd1), closes #6654
- VNavigationDrawer: apply a better default mini width (d80e01f), closes #2830
- VNavigationDrawer: hide navigation drawer labels visually (#10250) (a28d03e), closes #9741
- VOverlay: enable touch interaction (3365cac)
- VRadioGroup: use correct element tags for a11y (75f6197), closes #9851
- VResponsive: apply rtl margin styles (#10269) (196bcdb), closes #10268
- VSelect: emit keydown event (6bf9eff), closes #10240
- VSlider: prevent default when pressing slider dot (7d2e162), closes #7241
- VSnackbar: a11y and appearance improvements (#10263) (80b1568), closes #10047 #10047
- VSparkline: avoid computing path total length if only 1 value provided (f57b7a7), closes #9426
- VStepper: fix styles in RTL (#10145) (879adcc), closes #10098
- VTextField: legend position with reverse and outlined prop (#10278) (55cbdbb), closes #10277