Changelog

Discover the latest releases from Nuxt and the official modules.
@nuxt/ui

v4.6.0

✨ Highlights

📁 New Sidebar component

The Sidebar component provides a responsive application sidebar that stays fixed on desktop and transforms into a Modal, Slideover, or Drawer on mobile. It supports three visual variants (sidebar, floating, inset) and three collapsible modes (offcanvas, icon, none):

<template>
  <USidebar v-model:open="open" collapsible="icon">
    <template #header>
      <Logo />
    </template>

    <UNavigationMenu :items="items" />

    <template #footer>
      <UserMenu />
    </template>
  </USidebar>
</template>

🤖 New Chat components

We're introducing 3 new components to build richer AI chat interfaces:

  • ChatReasoning: A collapsible thinking/reasoning block that automatically tracks streaming duration.
  • ChatTool: A collapsible row for tool invocations with loading and streaming states.
  • ChatShimmer: An animated text primitive used internally by ChatReasoning and ChatTool during streaming.

These components integrate seamlessly with the AI SDK message parts:

<template>
  <UChatMessages :messages="messages" :status="status">
    <template #content="{ message }">
      <template v-for="(part, index) in message.parts" :key="index">
        <UChatReasoning
          v-if="isReasoningUIPart(part)"
          :text="part.reasoning"
          :streaming="isReasoningStreaming(message, index, chat)"
        />
        <UChatTool
          v-else-if="isToolInvocationUIPart(part)"
          :text="part.toolInvocation.toolName"
          :streaming="isToolStreaming(part)"
        />
        <MDC v-else-if="isTextUIPart(part)" :value="part.text" />
      </template>
    </template>
  </UChatMessages>
</template>

🚨 Breaking Changes

  • module: use moduleDependencies to manipulate options (#5384)

This release adopts Nuxt's new moduleDependencies API to declaratively manage sub-module dependencies (@nuxt/icon, @nuxt/fonts, @nuxtjs/color-mode, @nuxtjs/mdc) instead of manually installing them at runtime. This requires Nuxt >= 4.1.0.

🚀 Features

🐛 Bug Fixes

  • Avatar: use resolved size for image width/height (#6008) (6dd0fc4)
  • ContentNavigation: prevent toggling disabled parent items (#6122) (0f1074f)
  • ContentSurround: handle RTL mode (#6148) (6921f13)
  • ContentToc: reset start margin at lg breakpoint (8f24f79)
  • DashboardSearchButton: use valid HTML structure for trailing slot (#6194) (578a12f)
  • Editor: guard lift calls for unavailable list extensions (#6100) (065db6b)
  • Error: support status and statusText properties (1350d62), closes #6134
  • FileUpload: make multiple, accept and reset options reactive (#6204) (ae093df)
  • Modal/Slideover/Popover/Drawer: prevent double close:prevent emit (#6226) (9a0d501)
  • module: only auto-import public composables and allow Vite opt-out (#6197) (886f5fb)
  • NavigationMenu: improve RTL support for viewport and indicator (#6164) (755867b)
  • NavigationMenu: propagate disabled state to item in vertical orientation (6d4d651)
  • ProsePre: move shiki line highlight styles to theme (d663950)

🌐 Locales

👋 New Contributors

Full Changelog: https://github.com/nuxt/ui/compare/v4.5.1...v4.6.0

@nuxt/scripts

v1.0.0-beta.29

   🐞 Bug Fixes

  • Mark useScript instance as raw  -  by @harlan-zw (37d38)
  • Asset path broken when using query params  -  by @harlan-zw (710f8)
  • google-maps:
  • rybbit:
    • Deprecate window accessor  -  by @harlan-zw (05dfc)
    View changes on GitHub
@nuxt/scripts

v1.0.0-beta.27

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
@nuxt-content/nuxt-studio

v1.5.0

🚀 Features

  • editor: callout tiptap extension (#362) (842adc8)
  • i18n: add Hungarian (hu) locale (#377) (a92e1fd)
  • i18n: add slovak (sk) locale (#359) (ca86377)
  • media: improve media picker selection and integrate ipx optimization (#369) (50d0e87)
  • review: add commit message prefix (#367) (a2e9290)
  • skills: make content editable skill (#364) (ddd9834)
  • tiptap: custom suggestion groups for components (#358) (7b6b852)

🐛 Bug Fixes

💚 New Contributors

Full Changelog: https://github.com/nuxt-content/nuxt-studio/compare/v1.4.0...v1.5.0

@nuxt/scripts

v1.0.0-beta.25

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub
@nuxt/scripts

v1.0.0-beta.22

   🚀 Features

   🐞 Bug Fixes

    View changes on GitHub