\n \u003C/div>\n\u003C/template>\n\n\u003Cscript lang=\"ts\" setup>\nconst value = ref(0)\nconst idList = ref([168, 170, 203])\n\u003C/script>\n```\n\n### Description\n\nIf adding array of numbers to InputMenu the menu isn't closing after choosing a number.\nOnly way to close it is double-clicking on the dropdown arrow.\nThe Console shows an error in useFilter.\n\n### Additional context\n\n\n\n\n\n### Logs\n\n```shell-script\nUncaught (in promise) TypeError: string.normalize is not a function\n at contains (useFilter.js?v=87101672:23:21)\n at InputMenu.vue:114:18\n at wrappedFn (reactivity.esm-bundler.js?v=87101672:820:19)\n at Array.filter (\u003Canonymous>)\n at apply (reactivity.esm-bundler.js?v=87101672:828:27)\n at Proxy.filter (reactivity.esm-bundler.js?v=87101672:720:12)\n at InputMenu.vue:112:50\n at Array.map (\u003Canonymous>)\n at ComputedRefImpl.fn (InputMenu.vue:112:27)\n at refreshComputed (reactivity.esm-bundler.js?v=87101672:353:29)\n```",[2867,2870,2873],{"name":2868,"color":2869},"bug","d73a4a",{"name":2871,"color":2872},"v3","49DCB8",{"name":2874,"color":2875},"triage","ffffff",3606,"nuxt","ui","closed","Numbers in InputMenu component cause error in filter","2025-03-24T20:38:15Z","https://github.com/nuxt/ui/issues/3606",0.6605869,{"description":2885,"labels":2886,"number":2892,"owner":2877,"repository":2878,"state":2879,"title":2893,"updated_at":2894,"url":2895,"score":2896},"### Environment\n\n System:\n OS: Linux 6.5 Ubuntu 23.10 23.10 (Mantic Minotaur)\n CPU: (8) x64 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\n Memory: 44.48 GB / 62.57 GB\n Container: Yes\n Shell: 5.9 - /usr/bin/zsh\n Browsers:\n Chrome: 126.0.6478.126\n\n### Version\n\nv3.0.0-alpha.6\n\n### Reproduction\n\nhttps://ui3.nuxt.dev/components/select-menu\n\n### Description\n\n1. open docs\n2. open any select menu\n3. select any option\n4. tab to next field\n5. tab index is reset\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2887,2888,2889],{"name":2868,"color":2869},{"name":2871,"color":2872},{"name":2890,"color":2891},"reka-ui","56d799",2350,"[SelectMenu] Broken focus/tab index after selecting","2024-12-03T15:11:34Z","https://github.com/nuxt/ui/issues/2350",0.72348994,{"description":2898,"labels":2899,"number":2900,"owner":2877,"repository":2901,"state":2879,"title":2902,"updated_at":2903,"url":2904,"score":2905},"Couldn't help but notice the \"is the next **null** release\". \n\n\n\nFor the version, the bumpType is defaulted to `patch` here:\n\nhttps://github.com/rijkvanzanten/fonts/blob/89bfccd85974f4670eebd307ea850b898209fb55/scripts/update-changelog.ts#L18\n\nbut used \"raw\" here:\n\nhttps://github.com/rijkvanzanten/fonts/blob/89bfccd85974f4670eebd307ea850b898209fb55/scripts/update-changelog.ts#L42\n\nThe `bumpType` isn't used anywhere outside these two, so moving the `|| 'patch'` fallback from line 18 to 16 should do the trick. PR incoming~",[],401,"fonts","Update-changelog script renders `null` as `bumpType` in message","2024-11-24T17:50:36Z","https://github.com/nuxt/fonts/issues/401",0.72385216,{"description":2907,"labels":2908,"number":2911,"owner":2877,"repository":2912,"state":2879,"title":2913,"updated_at":2914,"url":2915,"score":2916},"https://volta.s3.fr-par.scw.cloud/Clean_Shot_2022_05_23_at_16_23_53_7945ec0dde.mp4\n",[2909],{"name":2868,"color":2910},"ff281a",555,"nuxt.com","[Nuxt3] Children pages reloads on first query param change","2022-11-17T11:45:24Z","https://github.com/nuxt/nuxt.com/issues/555",0.7299279,{"description":2918,"labels":2919,"number":2911,"owner":2877,"repository":2923,"state":2879,"title":2924,"updated_at":2925,"url":2926,"score":2916},"I have some components that include \"client\" components (i.e. ClientComponent.client.vue). When I run tests for components that include client components, they always seem to fail with messages like this:\r\n\r\n```\r\n[Vue warn]: Component \u003CAnonymous>: setup function returned a promise, but no \u003CSuspense> boundary was found in the parent component tree. A component with async setup() must be nested in a \u003CSuspense> in order to be rendered. \r\n at \u003CClientComponent.client> \r\n at \u003CTestA ref=\"VTU_COMPONENT\" > \r\n at \u003CVTUROOT>\r\n```\r\n\r\nA simple component that I'm testing looks like this:\r\n\r\n\r\n```\r\n// TestA.vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CClientComponent />\r\n \u003C/div>\r\n\u003C/template>\r\n```\r\n\r\nand the test file looks like this:\r\n\r\n\r\n```\r\n// TestA.spec.ts\r\nimport { describe, it, expect } from 'vitest';\r\nimport { mount } from '@vue/test-utils';\r\nimport TestA from './TestA.vue';\r\n\r\ndescribe('Competition TestA', () => {\r\n it('renders component', async () => {\r\n const wrapper = mount(TestA);\r\n expect(wrapper.text()).toContain('Client component here...');\r\n });\r\n});\r\n\r\n```\r\n\r\nFinally, the client component:\r\n\r\n```\r\n// ClientComponent.client.vue\r\n\u003Ctemplate>\r\n \u003Cdiv>Client component here...\u003C/div>\r\n\u003C/template>\r\n```\r\n\r\nIf I remove the \".client\" from the component file name (to make it just ClientComponent.vue), then the tests will run and pass normally. However, there are some cases where I want to use \".client\" to make sure it's only rendered client-side.\r\n\r\n### Reproduction \r\nhttps://stackblitz.com/edit/github-ndby6m?file=components/TestA.spec.ts\r\n\r\nFailures can be seen there by running `pnpm run test`",[2920],{"name":2921,"color":2922},"vitest-environment","b60205","test-utils","Tests fail when using .client components","2023-12-02T00:27:10Z","https://github.com/nuxt/test-utils/issues/555",{"description":2928,"labels":2929,"number":2933,"owner":2877,"repository":2923,"state":2879,"title":2934,"updated_at":2935,"url":2936,"score":2937},"### Environment\n\n- Operating System: `Linux`\r\n- Node Version: `v20.10.0`\r\n- Nuxt Version: `3.9.3`\r\n- CLI Version: `3.10.0`\r\n- Nitro Version: `2.8.1`\r\n- Package Manager: `npm@10.4.0`\r\n- Builder: `-`\r\n- User Config: `devtools`, `modules`, `devServer`, `srcDir`, `css`, `postcss`, `i18n`, `runtimeConfig`\r\n- Runtime Modules: `@nuxt/test-utils/module@3.10.0`, `@nuxtjs/i18n@8.0.0`\r\n- Build Modules: `-`\r\n\n\n### Reproduction\n\nhttps://stackblitz.com/edit/spy-use-fetch-is-not-working?file=src%2FuseLogin.nuxt.test.ts\n\n### Describe the bug\n\nI'm trying to create a spy for nuxt's composable useFetch and validate what is being passed as a parameter in the call, but for some reason a third random parameter is added\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2930],{"name":2931,"color":2932},"pending triage","5D08F5",749,"Mock adding third random parameter","2025-02-21T09:06:42Z","https://github.com/nuxt/test-utils/issues/749",0.7302195,{"description":2939,"labels":2940,"number":2946,"owner":2877,"repository":2878,"state":2879,"title":2947,"updated_at":2948,"url":2949,"score":2950},"### Description\n\nI tried using v-model with an array on Checkbox, but it is rendered as Button, inside a form it should render the native input like in Radix UI. This means the checkbox has no array support and any library expecting to access the native Input event will not work properly (required, invalid). \n\nI would like to understand why the Checkbox and Radio components have been implemented as button elements with ARIA attributes.",[2941,2944,2945],{"name":2942,"color":2943},"question","d876e3",{"name":2871,"color":2872},{"name":2890,"color":2891},3240,"Checkbox & Radio rendered as a button? No Native Input Element.","2025-02-05T09:14:50Z","https://github.com/nuxt/ui/issues/3240",0.7314986,{"description":2952,"labels":2953,"number":2957,"owner":2877,"repository":2912,"state":2879,"title":2958,"updated_at":2959,"url":2960,"score":2961},"Respectively to `contact@nuxt.com` / `support@nuxt.com` / `careers@nuxt.com`",[2954],{"name":2955,"color":2956},"enhancement","1ad6ff",503,"[Company] `contact` / `support` / `careers` forms should send an email","2023-02-15T12:32:26Z","https://github.com/nuxt/nuxt.com/issues/503",0.7329031,{"description":2963,"labels":2964,"number":2957,"owner":2877,"repository":2923,"state":2879,"title":2966,"updated_at":2967,"url":2968,"score":2961},"After updating happy-dom to the latest version **10.5.2** ,\r\nI have this error when I run my app : \r\n`Error while requiring module vitest-environment-nuxt/module: Error: Cannot find module '/Users/\u003Cuser>/\u003Cfolderpath>/vitest-environment-nuxt/module'`\r\n\r\nDoes anyone have a solution ?",[2965],{"name":2921,"color":2922},"Error after updating happy dom dependency","2023-12-02T00:17:10Z","https://github.com/nuxt/test-utils/issues/503",{"description":2970,"labels":2971,"number":2973,"owner":2877,"repository":2878,"state":2879,"title":2974,"updated_at":2975,"url":2976,"score":2977},"### Environment\n\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v20.11.0\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: npm@10.2.4\r\n- Builder: -\r\n- User Config: compatibilityDate, runtimeConfig, experimental, router, i18n, devServer, devtools, app, components, modules, vue, tailwindcss, image, ui, nitro, storyblok, algolia, colorMode, hooks\r\n- Runtime Modules: @nuxt/devtools@1.4.1, @nuxt/image@1.8.0, @nuxt/ui@2.18.4, @nuxtjs/i18n@8.5.1, @pinia/nuxt@0.5.4, @storyblok/nuxt@6.0.10, @vueuse/nuxt@11.0.3, nuxt-og-image@3.0.0-rc.66, @stefanobartoletti/nuxt-social-share@1.0.1\r\n- Build Modules: -\r\n------------------------------\n\n### Version\n\nv2.18.4\n\n### Reproduction\n\nhttps://stackblitz.com/edit/nuxt-ui-y5b7nb?file=app.vue\n\n### Description\n\nWhen using the button component with color 'white' and variant 'link', 'outline' or 'soft' invalid Tailwind color classes are generated, e.g. 'text-white-500'. It should be 'text-white'.\r\n\r\ntext-white-500 hover:text-white-600 disabled:text-white-500 dark:text-white-400 dark:hover:text-white-500 dark:disabled:text-white-400 focus-visible:ring-inset focus-visible:ring-white-500 dark:focus-visible:ring-white-400\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2972],{"name":2942,"color":2943},2109,"White link, outline and soft buttons generate wrong Tailwind classes, e.g. 'text-white-500'","2024-09-06T13:10:25Z","https://github.com/nuxt/ui/issues/2109",0.7355852,["Reactive",2979],{},["Set"],["ShallowReactive",2982],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fKpYGsIM0UqkTPvmCrNYelrwNCvEhIG0gxhRC0TyMMHQ":-1},"/nuxt/ui/3665"]