✨ Highlights
You no longer need to use theme(static)
when importing tailwindcss
! 🎉
- @import "tailwindcss" theme(static);
+ @import "tailwindcss";
However, you might still need this when using Tailwind CSS variables in your code explicitly like this for example:
<span
:class="`bg-(--color-light) dark:bg-(--color-dark)`"
:style="{
'--color-light': `var(--color-${chip}-500)`,
'--color-dark': `var(--color-${chip}-400)`
}"
/>
🚨 Breaking Changes
We now rely on standard-schema for Form validation with valibot
and zod
. Make sure to upgrade to [email protected]
/ [email protected]
if you use them in your app.
- deps: update
vaul-vue
(f401766)
We've updated to [email protected]
which powers the Drawer component. There's no longer a handle
slot, the theme handle
slot has changed a bit with some important values but you have access to a handle-only
prop now: https://ui.nuxt.com/components/drawer#handle-only
🚀 Features
- components: handle events in
content
prop (5dec0e1)
🐛 Bug Fixes
- Calendar: grey out days outside of displayed month (#3639) (a516866)
- ContextMenu/DropdownMenu: remove
any
fromproxySlots
(#3623) (764c41a) - Modal/Slideover/Toast: prevent unnecessary close instantiation (f4c417d)
- module: handle tailwindcss import without
theme(static)
(#3630) (ecff9ab) - module: mark functions used in exports as pure (#3604) (57efc78)
- RadioGroup: handle
disabled
on items (fe0bd83), closes nuxt/ui-pro#911 - Table: allow links to be opened when
@select
is used (#3580) (e80cc15) - types: add missing export for Icon (#3568) (5e62493)
- unplugin: include
@compodium/examples
in auto-imports paths (#3585) (cc504b8) - useLocale: unique symbol to use in
@nuxt/ui-pro
(#3603) (dec2730) - vue: missing unhead context (#3589) (0897e9e)
🌐 Locale
- locale: add Catalan language (#3550) (53cf1b4)
- locale: add Central Kurdish language (#3566) (b2034cc)
- locale: add Romanian language (#3587) (0229b0f)
- locale: add Urdu language (#3611) (126ba23)
- locale: add Uzbek language (#3548) (302e04b)
👋 New Contributors
- @jwoertink made their first contribution in #3563
- @NilsEvers made their first contribution in #3568
- @Kheuval made their first contribution in #3580
- @harlan-zw made their first contribution in #3589
- @Rizwan-malek made their first contribution in #3601
- @Norbiros made their first contribution in #3623
- @ArbazIrshad made their first contribution in #3611
- @UlugbekNG made their first contribution in #3548
- @markmelnic made their first contribution in #3587
- @mickaelchanrion made their first contribution in #3550
- @halwesit made their first contribution in #3566
- @ac-shadow made their first contribution in #3639
Full Changelog: v3.0.0...v3.0.1