\n \u003CIcon\n v-show=\"searching\"\n name=\"i-heroicons-arrow-path-20-solid\"\n class=\"animate-spin\"\n />\u003C/span>\n```\n\nSo, it should show `magnifying-glass` when not searching and `arrow-path` when searching. This does not work. Depending on if the view was loaded during navigation or page load it does not change or there a both. With `v-if` it works fine.\n\nHere is a reproduction with `nuxt-ui`:\nhttps://stackblitz.com/edit/nuxt-ui-7zcwsg?file=app.vue,package.json\n\nAnd here is a reproduction from `nuxt-icon-playground`:\nhttps://stackblitz.com/edit/nuxt-icon-playground-odkjmz?file=app.vue,package.json\n\nIt works with 1.7.6 but not 1.8.0 onwards. Could this be related to #300 ?\n\n---\n```\n❯ npx nuxt info\nWorking directory: /home/projects/nuxt-ui \nNuxt project info: \n\n------------------------------\n- Operating System: Linux\n- Node Version: v18.20.3\n- Nuxt Version: 3.14.159\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@8.15.6\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@2.19.2\n- Build Modules: -\n------------------------------\n```\n",[],301,"Issue with v-show on icons in 1.8.1 or 1.8.0","2024-11-20T15:03:29Z","https://github.com/nuxt/icon/issues/301",0.68396145,{"description":2045,"labels":2046,"number":2047,"owner":1985,"repository":1986,"state":2003,"title":2048,"updated_at":2049,"url":2050,"score":2051},"Since I upgraded to 1.4.x icons that were not there on initial page load (e.g. toggle by v-if or even when navigating pages) are all missing with errors in console for each:\r\n\r\n```\r\nGET http://localhost:3001/api/_nuxt_icon/material-symbols.json?icons=add 404 (Cannot find any route matching /_nuxt_icon/material-symbols.json.)\r\n```\r\n\r\nThis applies to dev only. On prod it works fine.\r\n\r\nI made a reproduction repo but I couldnt reproduce there. I dont have any configuration for icons in my nuxt.config and I just use them as shown in the docs with no additional config:\r\n\r\n```\r\n\u003CIcon name=\"uil:github\" />\r\n```\r\n\r\nNuxi info:\r\n```\r\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v21.6.1\r\n- Nuxt Version: 3.13.0\r\n- CLI Version: 3.13.1\r\n- Nitro Version: 2.9.7\r\n- Package Manager: bun@1.1.26\r\n- Builder: -\r\n- User Config: extends, modules, future, experimental, runtimeConfig, scripts, i18n, routeRules, ignore, site, app, ogImage, sitemap, plausible\r\n- Runtime Modules: @nuxt/scripts@^0.6.4, @nuxtjs/seo@2.0.0-rc.19, @nuxtjs/tailwindcss@^6.12.0, @vee-validate/nuxt@^4.13.2, nuxt-og-image, @nuxtjs/plausible@^1.0.2\r\n- Build Modules: -\r\n------------------------------\r\n```",[],251,"On dev: 404 for icons that were not visible on initial page load","2024-09-05T14:04:26Z","https://github.com/nuxt/icon/issues/251",0.7306898,{"description":2053,"labels":2054,"number":2058,"owner":1985,"repository":2002,"state":2003,"title":2059,"updated_at":2060,"url":2061,"score":2062},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.9.0\n- Nuxt Version: 3.15.1\n- CLI Version: 3.17.2\n- Nitro Version: 2.10.4\n- Package Manager: npm@9.8.1\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.10\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.10\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/keen-chaplygin-lyj8jq\n\n### Description\n\nIf in `nuxt.config.ts` the `ssr` property is set to false, the `--ui-*` variables cannot be overwritten anymore in `:root` as described in the nuxt docs here in the green info box: https://ui3.nuxt.dev/getting-started/theme#color-shades.\n\nOnly if `!important` is used, the changes take effect.\n\nI believe this is because the `main.css` is imported before the variable declaration done by nuxt/ui, so the variable values in `main.css` are overwritten again. In the final html the `--ui-*` variable declaration done by nuxt/ui is inlined as the last element in the `\u003Chead>` of the html.\n\n#### main.css\n```css\n@import \"tailwindcss\";\n@import \"@nuxt/ui\";\n\n:root {\n /* Try to use different shade. */\n --ui-primary: var(--ui-color-primary-700); /* Does not work. */\n --ui-success: var(--ui-color-success-700) !important;\n}\n```\n\n#### nuxt.config.ts\n```ts\nexport default defineNuxtConfig({\n devtools: { enabled: true },\n modules: [\"@nuxt/ui\"],\n css: [\"~/assets/css/main.css\"],\n compatibilityDate: \"2025-01-06\",\n ssr: false, // works if set to true\n});\n```\n\n#### app.vue\n```vue\n\u003Ctemplate>\n \u003CUApp>\n \u003Cdiv class=\"flex flex-col items-start gap-2\">\n \u003CUBadge label=\"Uses default -500 shade\" color=\"primary\" />\n \u003CUBadge label=\"Uses -700 shade due to !important\" color=\"success\" />\n \u003C/div>\n \u003C/UApp>\n\u003C/template>\n```",[2055,2057],{"name":2012,"color":2056},"d73a4a",{"name":1999,"color":2000},3075,"[v3] Overwriting `--ui-*` CSS variables does not work with client-side only rendering (`ssr: false`).","2025-01-25T13:14:25Z","https://github.com/nuxt/ui/issues/3075",0.73145247,{"description":2064,"labels":2065,"number":2068,"owner":1985,"repository":2002,"state":2003,"title":2069,"updated_at":2070,"url":2071,"score":2072},"### Environment\n\n-\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.16.0\n\n### Reproduction\n\n- \n\n### Description\n\nUpgraded all deps to the latest and bam Nuxt 3.16.0 is added. We get errors now as Nuxt UI 3 still ships with\n\n`'@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.8.2))\n`\n\nAs of Nuxt 3.16.0 ships with @unhead2:\nhttps://nuxt.com/blog/v3-16#unhead-v2\n\nActual error:\n`[@nuxt/scripts 9:42:20 PM] ERROR Nuxt Scripts requires Unhead >= 2, you are using v1.11.20. Please run nuxi upgrade --clean to upgrade...`\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2066,2067],{"name":2012,"color":2056},{"name":1999,"color":2000},3513,"Nuxt 3.16.0 - ships with @unhead2","2025-03-10T08:49:36Z","https://github.com/nuxt/ui/issues/3513",0.7368673,{"description":2074,"labels":2075,"number":2078,"owner":1985,"repository":2002,"state":2003,"title":2079,"updated_at":2080,"url":2081,"score":2082},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\nIn my Nuxt 3 project (that uses Nuxt UI `v3.0.0-alpha9`), I have a Vue component like this:\n\n```vue\n\u003Cscript setup lang=\"ts\">\n...\n\u003C/script>\n\n\u003Ctemplate>\n \u003CUContainer class=\"section\">\n ...\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cstyle scoped lang=\"scss\">\n@use \"tailwindcss\";\n\n.section + .section {\n @apply mt-8 lg:mt-12;\n}\n\u003C/style>\n```\n\nThe problem is that `@apply mt-8 lg:mt-12;` doesn't work unless I add this to my `nuxt.config.ts`:\n```\npostcss: {\n plugins: {\n \"@tailwindcss/postcss\": {}, // https://tailwindcss.com/docs/v4-beta#using-post-css\n },\n},\n```\n\nHowever, when I do this, the Nuxt UI components stop working properly (e.g., Slideover renders at the bottom of the page and with wrong styling). How can I make the `@apply ...` work without breaking the Nuxt UI components?\n\nThis is my `package.json`:\n```json\n{\n \"name\": \"frontend\",\n \"private\": true,\n \"type\": \"module\",\n \"scripts\": {\n \"postinstall\": \"husky install && nuxt prepare\",\n \"dev\": \"nuxt dev\",\n \"build\": \"nuxt build\",\n \"preview\": \"nuxt preview\"\n },\n \"dependencies\": {\n \"@nuxt/ui\": \"^3.0.0-alpha.9\",\n \"nuxt\": \"latest\",\n \"nuxt-svgo\": \"latest\",\n \"vue\": \"latest\",\n \"vue-router\": \"latest\"\n },\n \"devDependencies\": {\n \"@commitlint/cli\": \"latest\",\n \"@commitlint/config-conventional\": \"latest\",\n \"husky\": \"latest\",\n \"sass\": \"latest\"\n }\n}\n```\n\nThis is my `nuxt.config.ts`:\n```ts\n// https://nuxt.com/docs/api/configuration/nuxt-config\nexport default defineNuxtConfig({\n compatibilityDate: \"2024-04-03\",\n devtools: { enabled: false },\n modules: [\"@nuxt/ui\", \"nuxt-svgo\"],\n css: [\"@/assets/css/main.css\"],\n // postcss: {\n // plugins: {\n // \"@tailwindcss/postcss\": {}, // https://tailwindcss.com/docs/v4-beta#using-post-css\n // },\n // },\n appConfig: {\n // https://ui3.nuxt.dev/getting-started/theme#colors\n ui: {\n colors: {\n primary: \"primary\", // Defined in `assets/css/theme.css`\n secondary: \"secondary\", // Defined in `assets/css/theme.css`\n },\n },\n },\n});\n```\n\nThis is my `assets/main.css`:\n```css\n/* https://ui3.nuxt.dev/getting-started/installation/nuxt#import-tailwind-css-and-nuxt-ui-in-your-css */\n@import \"tailwindcss\";\n@import \"@nuxt/ui\";\n```",[2076,2077],{"name":1996,"color":1997},{"name":1999,"color":2000},2772,"@apply Tailwind CSS class in a component's `\u003Cstyle>` tag","2024-12-09T11:14:28Z","https://github.com/nuxt/ui/issues/2772",0.7381126,{"description":2084,"labels":2085,"number":2092,"owner":1985,"repository":1985,"state":2003,"title":2093,"updated_at":2094,"url":2095,"score":2096},"\u003C!-- 💚 Thanks for your time to make Nuxt better with your feedbacks 💚\r\n\r\n**IMPORTANT** Before reporting a bug:\r\n\r\n- Please make sure that you have read through Nuxt documentation: https://nuxtjs.org\r\n- If issue is related to a module please create the issue in corresponding repository\r\n- Ensure using latest version of nuxt dependencies using `yarn upgrade nuxt` or `npm upgrade nuxt`\r\n\r\n👍 A properly detailed bug report can save a LOT of time and help fixing issues as soon as possible.\r\n-->\r\n\r\n### Versions\r\n\r\n- nuxt: \u003C!-- ex: v2.15.3 -->\r\n- node: \u003C!-- ex: v15.10.0 -->\r\n\r\n### Reproduction\r\n\r\n\u003C!--\r\nLink to a minimal test case based on one of:\r\n- A fork of https://template.nuxtjs.org\r\n- A GitHub repository that can reproduce the bug\r\nWithout a reproduction, it is so hard to address problem :(\r\n-->\r\n\r\n\u003Cdetails open>\r\n\u003Csummary>Additional Details\u003C/summary>\r\n\u003Cbr>\r\n\u003C!-- Attaching `nuxt.config`, dependencies, logs or code snippets would help to find the issue -->\r\n\u003C/details>\r\n\r\n### Steps to reproduce\r\n\r\nInstall brand new project bulding\r\n### What is Expected?\r\n\r\n\r\n### What is actually happening?\r\nThough it finishes building project, there's also error:\r\n ERROR [BABEL] Note: The code generator has deoptimised the styling of /Users/teetlaja/Sites/bandbid-web/node_modules/bootstrap-vue/src/icons/icons.js as it exceeds the max of 500KB.\r\n \r\n Sometimes it affects deploying to server.",[2086,2089],{"name":2087,"color":2088},"pending triage","E99695",{"name":2090,"color":2091},"2.x","d4c5f9",8983,"When building with Bootstrap-Vue i get error with icons","2023-01-22T15:38:48Z","https://github.com/nuxt/nuxt/issues/8983",0.7387074,["Reactive",2098],{},["Set"],["ShallowReactive",2101],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"hfkqiE7uI74nwJ_uYiY-zPbcVlNyzYf1Y5tkGFR4hfM":-1},"/nuxt/ui/3299"]