\n \u003C/UTooltip>\n \u003C/UAvatarGroup>\n```\n\n---\n```\n \u003CShareProjectModal\n v-if=\"project\"\n v-model:open=\"isShareProjectModalOpen\"\n :project=\"project\"\n :template-name=\"project.template.name\"\n :primary-document-references=\"project.template.primary_document_reference?.map(d => d.name) || []\"\n />\n```\n\nSharedModal\n\n```\n \u003CUModal\n v-model:open=\"isOpen\"\n :ui=\"{\n content: 'max-w-124',\n footer: 'justify-between',\n body: 'flex flex-col gap-4 px-0 sm:px-0',\n }\"\n >\n\n\u003C/UModal>\n```\n\n\n### Description\n\n\nHi, we are using v4 with an avatarGroup tooltip\n```\n \u003CUAvatarGroup\n v-if=\"sharedUsers.length\"\n :max=\"3\"\n size=\"sm\"\n @click=\"isShareProjectModalOpen = true\"\n >\n \u003CUTooltip\n v-for=\"user in sharedUsers\"\n :key=\"user.emailAddress\"\n :text=\"user.fullName ?? user.emailAddress\"\n :delay-duration=\"0\"\n >\n \u003CUAvatar\n :src=\"user.avatar ?? undefined\"\n :alt=\"user.fullName ?? user.emailAddress\"\n />\n \u003C/UTooltip>\n \u003C/UAvatarGroup>\n```\n\nWe have few modal opening on the same page however we have inconsistency with the tooltip when playing around opening UModal on the page the tooltip would stop working. has anyone encounter such issue?\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3139,3142],{"name":3140,"color":3141},"bug","d73a4a",{"name":3143,"color":3144},"triage","ffffff",4903,"nuxt","ui","open","AvatarGroup & Tooltip","2025-09-08T01:56:54Z","https://github.com/nuxt/ui/issues/4903",0.6887814,{"description":3154,"labels":3155,"number":3158,"owner":3146,"repository":3147,"state":3148,"title":3159,"updated_at":3160,"url":3161,"score":3162},"### Environment\n\n- Operating System: `Linux`\n- Node Version: `v20.18.1`\n- Nuxt Version: `4.0.3`\n- CLI Version: `3.27.0`\n- Nitro Version: `2.12.4`\n- Package Manager: `pnpm@9.15.0`\n- Builder: `-`\n- User Config: `devtools`, `srcDir`, `modules`, `future`, `css`, `content`, `routeRules`, `compatibilityDate`, `i18n`, `ogImage`, `seo`, `sitemap`\n- Runtime Modules: `@nuxt/ui@4.0.0-alpha.0`, `@vueuse/nuxt@13.6.0`, `@nuxt/content@3.6.3`, `@nuxtjs/i18n@10.0.3`, `@nuxtjs/seo@3.1.0`\n- Build Modules: `-`\n\n\n### Version\n\nv4.0.0-alpha.0\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/nuxt-ui-marquee-bug-in-rtl-mode-8q3sth\n\n### Description\n\nWhen using the `UMarquee` component in **RTL mode**, the animation does not behave as expected. \n- After the repeated divs finish scrolling, the marquee completely clears the container. \n- Then, icons start appearing again **from the beginning**. \n\n\n### Additional context\n\n\u003Cimg width=\"772\" height=\"357\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/e807bd0c-0bdd-4504-8118-d9d20d037e5b\" />\n\n### Logs\n\n```shell-script\n\n```",[3156,3157],{"name":3140,"color":3141},{"name":3143,"color":3144},4813,"`Marquee` does not work properly in RTL mode (v4)","2025-08-24T15:03:10Z","https://github.com/nuxt/ui/issues/4813",0.6945445,{"description":3164,"labels":3165,"number":3171,"owner":3146,"repository":3147,"state":3148,"title":3172,"updated_at":3173,"url":3174,"score":3175},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.15.0\n- Nuxt Version: 3.17.7\n- CLI Version: 3.25.1\n- Nitro Version: 2.11.13\n- Package Manager: pnpm@10.10.0\n- Builder: -\n- User Config: compatibilityDate, devtools, modules, fonts, icon, components, css, ui\n- Runtime Modules: @nuxt/fonts@0.11.4, @nuxt/eslint@1.5.2, @nuxt/icon@1.15.0, @nuxt/image@1.10.0, @nuxt/ui@3.2.0\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.2.0\n\n### Reproduction\n\nTheming with either of this method such as:\n\n### Theming in `app.config.ts`\nSame issue for both UInputTags and UInputMenu (multiple)\n```typescript\ninputTags: {\n ...\n compoundVariants: [\n {\n variant: 'outline',\n class : {\n root: 'root-test',\n base: 'base-test',\n },\n },\n ],\n},\ninputMenu: {\n ...\n compoundVariants: [\n // Works properly\n {\n variant: 'outline',\n class : {\n root: 'root-test',\n base: 'base-test',\n },\n },\n // Wrong behaviour\n {\n variant: 'outline',\n multiple: true,\n class : {\n root: 'root-test',\n base: 'base-test',\n },\n },\n ],\n},\n\n```\n### Theming directly using `ui`\n```tsx\n\u003CUInputTags\n ...\n :ui=\"{\n root: 'root-test',\n base: 'base-test',\n }\"\n/>\n```\n\n### Will results something like this\n```html\n\u003Cdiv class=\"... root-test base-test\">\n ...\n \u003Cinput class=\"...\" />\n\u003C/div>\n```\n\n### Description\n\nWhen applying themes in `app.config.ts`, both **UInputTags** and **UInputMenu (multiple)** share the same weird behaviour compared with other components, where the class applied to `base` part of the component are applied to `root` part of the component.\n\n### Expected Behaviour\nThe applied class on `base` should be applied to the `\u003Cinput />`, not the `root` part of the component which is the outer `\u003Cdiv />` just like other input components such as **UInput**, **UInputNumber**, or **UTextarea**.\n\nCorrect me if I'm wrong if this are intended, thank you!\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3166,3167,3170],{"name":3140,"color":3141},{"name":3168,"color":3169},"v3","49DCB8",{"name":3143,"color":3144},4530,"[UInputTags, UInputMenu] Theming behaviour issues","2025-07-15T17:50:02Z","https://github.com/nuxt/ui/issues/4530",0.6983395,{"description":3177,"labels":3178,"number":3182,"owner":3146,"repository":3147,"state":3183,"title":3184,"updated_at":3185,"url":3186,"score":3187},"### Environment\n\n- Operating System: `Darwin`\n- Node Version: `v22.14.0`\n- Nuxt Version: `3.17.1`\n- CLI Version: `3.25.1`\n- Nitro Version: `2.11.11`\n- Package Manager: `pnpm@10.7.0`\n- Builder: `-`\n- User Config: `modules`, `devtools`, `css`, `mdc`, `runtimeConfig`, `routeRules`, `future`, `compatibilityDate`, `vite`, `echo`, `eslint`, `i18n`, `sanctum`\n- Runtime Modules: `@nuxt/eslint@1.3.0`, `@nuxt/ui-pro@3.1.1`, `@nuxt/content@3.5.1`, `@vueuse/nuxt@13.1.0`, `nuxt-auth-sanctum@0.5.8`, `@nuxtjs/i18n@9.3.1`, `nuxt-laravel-echo@0.2.2`\n- Build Modules: `-`\n\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\n3.1.1\n\n### Reproduction\n\nhttps://ui.nuxt.com/components/table#loading\n\n### Description\n\nOn Safari, the border of the table is not visible/moved to the bottom.\n\nThis leaves the loading-indicator to be moved to the bottom.\n\n\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3179,3180,3181],{"name":3140,"color":3141},{"name":3168,"color":3169},{"name":3143,"color":3144},4180,"closed","Border on table header not shown on safari, loading indicator not on the top","2025-06-24T15:09:06Z","https://github.com/nuxt/ui/issues/4180",0.67261845,{"description":3189,"labels":3190,"number":3199,"owner":3146,"repository":3147,"state":3183,"title":3200,"updated_at":3201,"url":3202,"score":3203},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.12.0\n- Nuxt Version: 3.17.3\n- CLI Version: 3.25.1\n- Nitro Version: 2.11.12\n- Package Manager: pnpm@8.15.6\n- Builder: -\n- User Config: modules, devtools, compatibilityDate, future, css\n- Runtime Modules: @nuxt/ui@3.1.3\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.17.3\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/angry-moon-grlpp3\n\n### Description\n\nThe borders of UCard will be hidden in the UCollapsible\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3191,3192,3193,3194,3197],{"name":3140,"color":3141},{"name":3168,"color":3169},{"name":3143,"color":3144},{"name":3195,"color":3196},"closed-by-bot","ededed",{"name":3198,"color":3196},"stale",4383,"Borders of UCard in UCollapsible are hidden","2025-08-31T02:09:21Z","https://github.com/nuxt/ui/issues/4383",0.6752265,{"description":3205,"labels":3206,"number":3212,"owner":3146,"repository":3147,"state":3183,"title":3213,"updated_at":3214,"url":3215,"score":3216},"### Environment\n\nNuxt project info: (copied to clipboard) nuxi 8:34:52 pm\n\nOperating System: Linux\nNode Version: v22.17.1\nNuxt Version: 4.0.0\nCLI Version: 3.26.2\nNitro Version: 2.12.0\nPackage Manager: bun@1.2.15\nBuilder: -\nUser Config: modules, runtimeConfig, devtools, ui, css, colorMode, compatibilityDate, eslint\nRuntime Modules: @nuxt/ui@3.2.0, @nuxt/ui-pro@3.2.0, @pinia/nuxt@0.5.5, @nuxt/eslint@1.6.0\nBuild Modules: -\n👉 Report an issue: https://github.com/nuxt/nuxt/issues/new?template=bug-report.yml\n👉 Suggest an improvement: https://github.com/nuxt/nuxt/discussions/new\n👉 Read documentation: https://nuxt.com/\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.1.2\n\n### Reproduction\n\nSee Nuxt UI official docs page -\nhttps://ui.nuxt.com/components/dashboard-sidebar\n\n### Description\n\nUI is not rendering correctly on the web page or on my local machine.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3207,3208,3211],{"name":3140,"color":3141},{"name":3209,"color":3210},"documentation","0075ca",{"name":3168,"color":3169},4610,"UI not rendering for certain Dashboard components","2025-07-29T21:07:34Z","https://github.com/nuxt/ui/issues/4610",0.6789458,{"description":3218,"labels":3219,"number":3224,"owner":3146,"repository":3147,"state":3183,"title":3225,"updated_at":3226,"url":3227,"score":3228},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.17.0\n- Nuxt Version: 3.14.1592\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.9.0\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/test-utils/module@3.14.4, @nuxt/eslint@0.7.1, @nuxt/ui@2.20.0, @nuxt/icon@1.8.2, @pinia/nuxt@0.5.5, @nuxtjs/i18n@9.1.0\n- Build Modules: -\n\n### Version\n\nv2.20.0\n\n### Reproduction\n\nhttps://github.com/nuxt/ui/blob/c0455c831f06b3f7662c964abe6e36f9221afe48/src/runtime/components/data/Table.vue#L11\n\n### Description\n\nFor some reason (probably just typo mistake) `th` element of `u-table` component uses styles from `tr.base`. Is it a feature? Looks like a bug :)\nhttps://github.com/nuxt/ui/blob/c0455c831f06b3f7662c964abe6e36f9221afe48/src/runtime/components/data/Table.vue#L11\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3220,3221,3222,3223],{"name":3140,"color":3141},{"name":3143,"color":3144},{"name":3195,"color":3196},{"name":3198,"color":3196},2946,"Expand table header uses styles from 'ui.tr.base'","2025-06-18T09:05:12Z","https://github.com/nuxt/ui/issues/2946",0.6813572,{"description":3230,"labels":3231,"number":3234,"owner":3146,"repository":3147,"state":3183,"title":3213,"updated_at":3235,"url":3236,"score":3237},"### Environment\n\nNuxt project info: (copied to clipboard) nuxi 8:34:52 pm\n\n------------------------------\n- Operating System: Linux\n- Node Version: v22.17.1\n- Nuxt Version: 4.0.0\n- CLI Version: 3.26.2\n- Nitro Version: 2.12.0\n- Package Manager: bun@1.2.15\n- Builder: -\n- User Config: modules, runtimeConfig, devtools, ui, css, colorMode, compatibilityDate, eslint\n- Runtime Modules: @nuxt/ui@3.2.0, @nuxt/ui-pro@3.2.0, @pinia/nuxt@0.5.5, @nuxt/eslint@1.6.0\n- Build Modules: -\n------------------------------\n\n👉 Report an issue: https://github.com/nuxt/nuxt/issues/new?template=bug-report.yml\n👉 Suggest an improvement: https://github.com/nuxt/nuxt/discussions/new\n👉 Read documentation: https://nuxt.com\n\n\n### Version\n\nv3.1.2\n\n### Reproduction\n\nSee Nuxt UI official docs page -\nhttps://ui.nuxt.com/components/dashboard-sidebar\n\n### Description\n\nUI is not rendering correctly on the page or on my local machine.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3232,3233],{"name":3140,"color":3141},{"name":3143,"color":3144},4609,"2025-07-26T15:12:50Z","https://github.com/nuxt/ui/issues/4609",0.6831064,{"description":3239,"labels":3240,"number":3250,"owner":3146,"repository":3146,"state":3183,"title":3251,"updated_at":3252,"url":3253,"score":3254},"### Environment\n\nNuxt project info: 9:02:58 AM\n\n------------------------------\n- Operating System: Linux\n- Node Version: v20.18.0\n- Nuxt Version: 3.13.0\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@9.12.2\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxtjs/tailwindcss@6.12.2, @nuxtjs/color-mode@3.5.2, @nuxt/icon@1.7.2, @nuxt/image@1.8.1, @nuxtjs/google-fonts@3.2.0, @nuxtjs/i18n@8.5.6, @pinia/nuxt@0.5.5, pinia-plugin-persistedstate/nuxt\n- Build Modules: -\n\n### Reproduction\n\ni am absolutely sure that the issue is obvious\n\n### Describe the bug\n\nWhen using `Nuxt 3.14` with `i18n` , layout rendering breaks unexpectedly in RTL mode or the prefix strategy i am not sure i tested it while working with `en` as default and `ar` with `RTL` as second language with `prefix_except_default` strategy. \n\ni am using a default and auth layouts\nwhen changing the language or the url manually from `http://localhost:3000/login` to `http://localhost:3000/ar/login`\nthe layout falls back to the `default` layout.\n\neverything else works fine with the default layout\n\nDowngrading to `Nuxt 3.13` resolves the issue.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3241,3244,3247],{"name":3242,"color":3243},"pending triage","E99695",{"name":3245,"color":3246},"needs reproduction","FBCA04",{"name":3248,"color":3249},"possible regression","B90A42",29875,"Nuxt 3.14 Layout Issue: i18n Integration Causes Layout Fallback","2025-01-25T15:39:26Z","https://github.com/nuxt/nuxt/issues/29875",0.68566346,{"description":3256,"labels":3257,"number":3260,"owner":3146,"repository":3147,"state":3183,"title":3261,"updated_at":3262,"url":3263,"score":3264},"### Environment\n\n\"@vueuse/nuxt\": \"^13.1.0\"\n\"@nuxt/ui\": \"^3.1.2\"\nnode: lts/jod (22.11.0)\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.1.2\n\n### Reproduction\n\n\n\n\n\n### Description\n\nWhen using the UTab component with the variant=\"link\", applying custom CSS classes to enable horizontal scrolling (e.g., overflow-x: auto; or equivalent utility classes) causes the visual style indicating the currently active tab to be lost or overridden.\n\n```js\n{\n variant: 'link',\n ui: {\n list: 'bg-white overflow-x-auto overflow-y-hidden',\n trigger: 'min-w-auto'\n }\n}\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3258,3259],{"name":3140,"color":3141},{"name":3168,"color":3169},4198,"UTabs style issue","2025-05-23T13:23:24Z","https://github.com/nuxt/ui/issues/4198",0.6887832,["Reactive",3266],{},["Set"],["ShallowReactive",3269],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fK4O8JwRdKbQKUvYQDWxGkEVhsTogCBsE64MJGt5yT-Q":-1},"/nuxt/ui/4190"]