`\nThis props was available on Nuxt UI V2.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2035,2038,2039],{"name":2036,"color":2037},"bug","d73a4a",{"name":1999,"color":2000},{"name":2014,"color":2015},3703,"Missing Container UI props","2025-03-27T09:43:56Z","https://github.com/nuxt/ui/issues/3703",0.70357764,{"description":2046,"labels":2047,"number":2048,"owner":1985,"repository":2049,"state":2027,"title":2050,"updated_at":2051,"url":2052,"score":2053},"When updating from 3.0.0.rc9 to 3.3.1 I see this error:\r\n\r\n```\r\n ERROR TypeError: filters.some is not a function 16:18:54\r\n\r\n ❯ node_modules/vitest/dist/chunk-vite-node-externalize.6956d2d9.mjs:10719:51 16:18:54\r\n ❯ Vitest.globTestFiles node_modules/vitest/dist/chunk-vite-node-externalize.6956d2d9.mjs:10719:29 16:18:54\r\n ❯ process.processTicksAndRejections node:internal/process/task_queues:95:5 16:18:54\r\n ❯ Vitest.start node_modules/vitest/dist/chunk-vite-node-externalize.6956d2d9.mjs:10472:50 16:18:54\r\n ❯ startVitest node_modules/vitest/dist/chunk-vite-node-externalize.6956d2d9.mjs:11204:5 16:18:54\r\n ❯ runTests node_modules/@nuxt/test-utils/dist/index.mjs:311:21 16:18:54\r\n ❯ Object.invoke node_modules/nuxi/dist/chunks/test.mjs:14:5 16:18:54\r\n ❯ _main node_modules/nuxi/dist/cli.mjs:49:20 \r\n```",[],418,"test-utils","TypeError: filters.some is not a function ","2023-12-02T00:13:09Z","https://github.com/nuxt/test-utils/issues/418",0.7513284,{"description":2055,"labels":2056,"number":2058,"owner":1985,"repository":1986,"state":2027,"title":2059,"updated_at":2060,"url":2061,"score":2062},"### For what version of Nuxt UI are you asking this question?\n\nv2.x\n\n### Description\n\nHello, first of all thank you for your fairly complete UI modules! \n\nI'm trying to do multi-line with the slot option of your UTooltip component, unfortunately it only displays the first line. \n\nIs it possible to do this ? Do you have a use case to show me please ?\n\nThank you in advance !",[2057],{"name":1996,"color":1997},2530,"Multi-line of UTooltip Component","2024-11-06T16:43:15Z","https://github.com/nuxt/ui/issues/2530",0.76275986,{"description":2064,"labels":2065,"number":2068,"owner":1985,"repository":1986,"state":2027,"title":2069,"updated_at":2070,"url":2071,"score":2072},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\nRight now, using the CLI does not create a template for documentation.\n\n### Additional context\n\n_No response_",[2066,2067],{"name":2010,"color":2011},{"name":1999,"color":2000},2615,"Add a template for documentation in the CLI","2024-11-12T14:57:04Z","https://github.com/nuxt/ui/issues/2615",0.7722204,{"description":2074,"labels":2075,"number":2077,"owner":1985,"repository":1986,"state":2027,"title":2078,"updated_at":2079,"url":2080,"score":2081},"### Description\n\nPlease help, I would like to add an item to my array when I click on one, at the moment, when I click on an item, all get selected, here is my code:\r\n`\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CUButton label=\"Open\" @click=\"isOpen = true\" />\r\n\r\n \u003CUModal v-model=\"isOpen\">\r\n \u003C!-- Display the command palette -->\r\n \u003CUCommandPalette\r\n @select=\"onSelectKeyword\"\r\n v-model=\"selected\"\r\n multiple\r\n nullable\r\n :groups=\"[{ key: 'items', commands: items }]\"\r\n />\r\n\r\n \u003C!-- Input and button to add a new keyword -->\r\n \u003Cdiv class=\"mt-4\">\r\n \u003CUInput\r\n v-model=\"newKeyword\"\r\n placeholder=\"Enter a new keyword\"\r\n class=\"w-full\"\r\n />\r\n \u003CUButton\r\n @click=\"addKeyword\"\r\n label=\"Add Keyword\"\r\n color=\"green\"\r\n class=\"mt-2\"\r\n />\r\n \u003C/div>\r\n\r\n \u003C!-- Display the selected keyword -->\r\n \u003Cdiv v-if=\"selectedKeyword\" class=\"mt-4 text-lg\">\r\n Selected Keyword: \u003Cspan class=\"font-bold\">{{ selectedKeyword }}\u003C/span>\r\n \u003C/div>\r\n \u003C/UModal>\r\n \u003C/div>\r\n\u003C/template>\r\n\r\n\u003Cscript setup>\r\nconst props = defineProps({\r\n items: {\r\n type: Array,\r\n required: true,\r\n },\r\n});\r\nconst isOpen = ref(false)\r\nconst selected = ref([])\r\n// Log to check if items are being passed correctly\r\nconsole.log('Command Items in Child Component:', props.items);\r\nconst emit = defineEmits(['add-new-keyword']);\r\nconst selectedKeyword = ref([]);\r\nconst newKeyword = ref('');\r\n\r\n// Function to handle keyword selection\r\nconst onSelectKeyword = (item) => {\r\n const index = selectedKeyword.value.findIndex(i => i === item.value);\r\n\r\n if (index === -1) {\r\n // Add item if not already selected\r\n selectedKeyword.value.push(item.value);\r\n } else {\r\n // Remove item if already selected (deselect)\r\n selectedKeyword.value.splice(index, 1);\r\n }\r\n};\r\n\r\n// Function to add a new keyword\r\nconst addKeyword = () => {\r\n const trimmedKeyword = newKeyword.value.trim().toLowerCase();\r\n\r\n // Emit the new keyword to the parent component if it's valid\r\n if (trimmedKeyword && !props.items.includes(trimmedKeyword)) {\r\n emit('add-new-keyword', trimmedKeyword); // Emit the event to the parent\r\n newKeyword.value = ''; // Reset the input field\r\n } else {\r\n alert('Keyword is either empty or already exists.');\r\n }\r\n};\r\n\u003C/script>\r\n\r\n\r\n\u003Cstyle scoped>\r\n.UCommandPalette {\r\n border: 1px solid red;\r\n background-color: lightyellow;\r\n}\r\n/* Optional styling for better UI */\r\n.mt-4 {\r\n margin-top: 1rem;\r\n}\r\n.mt-2 {\r\n margin-top: 0.5rem;\r\n}\r\n.w-full {\r\n width: 100%;\r\n}\r\n\u003C/style>\r\n`",[2076],{"name":1996,"color":1997},2202,"when using the UCommandPalette I click on one item and all get selected","2024-09-30T12:46:35Z","https://github.com/nuxt/ui/issues/2202",0.7816963,{"description":2083,"labels":2084,"number":2088,"owner":1985,"repository":1986,"state":2027,"title":2089,"updated_at":2090,"url":2091,"score":2092},"### Environment\n\nOS Linux\nnode v22.14\n\nnuxt v3.16.1\nnuxt ui v3.0.1\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.16.1\n\n### Reproduction\n\n\nhttps://codesandbox.io/p/devbox/peaceful-newton-7rrnpq?workspaceId=ws_BXPvVpCjQQH8Dp7pSA8M1q\n\n### Description\n\nA tooltip with, as content, an Avatar without src prop did not display the popup.\n\n ```\n\u003CUTooltip arrow text=\"title\">\n \u003CUAvatar text=\"Avatar\" size=\"3xl\" />\n \u003C/UTooltip>\n```\nThe popup with 'title' is never displayed\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2085,2086,2087],{"name":2036,"color":2037},{"name":1999,"color":2000},{"name":2014,"color":2015},3699,"tooltip with avatar without src do not work","2025-03-28T09:27:27Z","https://github.com/nuxt/ui/issues/3699",0.78220826,["Reactive",2094],{},["Set"],["ShallowReactive",2097],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"fK3PFWJy4e4KE6jzlfaJdsMRr_ueXXUjX0ntXc6Uhao":-1},"/nuxt/ui/2799"]