Skip to content

v2.2.5

Compare
Choose a tag to compare
@johnleider johnleider released this 22 Jan 23:28

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