\n\n\u003Cimg width=\"712\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/0a9f273f-cb27-4824-ac2f-6497980294ec\" />\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2876,2879,2882],{"name":2877,"color":2878},"bug","d73a4a",{"name":2880,"color":2881},"v3","49DCB8",{"name":2863,"color":2864},3558,"Padding and Sizing on UAvatar","2025-03-13T13:44:50Z","https://github.com/nuxt/ui/issues/3558",0.74738294,{"description":2889,"labels":2890,"number":2897,"owner":2866,"repository":2898,"state":2899,"title":2900,"updated_at":2901,"url":2902,"score":2903},"### Describe the feature\n\nThe same way registerEndpoint mocks a server endpoint, \r\nis it possible to create an util that mocks a websocket server?\r\n\n\n### Additional information\n\n- [ ] Would you be willing to help implement this feature?\n- [ ] Could this feature be implemented as a module?\n\n### Final checks\n\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2891,2894],{"name":2892,"color":2893},"question","d876e3",{"name":2895,"color":2896},"pending triage","5D08F5",758,"test-utils","closed","Mock websocket server for unit tests","2024-02-19T09:43:58Z","https://github.com/nuxt/test-utils/issues/758",0.6577775,{"description":2905,"labels":2906,"number":2912,"owner":2866,"repository":2867,"state":2899,"title":2913,"updated_at":2914,"url":2915,"score":2916},"### Environment\n\n------------------------------\n- Operating System: Darwin\n- Node Version: v20.18.1\n- Nuxt Version: 3.15.0\n- CLI Version: 3.17.2\n- Nitro Version: 2.10.4\n- Package Manager: bun@1.1.42\n- Builder: -\n- User Config: default\n- Runtime Modules: @nuxt/ui-pro@3.0.0-alpha.10, @nuxtjs/i18n@9.1.1\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nV3.0.0-alpha.10\n\n### Reproduction\n\nhttps://codesandbox.io/p/devbox/nuxt-ui3-forked-lz4ygf\n\n### Description\n\nOnce a USelectMenu is placed inside of a USlideover, the search breaks. You can't highlight the search input, you can still select items without a problem.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2907,2908,2911],{"name":2877,"color":2878},{"name":2909,"color":2910},"duplicate","cfd3d7",{"name":2880,"color":2881},3021,"USelectMenu search breaks when placed inside of a USlideover","2025-01-25T12:43:16Z","https://github.com/nuxt/ui/issues/3021",0.7237176,{"description":2918,"labels":2919,"number":2920,"owner":2866,"repository":2921,"state":2899,"title":2922,"updated_at":2923,"url":2924,"score":2925},"",[],1031,"nuxt.com","Move nuxtjs.org to v2.nuxt.com","2023-01-09T16:01:37Z","https://github.com/nuxt/nuxt.com/issues/1031",0.7297246,{"description":2927,"labels":2928,"number":2930,"owner":2866,"repository":2867,"state":2899,"title":2931,"updated_at":2932,"url":2933,"score":2934},"### Environment\r\n\r\n- Operating System: Darwin\r\n- Node Version: v22.6.0\r\n- Nuxt Version: 3.12.4\r\n- CLI Version: 3.12.0\r\n- Nitro Version: 2.9.7\r\n- Package Manager: npm@10.8.2\r\n- Builder: -\r\n- User Config: devtools, modules, compatibilityDate, imports\r\n- Runtime Modules: @nuxt/ui@2.18.4, @vueuse/nuxt@11.0.3\r\n- Build Modules: -\r\n\r\n### Version\r\n\r\nlatest\r\n\r\n### Reproduction\r\n\r\nDoes not occur on Nuxt UI docs, as that component is out of sync with the real one in the examples. However, any project using the copyable component from the DatePicker docs will experience this.\r\n\r\n### Description\r\n\r\nThe source-provided DatePicker component in the docs is broken, and always shows the Range UI. This is because it checks to see if the date is an object (which it is no matter what), rather than checking if it has a start and end attribute like in the component actually used in the example. The two components should be brought in sync (I would do this but I'm unsure how many of the modifications are for displaying in docs.)\r\n\r\n### Additional context\r\n\r\n_No response_\r\n\r\n### Logs\r\n\r\n_No response_\r\n",[2929],{"name":2877,"color":2878},2082,"Date picker broken","2024-11-07T14:11:51Z","https://github.com/nuxt/ui/issues/2082",0.7303946,{"description":2936,"labels":2937,"number":2940,"owner":2866,"repository":2866,"state":2899,"title":2941,"updated_at":2942,"url":2943,"score":2944},"\u003Ctemplate>\n \u003CNuxtLayout>\n \u003Cdiv class=\"main-wrapper\">\n \u003CHeaderComponent />\n \u003Ctransition name=\"fade\" mode=\"out-in\">\n \u003CNuxtPage />\n \u003C/transition>\n \u003CFooterComponent />\n \u003C/div>\n \u003C/NuxtLayout>\n\u003C/template>\n\n\u003Cscript setup>\n// Nuxt 3+ optimized setup\nimport HeaderComponent from '~/components/HeaderComponent.vue'\nimport FooterComponent from '~/components/FooterComponent.vue'\n\u003C/script>\n\n\u003Cstyle>\n:root {\n --bg: #0a0a0a;\n --fg: #f0f0f0;\n --accent: #00ffe7;\n --highlight: #a600ff;\n}\n\nbody {\n margin: 0;\n font-family: 'Inter', sans-serif;\n background-color: var(--bg);\n color: var(--fg);\n transition: background-color 0.3s, color 0.3s;\n}\n\n.main-wrapper {\n max-width: 1440px;\n margin: 0 auto;\n padding: 1rem;\n}\n\n.fade-enter-active, .fade-leave-active {\n transition: opacity 0.3s ease;\n}\n.fade-enter-from, .fade-leave-to {\n opacity: 0;\n}\n\na {\n color: var(--accent);\n text-decoration: none;\n}\n\na:hover {\n text-decoration: underline;\n}\n\u003C/style>",[2938],{"name":2895,"color":2939},"E99695",32033,"Update app.vue","2025-05-08T13:44:27Z","https://github.com/nuxt/nuxt/issues/32033",0.738409,{"description":2946,"labels":2947,"number":2950,"owner":2866,"repository":2867,"state":2899,"title":2951,"updated_at":2952,"url":2953,"score":2954},"### Environment\n\n- Operating System: `Darwin`\n- Node Version: `v22.13.1`\n- Nuxt Version: `3.15.4`\n- CLI Version: `3.22.2`\n- Nitro Version: `2.10.4`\n- Package Manager: `bun@1.2.2`\n- Builder: `-`\n- User Config: `compatibilityDate`, `ssr`, `extends`, `modules`, `css`, `components`, `ui`, `app`, `dayjs`, `icon`\n- Runtime Modules: `@nuxt/ui-pro@3.0.0-beta.2`, `dayjs-nuxt@2.1.11`\n- Build Modules: `-`\n\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```ts\nexport default defineAppConfig({\n ui: {\n colors: {\n violet: 'violet',\n },\n },\n});\n```\n\n```ts\nexport default defineNuxtConfig({\n ui: {\n theme: {\n colors: [\n 'primary', 'secondary', 'tertiary',\n 'info', 'success', 'warning',\n 'error', 'violet'\n ]\n }\n },\n});\n\n```\n\n### Description\n\nSetting a custom color with the same name as the color causes some kind of cylical referernce in the css vars between NuxtUIv3 and TWv4.\n\n\n\n\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2948,2949],{"name":2877,"color":2878},{"name":2880,"color":2881},3426,"Setting custom color alias the same name as the color does not work","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/3426",0.7388602,{"description":2918,"labels":2956,"number":2957,"owner":2866,"repository":2921,"state":2899,"title":2958,"updated_at":2959,"url":2960,"score":2961},[],1050,"[Code] Changelog","2023-10-10T14:45:04Z","https://github.com/nuxt/nuxt.com/issues/1050",0.73932195,{"description":2963,"labels":2964,"number":2957,"owner":2866,"repository":2898,"state":2899,"title":2966,"updated_at":2967,"url":2968,"score":2961},"### Environment\n\nWindows (11 Pro), NodeJS `v22.12.0`\n\n### Reproduction\n\nhttps://github.com/naturalprogrammer/np-nuxt-test-sample\n\n### Describe the bug\n\nWhen I run `npm run test` on Windows, I get the following output:\n\n```bash\n FAIL tests/app.test.ts [ tests/app.test.ts ]\nTypeError: The URL must be of scheme file\n ❯ node_modules/@nuxt/test-utils/dirs.js:4:17\n\n ❯ node_modules/@nuxt/test-utils/dist/e2e.mjs:4:31\n```\nAs a temporary fix, I'd update `node_modules/@nuxt/test-utils/dirs.js` as below:\n\n```ts\nimport { fileURLToPath } from 'node:url'\nimport { dirname } from 'path'\n\n// Fix for Windows path resolution\nexport const distDir = dirname(fileURLToPath(import.meta.url)) + '/dist'\n```\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2965],{"name":2895,"color":2896},"On Windows, running tests throws error \"TypeError: The URL must be of scheme file\"","2025-01-11T22:45:30Z","https://github.com/nuxt/test-utils/issues/1050",["Reactive",2970],{},["Set"],["ShallowReactive",2973],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$f16tOkEzXoWMF8qXSjhAu0f39cqqM7LR3rIQuFFuEI04":-1},"/nuxt/test-utils/893"]