chore: version packages - #718
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/master
branch
6 times, most recently
from
July 27, 2026 20:48
03366eb to
60de992
Compare
github-actions
Bot
force-pushed
the
changeset-release/master
branch
from
July 28, 2026 00:34
60de992 to
32afd4e
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated.
Releases
@vuetify/v0@1.0.2
Patch Changes
#634
b8ae3beThanks @sridhar-3009! - fix(Breadcrumbs): collapsed crumbs no longer strand focusable links in the accessibility tree, and the ellipsis can opt into a disclosure toggle (#614)Truncated crumbs are now marked
inertrather than relying ondisplay: nonealone. Renderless consumers who bindattrsonto their own markup were shipping links that assistive technology could not see but the keyboard could still reach.A new
Breadcrumbs.Activatorreveals the collapsed crumbs. Place one insideBreadcrumbs.Ellipsisand the ellipsis becomes a disclosure — the ellipsis stays the list item and the Activator is the control, so the trail keeps a valid list structure. It shipsaria-expanded, a count-aware label, and adata-statehook for styling.The default is unchanged — an ellipsis with no Activator stays hidden from assistive technology, so opt in where the collapsed levels matter.
#645
1cf1ce3Thanks @sridhar-3009! - fix(Button,Toggle,Pagination): activate non-nativeaselements on Enter/Space (#645)ButtonRoot,ToggleRoot, andPaginationItemexposerole="button"andtabindexwhen rendered with a non-nativeaselement (e.g.as="div"), but browsers only synthesize a click from Enter/Space for native<button>elements — for everything else those were dead keys. All three now wire anonKeydownhandler (only whenas !== 'button') so keyboard users can activate them.#727
adaace9Thanks @johnleider! - fix(useProxyModel): keep a v-model value whose item has not rendered yetSetting a v-model to a value whose item registers later — selecting a tab that is only rendered once it becomes active, or an option in a list that has not mounted — was immediately reverted to the previous selection.
useProxyModelalready defers such values so late-registering items resolve them, but the same tick wrote the old selection back over the model, discarding the value before its item could register. When the model is a writablecomputed, that write ran the setter, so the revert also fired the consumer's own side effects.Values with no registered item are now held until their item registers; a value whose item exists but was refused (disabled, or blocked by
mandatory) still reverts as before.#720
6c157ffThanks @johnleider! - fix(v0): accept Vue 3.6 prereleases and surface npm discovery metadata@vuetify/v0now installs cleanly alongsidevue@3.6.0-rc.x. The previousvuepeer range of>=3.5.0excluded prereleases per semver, so any project on a 3.6 release candidate hitERESOLVE; the range is now>=3.5.0 || >=3.6.0-0. No change for projects on stable Vue.The package also publishes
keywords,homepage, andbugsfor the first time, and thedescriptionnow leads with what the package is — headless, unstyled, accessible Vue 3 primitives and composables.#725
6791e7bThanks @johnleider! - fix(useResizeObserver): report border-box measurements so theboxoption is no longer a silent no-op (#724)useResizeObserveracceptedbox: 'border-box'but every entry it reported was content-box, so any element with padding or a border measured short by exactly that amount — with no type error and no warning. Entries now also carryborderBoxSizeandcontentBoxSize, matching the nativeResizeObserverEntry:Both arrays are present on every entry regardless of
box, so you can read the border box without changing any option. UnlikegetBoundingClientRect(), they are layout values and are not scaled by CSS transforms.contentRectis unchanged — existing callbacks keep working as-is.#641
497b328Thanks @sridhar-3009! - test(Collapsible): cover keyboard toggle for non-native activator elements (#641)CollapsibleActivatoralready handles Enter/Space and setsrole="button"for non-nativeaselements, but no test asserted that a non-native activator actually toggles the collapsible on Enter/Space. Adds two tests covering that gap.