Skip to content

chore(deps): bump @nuxt/ui from 4.6.1 to 4.7.1#272

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nuxt/ui-4.7.1
Open

chore(deps): bump @nuxt/ui from 4.6.1 to 4.7.1#272
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/nuxt/ui-4.7.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps @nuxt/ui from 4.6.1 to 4.7.1.

Release notes

Sourced from @​nuxt/ui's releases.

v4.7.1

🐛 Bug Fixes

  • ChatMessage: make actions slot accessible on touch devices (f5a3349)
  • Drawer: handle RTL mode (#6396) (2e3fed2)
  • Link: prevent double-prefixing with @nuxtjs/i18n auto-localization (#6404) (dde09d0)
  • ProseImg: close zoom overlay on Escape key (e3cdbc5)
  • ProsePrompt: improve responsive (0a5b433)

👋 New Contributors

Full Changelog: nuxt/ui@v4.7.0...v4.7.1

v4.7.0

✨ Highlights

📋 New Listbox component

The Listbox component is a selectable list of items with built-in search, virtualization, and rich item rendering. It's ideal when you want an always-visible list without the overlay behavior of SelectMenu.

<script setup lang="ts">
const items = ref([
  { label: 'France', icon: 'i-lucide-map-pin', value: 'FR' },
  { label: 'Germany', icon: 'i-lucide-map-pin', value: 'DE' },
  { label: 'Italy', icon: 'i-lucide-map-pin', value: 'IT' },
  { label: 'Spain', icon: 'i-lucide-map-pin', value: 'ES' }
])
const value = ref()
</script>
&lt;template>
<UListbox v-model="value" :items="items" />
</template>

🤖 New ProsePrompt component

The ProsePrompt component displays pre-built AI prompts inside your docs with one-click copy and direct IDE integration. Users can copy the prompt to their clipboard or open it directly in Cursor or Windsurf via the actions prop.

::prompt
---
description: Build a dashboard layout with Nuxt UI.
icon: i-lucide-layout-dashboard
actions:
  - copy
</tr></table> 

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.7.1 (2026-04-28)

Bug Fixes

  • ChatMessage: make actions slot accessible on touch devices (f5a3349)
  • Drawer: handle RTL mode (#6396) (2e3fed2)
  • Link: prevent double-prefixing with @nuxtjs/i18n auto-localization (#6404) (dde09d0)
  • ProseImg: close zoom overlay on Escape key (e3cdbc5)
  • ProsePrompt: improve responsive (0a5b433)

4.7.0 (2026-04-24)

Features

  • AuthForm: add separator slot (#6305) (81c7ddb)
  • Card: add title and description props (3cf7d75), closes #6001
  • CommandPalette: add group-label slot (#6329) (7fc773c)
  • CommandPalette: add searchDelay prop (7d2af05)
  • EditorSuggestionMenu: expose suggestion matching options (#6234) (4427824)
  • Link: auto-localize internal links when @nuxtjs/i18n is installed (#5537) (92cfda0)
  • Listbox: new component (#6307) (00c1651)
  • ProsePrompt: new component (#6362) (2451ac6)
  • Table: support sticky header/footer in virtualized mode (#6217) (15d32ce)
  • Textarea: expose autoResize method (#6120) (9c5c0df)

Bug Fixes

  • Accordion/Tabs: use item value as stable key to avoid remounts (#6380) (3cee610)
  • Avatar: remove leading-none from fallback (#6383) (77ce09a)
  • ChatMessage/ChatMessages: preserve generic message type in slot scope (#6391) (20f66db)
  • ChatMessages: prevent layout shift caused by indicator during streaming (#6297) (b7160e2)
  • ChatMessages: use MutationObserver for auto-scroll during streaming (#6357) (47bf3cb)
  • ChatPromptSubmit: ignore disabled prop when status is not ready (600a2ca)
  • components: resolve defaultVariants in template logic (#6361) (75b37d0)
  • ContentSearch/DashboardSearch: pick shared props from CommandPalette (cdcf2e5)
  • ContentSearch: speed up navigation mapping (0faf2c2)
  • ContentToc: use links for scrollspy instead of hardcoded h2/h3 (#6282) (6aba2ea)
  • FieldGroup: prevent context from leaking into portals (#6313) (5155e27)
  • FileUpload: use form field color and highlight instead of raw props (bb5a9ed)
  • Header/DashboardSidebar/Sidebar: allow auto focus in menu for proper focus trapping (#6266) (9b91ee4)
  • InputDate/InputTime: increase segments width (#6339) (4ebdb2f)
  • InputTags: add missing field group variant (#6326) (aae5378)
  • Link: ensure single-root rendering for v-show and $el resolution (#6310) (2c4ff35)
  • Modal/Slideover: drop empty header wrapper when empty (#6381) (1082960)
  • module: use relative tagPriority for inline style tags (#6299) (ae693d0)
  • PricingTable: align header elements vertically (#6111) (0daacb0)
  • PricingTable: handle RTL mode (#6382) (ab203db)
  • ProseCodeCollapse: match background on overscroll (28c89fe)
  • ProseImg: respect markdown width attribute (#6350) (d4e4ea1)
  • ProsePre: get code from DOM if code prop is missing (#6333) (b808ce4)

... (truncated)

Commits
  • 4587079 chore(release): v4.7.1
  • 0d23d8c docs(form): document error-pattern usage (#5284)
  • 934a878 docs(nuxt.config): update vite optimize deps
  • 0a5b433 fix(ProsePrompt): improve responsive
  • dde09d0 fix(Link): prevent double-prefixing with @nuxtjs/i18n auto-localization (#6...
  • e3cdbc5 fix(ProseImg): close zoom overlay on Escape key
  • bfcd666 docs(nuxt.config): update vite optimize deps
  • f5a3349 fix(ChatMessage): make actions slot accessible on touch devices
  • d060a00 playgrounds(nuxt): add vite optimizeDeps.include
  • 9ea6057 chore(deps): update actions/github-script action to v9 (#6402)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@nuxt/ui](https://github.com/nuxt/ui) from 4.6.1 to 4.7.1.
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.6.1...v4.7.1)

---
updated-dependencies:
- dependency-name: "@nuxt/ui"
  dependency-version: 4.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file npm labels May 1, 2026
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 npm

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants