Skip to content

chore(deps): bump @nuxt/ui from 4.8.2 to 4.9.0 in the nuxt-ui group#29

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/nuxt-ui-a7e2e11209
Open

chore(deps): bump @nuxt/ui from 4.8.2 to 4.9.0 in the nuxt-ui group#29
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/nuxt-ui-a7e2e11209

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 30, 2026

Copy link
Copy Markdown
Contributor

Bumps the nuxt-ui group with 1 update: @nuxt/ui.

Updates @nuxt/ui from 4.8.2 to 4.9.0

Release notes

Sourced from @​nuxt/ui's releases.

v4.9.0

✨ Highlights

📆 Calendar month and year selection

The Calendar component gains a single type prop (date | month | year, default date) that renders it as a day, month or year picker, covering both standalone pickers and quick navigation:

<script setup lang="ts">
const value = shallowRef(new CalendarDate(2026, 6, 17))
</script>
&lt;template>
<UCalendar v-model="value" type="month" />
</template>

[!TIP] In date mode the heading also becomes a clickable button that cycles day → month → year, so you can jump to a month or year without clicking through prev / next repeatedly. This is controlled by the new viewControls and viewButton props and works with range.

🧭 useTour composable

The new useTour composable drives guided tours by re-anchoring a single Popover across steps. It owns the step state and resolves each step's target into a reference you bind to <UPopover>, while you keep full control over the content and navigation:

<script setup lang="ts">
const card = useTemplateRef('card')
const tour = useTour([
{ target: '#cta', title: 'Get started' },
{ target: () => card.value, title: 'Profile', side: 'right' },
{ target: null, title: 'All set' }
])
</script>
&lt;template>
<UButton @​click="tour.start()">Start tour</UButton>
<UPopover :open="tour.open.value" :reference="tour.reference.value" :dismissible="false">
&lt;template #content>
<!-- your content + buttons -->
<UButton :disabled="!tour.hasPrev.value" @​click="tour.prev()">Back</UButton>
<UButton @​click="tour.next()">{{ tour.hasNext.value ? 'Next' : 'Finish' }}</UButton>
</template>
</UPopover>
</template>

✂️ Override default classes

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.9.0 (2026-06-17)

Features

Bug Fixes

  • CommandPalette: only scroll to highlighted item when focused (#6579) (02259a6)
  • Link: set default for locale prop (#6563) (e9ab758)
  • module: remove inline script in SPA mode for strict CSP (#6577) (7225e9f)
  • ProseCodeCollapse: cap root max-height instead of toggling pre height (#6565) (52d3c45)
  • ProseKbd: type default slot as VNode[] (52367b1)
  • SelectMenu: bind id and aria attributes on trigger (#6572) (c3bef7a)
  • Select: open menu on label click (#6575) (e8d18c3)
  • Tabs: render active indicator during SSR (#6570) (9e5b8a6)
  • templates: resolve vite root to an absolute path for #build aliases (#6586) (238e291)
Commits
  • 2166ff7 chore(release): v4.9.0
  • 92b7e13 docs(tabs): add bottom tab bar example (#6585)
  • 7225e9f fix(module): remove inline script in SPA mode for strict CSP (#6577)
  • cccb3d5 feat(vite): add root option to override .nuxt-ui directory location (#6595)
  • 09eb639 feat(components): allow hiding icon with false (#6597)
  • 006324a feat(Modal/Slideover): add leave and enter events (#6596)
  • f99778e feat(ChatMessages): expose registerMessageRef (#6275)
  • c34ab92 chore(deps): update tiptap to ^3.26.1 (#6593)
  • 7e35950 chore(deps): update all non-major dependencies (#6592)
  • 3909032 chore(deps): update dependency @​nuxtjs/color-mode to v4 (#6050)
  • 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 <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 nuxt-ui group with 1 update: [@nuxt/ui](https://github.com/nuxt/ui).


Updates `@nuxt/ui` from 4.8.2 to 4.9.0
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.8.2...v4.9.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 30, 2026
@dependabot dependabot Bot requested a review from citarf as a code owner June 30, 2026 21:54
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 30, 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 javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants