Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency vuetify to v3.3.0 #62

Open
wants to merge 1 commit into
base: deps
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 28, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
vuetify (source) 3.0.0-next-20220226.0 -> 3.3.0 age adoption passing confidence

Release Notes

vuetifyjs/vuetify (vuetify)

v3.3.0

Compare Source

v3.3.0 (Icarus)

Welcome to the v3.3.0 release of Vuetify!

This MINOR release is meant to coincide with Vue v3.3 and includes a few new features and bug fixes.

The v-bottom-sheet component has hit labs and is ready for testing:

bottom sheets

It is a modified version of v-dialog that extends from the bottom of the screen.

The group composable's model now respects selection order:

group selection order

We cleaned up the Forms validation documentation and added greater control over when an input is validated.

form validation

The new lazy option skips validation on mount allowing you to avoid unnecessary rule invocation.

The following is a table of the different validation options:

validate-on= "input" "blur" "submit" "lazy"
On mount
On input *
On blur *
On submit *

*Uses the behavior of whatever it's combined with.

In addition, we ported over auto-select-first from v2, added loading indicators to all Data Table variants, and added Data Iterators to labs.

The team is now shifting focus to v2.7 Nirvana-lts and v3.4 (Blackguard); while also preparing to move Date Pickers and Calendars to Labs and promoting Data Tables to the core framework. These updates bring Vuetify 3 dangerously close to feature parity with Vuetify 2 and will mark a major milestone in the Vuetify 3 release cycle.

Once we have completed the above, it will free up the team to work on shoring up our GitHub issues and adding new features and functionality. Speaking of issues, in preparation for LTS, the team has been on an absolute tear triaging and dispositioning:

image

We hope that you enjoy this release and we look forward to rounding out the year with some exciting updates.

Until next time,

John Leider


💪 Support Vuetify Development

Vuetify is an open source MIT project that has been made possible due to the generous contributions by our sponsors and backers. If you are interested in supporting this project, please consider:

📖 Table of Contents

📑 Upgrade guide

  • The active-color prop on v-list-item is deprecated, just use color (they did the same thing anyway)
  • v-img now has an automatic width and height, so you can probably remove some flex styles and explicit dimensions

💯 Release notes

🚀 Features
🔧 Bug Fixes
🧪 Labs
BREAKING CHANGES
  • types: .d.ts imports have to be changed to .d.mts
  • types: minimum typescript version 4.7

🆘 I need help!

If you are stuck and need help, don't fret! We have a very large and dedicated community that is able to provide help 24/7. Come to the #vuetify-3-help channel.

v3.2.5

Compare Source

🔧 Bug Fixes

v3.2.0

Compare Source

v3.2.0 (Orion)

Welcome to the v3.2.0 release of Vuetify!

The team has been hard at work on some exciting new updates and we're excited to finally get it into your hands!
Orion has a huge focus on improving the defaults engine and giving users more tools to customize their application. We started by adding support for global class and style defaults; then hooked it up to virtual components.

For example, you can set the default class for all v-btn components to be my-btn:

import { createVuetify } from 'vuetify'

export default createVuetify({
  defaults: {
    VBtn: {
      class: 'my-btn',
    },
  },
})

The same is possible for virtual components as well. Simply alias a core component and reference it by its name in the config object:

import { createVuetify } from 'vuetify'
import { VBtn } from 'vuetify/components/VBtn'

export default createVuetify({
  aliases: {
    MyBtn: VBtn,
  },

  defaults: {
    MyBtn: {
      color: 'primary',
      class: 'my-btn',
      variant: 'tonal',
    },
  },
})

Whenever you use the MyBtn component in any template it will be rendered as a v-btn with the default props applied:

<template>
  <my-btn>My Button</my-btn>
  <!-- <v-btn color="primary" variant="tonal" class="mt-btn">...</v-btn>-->
</template>

Finally, we made our defaults composable publicly available. Now you can hook your custom components into the defaults engine and configure your entire application from a single source.

<template>
  <div>
    I am {{ props.foo }}
  </div>
</template>

<script setup>
  import { useDefaults } from 'vuetify'

  const _props = defineProps({ foo: String })
  const props = useDefaults(_props)
</script>

defaults

The defaults composable also works with nested configurations. This works in any combination of virtual, custom, and core Vuetify components.

For example, you can create a custom component that modifies the default behavior of its children:

import { createVuetify } from 'vuetify'
import { VBtn } from 'vuetify/components/VBtn'
import { VCard } from 'vuetify/components/VCard'

export default createVuetify({
  aliases: {
    MyBtn: VBtn,
    MyCard: VCard,
  },

  defaults: {
    MyBtn: {
      color: 'primary',
      class: 'my-btn',
      variant: 'tonal',
    },
    MyCard: {
      border: true,
      variant: 'text',

      MyBtn: {
        color: 'secondary',
        variant: 'text',
      },
    },
  },
})

Some other big feature updates in this release include:

With v3.2 complete, the team is preparing for v2.7-lts (Nirvana) and the next v3 release, Icarus. We've recently updated our roadmap to be more transparent about our plans for the future; as well as improve the information about each release. Also, we've drastically improved the performance of the documentation and added new tools, such as 🎮Vuetify Play, to all component examples.

image

We hope that you enjoy this release as much as we have enjoyed working on it.

Until next time,

John Leider


💪 Support Vuetify Development

Vuetify is an open source MIT project that has been made possible due to the generous contributions by our sponsors and backers. If you are interested in supporting this project, please consider:

📖 Table of Contents

📑 Upgrade guide

  • The title prop on v-tab is now text
  • The visible-items prop has been removed

💯 Release notes

🚀 Features
🔧 Bug Fixes
🧪 Labs
BREAKING CHANGES
  • VTab: The VTab title prop is now text
  • VVirtualScroll: visibleItems has been removed

🆘 I need help!

If you are stuck and need help, don't fret! We have a very large and dedicated community that is able to provide help 24/7. Come to the #vuetify-3-help channel.

v3.1.16

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring
  • extract focusChild helper function (1646d67)
  • extract focusableChildren helper function (2531a83)
🧪 Labs

v3.1.15

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.14

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.13

Compare Source

This release may break some subcomponent defaults, for example VTabs > VSlideGroup should now just be set on VTabs instead.

🔧 Bug Fixes
🧪 Labs
🔬 Code Refactoring
  • defaults: skip merging deep if prev is undefined (c363981)
🔄 Reverts

v3.1.9

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring

v3.1.8

Compare Source

🔧 Bug Fixes
🧪 Labs
🔬 Code Refactoring

v3.1.7

Compare Source

🔧 Bug Fixes
  • types: add volar compatible slot types (0fbdd0c)
  • VExpansionPanelTitle: add missing slot types (163ec60)
🧪 Labs

v3.1.6

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.5

Compare Source

🔧 Bug Fixes
🧪 Labs

v3.1.4

Compare Source

🔧 Bug Fixes
🔬 Code Refactoring
  • VAppBarTitle: implement VToolbarTitle props (24fd25d)
  • VBtnToggle: create makeProps function for VBtnGroup (18e6dbe), closes #​16253

v3.1.3

Compare Source

