\n \u003C/template>\n \u003Ctemplate #increment>\n \u003CUButton\n :loading=\"loadingInc\"\n variant=\"link\"\n icon=\"i-lucide-plus\"\n @click=\"loadingInc = true\"\n :ui=\"{\n base: 'text-gray-500 hover:text-[var(--ui-color-primary-500)] disabled:text-gray-500 cursor-pointer',\n }\"\n />\n \u003C/template>\n \u003C/UInputNumber>\n````\n\nbest,\ngregor\n\n### Additional context\n\n_No response_",[1984,1987,1990],{"name":1985,"color":1986},"enhancement","a2eeef",{"name":1988,"color":1989},"v3","49DCB8",{"name":1991,"color":1992},"triage","ffffff",3159,"nuxt","ui","open","option to disable on press behaviour for increment/decrement for inputNumber component","2025-01-27T08:00:26Z","https://github.com/nuxt/ui/issues/3159",0.7401192,{"description":2002,"labels":2003,"number":2010,"owner":1994,"repository":1995,"state":2011,"title":2012,"updated_at":2013,"url":2014,"score":2015},"### Description\n\nIf i try to define the position of the notification using the `ui` prop `\u003CUNotifications :ui=\"{position: 'top-0 right-0'}\" />`\r\nthe \"default\" configuration is applied as well (`bottom-0 end-0 `) this happens also if defining the position using the app.config.ts.. I'm assuming i'm doing it wrong.. please advice.. \r\n",[2004,2007],{"name":2005,"color":2006},"duplicate","cfd3d7",{"name":2008,"color":2009},"question","d876e3",2180,"closed","Notification position","2024-09-11T14:08:24Z","https://github.com/nuxt/ui/issues/2180",0.7121017,{"description":2017,"labels":2018,"number":2022,"owner":1994,"repository":2023,"state":2011,"title":2024,"updated_at":2025,"url":2026,"score":2027},"### Environment\n\n- Operating System: Windows_NT\r\n- Node Version: v18.19.0\r\n- Nuxt Version: 3.11.1\r\n- CLI Version: 3.11.1\r\n- Nitro Version: 2.9.4\r\n- Package Manager: npm@10.2.3\r\n- Builder: -\r\n- User Config: devtools, modules\r\n- Runtime Modules: @nuxt/test-utils/module\n\n### Reproduction\n\nhttps://github.com/chronicadventure/nuxt-bug\r\n\r\njust run `npm test` and the console will error out. *Note* you don't even need an actual test, just the import causes the entire file to fail.\n\n### Describe the bug\n\nImporting `import { mockNuxtImport } from '@nuxt/test-utils/runtime'` as stated in the docs causes the entire test file to fail.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\nDEV v1.4.0 C:/Users/AdrianCampos/BugRepo/repro\r\n\r\n ❯ tests/random.nuxt.test.js (0)\r\n\r\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯ Failed Suites 1 ⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯\r\n\r\n FAIL tests/random.nuxt.test.js [ tests/random.nuxt.test.js ]\r\nError: Failed to load url #imports (resolved id: #imports) in C:/Users/AdrianCampos/BugRepo/node_modules/@nuxt/test-utils/dist/runtime-utils/index.mjs. Does the file exist?\r\n ❯ loadAndTransform ../node_modules/vite/dist/node/chunks/dep-B-u6xNiR.js:53832:21\r\n\r\n⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯⎯[1/1]⎯\r\n\r\n Test Files 1 failed (1)\r\n Tests no tests\r\n Start at 21:58:52\r\n Duration 2.22s (transform 69ms, setup 0ms, collect 0ms, tests 0ms, environment 0ms, prepare 846ms)\r\n\r\n\r\n FAIL Tests failed. Watching for file changes...\r\n press h to show help, press q to quit\n```\n",[2019],{"name":2020,"color":2021},"pending triage","5D08F5",800,"test-utils","Failed to load url #imports after importing mockNuxtImport","2024-05-26T19:14:39Z","https://github.com/nuxt/test-utils/issues/800",0.71647763,{"description":2029,"labels":2030,"number":2032,"owner":1994,"repository":1995,"state":2011,"title":2033,"updated_at":2034,"url":2035,"score":2036},"### Description\r\n\r\nFrom the documentation, it does not seem apparent, but it is a useful and common feature to have hover animations over each row in the table with a pointer cursor. The convention is to do something (like go to a separate page) if the user clicks anywhere in the entire row.\r\n\r\n```html\r\n\u003Ctemplate>\r\n \u003CUTable :columns=\"columns\" :rows=\"people\" @click=\"handleRowClick\" />\r\n\u003C/template>\r\n\r\n\u003Cscript setup lang=\"ts\">\r\nconst handleRowClick = (person: any): void => {\r\n navigateTo(`/people/${person.id}`)\r\n}\r\n\r\nconst columns = [{\r\n key: 'id',\r\n label: 'ID'\r\n}, {\r\n key: 'name',\r\n label: 'User name'\r\n}, {\r\n key: 'title',\r\n label: 'Job position'\r\n}, {\r\n key: 'email',\r\n label: 'Email'\r\n}, {\r\n key: 'role'\r\n}]\r\n\r\nconst people = [{\r\n id: 1,\r\n name: 'Lindsay Walton',\r\n title: 'Front-end Developer',\r\n email: 'lindsay.walton@example.com',\r\n role: 'Member'\r\n}, {\r\n id: 2,\r\n name: 'Courtney Henry',\r\n title: 'Designer',\r\n email: 'courtney.henry@example.com',\r\n role: 'Admin'\r\n}]\r\n\u003C/script>\r\n```\r\n\r\n### Additional context\r\n\r\n_No response_",[2031],{"name":1985,"color":1986},2156,"[UTable] should have a field to enable hover animations and make them clickable","2024-09-10T16:29:52Z","https://github.com/nuxt/ui/issues/2156",0.719286,{"description":2038,"labels":2039,"number":2043,"owner":1994,"repository":1995,"state":2011,"title":2044,"updated_at":2045,"url":2046,"score":2047},"### Environment\n\n------------------------------\n- Operating System: Linux\n- Node Version: v18.20.3\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.5\n- Package Manager: npm@10.2.3\n- Builder: -\n- User Config: devtools, modules\n- Runtime Modules: @nuxt/ui@2.21.0\n- Build Modules: -\n------------------------------\n\n### Version\n\nv2.21.0\n\n### Reproduction\n\nhttps://stackblitz.com/github/nuxt/starter/tree/ui?file=package.json\n\n### Description\n\n`npm run build` on the latest nuxt v3.16 on UI v2.21.0 throws the following error:\n\n`[17:41:35] ERROR .nuxt/dist/server/node_modules/_nuxt/ui/dist/runtime/components/elements/Link.vue.mjs (2:18): \"diff\" is not exported by \"node_modules/ohash/dist/index.mjs\", imported by \".nuxt/dist/server/node_modules/_nuxt/ui/dist/runtime/components/elements/Link.vue.mjs\".`",[2040],{"name":2041,"color":2042},"bug","d73a4a",3486,"Generating a production build with nuxt `3.16` throws `ohash` error","2025-03-12T09:19:23Z","https://github.com/nuxt/ui/issues/3486",0.72378737,{"description":2049,"labels":2050,"number":2053,"owner":1994,"repository":2023,"state":2011,"title":2054,"updated_at":2055,"url":2056,"score":2057},"### Environment\r\n\r\nN/A\r\n\r\n### Reproduction\r\n\r\nN/A\r\n\r\n### Describe the bug\r\n\r\nsetup fails\r\n\r\n### Additional context\r\n\r\ncc: @tobiasdiez \r\n\r\nHere are the lines\r\n\r\nhttps://github.com/nuxt/test-utils/blob/86d09da23a2d7ba6b0f3dcf2e9ca8c21655a5218/src/core/server.ts#L17-L71\r\n\r\noffending line for me was 57, but could easily be any other lines\r\n\r\nhttps://github.com/nuxt/test-utils/commit/c4df41db447afe6101df10fbe763b198b12da86d\r\n\r\nis the offending commit \r\n\r\nspecifically this change\r\n\r\nhttps://github.com/nuxt/test-utils/commit/c4df41db447afe6101df10fbe763b198b12da86d#diff-84e9c1e393b43cee97ce99909a2db3a09bf9a2435daa2066b01a838e206edec3\r\n\r\n### Logs\r\n\r\n```shell-script\r\nN/A\r\n```\r\n",[2051,2052],{"name":2041,"color":2042},{"name":2020,"color":2021},918,"`ctx.nuxt` does not exist when `build: false` in setup","2024-12-05T14:26:41Z","https://github.com/nuxt/test-utils/issues/918",0.72792244,{"labels":2059,"number":2065,"owner":1994,"repository":1994,"state":2011,"title":2066,"updated_at":2067,"url":2068,"score":2069},[2060,2062],{"name":2020,"color":2061},"E99695",{"name":2063,"color":2064},"2.x","d4c5f9",8380,"Markdown table not applying","2023-01-22T15:38:23Z","https://github.com/nuxt/nuxt/issues/8380",0.7279751,{"description":2071,"labels":2072,"number":2075,"owner":1994,"repository":1995,"state":2011,"title":2076,"updated_at":2077,"url":2078,"score":2079},"### Environment\n\nmodal.close() dont work,and cant get formref\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.10\n\n### Reproduction\n\nmodal.close() dont work\n\n### Description\n\nmodal.close() dont work,and cant get formref\n\n### Additional context\n\nmodal.close() dont work,and cant get formref\n\n### Logs\n\n```shell-script\nmodal.close() dont work,and cant get formref\n```",[2073,2074],{"name":2041,"color":2042},{"name":1988,"color":1989},2894,"modal.close() dont work,and cant get formref","2025-01-25T13:12:30Z","https://github.com/nuxt/ui/issues/2894",0.72933364,{"description":2081,"labels":2082,"number":2090,"owner":1994,"repository":1994,"state":2011,"title":2091,"updated_at":2092,"url":2093,"score":2094},"### Environment\n\n-\n\n### Reproduction\n\nhttps://nuxt.com/modules/tailwindcss\r\nhttps://nuxt.com/modules/nuxt-viewport\n\n### Describe the bug\n\nUsing the light theme we get code highlighting bug\r\n\u003Cimg width=\"1048\" alt=\"image\" src=\"https://user-images.githubusercontent.com/24970784/202643486-d93875f9-5281-4b09-9ac0-f9c964502058.png\">\r\n\u003Cimg width=\"1046\" alt=\"image\" src=\"https://user-images.githubusercontent.com/24970784/202643580-8d1c222f-3c4c-456a-b00a-a9746e1bd92e.png\">\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2083,2086,2089],{"name":2084,"color":2085},"documentation","5319e7",{"name":2087,"color":2088},"3.x","29bc7f",{"name":2020,"color":2061},15531,"docs: markdown in modules with light theme are broken","2023-01-19T17:53:18Z","https://github.com/nuxt/nuxt/issues/15531",0.73042715,{"description":2096,"labels":2097,"number":2101,"owner":1994,"repository":1994,"state":2011,"title":2102,"updated_at":2092,"url":2103,"score":2104},"### Environment\n\nChromium Engine Version 107.0.5304.110\n\n### Reproduction\n\nhttps://nuxt.com/docs/getting-started/seo-meta\n\n### Describe the bug\n\nMarkdown render code block badly. Missing colon and question mark.\r\n\r\n\u003Cimg width=\"887\" alt=\"image\" src=\"https://user-images.githubusercontent.com/41265413/202634530-be61a161-227c-4f7a-8f4a-b7e1fd616c5e.png\">\r\n\u003Cimg width=\"448\" alt=\"image\" src=\"https://user-images.githubusercontent.com/41265413/202634544-14f76ad0-990b-40c3-a648-cb2e19a29bd0.png\">\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2098,2099,2100],{"name":2084,"color":2085},{"name":2087,"color":2088},{"name":2020,"color":2061},15530,"[docs] markdown render code block badly","https://github.com/nuxt/nuxt/issues/15530",0.7316914,["Reactive",2106],{},["Set"],["ShallowReactive",2109],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"l1DP4_AnxFsb_hNc07UhqYkU9oCXwivxEs7_v8YxmoQ":-1},"/nuxt/ui/3262"]