\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[3041,3043],{"name":3030,"color":3042},"d73a4a",{"name":3044,"color":3045},"v3","49DCB8",3299,"ui","Wrong types in `ui` with errors Type 'string' is not assignable to type 'string[]'","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/3299",0.6768867,{"description":3053,"labels":3054,"number":3059,"owner":3019,"repository":3047,"state":3033,"title":3060,"updated_at":3061,"url":3062,"score":3063},"### Description\n\nHi there,\n\nI'd like to know, how to deal with paginated data that comes from the used API, e.g. a Laravel resource response.\n\n```\n{\n \"current_page\": 1,\n \"data\": [\n {\n \"id\": \"1\",\n \"name\": \"Foo\",\n \"created_at\": \"2025-04-01T11:46:21+00:00\"\n },\n {\n \"id\": \"2\",\n \"name\": \"Bar\",\n \"created_at\": \"2025-04-01T11:46:21+00:00\"\n },\n ],\n \"first_page_url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=1\",\n \"from\": 1,\n \"last_page\": 14,\n \"last_page_url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=14\",\n \"links\": [\n {\n \"url\": null,\n \"label\": \"« Previous\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=1\",\n \"label\": \"1\",\n \"active\": true\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=2\",\n \"label\": \"2\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=3\",\n \"label\": \"3\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=4\",\n \"label\": \"4\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=5\",\n \"label\": \"5\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=6\",\n \"label\": \"6\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=7\",\n \"label\": \"7\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=8\",\n \"label\": \"8\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=9\",\n \"label\": \"9\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=10\",\n \"label\": \"10\",\n \"active\": false\n },\n {\n \"url\": null,\n \"label\": \"...\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=13\",\n \"label\": \"13\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=14\",\n \"label\": \"14\",\n \"active\": false\n },\n {\n \"url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=2\",\n \"label\": \"Next »\",\n \"active\": false\n }\n ],\n \"next_page_url\": \"https:\\/\\/api.example.test\\/test?page%5Bsize%5D=30&page%5Bnumber%5D=2\",\n \"path\": \"https:\\/\\/api.example.test\\/test\",\n \"per_page\": 30,\n \"prev_page_url\": null,\n \"to\": 30,\n \"total\": 394\n}\n```\n\nI am a bit intimidated by the TanStack API.",[3055,3058],{"name":3056,"color":3057},"question","d876e3",{"name":3044,"color":3045},3776,"Use UTable with paginated data, which comes from API","2025-04-04T13:04:05Z","https://github.com/nuxt/ui/issues/3776",0.70895267,{"description":3065,"labels":3066,"number":3067,"owner":3019,"repository":3020,"state":3033,"title":3068,"updated_at":3069,"url":3070,"score":3071},"I have this kind of template:\n```\n \u003Cspan>\n \u003CIcon\n v-show=\"!searching\"\n name=\"i-heroicons-magnifying-glass-20-solid\" />\n \u003CIcon\n v-show=\"searching\"\n name=\"i-heroicons-arrow-path-20-solid\"\n class=\"animate-spin\"\n />\u003C/span>\n```\n\nSo, it should show `magnifying-glass` when not searching and `arrow-path` when searching. This does not work. Depending on if the view was loaded during navigation or page load it does not change or there a both. With `v-if` it works fine.\n\nHere is a reproduction with `nuxt-ui`:\nhttps://stackblitz.com/edit/nuxt-ui-7zcwsg?file=app.vue,package.json\n\nAnd here is a reproduction from `nuxt-icon-playground`:\nhttps://stackblitz.com/edit/nuxt-icon-playground-odkjmz?file=app.vue,package.json\n\nIt works with 1.7.6 but not 1.8.0 onwards. Could this be related to #300 ?\n\n---\n```\n❯ npx nuxt info\nWorking directory: /home/projects/nuxt-ui \nNuxt project info: \n\n------------------------------\n- Operating System: Linux\n- Node Version: v18.20.3\n- Nuxt Version: 3.14.159\n- CLI Version: 3.15.0\n- Nitro Version: 2.10.4\n- Package Manager: pnpm@8.15.6\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui@2.19.2\n- Build Modules: -\n------------------------------\n```\n",[],301,"Issue with v-show on icons in 1.8.1 or 1.8.0","2024-11-20T15:03:29Z","https://github.com/nuxt/icon/issues/301",0.7117245,{"description":3073,"labels":3074,"number":3079,"owner":3019,"repository":3047,"state":3033,"title":3080,"updated_at":3081,"url":3082,"score":3083},"### Environment\n\n- Operating System: `macos`\n- Node Version: `v18.16.0`\n- Nuxt Version: `3.16.0\"`\n- Vue: \"3.5.0\",\n- Nuxt/ui\": \"3.0.0\",\n- CLI Version: `3.8.4`\n- Package Manager: `pnpm`\n- IDE: VS Code\n\n\n### Version\n\nv3\n\n### Reproduction\n\nin any expample, even in your ui template npx nuxi init -t ui \u003Cmy-app>\n\n\n\n### Description\n\ntailwind IntelliSense works only in attribute class of elements, but not works in :ui={...}. so to write classes in ui i need learn them all, for example. \n\n\n\n\n\n\n\n\ni tried to help tailwind IntelliSense by addnig classregex to vscode setttings, but it did not help\n\n\n\njust for test purpose, i add some classregex for [CVA](https://cva.style/docs/getting-started/installation) for check if it will work. and it work for cva, not for :ui={..}\nscreen for cva\n\n\n### Additional context\n\nmake it work please! for :ui={..} and for app.config.ts\n\n### Logs\n\n```shell-script\n\n```",[3075,3076],{"name":3030,"color":3042},{"name":3077,"color":3078},"triage","ffffff",3570,"Tailwind CSS IntelliSense not works in :ui={} and in app.config.ts","2025-03-17T17:00:40Z","https://github.com/nuxt/ui/issues/3570",0.7226968,{"description":3085,"labels":3086,"number":3099,"owner":3019,"repository":3019,"state":3033,"title":3100,"updated_at":3101,"url":3102,"score":3103},"### Environment\n\n\u003Cimg width=\"1454\" alt=\"image\" src=\"https://github.com/nuxt/nuxt/assets/25784822/fc814f59-1d43-49e7-84b6-8719e3345264\">\r\n\n\n### Reproduction\n\nThe browser forward back style is lost for a moment and then returns to normal display\n\n### Describe the bug\n\nThe browser forward back style is lost for a moment and then returns to normal display\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3087,3090,3093,3096],{"name":3088,"color":3089},"3.x","29bc7f",{"name":3091,"color":3092},"pending triage","E99695",{"name":3094,"color":3095},"needs reproduction","FBCA04",{"name":3097,"color":3098},"closed-by-bot","ededed",22349,"The browser forward back style is lost for a moment and then returns to normal display","2023-08-05T01:50:12Z","https://github.com/nuxt/nuxt/issues/22349",0.7228668,{"description":3105,"labels":3106,"number":3111,"owner":3019,"repository":3047,"state":3033,"title":3112,"updated_at":3049,"url":3113,"score":3114},"### Description\n\nThe Nuxt UI v2 dropdown has the option to open on hover or click. In v3 the only option available is click. \n\n\n\n### Additional context\n\n_No response_",[3107,3110],{"name":3108,"color":3109},"enhancement","a2eeef",{"name":3044,"color":3045},3322,"[DropdownMenu] (v3) missing mode prop for hover/click","https://github.com/nuxt/ui/issues/3322",0.73194516,{"description":3116,"labels":3117,"number":3122,"owner":3019,"repository":3019,"state":3033,"title":3123,"updated_at":3124,"url":3125,"score":3126},"### Environment\n\n------------------------------\r\n- Operating System: Darwin\r\n- Node Version: v16.20.0\r\n- Nuxt Version: 3.4.2\r\n- Nitro Version: 2.4.0\r\n- Package Manager: pnpm@8.2.0\r\n- Builder: vite\r\n- User Config: app, css, modules, vite\r\n- Runtime Modules: @unocss/nuxt@0.51.8, nuxt-svgo@3.1.0\r\n- Build Modules: -\r\n------------------------------\n\n### Reproduction\n\n1. Set the `rollupOptions` with `vite.build ` in nuxt.config like below\r\n```ts\r\nrollupOptions: {\r\n output: {\r\n assetFileNames: (assetInfo) => {\r\n let extType = assetInfo.name?.split('.')[1] ?? ''\r\n if (/(png|jpe?g|svg)$/i.test(extType)) {\r\n extType ='img'\r\n } else if (/s?css$/i.test(extType)) {\r\n extType = 'css'\r\n }\r\n return `_nuxt/${extType}/[name].[hash].[ext]`\r\n }\r\n }\r\n }\r\n```\r\n2. After build, there are two dirs called css and img, but the css file use some images in img dir like that\r\n\r\n```css\r\n.some-calss {\r\n background: url('./img/a.png')\r\n}\r\n```\r\n3. So the pages cannot show the background-image because 404\r\n\n\n### Describe the bug\n\n1. The style are built like that\r\n\r\n```css\r\n.some-calss {\r\n background: url('./img/a.png')\r\n}\r\n```\r\n2. While the expected result should like that\r\n```css\r\n.some-calss {\r\n background: url('../img/a.png')\r\n}\r\n```\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[3118,3119,3120,3121],{"name":3088,"color":3089},{"name":3091,"color":3092},{"name":3094,"color":3095},{"name":3097,"color":3098},20845,"Image are used in wrong reference in stylesheet file after build with rollup","2023-08-06T01:48:42Z","https://github.com/nuxt/nuxt/issues/20845",0.734198,{"labels":3128,"number":3133,"owner":3019,"repository":3019,"state":3033,"title":3134,"updated_at":3135,"url":3136,"score":3137},[3129,3130],{"name":3091,"color":3092},{"name":3131,"color":3132},"2.x","d4c5f9",7749,"Cannot find module \". . . . .jpg\"","2023-01-22T15:36:04Z","https://github.com/nuxt/nuxt/issues/7749",0.73498297,["Reactive",3139],{},["Set"],["ShallowReactive",3142],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f36exk1qSKSOXgyZ1DTbAC-uxuHDQLZPi9uoYBzleJEQ":-1},"/nuxt/test-utils/505"]