`\n\n```vue\n\u003Cscript setup lang=\"ts\">\nconst items = ref([ 'foo', 'bar' ])\n\u003C/script>\n\n\u003Ctemplate>\n \u003CUInputMenu :items=\"items\" multiple @change=\"console.log('change')\" />\n\u003C/template>\n```\n\n### Description\n\nChange event on UInputMenu is not triggered by clicking on the delete-icon.\n\nSeems like deleting by clicking the item in the list like mentioned here https://github.com/nuxt/ui/issues/3756 is fixed but clicking the delete-icon still wont triggers the @change event\n\n### Additional context\n\nwhile trying to recreate the issue in codesandbox i also got this error\n\n### Logs\n\n```shell-script\nUncaught TypeError: Cannot read properties of undefined (reading 'filter')\n at onRemoveTag (/_nuxt/@fs/project/workspace/node_modules/.pnpm/@nuxt+ui@3.0.2_embla-carousel@8.5.2_typescript@5.8.2_vite@6.2.4/node_modules/@nuxt/ui/dist/runtime/components/InputMenu.vue:182:42)\n at callWithErrorHandling (runtime-core.esm-bundler.js?v=d5312b36:197:19)\n at callWithAsyncErrorHandling (runtime-core.esm-bundler.js?v=d5312b36:204:17)\n at emit (runtime-core.esm-bundler.js?v=d5312b36:6406:5)\n at runtime-core.esm-bundler.js?v=d5312b36:8115:45\n at Object.handleRemoveTag [as onRemoveValue] (/_nuxt/@fs/project/workspace/node_modules/.pnpm/reka-ui@2.1.1_typescript@5.8.2_vue@3.5.13/node_modules/reka-ui/dist/TagsInput/TagsInputRoot.js?v=d5312b36:56:9)\n at handleDelete (/_nuxt/@fs/project/workspace/node_modules/.pnpm/reka-ui@2.1.1_typescript@5.8.2_vue@3.5.13/node_modules/reka-ui/dist/TagsInput/TagsInputItemDelete.js?v=d5312b36:24:15)\n at callWithErrorHandling (runtime-core.esm-bundler.js?v=d5312b36:197:19)\n at callWithAsyncErrorHandling (runtime-core.esm-bundler.js?v=d5312b36:204:17)\n at HTMLButtonElement.invoker (runtime-dom.esm-bundler.js?v=d5312b36:720:5)\n```",[3192,3195,3198],{"name":3193,"color":3194},"bug","d73a4a",{"name":3196,"color":3197},"duplicate","cfd3d7",{"name":3141,"color":3142},3890,"UInputMenu change event is not triggered by clicking delete-icon (when multiple=true)","2025-04-14T13:56:50Z","https://github.com/nuxt/ui/issues/3890",0.78960896,{"description":3205,"labels":3206,"number":3207,"owner":3144,"repository":3208,"state":3162,"title":3209,"updated_at":3210,"url":3211,"score":3212},"### 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.7980415,{"description":3214,"labels":3215,"number":3219,"owner":3144,"repository":3145,"state":3162,"title":3220,"updated_at":3221,"url":3222,"score":3223},"### Description\n\nFor building modular forms it think it would make sense to support all components within for example `UInput`\n\nSo `\u003CUSlider v-model=\"value\" />` would be equivelant to `\u003CUInput type=\"slider\" v-model=\"value\" />` \n\nAnd also add support for validating/typing these components\n```\nconst schema = z.object({\n email: u('email'), // Equivelant to z.string().email('Invalid email')\n password: u('password').min(8) // z.string().min(8, 'Password must be at least 8 characters')\n age: u('slider').min(18) // Equivelant to z.number().min(18, 'Age must be 18 or higher')\n})\n```\nOr with custom validation messages \n```\nconst schema = z.object({\n email: u('email', 'Please enter valid email!'), // Equivelant to z.string().email('Please enter a valid email!')\n password: u('password').min(8, \"Password must be at least 8 characters!\") // Equivelant to z.string().min(8, \"Password must be at least 8 characters!\")\n age: u('slider').min(18, \"You must be 18 years or older!\") // Equivelant to z.number().min(18, \"You must be 18 years or older!\")\n})\n```\n\n\n### Additional context\n\n_No response_",[3216,3217,3218],{"name":3155,"color":3156},{"name":3141,"color":3142},{"name":3159,"color":3160},3934,"Add support for all components in UInput","2025-04-21T14:33:27Z","https://github.com/nuxt/ui/issues/3934",0.80968904,{"description":3225,"labels":3226,"number":3234,"owner":3144,"repository":3145,"state":3162,"title":3235,"updated_at":3236,"url":3237,"score":3238},"### Description\n\nHello 👋 \n\nis it possible to change the aria label (hardcoded aria-label=\"Switch to light mode\") to something else? It did not work to set it directly on the component and it does not react to different languages. I need it for a german website.\n\nBR",[3227,3230,3231],{"name":3228,"color":3229},"question","d876e3",{"name":3141,"color":3142},{"name":3232,"color":3233},"pro","5BD3CB",3696,"ColorModeSwitch aria label","2025-03-26T14:25:58Z","https://github.com/nuxt/ui/issues/3696",0.81516886,{"description":3240,"labels":3241,"number":3244,"owner":3144,"repository":3145,"state":3162,"title":3245,"updated_at":3246,"url":3247,"score":3248},"### Description\n\nHow to enable [IntelliSense](https://ui3.nuxt.dev/components/link#intellisense)\n\nwhen wrie the code on class atribute like this\n `\u003Cdiv class=\"bg-red-500 text-white p-4 flex justify-between\">`\n\n the sugestion not show\n",[3242,3243],{"name":3228,"color":3229},{"name":3141,"color":3142},2949,"VS Code IntelliSense not working","2025-01-06T07:33:40Z","https://github.com/nuxt/ui/issues/2949",0.8158309,{"description":3250,"labels":3251,"number":3255,"owner":3144,"repository":3145,"state":3162,"title":3256,"updated_at":3257,"url":3258,"score":3259},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.11.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: pnpm@9.15.4\n- Builder: -\n- User Config: modules, devtools, app, css, runtimeConfig, future, compatibilityDate, telemetry, eslint\n- Runtime Modules: @nuxt/ui-pro@3.0.0, @nuxt/eslint@1.0.1, @vueuse/nuxt@12.5.0, @nuxt/image@1.9.0\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3\n\n### Reproduction\n\nsee below\n\n### Description\n\nI get the follwing error:\n\n```\nruntime-core.esm-bundler.js:51 [Vue warn]: injection \"Symbol(nuxt-ui.locale-context)\" not found. \n at \u003CUSlideover open=false onUpdate:open=fn side=\"left\" ... > \n at \u003CUDashboardSidebar collapsible=\"\" resizable=\"\" > \n at \u003CPrimitive as=undefined class=\"fixed inset-0 flex overflow-hidden\" > \n at \u003CUDashboardGroup> \n at \u003CDefault ref=Ref\u003C undefined > > \n at \u003CAsyncComponentWrapper ref=Ref\u003C undefined > > \n at \u003CLayoutLoader key=\"default\" layoutProps= Object name=\"default\" > \n at \u003CNuxtLayoutProvider layoutProps= Object key=\"default\" name=\"default\" ... > \n at \u003CNuxtLayout> \n at \u003CApp key=4 > \n at \u003CNuxtRoot>\n```\n\nwhen usinng the DashboardSidebar component:\n```\n \u003CUDashboardSidebar\n collapsible\n resizable\n >\n \u003Ctemplate #header>\n \u003Cdiv class=\"flex items-center gap-2\">\n \u003CUIcon\n name=\"i-solar-buildings-2-bold\"\n class=\"w-7 h-7\"\n />\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```",[3252,3253,3254],{"name":3193,"color":3194},{"name":3141,"color":3142},{"name":3232,"color":3233},3549,"injection \"Symbol(nuxt-ui.locale-context)\" not found","2025-03-18T11:12:44Z","https://github.com/nuxt/ui/issues/3549",0.81586564,["Reactive",3261],{},["Set"],["ShallowReactive",3264],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$flnLJC6AHIYUJre1xpwLXyyfeQRk3lXDGT0TRkSsEDpc":-1},"/nuxt/ui/3891"]