\n\nBrowser: `Google Chrome Version 134.0.6998.89 (Official Build) (arm64)`\n\nAlso reproduced on `Safari Version 18.3.1 (20620.2.4.11.6)`\n\n### Description\n\nUser may want to copy the text in the query input of a `select-menu` component by moving cursor around text, now it's unable to do it without a keyboard (`Shift + left/right arrow` or `Cmd/Ctrl + A` to select all).\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2013,2016],{"name":2014,"color":2015},"bug","d73a4a",{"name":1991,"color":1992},3583,"Accessibility: unable to select text in the query input of a select-menu","2025-03-17T00:34:07Z","https://github.com/nuxt/ui/issues/3583",0.74767053,{"description":2023,"labels":2024,"number":2028,"owner":1994,"repository":1995,"state":1996,"title":2029,"updated_at":2030,"url":2031,"score":2032},"### Environment\n\n------------------------------\n- Operating System: Linux\n- Node Version: v22.14.0\n- Nuxt Version: 3.16.1\n- CLI Version: 3.23.1\n- Nitro Version: 2.11.8\n- Package Manager: npm@11.2.0\n- Builder: -\n- User Config: compatibilityDate, devtools, nitro, css, modules, vite\n- Runtime Modules: @nuxt/fonts@0.11.0, @nuxt/content@3.4.0, @nuxt/icon@1.11.0, @nuxt/image@1.10.0, @nuxt/scripts@0.11.5, @nuxt/eslint@1.3.0, @nuxt/ui@3.0.2\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.2\n\n### Reproduction\n\n```\n\u003Ctemplate>\n \u003Cdiv class=\"flex flex-col items-center justify-center gap-4 h-screen\">\n\n {{ state }}\n\n \u003Cdiv class=\"flex items-center gap-2\">\n \u003CUTree\n :items=\"gates\"\n label-key=\"label\"\n value-key=\"id\"\n v-model=\"state.gate\" \n >\n \u003C/UTree>\n \u003C/div>\n \u003C/div>\n\u003C/template>\n\n\n\n\u003Cscript\n lang=\"ts\"\n setup\n>\n\nimport type { FormSubmitEvent } from '@nuxt/ui'\n\ninterface Gate {\n id: number,\n label: string,\n uname: string\n}\n\ntype Schema = {\n gate: Gate\n}\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n gate: undefined,\n})\n\nconst gates = [{id:0, uname: null, label: \"unknown\"}, {id:1, uname: \"first-gate\", label: \"First\"}]\n\n\u003C/script>\n```\n\n### Description\n\nvalue-key points to id or missed.\n\nv-model type check points to id:number but there is full object.\n\n\n\n### Additional context\n\nHow to get full object here when bug fixed?\n\n### Logs\n\n```shell-script\n\n```",[2025,2026,2027],{"name":2014,"color":2015},{"name":1988,"color":1989},{"name":1991,"color":1992},3762,"UTree value-key not working","2025-04-01T09:12:02Z","https://github.com/nuxt/ui/issues/3762",0.7511944,{"description":2034,"labels":2035,"number":2036,"owner":1994,"repository":2037,"state":1996,"title":2038,"updated_at":2039,"url":2040,"score":2041},"### Describe the feature\n\nI found, how to deploy nuxt 2 app into gcp app engine. But there is no doc about nuxt 3\n\n### Additional information\n\n- [ ] 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).",[],1764,"nuxt.com","deploy nuxt 3 on gcp appengine","2025-01-22T09:58:41Z","https://github.com/nuxt/nuxt.com/issues/1764",0.75148904,{"description":2043,"labels":2044,"number":2049,"owner":1994,"repository":1995,"state":1996,"title":2050,"updated_at":2051,"url":2052,"score":2053},"### Description\n\nThank you very much for the best component library for Nuxt!\nMy question about the Table component (Tanstack)\nThe documentation has an example of how to send data received through fetch to a table, but there is no example for sorting and filtering using the Fetch call(\n\nThe documentation mentions columnFiltersOptions, but I don’t understand at all how to run my MYonColumnFiltersChange function when filters change( \n\n`\u003CUTable ref=\"table\" v-model:column-filters-options=\"MYonColumnFiltersChange \" />`\n\nit doesn't work that way\n\nI really ask for help!",[2045,2048],{"name":2046,"color":2047},"question","d876e3",{"name":1988,"color":1989},3098,"Table filtered, sorting fetch","2025-01-14T11:05:37Z","https://github.com/nuxt/ui/issues/3098",0.75232226,{"labels":2055,"number":2062,"owner":1994,"repository":1994,"state":2063,"title":2064,"updated_at":2065,"url":2066,"score":2067},[2056,2059],{"name":2057,"color":2058},"pending triage","E99695",{"name":2060,"color":2061},"2.x","d4c5f9",7792,"closed","Non-posix ignore patterns are given to globby on win32 with new `nuxt generate` cache feature","2023-01-22T15:36:04Z","https://github.com/nuxt/nuxt/issues/7792",0.7328786,{"description":2069,"labels":2070,"number":2073,"owner":1994,"repository":1995,"state":2063,"title":2074,"updated_at":2075,"url":2076,"score":2077},"### Environment\n\n\n\nI get this error anytime I try and use \u003CUInput /> even without any other code.\n\n### Version\n\nv3.0.0-alpha.5\n\n### Reproduction\n\n`\u003Ctemplate>\n \u003CUContainer>\n \u003CUForm :schema=\"schema\" :state=\"state\" class=\"space-y-4\" @submit=\"onSubmit\">\n \u003CUFormField label=\"Code\" name=\"Code\"\n >\u003CUInput v-model=\"state.code\" />\n \u003C/UFormField>\n \u003C/UForm>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport { z } from 'zod';\nimport type { FormSubmitEvent } from '#ui/types';\n\nconst supabase = useSupabaseClient();\nconst toast = useToast();\n\n//Form\nconst schema = z.object({\n code: z.string().min(3),\n});\n\ntype Schema = z.output\u003Ctypeof schema>;\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n code: undefined,\n});\n\nasync function onSubmit(event: FormSubmitEvent\u003CSchema>) {\n toast.add({\n title: 'Success',\n description: 'The form has been submitted.',\n color: 'success',\n });\n console.log(event.data);\n}\n\u003C/script>\n`\n\n### Description\n\nUInput causes an error\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2071,2072],{"name":2014,"color":2015},{"name":1988,"color":1989},2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.7373944,{"description":2079,"labels":2080,"number":2086,"owner":1994,"repository":1995,"state":2063,"title":2087,"updated_at":2088,"url":2089,"score":2090},"### Environment\n\n- Nuxt version: 3.15.1\n- Packet manager: pnpm@9.1\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nui-pro@f530918a14f2522e7126776c1d6f772ec8f8227c\n\n### Reproduction\n\nCode example on the description.\n\n### Description\n\nI’ve encountered an issue with the UDropdownMenu component where it only functions correctly when another component (in this case, a button within a UTooltip) is present. When the dropdown is used by itself (i.e., without the additional “Fisrt” button), it does not open upon interaction.\n\n**Steps to Reproduce:**\n\n1. Working Example (Dropdown works):\n\n```vue\n\u003Ctemplate>\n \u003CUTooltip>\n \u003CUButton label=\"Fisrt\" />\n \u003C/UTooltip>\n \u003CUDropdownMenu :items=\"[items, actions]\">\n \u003CUButton label=\"Second\" />\n \u003C/UDropdownMenu>\n\u003C/template>\n\n\u003Cscript setup>\nconst actions = [\n {\n label: 'Create team',\n icon: 'i-heroicons-plus-circle'\n },\n {\n label: 'Manage teams',\n icon: 'i-heroicons-cog-8-tooth'\n }\n]\n\nconst items = ref([\n {\n label: 'Profile',\n icon: 'i-lucide-user'\n },\n {\n label: 'Billing',\n icon: 'i-lucide-credit-card'\n },\n {\n label: 'Settings',\n icon: 'i-lucide-cog'\n }\n])\n\u003C/script>\n```\n\n2. Non-Working Example (Dropdown fails):\nRemove the “Fisrt” button and its wrapping UTooltip so that only the dropdown remains:\n\n\n```vue\n\u003Ctemplate>\n \u003C!-- Removed UTooltip and the first button -->\n \u003CUDropdownMenu :items=\"[items, actions]\">\n \u003CUButton label=\"Second\" />\n \u003C/UDropdownMenu>\n\u003C/template>\n\n\u003Cscript setup>\nconst actions = [\n {\n label: 'Create team',\n icon: 'i-heroicons-plus-circle'\n },\n {\n label: 'Manage teams',\n icon: 'i-heroicons-cog-8-tooth'\n }\n]\n\nconst items = ref([\n {\n label: 'Profile',\n icon: 'i-lucide-user'\n },\n {\n label: 'Billing',\n icon: 'i-lucide-credit-card'\n },\n {\n label: 'Settings',\n icon: 'i-lucide-cog'\n }\n])\n\u003C/script>\n```\n\nIn the first scenario, the dropdown opens and displays the items as expected.\n\nIn the second scenario, clicking on the button inside the UDropdownMenu does not open the dropdown.\n\nThe UDropdownMenu should work independently. Removing unrelated components (like the UTooltip with the “Fisrt” button) should not affect its functionality.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2081,2082,2085],{"name":2014,"color":2015},{"name":2083,"color":2084},"duplicate","cfd3d7",{"name":1988,"color":1989},3344,"DropdownMenu has a buggy behaviour related with other components","2025-02-19T01:59:03Z","https://github.com/nuxt/ui/issues/3344",0.74295187,{"description":2092,"labels":2093,"number":2096,"owner":1994,"repository":1995,"state":2063,"title":2097,"updated_at":2098,"url":2099,"score":2100},"### Environment\n\nN/A\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\ncommit: 64b703df8d0a7133a381bfcc7af07644d5d15d4c\n\n### Reproduction\n\n```vue\n\u003Ctemplate>\n \u003Cdiv>\n \u003CUSlideover side=\"left\">\n \u003CUButton label=\"Open Slideover\" color=\"neutral\" variant=\"subtle\" />\n \u003Ctemplate #content>\n \u003CUButton label=\"Show toast\" color=\"neutral\" variant=\"outline\" @click=\"showToast\" />\n \u003C/template>\n \u003C/USlideover>\n\n \u003Cbr>\n\n \u003CUModal>\n \u003CUButton label=\"Open Modal\" color=\"neutral\" variant=\"subtle\" />\n \u003Ctemplate #content>\n \u003CUButton label=\"Show toast\" color=\"neutral\" variant=\"outline\" @click=\"showToast\" />\n \u003C/template>\n \u003C/UModal>\n \u003C/div>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nconst toast = useToast()\n\nfunction showToast() {\n toast.add({\n title: 'Test',\n duration: 60 * 1000\n })\n}\n\u003C/script>\n```\n\n### Description\nFollowing #2404 resolved via b0be26d67feab467ac5862edd82e52df03a5091c\n\nWhile a Slideover or Modal are open trigger a Toaster and try to interact with it.\n\n\nhttps://github.com/user-attachments/assets/945c1f96-7556-42a6-b7e7-f88373b6e38f\n\n",[2094,2095],{"name":2014,"color":2015},{"name":1988,"color":1989},2646,"[v3] Toaster gets rendered behind Slideover's and Modal's overlays","2024-11-15T10:59:18Z","https://github.com/nuxt/ui/issues/2646",0.7430525,["Reactive",2102],{},["Set"],["ShallowReactive",2105],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"7VHypw8sA5I1pX4bErsLA-G0DTseQquOjxB9yHBaMMQ":-1},"/nuxt/ui/3599"]