Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 7 updates - #8

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-5057dbfe2f
Open

chore(deps): bump the production-dependencies group across 1 directory with 7 updates#8
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/production-dependencies-5057dbfe2f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 23, 2026

Copy link
Copy Markdown
Contributor

Bumps the production-dependencies group with 7 updates in the / directory:

Package From To
@fontsource-variable/geist 5.2.9 5.3.0
@tabler/icons-vue 3.44.0 3.45.0
@unocss/reset 66.6.8 66.7.5
@vuetify/v0 1.0.0-alpha.4 1.0.1
pinia 3.0.4 4.0.2
vue 3.5.34 3.5.40
vue-router 5.0.7 5.2.0

Updates @fontsource-variable/geist from 5.2.9 to 5.3.0

Commits

Updates @tabler/icons-vue from 3.44.0 to 3.45.0

Release notes

Sourced from @​tabler/icons-vue's releases.

Release 3.45.0

20 new icons:

  • filled/brand-signal
  • outline/app-window-bottom-left
  • outline/app-window-bottom-right
  • outline/app-window-bottom
  • outline/app-window-center
  • outline/arrow-fork-triple
  • outline/brand-signal
  • outline/device-vision-pro-wifi
  • outline/device-workstation
  • outline/dragon
  • outline/italic-off
  • outline/tab-close
  • outline/text-outline
  • outline/text-regex-asterisk
  • outline/text-regex-end
  • outline/text-regex-plus
  • outline/text-regex-question
  • outline/text-regex-start
  • outline/underline-off
  • outline/virtual-space

New features

  • New package: @tabler/icons-astro — Astro support
  • Added sideEffects: false for better tree-shaking in Vue package
  • Spelling fixes: corrected misspelled icon names

Fixed icons: outline/flip-horizontal, outline/flip-vertical

Renamed icons:

  • filled/mood-confuzed renamed to filled/mood-confused
  • outline/brand-adobe-after-effect renamed to outline/brand-adobe-after-effects
  • outline/brand-kako-talk renamed to outline/brand-kakao-talk
  • outline/currency-rubel renamed to outline/currency-ruble
  • outline/foodsteps renamed to outline/footsteps
  • outline/gender-trasvesti renamed to outline/gender-travesti
  • outline/ikosaedr renamed to outline/icosahedron
  • outline/mood-confuzed renamed to outline/mood-confused
  • outline/physotherapist renamed to outline/physiotherapist
  • outline/sport-billard renamed to outline/sport-billiard
Commits

Updates @unocss/reset from 66.6.8 to 66.7.5

Release notes

Sourced from @​unocss/reset's releases.

v66.7.5

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v66.7.4

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v66.7.4-beta.1

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v66.7.3

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

... (truncated)

Commits

Updates @vuetify/v0 from 1.0.0-alpha.4 to 1.0.1

Release notes

Sourced from @​vuetify/v0's releases.

v1.0.1

Overview

🔧 Bug Fixes

  • Snackbar: SnackbarPortal creates a stacking context so its z-index takes effect (#602)
  • Snackbar: add an urgent prop that switches the live region to role="alert" (#624)
  • createTokens: a token removed via its own ticket.unregister() no longer leaves a stale value in the resolution cache (#567)
  • createTokens: resolve aliases reached through a segment path, return directly-passed TokenAlias literals, and cache chained resolutions (#566)

Patch Changes

  • #602 e866af7 Thanks @​sridhar-3009! - fix(Snackbar): SnackbarPortal creates a stacking context so its z-index takes effect (#602)

    The teleported snackbar region applied its stack z-index to a position: static element, which CSS ignores — a body-fallback snackbar could render behind positioned page chrome regardless of its z-index. SnackbarPortal now sets position: relative alongside the z-index (visually neutral, no offsets) so the stacking context is established. Portal's zIndex slot prop is now documented to require a positioned element.

  • #624 64b839c Thanks @​sridhar-3009! - fix(Snackbar): add an urgent prop that switches the live region to role="alert" (#624)

    Informational snackbars keep role="status" (a polite live region); setting urgent switches to role="alert" (assertive) so critical notifications interrupt assistive technology instead of waiting for it to go idle (WCAG 4.1.3, Status Messages).

  • #567 05526f0 Thanks @​johnleider! - fix(createTokens): a token removed via its own ticket.unregister() no longer leaves a stale value in the resolution cache (#567)

    resolve() results were only invalidated through the context-level mutator methods, so removing a token via its ticket's own unregister() — which is bound to the underlying registry — left the cache stale and subsequent resolve() calls returned the removed value. Cache invalidation now runs off registry mutation events, covering every removal and update path uniformly.

  • #566 ff9c430 Thanks @​johnleider! - fix(createTokens): resolve aliases reached through a segment path, return directly-passed TokenAlias literals, and cache chained resolutions (#566)

    resolve() now follows a {alias} that a dotted-segment lookup lands on — previously it returned the raw '{alias}' string (visible under flat: true, where nested objects are stored whole and addressed by segment). A TokenAlias object passed directly to resolve() now returns its $value (previously a non-alias $value was stringified and looked up as an id, yielding undefined), and aliased resolutions cache the outer key rather than only the terminal hop. resolve<T = unknown>() also accepts an optional return-type parameter.

@​paper/genesis@​1.0.0

Overview

🚀 Features

  • GnDocsExample: replace the "Show code" / "Hide code" text label on the code toggle bar with a rotating chevron indicator. The chevron is a new toggle-icon scoped slot (receives expanded) with an inline-SVG fallback matching the GnPeek idiom (chevron-down, rotates 180° when expanded). The button keeps its accessible name via a dynamic aria-label ("Show code" / "Hide code"), and the filename/language/file-count meta on the right is unchanged. (#493)

🔧 Bug Fixes

  • GnDocsExample: pad the expanded example description so the expand pill clears the prose

Other Commits

  • GnDocsExample: expose data-tour hooks on the docs-example surface (#459)

Minor Changes

  • #493 5b17730 Thanks @​johnleider! - feat(GnDocsExample): replace the "Show code" / "Hide code" text label on the code toggle bar with a rotating chevron indicator. The chevron is a new toggle-icon scoped slot (receives expanded) with an inline-SVG fallback matching the GnPeek idiom (chevron-down, rotates 180° when expanded). The button keeps its accessible name via a dynamic aria-label ("Show code" / "Hide code"), and the filename/language/file-count meta on the right is unchanged.

Patch Changes

  • #459 d4b434d Thanks @​johnleider! - chore(GnDocsExample): expose data-tour hooks on the docs-example surface — example-preview on the preview panel (GnDocsExamplePreview), example-toggle on the Show-code toggle, example-expand on the peek Expand pill (GnPeek instance), and example-tabs on the multi-file tab bar (GnDocsExampleTabs). Stable, docs-consumer-addressable anchors for the v0 docs' guided-tour system to spotlight and drive the example without wrapper components. Purely additive; no visual or behavioral change.

... (truncated)

Changelog

Sourced from @​vuetify/v0's changelog.

1.0.1

Patch Changes

  • #602 e866af7 Thanks @​sridhar-3009! - fix(Snackbar): SnackbarPortal creates a stacking context so its z-index takes effect (#602)

    The teleported snackbar region applied its stack z-index to a position: static element, which CSS ignores — a body-fallback snackbar could render behind positioned page chrome regardless of its z-index. SnackbarPortal now sets position: relative alongside the z-index (visually neutral, no offsets) so the stacking context is established. Portal's zIndex slot prop is now documented to require a positioned element.

  • #624 64b839c Thanks @​sridhar-3009! - fix(Snackbar): add an urgent prop that switches the live region to role="alert" (#624)

    Informational snackbars keep role="status" (a polite live region); setting urgent switches to role="alert" (assertive) so critical notifications interrupt assistive technology instead of waiting for it to go idle (WCAG 4.1.3, Status Messages).

  • #567 05526f0 Thanks @​johnleider! - fix(createTokens): a token removed via its own ticket.unregister() no longer leaves a stale value in the resolution cache (#567)

    resolve() results were only invalidated through the context-level mutator methods, so removing a token via its ticket's own unregister() — which is bound to the underlying registry — left the cache stale and subsequent resolve() calls returned the removed value. Cache invalidation now runs off registry mutation events, covering every removal and update path uniformly.

  • #566 ff9c430 Thanks @​johnleider! - fix(createTokens): resolve aliases reached through a segment path, return directly-passed TokenAlias literals, and cache chained resolutions (#566)

    resolve() now follows a {alias} that a dotted-segment lookup lands on — previously it returned the raw '{alias}' string (visible under flat: true, where nested objects are stored whole and addressed by segment). A TokenAlias object passed directly to resolve() now returns its $value (previously a non-alias $value was stringified and looked up as an id, yielding undefined), and aliased resolutions cache the outer key rather than only the terminal hop. resolve<T = unknown>() also accepts an optional return-type parameter.

1.0.0

Minor Changes

  • #372 d075615 Thanks @​sridhar-3009! - feat(locale): add ti() so components carry inline English aria labels without bundling a locale (WCAG 4.1.2)

    • locale.ti(key, ...params) ("translate if exists") returns the translation or undefined instead of echoing the key, enabling the ti(key) ?? '<default>' pattern at call sites
    • Every v0 component now provides a built-in English aria label via ti(...) ?? '<default>', so apps with no locale plugin get meaningful accessible names — with zero strings bundled into the runtime fallback
    • @vuetify/v0/locale/messages/en is exposed as an optional export: the canonical English catalog, handy for seeding a translation or registering full English coverage (never imported by the runtime)
  • #397 19aac62 Thanks @​johnleider! - fix(Dialog, Snackbar): overlays can teleport into the topmost open modal so snackbars shown over a modal Dialog appear above it and stay interactive (#279)

    A native modal <dialog> (showModal()) is promoted to the browser top layer, which paints above all z-index and makes everything outside its subtree inert — so an overlay teleported to body rendered beneath the dialog and was unclickable. Overlays can now teleport into the top-layer subtree instead:

    • Snackbar.Portal now defaults teleport to 'top-layer', mounting into the topmost open modal <dialog> when one is open and falling back to body otherwise. teleport="body" (always body) and :teleport="false" (render inline) remain escape hatches.
    • Portal accepts a new to="top-layer" token that resolves to the topmost modal element, or body when no modal is open.
    • useStack exposes a new topElement context field and an el option on register(), so modal dialogs publish their element as the teleport target.
    • useClickOutside bounds mode no longer treats a strict DOM descendant as an outside click, so clicking an overlay teleported into a <dialog> (e.g. a Snackbar and its close button) no longer dismisses the dialog. Backdrop clicks (target is the dialog itself) still close it.

Patch Changes

  • #619 95d2d34 Thanks @​johnleider! - fix(Switch,Form,Slider): correct ARIA states for mixed, native validation, and grouped form controls (#543)

    • Switch.Root and Switch.SelectAll no longer emit the spec-invalid aria-checked="mixed"; the value is clamped to false while indeterminate, so screen readers announce a valid switch state. Style indeterminate switches with data-state="indeterminate" as before.
    • Switch.Thumb and Switch.Track are now marked aria-hidden="true", hiding the decorative visuals from assistive technology.
    • Form.Root now renders novalidate by default, so the browser's native constraint popups no longer block submit before v0's async validation runs. Opt back into native constraint validation with :novalidate="false".
    • Slider.Root now exposes role="group" plus optional label / ariaLabelledby props, giving multi-thumb sliders an accessible group name.
  • #618 d611c03 Thanks @​johnleider! - fix(Avatar,Scrim,Popover,Tooltip,Select,Toggle): restore dropped alt text and complete missing ARIA wiring (#543)

... (truncated)

Commits
  • 8b2f66f chore: version packages (#711)
  • 05526f0 fix(createTokens): invalidate resolve cache on every registry mutation (#567)
  • e866af7 fix(Portal): apply position:relative so SnackbarPortal z-index creates a stac...
  • ff9c430 fix(createTokens): follow segment-path aliases, return direct TokenAlias lite...
  • 64b839c fix(Snackbar): add urgent prop to switch live-region role to alert (#615) (#624)
  • 82a16ab chore(ci): restore Codecov coverage badge via API totals (#707)
  • 18d3c56 chore(bench): stop unit+browser double-recording of benchmarks (#704)
  • 5f1180c docs: scrub release-candidate references now that v1.0 has shipped (#697)
  • 5c46038 test(createVirtual): preserve useElementSize export in useResizeObserver benc...
  • b48e1c5 chore: version packages (#688)
  • Additional commits viewable in compare view

Updates pinia from 3.0.4 to 4.0.2

Commits
  • ae4e3b2 release: pinia@4.0.2 @​pinia/testing@​2.0.1
  • 0203b2d ci: fix size check
  • 39aae41 refactor: build configuration (#3158)
  • 75009b0 release: pinia@4.0.1
  • 2ed563c chore: update pinia readme
  • fb21766 fix: Re-add missing types exports field (#3154)
  • d797385 fix(ci): pin pnpm to 11.7.0 to match action-setup bootstrap
  • bd3d9b3 ci: install pnpm standalone to avoid self-switch crash in release
  • acad9f2 ci: pin pnpm version in release workflow
  • 1374c9d release: pinia@4.0.0 @​pinia/testing@​2.0.0 @​pinia/nuxt@​1.0.0
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for pinia since your current version.


Updates vue from 3.5.34 to 3.5.40

Release notes

Sourced from vue's releases.

v3.5.40

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.39

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.38

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.37

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

v3.5.35

For stable releases, please refer to CHANGELOG.md for details. For pre-releases, please refer to CHANGELOG.md of the minor branch.

Changelog

Sourced from vue's changelog.

3.5.40 (2026-07-16)

Bug Fixes

3.5.39 (2026-06-25)

Bug Fixes

3.5.38 (2026-06-11)

3.5.37 (2026-06-11)

3.5.36 (2026-06-11)

Bug Fixes

  • compiler-core: avoid crash on CDATA at the document root (#14916) (0ea17e2)
  • compiler-core: prefix dynamic keys on v-memo elements (#14922) (68e978e), closes #14920
  • compiler-sfc: handle vue-ignore on leading intersection/union type (#14950) (0dcd225), closes #12254
  • compiler-sfc: respect var hoisting in props destructure (48ad452)
  • reactivity: preserve watch callback return value when wrapped for once: true (#14902) (450a8a8)
  • runtime-core: add dev warning for silent catch in compat mode and fix test description typo (#14891) (db3e117)

... (truncated)

Commits

Updates vue-router from 5.0.7 to 5.2.0

Release notes

Sourced from vue-router's releases.

v5.2.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub

v5.1.0

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 23, 2026
…y with 7 updates

Bumps the production-dependencies group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@fontsource-variable/geist](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/geist) | `5.2.9` | `5.3.0` |
| [@tabler/icons-vue](https://github.com/tabler/tabler-icons/tree/HEAD/packages/icons-vue) | `3.44.0` | `3.45.0` |
| [@unocss/reset](https://github.com/unocss/unocss/tree/HEAD/packages-presets/reset) | `66.6.8` | `66.7.5` |
| [@vuetify/v0](https://github.com/vuetifyjs/0/tree/HEAD/packages/0) | `1.0.0-alpha.4` | `1.0.1` |
| [pinia](https://github.com/vuejs/pinia) | `3.0.4` | `4.0.2` |
| [vue](https://github.com/vuejs/core) | `3.5.34` | `3.5.40` |
| [vue-router](https://github.com/vuejs/router) | `5.0.7` | `5.2.0` |



Updates `@fontsource-variable/geist` from 5.2.9 to 5.3.0
- [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md)
- [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/geist)

Updates `@tabler/icons-vue` from 3.44.0 to 3.45.0
- [Release notes](https://github.com/tabler/tabler-icons/releases)
- [Commits](https://github.com/tabler/tabler-icons/commits/v3.45.0/packages/icons-vue)

Updates `@unocss/reset` from 66.6.8 to 66.7.5
- [Release notes](https://github.com/unocss/unocss/releases)
- [Commits](https://github.com/unocss/unocss/commits/v66.7.5/packages-presets/reset)

Updates `@vuetify/v0` from 1.0.0-alpha.4 to 1.0.1
- [Release notes](https://github.com/vuetifyjs/0/releases)
- [Changelog](https://github.com/vuetifyjs/0/blob/master/packages/0/CHANGELOG.md)
- [Commits](https://github.com/vuetifyjs/0/commits/v1.0.1/packages/0)

Updates `pinia` from 3.0.4 to 4.0.2
- [Release notes](https://github.com/vuejs/pinia/releases)
- [Commits](vuejs/pinia@v3.0.4...v4.0.2)

Updates `vue` from 3.5.34 to 3.5.40
- [Release notes](https://github.com/vuejs/core/releases)
- [Changelog](https://github.com/vuejs/core/blob/main/CHANGELOG.md)
- [Commits](vuejs/core@v3.5.34...v3.5.40)

Updates `vue-router` from 5.0.7 to 5.2.0
- [Release notes](https://github.com/vuejs/router/releases)
- [Commits](vuejs/router@v5.0.7...v5.2.0)

---
updated-dependencies:
- dependency-name: "@fontsource-variable/geist"
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@tabler/icons-vue"
  dependency-version: 3.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@unocss/reset"
  dependency-version: 66.7.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: "@vuetify/v0"
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: pinia
  dependency-version: 4.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: production-dependencies
- dependency-name: vue
  dependency-version: 3.5.40
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: vue-router
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title chore(deps): bump the production-dependencies group with 7 updates chore(deps): bump the production-dependencies group across 1 directory with 7 updates Jul 27, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/production-dependencies-5057dbfe2f branch from c060850 to 2a84714 Compare July 27, 2026 22:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants