work in Storybook? Thank you",[2881],{"name":2882,"color":2883},"question","d876e3",77,"icon","How do we make nuxt-icon work in Storybook?","2025-01-17T10:54:58Z","https://github.com/nuxt/icon/issues/77",0.7693621,{"description":2891,"labels":2892,"number":2900,"owner":2871,"repository":2901,"state":2902,"title":2903,"updated_at":2904,"url":2905,"score":2906},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.14.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: npm@10.9.2\n- Builder: -\n- User Config: devtools, modules, components, css, compatibilityDate\n- Runtime Modules: @nuxt/ui@3.0.0, @pinia/nuxt@0.10.1, compodium@0.1.0-beta.5\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0\n\n### Reproduction\n\n```vue\n\u003Ctemplate>\n \u003Cdiv>\n \u003CUInputMenu :items=\"idList\" v-model=\"value\" />\n \u003C/div>\n\u003C/template>\n\n\u003Cscript lang=\"ts\" setup>\nconst value = ref(0)\nconst idList = ref([168, 170, 203])\n\u003C/script>\n```\n\n### Description\n\nIf adding array of numbers to InputMenu the menu isn't closing after choosing a number.\nOnly way to close it is double-clicking on the dropdown arrow.\nThe Console shows an error in useFilter.\n\n### Additional context\n\n\n\n\n\n### Logs\n\n```shell-script\nUncaught (in promise) TypeError: string.normalize is not a function\n at contains (useFilter.js?v=87101672:23:21)\n at InputMenu.vue:114:18\n at wrappedFn (reactivity.esm-bundler.js?v=87101672:820:19)\n at Array.filter (\u003Canonymous>)\n at apply (reactivity.esm-bundler.js?v=87101672:828:27)\n at Proxy.filter (reactivity.esm-bundler.js?v=87101672:720:12)\n at InputMenu.vue:112:50\n at Array.map (\u003Canonymous>)\n at ComputedRefImpl.fn (InputMenu.vue:112:27)\n at refreshComputed (reactivity.esm-bundler.js?v=87101672:353:29)\n```",[2893,2894,2897],{"name":2868,"color":2869},{"name":2895,"color":2896},"v3","49DCB8",{"name":2898,"color":2899},"triage","ffffff",3606,"ui","closed","Numbers in InputMenu component cause error in filter","2025-03-24T20:38:15Z","https://github.com/nuxt/ui/issues/3606",0.7185211,{"description":2908,"labels":2909,"number":2910,"owner":2871,"repository":2885,"state":2902,"title":2911,"updated_at":2912,"url":2913,"score":2914},"Hello,\nadding your package to the a repository for deploying breaks the Rollup build step.\n\n## Minimal reproducible example\n```\nnode --version\nv20.17.0\npnpm --version\n9.11.0\n```\n- `pnpm create cloudflare@latest my-nuxt-app --framework=nuxt`\n- `cd my-nuxt-app`\n- `pnpx nuxi module add icon` (taken from your doc)\n- `pnpm build`\nI get the following error:\n\n```\n[nitro 23:41:30] ERROR RollupError: .nuxt/dist/server/_nuxt/prompt-DuW0Lom1.js (1:9): \"stdin\" is not exported by \"node_modules/.pnpm/unenv@1.10.0/node_modules/unenv/runtime/node/process/index.mjs\", imported by \".nuxt/dist/server/_nuxt/prompt-DuW0Lom1.js\".\n\n\n1: import { stdin, stdout } from \"node:process\";\n ^\n2: import f from \"node:readline\";\n3: import { WriteStream } from \"node:tty\";\n\n\n[23:41:30] ERROR .nuxt/dist/server/_nuxt/prompt-DuW0Lom1.js (1:9): \"stdin\" is not exported by \"node_modules/.pnpm/unenv@1.10.0/node_modules/unenv/runtime/node/process/index.mjs\", imported by \".nuxt/dist/server/_nuxt/prompt-DuW0Lom1.js\".\n```\n\nThanks.",[],274,"Rollup issue - Adding the package breaks the build step","2024-10-28T13:36:54Z","https://github.com/nuxt/icon/issues/274",0.7408689,{"description":2916,"labels":2917,"number":2870,"owner":2871,"repository":2921,"state":2902,"title":2922,"updated_at":2923,"url":2924,"score":2877},"Blocked by #720 ",[2918],{"name":2919,"color":2920},"enhancement","1ad6ff","nuxt.com","[Community] Nuxters filter to select community only","2022-07-25T13:34:54Z","https://github.com/nuxt/nuxt.com/issues/684",{"description":2926,"labels":2927,"number":2929,"owner":2871,"repository":2921,"state":2902,"title":2930,"updated_at":2931,"url":2932,"score":2933},"Any clue @danielroe?\n\n",[2928],{"name":2919,"color":2920},958,"Tell html-validtor to ignore module pages","2023-01-04T13:47:34Z","https://github.com/nuxt/nuxt.com/issues/958",0.7544846,{"description":2935,"labels":2936,"number":2937,"owner":2871,"repository":2921,"state":2902,"title":2938,"updated_at":2939,"url":2940,"score":2941},"",[],990,"[Docs] Add pagination","2023-04-04T08:06:43Z","https://github.com/nuxt/nuxt.com/issues/990",0.7556781,{"description":2943,"labels":2944,"number":2948,"owner":2871,"repository":2901,"state":2902,"title":2949,"updated_at":2950,"url":2951,"score":2952},"### Description\n\nCurrently, when UDrawer is open, it prevents scrolling of the underlying page content, which creates a poor user experience in certain use cases. For example, in my application, I have a form that users need to fill out, and a drawer that shows results. Users should be able to reference the results while still being able to scroll through and edit the form.\n\n## Feature request\nAdd a new prop like `prevent-scroll` (defaulting to `true` for backward compatibility) that when set to `false` would allow the page content to be scrolled while the drawer is open.\n\n## Use case\n- Forms with reference information in a drawer\n- Applications where users need to view drawer content while still interacting with the main page\n- Mobile interfaces where locking scroll can feel restrictive\n\n## Example of desired usage:\n```vue\n\u003CUDrawer \n v-model:open=\"isOpen\" \n :prevent-scroll=\"false\"\n>\n \u003C!-- Drawer content -->\n\u003C/UDrawer>\n```\n\nThis would enhance the flexibility of the UDrawer component while maintaining its current behavior by default.\n\n### Additional context\n\n_No response_",[2945,2947],{"name":2919,"color":2946},"a2eeef",{"name":2895,"color":2896},3665,"UDrawer: Add option to allow page scrolling while UDrawer is open","2025-03-24T10:40:24Z","https://github.com/nuxt/ui/issues/3665",0.76200753,{"description":2954,"labels":2955,"number":2956,"owner":2871,"repository":2885,"state":2902,"title":2957,"updated_at":2958,"url":2959,"score":2960},"In `v0.6.5` this works:\r\n\r\n```ts\r\nnuxtIcon: {\r\n aliases: {\r\n 'aws': 'IconAWS',\r\n // ...\r\n }\r\n}\r\n```\r\n\r\nif there is a component in global named `IconAWS.vue`, but in `v0.6.6` it breaks. The reason is the uppercase naming, if I rename the component and the alias to `IconAws.vue` it works.",[],125,"v0.6.6 has problems with uppercase alias names","2023-12-24T15:42:29Z","https://github.com/nuxt/icon/issues/125",0.76549494,{"description":2962,"labels":2963,"number":2971,"owner":2871,"repository":2872,"state":2902,"title":2972,"updated_at":2973,"url":2974,"score":2975},"------------------------------\r\n- Operating System: Linux\r\n- Node Version: v18.18.0\r\n- Nuxt Version: 3.8.0\r\n- CLI Version: 3.9.1\r\n- Nitro Version: 2.7.0\r\n- Package Manager: npm@10.2.0\r\n- Builder: -\r\n- User Config: devtools, css, routeRules, modules, postcss\r\n- Runtime Modules: nuxt-swiper@1.2.2, @nuxt/image@1.0.0, nuxt-icon@0.5.0, nuxt-vitest@0.11.0\r\n- Build Modules: -\r\n------------------------------\r\n\r\nI setup my project to add tests. But when I execute `npx vitest run` I have this issue:\r\n\r\n\r\n\r\nHere is my `vitest.config.ts`:\r\n```ts\r\nimport { defineVitestConfig } from 'nuxt-vitest/config';\r\n\r\nexport default defineVitestConfig({\r\n test: {\r\n environment: 'nuxt',\r\n dir: 'tests',\r\n coverage: {\r\n reportsDirectory: 'coverage',\r\n provider: 'v8',\r\n reporter: ['text', 'json', 'html'],\r\n },\r\n },\r\n});\r\n```\r\n",[2964,2965,2968],{"name":2868,"color":2869},{"name":2966,"color":2967},"help wanted","008672",{"name":2969,"color":2970},"vitest-environment","b60205",618,"Nuxt instance is unavailable when using with `\u003CNuxtImg>`","2023-12-05T17:33:29Z","https://github.com/nuxt/test-utils/issues/618",0.76886326,["Reactive",2977],{},["Set"],["ShallowReactive",2980],{"$fTRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"$fZ7hjHSyAdhB2NEdi86HUcbTcyXXeND99L5ToHKARe4Y":-1},"/nuxt/ui/2207"]