🔧 Bug Fixes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220228.0 Update dependency vuetify to v3.0.0-next-20220301.0 Mar 1, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 590b157 to b77229f Compare March 1, 2022 14:19
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220301.0 Update dependency vuetify to v3.0.0-next-20220302.0 Mar 2, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from b77229f to b9251d5 Compare March 2, 2022 13:44
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220302.0 Update dependency vuetify to v3.0.0-next-20220303.0 Mar 3, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 8965f8d to 65e8ba7 Compare March 4, 2022 12:32
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220303.0 Update dependency vuetify to v3.0.0-next-20220304.0 Mar 4, 2022
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220304.0 Update dependency vuetify to v3.0.0-next-20220305.0 Mar 5, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 5dbb2f5 to a844c27 Compare March 7, 2022 19:11
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220305.0 Update dependency vuetify to v3.0.0-next-20220307.0 Mar 7, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from a844c27 to 5081fd3 Compare March 8, 2022 12:56
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220307.0 Update dependency vuetify to v3.0.0-next-20220308.0 Mar 8, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 5081fd3 to c7a59b4 Compare March 9, 2022 13:15
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220308.0 Update dependency vuetify to v3.0.0-next-20220309.0 Mar 9, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from c7a59b4 to d22d695 Compare March 10, 2022 12:35
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220309.0 Update dependency vuetify to v3.0.0-next-20220310.0 Mar 10, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from d22d695 to f7b7201 Compare March 11, 2022 15:37
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220310.0 Update dependency vuetify to v3.0.0-next-20220311.0 Mar 11, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from f7b7201 to 1b350ea Compare March 12, 2022 13:44
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220311.0 Update dependency vuetify to v3.0.0-next-20220312.0 Mar 12, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 1b350ea to 2229347 Compare March 14, 2022 14:38
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220312.0 Update dependency vuetify to v3.0.0-next-20220314.0 Mar 14, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 2229347 to 6fcaa69 Compare March 16, 2022 12:21
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220314.0 Update dependency vuetify to v3.0.0-next-20220316.0 Mar 16, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 6fcaa69 to 0f3dbf0 Compare March 18, 2022 14:30
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220316.0 Update dependency vuetify to v3.0.0-next-20220317.0 Mar 18, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 0f3dbf0 to 55846cc Compare March 19, 2022 13:38
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220317.0 Update dependency vuetify to v3.0.0-next-20220319.0 Mar 19, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 21091af to edc355b Compare April 16, 2022 13:33
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220416.0 Update dependency vuetify to v3.0.0-next-20220419.0 Apr 19, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from edc355b to 4736d64 Compare April 19, 2022 16:47
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220419.0 Update dependency vuetify to v3.0.0-next-20220420.0 Apr 20, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 4736d64 to 435f753 Compare April 20, 2022 17:26
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220420.0 Update dependency vuetify to v3.0.0-next-20220421.0 Apr 21, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 435f753 to 11339c3 Compare April 21, 2022 17:24
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220421.0 Update dependency vuetify to v3.0.0-next-20220422.0 Apr 22, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from 8e5305c to 66110b5 Compare April 26, 2022 14:52
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220422.0 Update dependency vuetify to v3.0.0-next-20220426.0 Apr 26, 2022
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220426.0 Update dependency vuetify to v3.0.0-next-20220428.0 Apr 28, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch 2 times, most recently from dda78fb to e20bba3 Compare April 29, 2022 13:11
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220428.0 Update dependency vuetify to v3.0.0-next-20220429.0 Apr 29, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from e20bba3 to 03bc44f Compare May 15, 2022 20:26
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220429.0 Update dependency vuetify to v3.0.0-next-20220515.0 May 15, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 03bc44f to 20eafd3 Compare June 18, 2022 16:52
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220515.0 Update dependency vuetify to v3.0.0-next-20220618.0 Jun 18, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 20eafd3 to c94a9fd Compare June 23, 2022 18:58
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220618.0 Update dependency vuetify to v3.0.0-next-20220623.0 Jun 23, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from c94a9fd to 4a86ef6 Compare November 20, 2022 15:39
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0-next-20220623.0 Update dependency vuetify to v3.0.0 Nov 20, 2022
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 4a86ef6 to 3a18009 Compare March 18, 2023 07:53
@renovate renovate bot changed the title Update dependency vuetify to v3.0.0 Update dependency vuetify to v3.1.9 Mar 18, 2023
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 3a18009 to 6da9f41 Compare April 17, 2023 09:51
@renovate renovate bot changed the title Update dependency vuetify to v3.1.9 Update dependency vuetify to v3.1.14 Apr 17, 2023
@renovate renovate bot force-pushed the renovate/vuetify-3.x branch from 6da9f41 to aab8775 Compare May 28, 2023 08:55
@renovate renovate bot changed the title Update dependency vuetify to v3.1.14 Update dependency vuetify to v3.3.0 May 28, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants