Skip to content

build(deps): bump @nuxt/ui from 4.1.0 to 4.2.1 in /ReconnectED-web#115

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/ReconnectED-web/nuxt/ui-4.2.1
Open

build(deps): bump @nuxt/ui from 4.1.0 to 4.2.1 in /ReconnectED-web#115
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/bun/ReconnectED-web/nuxt/ui-4.2.1

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Nov 24, 2025

Bumps @nuxt/ui from 4.1.0 to 4.2.1.

Release notes

Sourced from @​nuxt/ui's releases.

v4.2.1

🐛 Bug Fixes

  • ChatPromptSubmit: proxy event to stop and reload emits (#5400) 736a547
  • ColorModeButton: missing icon import 5f30ccf, closes #5486
  • Icon: improve name type (#5498) b654a77
  • Link: define NuxtLinkProps instead of importing from #app (#5491) da8daaa
  • Link: ensure consistency across Nuxt, Vue and Inertia a9ed10d, closes #5012
  • module: put back #build/ui.css alias (#5499) d9aadc7

New Contributors

Full Changelog: nuxt/ui@v4.2.0...v4.2.1

v4.2.0

✨ Highlights

📅 New InputDate & InputTime components

Two new components are now available to handle date and time inputs: InputDate (#5387) and InputTime (#5302).

<script setup lang="ts">
const date = ref(new CalendarDate(2022, 2, 3))
const time = ref(new Time(12, 30, 0))
</script>
&lt;template>
<UInputDate v-model="date" />
<UInputTime v-model="time" />
</template>

🎨 Tailwind CSS prefix

You can now use Tailwind CSS's prefix option (#5341) to prefix all utilities generated by Nuxt UI and avoid conflicts with your own styles or other libraries.

export default defineNuxtConfig({
  modules: ['@nuxt/ui'],
  css: ['~/assets/css/main.css'],
  ui: {
    theme: {
      prefix: 'tw'
    }
  }
})

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

4.2.1 (2025-11-21)

Bug Fixes

  • ChatPromptSubmit: proxy event to stop and reload emits (#5400) (736a547)
  • ColorModeButton: missing icon import (5f30ccf), closes #5486
  • Icon: improve name type (#5498) (b654a77)
  • Link: define NuxtLinkProps instead of importing from #app (#5491) (da8daaa)
  • Link: ensure consistency across Nuxt, Vue and Inertia (a9ed10d), closes #5012
  • module: put back #build/ui.css alias (#5499) (d9aadc7)

4.2.0 (2025-11-18)

⚠ BREAKING CHANGES

  • components: consistent exposed refs (#5385)
  • module: properly export composables from module

Features

Bug Fixes

  • AuthForm: ensure header is shown with leading slot (#5405) (b61127a)
  • AuthForm: use password input id for aria-controls (#5312) (55ea9be)
  • ChatPrompt: proxy disabled prop (a8f2156), closes #5300
  • CheckboxGroup/RadioGroup/Switch: consistent disabled styles (ddd8faf), closes #5391
  • ColorModeButton: use css to display color mode icon (#5394) (1d1c638)
  • CommandPalette/ContentSearch: improve performances and filtering logic (#5433) (e751b37)
  • components: calc virtualizer estimateSize based on item description (56ae8e7)
  • components: clean html attributes extend (fda3c98), closes #5348
  • components: consistent exposed refs (#5385) (fce2df4)
  • components: remove locale / dir props proxy (#5432) (a6efa7a)
  • ContentNavigation/NavigationMenu/Tabs: ensure proper badge display (e5c11e6)
  • ContentSearchButton/DashboardSearchButton: hide label and trailing with css when collapsed (3e72bf8)
  • FileUpload: ensure native validation works with required (#5358) (eb491e1)
  • Form: refine nested prop type handling and simplify logic (#5360) (8d5c26f)
  • inertia: set serverRendered dynamically to prevent SSR crash (#5396) (c0da1b2)
  • Input/InputNumber/Textarea: make modelModifiers generic (#5361) (5c347af)
  • InputMenu: prevent change event when selecting create item (418c87b), closes #4664

... (truncated)

Commits
  • bb7df30 chore(release): v4.2.1
  • 736a547 fix(ChatPromptSubmit): proxy event to stop and reload emits (#5400)
  • b654a77 fix(Icon): improve name type (#5498)
  • d9aadc7 fix(module): put back #build/ui.css alias (#5499)
  • 6966766 docs(ComponentCode): add missing cast imports (#5497)
  • da8daaa fix(Link): define NuxtLinkProps instead of importing from #app (#5491)
  • e75f696 docs: update props schema to prevent hydration issues (#5483)
  • a9ed10d fix(Link): ensure consistency across Nuxt, Vue and Inertia
  • 5f30ccf fix(ColorModeButton): missing icon import
  • f9d39d9 docs: update badges
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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.1.0 to 4.2.1.
- [Release notes](https://github.com/nuxt/ui/releases)
- [Changelog](https://github.com/nuxt/ui/blob/v4/CHANGELOG.md)
- [Commits](nuxt/ui@v4.1.0...v4.2.1)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added kind > dependencies Issues that are related to dependencies scope > web Issues existing in the web application tag > bot Issues created by bots labels Nov 24, 2025
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented Nov 24, 2025

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
✅ Deployment successful!
View logs
reconnected e3d89fb Nov 24 2025, 09:00 AM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

kind > dependencies Issues that are related to dependencies scope > web Issues existing in the web application tag > bot Issues created by bots

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants