Skip to content

build(deps): bump the npm-minor-patch group in /docs with 3 updates - #176

Merged
github-actions[bot] merged 1 commit into
4.xfrom
dependabot/npm_and_yarn/docs/npm-minor-patch-3e3c16170b
Sep 3, 2026
Merged

build(deps): bump the npm-minor-patch group in /docs with 3 updates#176
github-actions[bot] merged 1 commit into
4.xfrom
dependabot/npm_and_yarn/docs/npm-minor-patch-3e3c16170b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-minor-patch group in /docs with 3 updates: @nuxt/scripts, @nuxt/ui and @unhead/vue.

Updates @nuxt/scripts from 1.3.6 to 1.3.8

Release notes

Sourced from @​nuxt/scripts's releases.

v1.3.8

   🐞 Bug Fixes

    View changes on GitHub

v1.3.7

   🐞 Bug Fixes

    View changes on GitHub
Commits
  • 7947ae9 chore: release v1.3.8
  • be0ce7b fix(registry): don't declare the global Window via extends (1.x backport)...
  • 9acc5bf chore: release v1.3.7
  • 33fcdd0 fix(proxy): disable proxying for static deployments (1.x backport) (#877)
  • See full diff in compare view

Updates @nuxt/ui from 4.10.0 to 4.11.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.11.0

✨ Highlights

↔️ Splitter component

A new Splitter component lets you build layouts with resizable panels separated by draggable handles, with min/max sizes, collapsible panels, nesting and vertical orientation:

<script setup lang="ts">
import type { SplitterItem } from '@nuxt/ui'
const items: SplitterItem[] = [
{ slot: 'sidebar', minSize: 15, maxSize: 40, defaultSize: 25 },
{ slot: 'main', defaultSize: 75 }
]
</script>
&lt;template>
<USplitter id="layout" :items="items" class="h-96">
&lt;template #sidebar>
Sidebar
</template>
\&lt;template #main&gt;
  Main
&lt;/template&gt;

</USplitter>
</template>

[!TIP] Set the id prop when rendering on the server so ids match on hydration, and auto-save-id to persist the layout to localStorage.

📊 ProgressGroup component

A new ProgressGroup component displays multiple values as segments of a single progress bar, with a legend listing each item. Items take any theme color or a CSS color, and the status prop shows the total:

<script setup lang="ts">
import type { ProgressGroupItem } from '@nuxt/ui'
const items: ProgressGroupItem[] = [
{ label: 'System', value: 24, color: 'neutral', icon: 'i-lucide-cog' },
{ label: 'Apps', value: 8, color: 'error', icon: 'i-lucide-app-window' },
{ label: 'Multimedia', value: 42, color: 'success', icon: 'i-lucide-film' }
]
</tr></table>

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.11.0 (2026-08-21)

Features

Bug Fixes

  • AuthForm: type submit payload with the schema output (#6816) (795c353)
  • Calendar: correct size scale (#6832) (29f9890)
  • CommandPalette: always escape search highlight to prevent XSS (#6741) (2a172ef)
  • components: resolve theme props consistently in form controls (#6834) (7c74269)
  • ContentToc: prevent list from collapsing (#6778) (706cfd0)
  • Editor: ignore updates without document changes (#6807) (7e615e1)
  • Icon: render bundled icons during SSR in Vue (#6841) (545f9e3)
  • locale: correct native names and tajik language code (#6823) (e333e8d)
  • locale: correct slide placeholder casing in lb (#6822) (10ec237)
  • Marquee: use logical properties and drop broken vertical RTL animation (#6833) (9b08a84)
  • Modal: emit transition events from overlay when scrollable (#6786) (5afbd5c)
  • Slider: bind form aria attributes on thumbs instead of root (#6768) (f3c2ac2)
  • Slider: forward aria attributes to the thumb (#6848) (d6c3802)
  • theme: blank top-level base in applyUnstyled (#6825) (3e89ea7)
  • theme: keep variants when replacing slot classes in app config (#6824) (0fabbe5)
  • Theme: merge class from props with the component class (#6842) (731ff26)
  • theme: replace deprecated bare tailwind aliases (#6865) (d4f2ca0)
  • theme: respect reduced motion on remaining movement transitions (ce5b1df)
  • theme: unify motion easing and respect prefers-reduced-motion (#6742) (735b264)
  • Tree: use logical padding for indentation (#6815) (958a3ba)

Performance Improvements

  • Button/Select/SelectMenu/InputMenu: narrow reactive dependencies (#6736) (6bd1dfc)
  • components: memoize tv slot invocations with simple args (#6737) (4200e80)
Commits
  • f62aa14 chore(release): v4.11.0
  • d6c3802 fix(Slider): forward aria attributes to the thumb (#6848)
  • 07f3fe8 feat(CheckboxGroup/RadioGroup): support icon in items (#6726)
  • a7f26a3 docs(showcase): add brusnika-lms.com (#6863)
  • d4f2ca0 fix(theme): replace deprecated bare tailwind aliases (#6865)
  • e2a253e docs(header): prevent focus on toggle button animations
  • be58f3f docs(table): pin TanStack Table links to v8 (#6864)
  • 545f9e3 fix(Icon): render bundled icons during SSR in Vue (#6841)
  • 14ac243 feat(ProgressGroup): new component (#6860)
  • a630c94 docs(showcase): add triadtrainer.vercel.app
  • Additional commits viewable in compare view

Updates @unhead/vue from 3.3.2 to 3.4.0

Release notes

Sourced from @​unhead/vue's releases.

v3.4.0

   🚀 Features

   🐞 Bug Fixes

   🏎 Performance

    View changes on GitHub
Commits
  • 1132b9f chore: release v3.4.0
  • 18a55c1 feat(validate): flag streamed head tags that bots never see (#947)
  • d253b54 feat(stream): render Streamed Body Tags before body close (#960)
  • 791f03d fix(stream): stop wrapStream dropping late head entries (#954)
  • e5f5c38 fix(stream): module mode lost every streamed head tag (#950)
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the npm-minor-patch group in /docs with 3 updates: [@nuxt/scripts](https://github.com/nuxt/scripts/tree/HEAD/packages/script), [@nuxt/ui](https://github.com/nuxt/ui) and [@unhead/vue](https://github.com/unjs/unhead/tree/HEAD/packages/vue).


Updates `@nuxt/scripts` from 1.3.6 to 1.3.8
- [Release notes](https://github.com/nuxt/scripts/releases)
- [Changelog](https://github.com/nuxt/scripts/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nuxt/scripts/commits/v1.3.8/packages/script)

Updates `@nuxt/ui` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.10.0...v4.11.0)

Updates `@unhead/vue` from 3.3.2 to 3.4.0
- [Release notes](https://github.com/unjs/unhead/releases)
- [Commits](https://github.com/unjs/unhead/commits/v3.4.0/packages/vue)

---
updated-dependencies:
- dependency-name: "@nuxt/scripts"
  dependency-version: 1.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-minor-patch
- dependency-name: "@nuxt/ui"
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
- dependency-name: "@unhead/vue"
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Sep 3, 2026
@github-actions
github-actions Bot merged commit 3698535 into 4.x Sep 3, 2026
7 checks passed
@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/docs/npm-minor-patch-3e3c16170b branch September 3, 2026 19:45
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants