\n \u003C/UCarousel>\n\u003C/template>\n```\n\nAnd I get some TypeScript errors:\n\nProperty 'page' does not exist on type 'CreateComponentPublicInstanceWithMixins(...)\nProperty 'select' does not exist on type 'CreateComponentPublicInstanceWithMixins(...)\nProperty 'next' does not exist on type 'CreateComponentPublicInstanceWithMixins(...)\n\nHow should I correctly infer the type for UCarousel?\n\nNuxt v3.15.1\nNuxtUI v2.20.0",[2010,2013],{"name":2011,"color":2012},"question","d876e3",{"name":2014,"color":2015},"stale","ededed",3053,"How to properly use UCarousel API with TypeScript","2025-02-09T02:00:51Z","https://github.com/nuxt/ui/issues/3053",0.69482505,{"description":2022,"labels":2023,"number":2024,"owner":1991,"repository":2002,"state":1993,"title":2025,"updated_at":2026,"url":2027,"score":2028},"It would be nice if you could alias and entire collection instead of just an icon.\n\nRight now I do it this way.\n```ts\nconst createIconAliases = (newPrefix: string, iconifyJson: IconifyJSON) => {\n const exisitngPrefix = iconifyJson.prefix;\n const icons = Object.keys(iconifyJson.icons);\n\n return icons.reduce(\n (object, value) => {\n object[`${newPrefix}:${value}`] = `${exisitngPrefix}:${value}`;\n return object;\n },\n {} as Record\u003Cstring, string>,\n );\n};\n```",[],362,"[feature request] Allow aliasing entire collection","2025-02-21T20:10:51Z","https://github.com/nuxt/icon/issues/362",0.7144059,{"description":2030,"labels":2031,"number":2032,"owner":1991,"repository":2002,"state":2033,"title":2034,"updated_at":2035,"url":2036,"score":2037},"After installing an `@iconify-json/*` package (`@iconify-json/mdi` in my scenario), the following error gets spit out when the `/api/_nuxt_icon/:collection` endpoint is called\r\n\r\n\r\n\r\nIt seems to be caused by the dynamic import missing the json import attribute on line 120 of `module.ts` https://github.com/nuxt/icon/blob/85a0e7b940725561f35656d75a99179f88cecef8/src/module.ts#L120 \r\n\r\nAdding `{ with: { type: 'json' } }` as a second parameter resolves the error for me:\r\n\r\n```js\r\nimport('@iconify-json/${collection}/icons.json', { with: { type: 'json' } }).then(m => m.default)`\r\n```",[],186,"closed","Locally installed `@iconify-json/*` packages result in 'needs an import attribute of type \"json\"' error","2024-07-15T15:35:07Z","https://github.com/nuxt/icon/issues/186",0.6717764,{"description":2039,"labels":2040,"number":2046,"owner":1991,"repository":2047,"state":2033,"title":2048,"updated_at":2049,"url":2050,"score":2051},"On sub-pages (paths longer than 1 level) 404 is not triggered\n\nEx:\n\nhttps://nuxt.com/unknown => Triggers 404\nhttps://nuxt.com/modules/unknown => Broken page",[2041,2043],{"name":1985,"color":2042},"ff281a",{"name":2044,"color":2045},"SEO","01403D",1046,"nuxt.com","404s handling","2023-06-06T12:14:30Z","https://github.com/nuxt/nuxt.com/issues/1046",0.68318325,{"description":2053,"labels":2054,"number":2059,"owner":1991,"repository":1992,"state":2033,"title":2060,"updated_at":2061,"url":2062,"score":2063},"### Description\n\nHow can I listen to an event, when a link in the UNavigationMenu is clicked?\n\nI want to close the sidebar, that the navigationmenu is inside....\n\nI can see that there is a select event in the NavigationMenuLink component\n\n",[2055,2056],{"name":2011,"color":2012},{"name":2057,"color":2058},"v3","49DCB8",3216,"UNavigationMenu: Listen to select event","2025-02-05T13:23:51Z","https://github.com/nuxt/ui/issues/3216",0.6864829,{"description":2065,"labels":2066,"number":2073,"owner":1991,"repository":2074,"state":2033,"title":2075,"updated_at":2076,"url":2077,"score":2078},"I've explored other font providers, looks like `fontsource` is also quite promising.\r\n\r\nCurrently most of its fonts are from Google Fonts, along with some icons and some other fonts. It's also the service that Cloudflare Fonts is fetching from.\r\n\r\n@danielroe Would you like to include this font provider? If so, I'd like to work on it.\r\n\r\nDocs: https://fontsource.org/docs",[2067,2070],{"name":2068,"color":2069},"enhancement","a2eeef",{"name":2071,"color":2072},"provider","1161A4",65,"fonts","feat: fontsource provider","2024-03-20T13:12:12Z","https://github.com/nuxt/fonts/issues/65",0.69595796,{"description":2080,"labels":2081,"number":2084,"owner":1991,"repository":1992,"state":2033,"title":2085,"updated_at":2086,"url":2087,"score":2088},"### Environment\n\n-\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.16.0\n\n### Reproduction\n\n- \n\n### Description\n\nUpgraded all deps to the latest and bam Nuxt 3.16.0 is added. We get errors now as Nuxt UI 3 still ships with\n\n`'@unhead/vue': 1.11.20(vue@3.5.13(typescript@5.8.2))\n`\n\nAs of Nuxt 3.16.0 ships with @unhead2:\nhttps://nuxt.com/blog/v3-16#unhead-v2\n\nActual error:\n`[@nuxt/scripts 9:42:20 PM] ERROR Nuxt Scripts requires Unhead >= 2, you are using v1.11.20. Please run nuxi upgrade --clean to upgrade...`\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2082,2083],{"name":1985,"color":1986},{"name":2057,"color":2058},3513,"Nuxt 3.16.0 - ships with @unhead2","2025-03-10T08:49:36Z","https://github.com/nuxt/ui/issues/3513",0.6983522,{"description":2090,"labels":2091,"number":2094,"owner":1991,"repository":1992,"state":2033,"title":2095,"updated_at":2096,"url":2097,"score":2098},"### Environment\n\nmodal.close() dont work,and cant get formref\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.10\n\n### Reproduction\n\nmodal.close() dont work\n\n### Description\n\nmodal.close() dont work,and cant get formref\n\n### Additional context\n\nmodal.close() dont work,and cant get formref\n\n### Logs\n\n```shell-script\nmodal.close() dont work,and cant get formref\n```",[2092,2093],{"name":1985,"color":1986},{"name":2057,"color":2058},2894,"modal.close() dont work,and cant get formref","2025-01-25T13:12:30Z","https://github.com/nuxt/ui/issues/2894",0.6992152,["Reactive",2100],{},["Set"],["ShallowReactive",2103],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"HDAVeEhMqN8KaqSHLomGYiXTrNOj-R3XQGvEZbL4bvY":-1},"/nuxt/test-utils/800"]