\n \u003C/NuxtLayout>\n \u003C/UApp>\n\u003C/template>\n\u003Cscript setup lang=\"ts\">\nimport {TooltipProviderProps} from \"reka-ui\";\n\nconst tooltipProps : TooltipProviderProps = {\n delayDuration: 700,\n skipDelayDuration: 300,\n disableHoverableContent: false,\n disableClosingTrigger: false,\n disabled: false,\n ignoreNonKeyboardFocus: false,\n}\n\u003C/script>\n```\n**nuxt.config.ts**\n```\n// https://nuxt.com/docs/api/configuration/nuxt-config\nexport default defineNuxtConfig({\n compatibilityDate: '2024-11-01',\n ssr: false,\n srcDir: 'src',\n devtools: { enabled: true },\n modules: [\n '@nuxt/ui',\n '@pinia/nuxt',\n '@nuxt/image',\n 'nuxt-icons',\n '@nuxtjs/i18n',\n ],\n css: ['~/assets/css/main.css']\n})\n```\nI found that when Nuxt3 SSR is set to false, the tooltip and toast do not display, and the tooltip also reports an error of 500\n\nInjection `Symbol(TooltipProviderContext)` not found. Component must be used within `TooltipProvider`\n\nI hope to find a solution.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2004,2007,2008],{"name":2005,"color":2006},"bug","d73a4a",{"name":1988,"color":1989},{"name":1991,"color":1992},3932,"Nuxt3 SSR is set to false, the tooltip and toast become invalid","2025-04-18T11:09:10Z","https://github.com/nuxt/ui/issues/3932",0.7535859,{"description":2015,"labels":2016,"number":2020,"owner":1994,"repository":1995,"state":1996,"title":2021,"updated_at":2022,"url":2023,"score":2024},"### Description\n\nCurrently, the Calendar component allows no date selection. Please add a property to make the date mandatory, ensuring it cannot be null.\n\n### Additional context\n\n_No response_",[2017,2018,2019],{"name":1985,"color":1986},{"name":1988,"color":1989},{"name":1991,"color":1992},3734,"Calendar - The Calendar must have a selected date.","2025-03-30T04:36:21Z","https://github.com/nuxt/ui/issues/3734",0.76438123,{"description":2026,"labels":2027,"number":2031,"owner":1994,"repository":1995,"state":1996,"title":2032,"updated_at":2033,"url":2034,"score":2035},"### Description\n\nThe PinInput component expects the v-model to be a string array. However, when the type is set to number, I think it should support an array of numbers as values too.\n\n### Additional context\n\n_No response_",[2028,2029,2030],{"name":1985,"color":1986},{"name":1988,"color":1989},{"name":1991,"color":1992},3751,"PinInput: v-model support Number-Array on type=number","2025-03-31T10:31:31Z","https://github.com/nuxt/ui/issues/3751",0.7645146,{"description":2037,"labels":2038,"number":2045,"owner":1994,"repository":1995,"state":1996,"title":2046,"updated_at":2047,"url":2048,"score":2049},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.10.0\n- Nuxt Version: 3.15.4\n- CLI Version: 3.22.2\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.11.0\n- Builder: -\n- User Config: modules, devtools, css, content, future, compatibilityDate, image, build, routeRules, site, hooks, icon, colorMode, nitro, typescript, eslint\n- Runtime Modules: @nuxt/ui-pro@3.0.0-beta.2, @nuxtjs/seo@2.2.0, @nuxt/content@3.2.2, @nuxt/eslint@1.1.0, @nuxt/image@1.9.0, @vueuse/nuxt@12.7.0, @nuxtjs/html-validator@2.0.0, nuxt-payload-analyzer@0.1.4\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-beta.2\n\n### Reproduction\n\n-\n\n### Description\n\nI’ve noticed significant performance issues when using `UPageMarquee` with testimonials. The load time is drastically affected, and the overall experience is slow. It seems like the testimonials component is causing major bottlenecks.\n\nhttps://ui3.nuxt.dev/components/page-marquee#testimonials\n\n```\n\u003Cdiv class=\"flex flex-col gap-4 w-full\">\n \u003CUPageMarquee\n pause-on-hover\n :overlay=\"false\"\n :ui=\"{ root: '[--gap:--spacing(4)] [--duration:80s]', content: 'w-auto py-1' }\"\n >\n \u003CUPageCard\n v-for=\"(testimonial, index) in page.testimonials.items\"\n :key=\"index\"\n class=\"break-inside-avoid\"\n variant=\"subtle\"\n :description=\"testimonial.quote\"\n :ui=\"{\n description: 'before:content-[open-quote] after:content-[close-quote] line-clamp-3'\n }\"\n class=\"w-64 shrink-0\"\n >\n \u003CULandingTestimonial\n v-bind=\"testimonial\"\n class=\"bg-gray-100/50 dark:bg-gray-800/50\"\n />\n \u003C/div>\n \u003C/UPageColumns>\n \u003C/ULandingSection>\n \u003Ctemplate #footer>\n \u003CUUser v-bind=\"testimonial.author\" size=\"xl\" :ui=\"{ description: 'line-clamp-1' }\" />\n \u003C/template>\n \u003C/UPageCard>\n \u003C/UPageMarquee>\n```\n\nHowever, when I use marquee like this, , there are no performance issues : \n\n```\n\u003CUPageSection>\n \u003CUPageLogos marquee :title=\"page.logos.title\">\n \u003Ctemplate v-for=\"image in page.logos.images\" :key=\"image.src\">\n \u003CNuxtImg\n :src=\"image.src\"\n :alt=\"image.alt\"\n :width=\"image.width\"\n :height=\"image.height\"\n loading=\"lazy\"\n sizes=\"xs:320px sm:640px md:768px\"\n quality=\"40\"\n class=\"mb-4 sm:mb-0 sm:mr-4 mx-auto flex-shrink-0\"\n />\n \u003C/template>\n \u003C/UPageLogos>\n \u003C/UPageSection>\n```\n\nI have the impression that in one case, the animation loading is deferred, whereas in the other, it is not.",[2039,2040,2041,2044],{"name":2005,"color":2006},{"name":1988,"color":1989},{"name":2042,"color":2043},"pro","5BD3CB",{"name":1991,"color":1992},3454,"PageMarquee with testimonials have performance trouble","2025-03-09T20:39:12Z","https://github.com/nuxt/ui/issues/3454",0.7918449,{"description":2051,"labels":2052,"number":2056,"owner":1994,"repository":2057,"state":2058,"title":2059,"updated_at":2060,"url":2061,"score":2062},"Example: https://www.raycast.com/nhojb/brew",[2053],{"name":2054,"color":2055},"design","00bd6f",673,"nuxt.com","closed","[Modules] Details page","2023-09-05T08:18:34Z","https://github.com/nuxt/nuxt.com/issues/673",0.72443163,{"description":2064,"labels":2065,"number":2070,"owner":1994,"repository":1995,"state":2058,"title":2071,"updated_at":2072,"url":2073,"score":2074},"### Description\n\nhow to run vitest with `nuxt/ui` components?\n\nexample repo: https://github.com/OrbisK/nuxt-ui-vue-starter/tree/test/repoduction\n\n1. `pnpm i`\n2. `pnpm test`\n3. `TypeError: Package import specifier \"#imports\" is not defined in package /var/www/html/node_modules/@nuxt/ui/package.json imported from /var/www/html/node_modules/@nuxt/ui/dist/runtime/plugins/colors.js`\n\n```ts\nimport App from './App.vue'\nimport {mount} from '@vue/test-utils'\nimport ui from '@nuxt/ui/vue-plugin'\n\nit(\"should render button\", ()=>{\n const wrapper = mount(App, {\n global: {\n plugins: [ui]\n }\n })\n})\n```",[2066,2069],{"name":2067,"color":2068},"question","d876e3",{"name":1988,"color":1989},3814,"nuxt/ui with vitest `Package import specifier \"#imports\" is not defined`","2025-04-07T08:00:21Z","https://github.com/nuxt/ui/issues/3814",0.7256675,{"description":2076,"labels":2077,"number":2080,"owner":1994,"repository":2057,"state":2058,"title":2081,"updated_at":2082,"url":2083,"score":2084},"Issue on `@nuxt/content` https://github.com/nuxt/content/blob/main/docs/content/1.index.md\n\n\n",[2078],{"name":2005,"color":2079},"ff281a",683,"[Editor] Milkdown parsing error with components in slots","2023-06-06T12:14:56Z","https://github.com/nuxt/nuxt.com/issues/683",0.7303493,{"description":2086,"labels":2087,"number":43,"owner":1994,"repository":2057,"state":2058,"title":2090,"updated_at":2091,"url":2092,"score":2093},"\n",[2088],{"name":1985,"color":2089},"1ad6ff","[Docs] Remove TOC for examples","2023-02-15T12:31:33Z","https://github.com/nuxt/nuxt.com/issues/756",0.7328874,{"description":2095,"labels":2096,"number":2101,"owner":1994,"repository":1995,"state":2058,"title":2102,"updated_at":2103,"url":2104,"score":2105},"### Environment\n\n```\nNuxt project info: 4:16:28 PM\n\n------------------------------\n- Operating System: Linux\n- Node Version: v20.14.0\n- Nuxt Version: 3.14.159\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@8.8.0\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@2.19.2, @nuxt/eslint@0.3.13, @nuxt/test-utils/module@3.14.4, @pinia/nuxt@0.5.5, @vueuse/nuxt@10.11.1, nuxt-shiki@0.3.0, nuxt-svgo@4.0.8\n- Build Modules: -\n------------------------------\n```\n\n### Version\n\nv2.19.2\n\n### Reproduction\n\nI don't know how to reproduce it unfortunately.\n\n### Description\n\nI often have a bunch of `[Icon] loading icon `heroicons:magnifying-glass` timed out after 500ms` on firefox\n\n\n\nit impacts the breadcrumb component\n\nbut also other `\u003CUIcon>` instances\n\nDo you have any idea about where those timeouts maybe coming from \n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2097,2098],{"name":2005,"color":2006},{"name":2099,"color":2100},"upstream","78bddb",2573,"Icon timeout despite having installed the @iconify-json/heroicons collection","2024-11-08T16:41:20Z","https://github.com/nuxt/ui/issues/2573",0.7496212,["Reactive",2107],{},["Set"],["ShallowReactive",2110],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"mrQtBzfqFCYYp-BHE4XQYoyW8hgF55--o_oBfmhHAzo":-1},"/nuxt/ui/3874"]