\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.6939673,{"description":2976,"labels":2977,"number":2981,"owner":2905,"repository":2962,"state":2932,"title":2982,"updated_at":2983,"url":2984,"score":2985},"### 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```",[2978,2980],{"name":2928,"color":2979},"d73a4a",{"name":2959,"color":2960},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.7207129,{"description":2987,"labels":2988,"number":2991,"owner":2905,"repository":2962,"state":2932,"title":2992,"updated_at":2993,"url":2994,"score":2995},"### 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```",[2989,2990],{"name":2956,"color":2957},{"name":2959,"color":2960},2772,"@apply Tailwind CSS class in a component's `\u003Cstyle>` tag","2024-12-09T11:14:28Z","https://github.com/nuxt/ui/issues/2772",0.72751766,{"description":2997,"labels":2998,"number":2999,"owner":2905,"repository":2906,"state":2932,"title":3000,"updated_at":3001,"url":3002,"score":3003},"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.7310689,{"description":3005,"labels":3006,"number":3015,"owner":2905,"repository":2905,"state":2932,"title":3016,"updated_at":3017,"url":3018,"score":3019},"### Environment\r\n\r\n \"nuxt\": \"^3.9.3\",\r\n \"nuxt-icon\": \"^0.6.8\",\r\n \"vue\": \"^3.4.14\",\r\n \"vue-router\": \"^4.2.5\"\r\n\r\n### Reproduction\r\n[[](url)](https://stackblitz.com/edit/github-xafzmu?file=package.json)\r\n\r\ngithub \r\nhttps://github.com/tolgahanbeyazoglu/nuxt-iconfy-example.git\r\n\r\n### Describe the bug\r\n\r\nI updated to version 3.9.3 and when I load nuxt-icon or iconfy in the build process I get a node module error, this does not prevent exporting the files but I don't understand.I think it is a bug with the new update\r\n\r\n\r\n\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_",[3007,3010,3012],{"name":3008,"color":3009},"3.x","29bc7f",{"name":2916,"color":3011},"E99695",{"name":3013,"color":3014},"needs reproduction","FBCA04",25283,"icon and iconfy build modüle error","2024-03-29T18:43:57Z","https://github.com/nuxt/nuxt/issues/25283",0.7348641,["Reactive",3021],{},["Set"],["ShallowReactive",3024],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fhfkqiE7uI74nwJ_uYiY-zPbcVlNyzYf1Y5tkGFR4hfM":-1},"/nuxt/ui/3299"]