\n\u003C/UCard>\n```\n\n### Description\n\nIf using a UTable component on a background that isn't the default neutral color the bg-color of the thead is visible.\n\n\n\n\n\n_A little bit easier to see with white Background_\n\n\n\n\nMaybe this is a wanted behavior. So if so please ignore and close the issue.\nI know sometimes you want a background color in the headlines. But sometimes you don't want them.\nAnyways if this is a wanted behavior, then maybe this issue will help those who don't want a background color and are looking for a solution.\n\n### Additional context\n\nCould be fixed by adding:\n```vue\n:ui=\"{\n thead: 'bg-unset'\n}\"\n```\nto the `\u003CUTable>` tag\n\n\n\n### Logs\n\n```shell-script\n-\n```",[2884,2885,2888],{"name":2868,"color":2869},{"name":2886,"color":2887},"v3","49DCB8",{"name":2871,"color":2872},3607,"Background-Color for UTable","2025-03-18T15:08:25Z","https://github.com/nuxt/ui/issues/3607",0.77581286,{"description":2895,"labels":2896,"number":2898,"owner":2874,"repository":2899,"state":2876,"title":2900,"updated_at":2901,"url":2902,"score":2903},"Whenever I reload my page the font flickers",[2897],{"name":2868,"color":2869},181,"fonts","Loading fonts causes flickering in dev mode","2025-03-23T22:52:32Z","https://github.com/nuxt/fonts/issues/181",0.7887121,{"description":2905,"labels":2906,"number":2919,"owner":2874,"repository":2874,"state":2876,"title":2920,"updated_at":2921,"url":2922,"score":2923},"### Describe the feature\n\nBenchmarks have been added in #24846. It came with [CodSpeed](https://codspeed.io/) and a CI job that ran on every pull request to track performance.\r\n\r\nHowever, it was disabled in https://github.com/nuxt/nuxt/commit/a39d311d3198415f32260010092833b934d3384b. The reason is that there were some performance regressions falsely reported in unrelated PRs due to the flakiness of some benchmarks.\r\nThe flaky benchmarks are those defined in https://github.com/nuxt/nuxt/blob/main/packages/kit/test/load-nuxt-config.bench.ts. The flakiness comes from the fact that they rely on file system access, which at the moment is not reliably supported in CodSpeed. You can see an example of the flakiness here: https://codspeed.io/nuxt/nuxt/benchmarks/packages/kit/test/load-nuxt-config.bench.ts::loadNuxtConfig::basic%20test%20fixture%20(types)\r\n\r\nTo re-enable the CI job, one of the following options could be done:\r\n- Remove those benchmarks entirely\r\n- Change those benchmarks, and the underlying tested functions, to not rely on File System access\r\n\r\nI think the second option would be best, but it will require some changes to the https://github.com/nuxt/nuxt/blob/main/packages/kit/src/loader/config.ts file.\r\n\r\n\r\nIn the future, we plan on adding better support on CodSpeed for flaky benchmarks due to FS access, but that may take some time before it's available.\n\n### Additional information\n\n- [X] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2907,2910,2913,2916],{"name":2908,"color":2909},"good first issue","fbca04",{"name":2911,"color":2912},"chore","D0F1A9",{"name":2914,"color":2915},"🧹 p1-chore","FEF2C0",{"name":2917,"color":2918},"performance","E84B77",25048,"Re-enable continuous benchmarking","2024-06-30T11:06:23Z","https://github.com/nuxt/nuxt/issues/25048",0.78941905,{"description":2925,"labels":2926,"number":2929,"owner":2874,"repository":2875,"state":2876,"title":2930,"updated_at":2931,"url":2932,"score":2933},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.15.0\n- Nuxt Version: 3.14.159\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.13.2\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/eslint@0.4.0, @vueuse/nuxt@10.11.1, @nuxt/ui@2.19.2, @pinia/nuxt@0.5.5, nuxt-echarts@0.2.4\n- Build Modules: -\n\n### Version\n\nv2.18.4\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-ui-8d9s2j?file=app.vue\n\n### Description\n\nThe UInput component does not handle compositionstart and compositionend events, resulting in issues for languages that rely on input composition, such as Chinese (e.g., Pinyin input). Vue’s default behavior for v-model on native input elements ensures that updates are delayed until the composition ends, preventing intermediate values from triggering updates. However, the UInput component currently lacks this mechanism, causing inconsistencies with Vue’s default form handling and leading to unexpected behavior during text composition.\n\n### Additional context\n\n\n\n```vue\n\u003Ctemplate>\n\t\u003Cinput v-model=\"keyword\" />\n\u003C/template>\n\n\u003Cscript setup>\n\tconst keyword = ref('');\n\n\twatchEffect(() => {\n\t\tconsole.log('🚀 ~ watchEffect ~ keyword.value:', keyword.value);\n\t});\n\u003C/script>\n```\n\n\n\n```vue\n\u003Ctemplate>\n\t\u003CUInput v-model=\"keyword\" />\n\u003C/template>\n\n\u003Cscript setup>\n\tconst keyword = ref('');\n\n\twatchEffect(() => {\n\t\tconsole.log('🚀 ~ watchEffect ~ keyword.value:', keyword.value);\n\t});\n\u003C/script>\n```\n\n### Logs\n\n```shell-script\n\n```",[2927,2928],{"name":2868,"color":2869},{"name":2871,"color":2872},2713,"UInput Component Lacks Proper Handling of compositionstart and compositionend","2024-11-21T06:40:46Z","https://github.com/nuxt/ui/issues/2713",0.79335207,{"description":2935,"labels":2936,"number":2942,"owner":2874,"repository":2875,"state":2943,"title":2944,"updated_at":2945,"url":2946,"score":2947},"### Description\n\nThere is currently no easy way to know what state the modal is in. Adding a `toggle` method would make life very much easier.\n\nI'm willing to make a PR\n\n### Additional context\n\n_No response_",[2937,2940,2941],{"name":2938,"color":2939},"enhancement","a2eeef",{"name":2886,"color":2887},{"name":2871,"color":2872},3720,"closed","feat: add toogle for useOverlay","2025-04-09T15:26:14Z","https://github.com/nuxt/ui/issues/3720",0.73817754,{"description":2949,"labels":2950,"number":2951,"owner":2874,"repository":2952,"state":2943,"title":2953,"updated_at":2954,"url":2955,"score":2956},"### Environment\n\nhttps://nuxt.com/\n\n### Reproduction\n\nUse Google and Firefox to open https://nuxt.com/, and you can find that the automatic recognition on Firefox is wrong, showing the dark mode\r\n\r\n\r\n\n\n### Describe the bug\n\nfirefox Developer Edition 131.0b5\r\nAnd how to turn off dark mode?\r\nI tried but it didn't work\r\ncolorMode: {\r\n preference: 'light'\r\n},\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[],1663,"nuxt.com","Dark mode does not work properly on Firefox Developer Edition","2024-11-21T01:08:22Z","https://github.com/nuxt/nuxt.com/issues/1663",0.7503823,{"description":2958,"labels":2959,"number":2960,"owner":2874,"repository":2952,"state":2943,"title":2961,"updated_at":2962,"url":2963,"score":2964},"",[],1838,"Uneven card height in homepage modules section","2025-04-02T19:56:04Z","https://github.com/nuxt/nuxt.com/issues/1838",0.75936633,{"description":2966,"labels":2967,"number":2973,"owner":2874,"repository":2875,"state":2943,"title":2974,"updated_at":2975,"url":2976,"score":2977},"### Environment\n\n- Operating System: Windows_NT\n- Node Version: v18.20.5\n- Nuxt Version: 3.14.1592\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: npm@10.8.2\n- Builder: -\n- User Config: default\n- Runtime Modules: nuxt-vuefire@1.0.4, @nuxt/ui@3.0.0-alpha.9\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.9\n\n### Reproduction\n\n\n\n\n\n```\n \u003CUTooltip :delay-duration=\"0\" :text=\"`R$ ${transactionCost.brl}`\">\n \u003CUIcon class=\"text-yellow-500 text-xs\" name=\"i-lucide-coins\" />\n \u003Cp class=\"text-neutral-200 text-xs\">\n {{ transactionCost.credits }}\n \u003C/p>\n\u003C/UTooltip>\n```\n\n``` \n\u003CNuxtLayout>\n \u003CUApp :toaster=\"{ position: 'top-right' }\">\n \u003CNuxtPage />\n \u003C/UApp>\n\u003C/NuxtLayout>\n```\n\n\n### Description\n\nThe `app.vue` is already using the `UApp`. When I try to add a `UTooltip` inside the modal, it throw an error.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```\nUncaught (in promise) Error: Injection `Symbol(TooltipProviderContext)` not found. Component must be used within `TooltipProvider`\n```",[2968,2969,2972],{"name":2868,"color":2869},{"name":2970,"color":2971},"needs reproduction","CB47CF",{"name":2886,"color":2887},2801,"[v3][UTooltip] `UTooltip` inside `UModal` causing error","2025-02-06T15:28:30Z","https://github.com/nuxt/ui/issues/2801",0.7702954,{"description":2979,"labels":2980,"number":2983,"owner":2874,"repository":2952,"state":2943,"title":2984,"updated_at":2985,"url":2986,"score":2987},"To accelerate deployment, would love to gather your feedback on it.\n\nDemo: https://www.youtube.com/watch?v=_sB2E1XnzOY",[2981],{"name":2938,"color":2982},"1ad6ff",186,"Try Turborepo","2022-11-04T11:26:43Z","https://github.com/nuxt/nuxt.com/issues/186",0.7707745,["Reactive",2989],{},["Set"],["ShallowReactive",2992],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fJ02Q73Rk_-Y_10BptivT1gmMSJH8JrF6XT5If7UE3Fs":-1},"/nuxt/ui/3287"]