Skip to content

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

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

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

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Bumps @nuxt/ui from 4.1.0 to 4.2.0.

Release notes

Sourced from @​nuxt/ui's releases.

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'
    }
  }
})
@import "tailwindcss" prefix(tw);
@import "@nuxt/ui";

🚨 Breaking Changes

Exposed refs now consistently return the HTML element directly instead of the component instance. This affects InputMenu, InputNumber, InputTags, Select, and SelectMenu.

<script setup lang="ts">
const inputMenu = useTemplateRef('inputMenu')
</tr></table> 

... (truncated)

Changelog

Sourced from @​nuxt/ui's changelog.

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
  • Link: partial extend for vue-router and inertia (637ef58)
  • Marquee: move keyframes into global css (1e6242e)
  • module: detect lazy components when using experimental.componentDetection (5a5ac45)
  • module: properly export composables from module (cb25902), closes #5370
  • module: scan layers when using component detection (9872740), closes #5389
  • NavigationMenu: hide label and trailing with css when collapsed (f004031), closes #4254
  • NavigationMenu: proxy modelValue / defaultValue in vertical orientation (cffaaaa), closes #5392
  • ProseCallout: add inline-block class to icon (#5317) (fc36f69)
  • RadioGroup: update update:modelValue emit type (#5349) (4cb0638)
  • Table: apply styles to th based on column meta (#5418) (620defa)
  • types: export missing utils types (#5448) (5f0a107)

... (truncated)

Commits
  • 8cb7871 chore(release): v4.2.0
  • ddd8faf fix(CheckboxGroup/RadioGroup/Switch): consistent disabled styles
  • 3e72bf8 fix(ContentSearchButton/DashboardSearchButton): hide label and trailing with ...
  • f004031 fix(NavigationMenu): hide label and trailing with css when collapsed
  • cffaaaa fix(NavigationMenu): proxy modelValue / defaultValue in vertical orientation
  • c16ee33 docs(navigation-menu): incorrect index in model value example
  • 418c87b fix(InputMenu): prevent change event when selecting create item
  • 3331533 feat(locale): add Albanian language (#5461)
  • ca2ccfe docs(tree): collapse drag example
  • ebc8568 feat(Table): handle virtualizer estimateSize as function
  • 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.0.
- [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.0)

---
updated-dependencies:
- dependency-name: "@nuxt/ui"
  dependency-version: 4.2.0
  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 19, 2025
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages Bot commented Nov 19, 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 b0ac3b2 Nov 19 2025, 08:31 AM

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Nov 24, 2025

Superseded by #115.

@dependabot dependabot Bot closed this Nov 24, 2025
@dependabot dependabot Bot deleted the dependabot/bun/ReconnectED-web/nuxt/ui-4.2.0 branch November 24, 2025 08:58
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