\n \u003Cspan class=\"flex items-center gap-2 font-semibold text-lg logo\">example\u003C/span>\n \u003C/div>\n \u003C/template>\n \u003CUNavigationMenu\n orientation=\"vertical\"\n :items=\"links\"\n />\n \u003Cdiv class=\"flex-1\" />\n \u003CUNavigationMenu\n orientation=\"vertical\"\n :items=\"footerLinks\"\n />\n \u003CUSeparator class=\"sticky bottom-0\" />\n \u003Ctemplate #footer>\n \u003Cspan class=\"text-xs text-neutral-500 tracking-tight\">Version {{ useRuntimeConfig().public.version }}\u003C/span>\n \u003C/template>\n \u003C/UDashboardSidebar>\n\n```\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3037,3040,3041],{"name":3038,"color":3039},"bug","d73a4a",{"name":3024,"color":3025},{"name":3042,"color":3043},"pro","5BD3CB",3549,"closed","injection \"Symbol(nuxt-ui.locale-context)\" not found","2025-03-18T11:12:44Z","https://github.com/nuxt/ui/issues/3549",0.6810962,{"description":3051,"labels":3052,"number":3058,"owner":3027,"repository":3028,"state":3045,"title":3059,"updated_at":3060,"url":3061,"score":3062},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.11.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: pnpm@10.2.1\n- Builder: -\n- User Config: devtools, modules, css, future, compatibilityDate\n- Runtime Modules: @nuxt/ui@3.0.0, @nuxt/eslint@1.2.0\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.16.0\n\n### Reproduction\n\nhttps://github.com/deetz99/ui3-layer-test\n\n**Nuxt UI 2 working as expected**\nhttps://github.com/deetz99/ui2-layer-test\n\n### Description\n\nTailwind classes aren't resolved when using layers.\n\nAs seen in the repro, when using `pnpm dev` to run the .playground, the header, footer and layout styles are missing. \n\nUButton is still rendered correctly with the custom blue in the layer main.css file.\n\n`npx nuxi dev` (run the layer) renders the header, footer and layout correctly.\n\nAm I missing something here?\n\n## pnpm dev\n\n\u003Cimg width=\"1720\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/245bae83-2c86-42d1-a883-e472da30e6f7\" />\n\n## npx nuxi dev\n\n\u003Cimg width=\"1717\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/c362da21-f5f9-4c7d-a91c-f60bf6de9c0b\" />\n\n### Additional context\n\nThe classes are recognized in the .playground it seems. If I redefine the header, footer and layout in the playground they are displayed correctly. \n\n[header/footer/layout added to .playground](https://github.com/deetz99/ui3-layer-test/tree/test)\n\nIt seems that the styles aren't applied to the components that come from the layer.\n\n### Logs\n\n```shell-script\n\n```",[3053,3054,3055],{"name":3038,"color":3039},{"name":3024,"color":3025},{"name":3056,"color":3057},"triage","ffffff",3544,"Tailwind classes missing when using layers","2025-03-14T19:00:15Z","https://github.com/nuxt/ui/issues/3544",0.68498933,{"description":3064,"labels":3065,"number":3073,"owner":3027,"repository":3028,"state":3045,"title":3074,"updated_at":3075,"url":3076,"score":3077},"### Description\n\nIm using a prefix in nuxt.ui.config for nuxtui components\n```\n // nuxt ui settings\n ui: {\n colorMode: false, // disable light dark\n prefix: \"Nuxtui\", // component name prefix\n },\n```\n\nNow when I use the code from the table documentation (https://ui3.nuxt.dev/components/table#columns)\nI am getting a warning that UAvatar (which is linked to UBadge somehow) should be defined as custom Element.\n\n\n\n```\nconst nuxtuiBadge = resolveComponent(\"NuxtuiBadge\");\n\n....\n\ncell: ({ row }) => {\n const color = {\n true: \"success\" as const,\n false: \"error\" as const,\n }[row.getValue(\"isActive\") as string];\n\n return h(\n nuxtuiBadge,\n { class: \"capitalize\", variant: \"subtle\", color },\n () => (row.getValue(\"isActive\") ? \"Aktiv\" : \"Inaktiv\")\n );\n},\n\n....\n```\n\n\nDefining UAvatar as a custom element in nuxt.config solves the warning but isnt it a bug?",[3066,3069,3072],{"name":3067,"color":3068},"duplicate","cfd3d7",{"name":3070,"color":3071},"question","d876e3",{"name":3024,"color":3025},3218,"UAvatar warning when using nuxtui prefix, UBadge and h in table cell","2025-02-01T11:31:15Z","https://github.com/nuxt/ui/issues/3218",0.7060635,{"description":3079,"labels":3080,"number":3083,"owner":3027,"repository":3028,"state":3045,"title":3084,"updated_at":3085,"url":3086,"score":3087},"### Environment\n\n------------------------------\n- Operating System: Darwin\n- Node Version: v20.12.0\n- Nuxt Version: 3.15.4\n- CLI Version: 3.21.1\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@10.4.1\n- Builder: -\n- User Config: extends, modules, $production, devtools, app, css, site, runtimeConfig, sourcemap, future, experimental, compatibilityDate, nitro, eslint, linkChecker, sitemap\n- Runtime Modules: @nuxt/ui-pro@3.0.0-alpha.13, @nuxtjs/seo@2.1.1, @nuxt/content@3.1.1, @sentry/nuxt/module@8.55.0\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.13\n\n### Reproduction\n\nNo reproduction is needed. Prop.state is mutated.\n\n### Description\n\nThe current implementation of the Form component has two significant issues:\n\n\n1. **Direct Prop Mutation**: The component directly mutates its `state` prop, which violates Vue's fundamental rules about prop mutation. From Vue's documentation: [https://vuejs.org/guide/components/props.html#one-way-data-flow](https://vuejs.org/guide/components/props.html#one-way-data-flow)\n> \"All props form a one-way-down binding between the child property and the parent one: when the parent property updates, it will flow down to the child, but not the other way around. This prevents child components from accidentally mutating the parent's state, which can make your app's data flow harder to understand.\"\n\n2. **Breaks Immutable State Patterns**: The direct mutation approach is incompatible with modern state management patterns that rely on immutable state updates.\n\nThe problematic code is in the `_validate` function:\n```typescript\nif (opts.transform) {\n Object.assign(props.state, transformedState.value)\n}\n\n```\n\nhttps://github.com/nuxt/ui/blob/v3/src/runtime/components/Form.vue\n\nLine 182",[3081,3082],{"name":3038,"color":3039},{"name":3024,"color":3025},3354,"Form component violates Vue prop mutation rules and breaks immutable state patterns","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/3354",0.7215742,{"description":3089,"labels":3090,"number":3093,"owner":3027,"repository":3028,"state":3045,"title":3094,"updated_at":3095,"url":3096,"score":3097},"### Description\n\nI am new using Nuxt UI, and I am loving it.\nI personally believe buttons look better when they are wider than taller, therefore I like to add more padding in the x axis, but I don't want to do this for each button.\n\nI am currently doing it like this:\n\n```html\n\u003CUButton\n to=\"/login\"\n size=\"xl\"\n color=\"warning\"\n variant=\"solid\"\n class=\"font-semibold px-4\"\n >\n Iniciar sesión\n \u003C/UButton>\n```\n\nbut I don't know how to add the option for all buttons.\nI tried doing this in the app.config.ts:\n\n```js\nui: {\n button: {\n slots: {\n base: 'px-4 cursor-pointer'\n },\n}\n \n```\n\nand the cursor-pointer worked, but the px-4 didn't work. Any idea on how to make this work?",[3091,3092],{"name":3070,"color":3071},{"name":3024,"color":3025},3646,"How do I change the padding of all buttons globally?","2025-03-24T01:29:59Z","https://github.com/nuxt/ui/issues/3646",0.7295665,{"description":3099,"labels":3100,"number":3102,"owner":3027,"repository":3028,"state":3045,"title":3103,"updated_at":3104,"url":3105,"score":3106},"Currently, portal components (modals, popovers, etc.) are directly attached to the root of the body. It would be beneficial to allow specifying their destination within the configuration .This would provide greater control over rendering order and potential styling conflicts, especially in complex applications with open shadow Dom. \n\nFor instance, a developer might want to render a modal within a specific container to inherit styles or avoid interference with other elements on the page (I currently using Nuxt ui as a web component withing WordPress). \n\nThe proposed configuration option could be a CSS selector string, allowing for flexible targeting of any existing element in the DOM defaulting to 'body'. ",[3101],{"name":3024,"color":3025},3687,"Allow specify portal destination for all portaled components","2025-04-21T15:42:56Z","https://github.com/nuxt/ui/issues/3687",0.7337801,{"description":3108,"labels":3109,"number":3115,"owner":3027,"repository":3028,"state":3045,"title":3116,"updated_at":3085,"url":3117,"score":3118},"### Environment\n\n \"@nuxt/ui\": \"^3.0.0-alpha.12\",\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\n3.0.0-alpha.12\n\n### Reproduction\n\nself\n\n### Description\n\n```\n\u003Ctemplate> \n \u003CUSelectMenu\n v-model=\"form.regionId\"\n labelKey=\"name\"\n valueKey=\"iso\"\n :items=\"regions\"\n placeholder=\"Ej: Buenos Aires\"\n class=\"w-full\"\n :filter-fields=\"['name']\"\n />\n \u003CUSelectMenu\n v-model=\"form.cityId\"\n labelKey=\"name\"\n valueKey=\"id\"\n :items=\"cities\"\n placeholder=\"Ej: CABA\"\n class=\"w-full\"\n :filter-fields=\"['name']\"\n v-model:search-term=\"searchTerm\"\n :loading=\"loadingCities\"\n />\n\u003C/template>\n\u003Cscript setup lang=\"ts\">\nconst props = defineProps\u003C{\n regions: RegionModel[]\n}>();\nconst { regions } = toRefs(props);\n\n// Formulario reactivo\nconst form = reactive({\n name: '',\n address: '',\n regionId: '',\n cityId: '',\n website: '',\n phone: '',\n email: ''\n});\n\nconst loadingCities = ref\u003Cboolean>(false)\nconst getCities = async (regionId: string) => {\n try {\n loadingCities.value = true\n const response = await placeRepo.getCityByRegionId(regionId, searchTerm.value)\n cities.value = response\n } catch (error) {\n console.error(error)\n } finally {\n loadingCities.value = false\n }\n}\n\n\u003C/script>\n```\n\n### Additional context\n\nWhen you open select B and then open select A, select A flashes, B closes and A does not open.\n\n\n\n### Logs\n\n```shell-script\n\n```",[3110,3111,3114],{"name":3038,"color":3039},{"name":3112,"color":3113},"needs reproduction","CB47CF",{"name":3024,"color":3025},3312,"USelectmenu flickers when changing select and does not open 3.0.0-alpha.12 SelectMenu","https://github.com/nuxt/ui/issues/3312",0.73430884,{"description":3120,"labels":3121,"number":3127,"owner":3027,"repository":3028,"state":3045,"title":3128,"updated_at":3129,"url":3130,"score":3131},"### Environment\n\n- Mac OS \n- Node version v20.18.1\n- Nuxt v3.15.4\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha13\n\n### Reproduction\n\n1. follow installation from guide:\n\nnpx nuxi init -t ui3 \u003Cmy-app>\n\n2. start: npm run dev\n\n\n### Description\n\n\nThere are no colors, no buttons, no borders, no tailwind classes...\n\n\u003Cimg width=\"870\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/e5d46f25-3e77-4509-9349-6bec41ea8d63\" />\n\nI am not sure what happened and when. Just discovered today after cleaning node_modules and reinstalling all packages that tailwind is not loaded correctly. \n\nAs you can see the same is for fresh install from provided starter.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3122,3123,3124],{"name":3038,"color":3039},{"name":3024,"color":3025},{"name":3125,"color":3126},"upstream","78bddb",3374,"Tailwind CSS 4.0.8 not loading correctly","2025-03-14T20:19:15Z","https://github.com/nuxt/ui/issues/3374",0.7362234,{"description":3133,"labels":3134,"number":3137,"owner":3027,"repository":3138,"state":3045,"title":3139,"updated_at":3140,"url":3141,"score":3142},"",[3135],{"name":3038,"color":3136},"ff281a",1140,"nuxt.com","[Cards]: external links icon missing","2023-02-15T12:31:11Z","https://github.com/nuxt/nuxt.com/issues/1140",0.73741096,["Reactive",3144],{},["Set"],["ShallowReactive",3147],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fVJh1fKj5So0kUzIoI4gthHQBE51LQyaaipRAbQ4sDo8":-1},"/nuxt/ui/3220"]