\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.6849832,{"description":2002,"labels":2003,"number":2004,"owner":1994,"repository":2005,"state":1996,"title":2006,"updated_at":2007,"url":2008,"score":2009},"Hi team, \r\n\r\nThis time i founded this vulnerability in your website: \r\nhttps://nuxtjs.org/\r\n\r\n\r\n\r\nClick jacking (User Interface redress attack, UI redress attack, UI redressing) is a malicious technique of tricking a Web user into clicking on something different from what the user perceives they are clicking on, thus potentially revealing confidential information or taking control of their computer while clicking on seemingly innocuous web pages.\r\n\r\nThe server didn't return an X-Frame-Options header which means that this website could be at risk of a click jacking attack. The X-Frame-Options HTTP response header can be used to indicate whether or not a browser should be allowed to render a page in a \u003Cframe> or \u003Ciframe>. Sites can use this to avoid click jacking attacks, by ensuring that their content is not embedded into other sites.\r\n\r\nThis vulnerability affects Web Server.\r\n\r\nHere are the steps to reproduce the vulnerability:\r\n\r\n1.open notepad and paste the following code.\r\n\u003C!DOCTYPE HTML>\r\n\u003Chtml lang=\"en-US\">\r\n\u003Chead>\r\n\u003Cmeta charset=\"UTF-8\">\r\n\u003Ctitle>i Frame\u003C/title>\r\n\u003C/head>\r\n\u003Cbody>\r\n\u003Ch3>This is clickjacking vulnerable\u003C/h3>\r\n\u003Ciframe src=\" https://nuxtjs.org/ \" frameborder=\"2 px\" height=\"500px\" width=\"500px\">\u003C/iframe>\r\n\u003C/body>\r\n\u003C/html>\r\n\r\n2.save it as \u003Canyname>.html eg s.html\r\n\r\n3.and just simply open that...\r\n\r\nOR\r\nCopy the link below and paste on your updated browser (Chrome,Firefox).\r\nhttps://clickjacker.io/test?url=https://nuxtjs.org/\r\nAs far as i know this data is enough to prove that your site is vulnerable to Click jacking\r\naccording to OWASP its more than enough.\r\n\r\nhttps://www.owasp.org/index.php/Testing_for_Clickjacking_(OWASP-CS-004) \r\n\r\nSOLUTION: \r\n\r\nhttps://www.owasp.org/index.php/Clickjacking_Defense_Cheat_Sheet\r\n\r\nCheck this out and here is the solution for that.\r\n \r\n\r\nI Hope that you will fix this issue as soon as possible. Looking forward to hear from you. Thank you\r\n\r\nSincerely,\r\nHassan Raza\r\n",[],1456,"nuxt.com","Vulnerability type Click Jacking","2023-12-27T17:14:15Z","https://github.com/nuxt/nuxt.com/issues/1456",0.74420404,{"description":2011,"labels":2012,"number":2017,"owner":1994,"repository":1995,"state":2018,"title":2019,"updated_at":2020,"url":2021,"score":2022},"### Environment\n\nNuxt project info: \r\n\r\n------------------------------\r\n- Operating System: Windows_NT\r\n- Node Version: v18.20.4\r\n- Nuxt Version: 3.13.2\r\n- CLI Version: 3.14.0\r\n- Nitro Version: 2.9.7\r\n- Package Manager: pnpm@9.6.0\r\n- Builder: -\r\n- User Config: -\r\n- Runtime Modules: -\r\n- Build Modules: -\r\n------------------------------\n\n### Version\n\n3.0.0-alpha.4\n\n### Reproduction\n\nI don't get to seem the reproduction work in stackblitz, so here's a `setup.sh` that will demonstrate the problem.\r\n\r\n```setup.sh\r\n#!/bin/bash\r\n\r\nset -xe\r\n\r\n# Init nuxt\r\npnpm dlx nuxi@latest init --packageManager pnpm --no-gitInit nuxt-proj\r\n\r\n# Make it a workspace\r\nrm -Rf nuxt-proj/node-modules nuxt-proj/pnpm-lock.yaml\r\necho -e 'packages:\\n - \"nuxt-proj\"' > pnpm-workspace.yaml\r\n\r\n# Add @nuxt/ui next\r\ncd nuxt-proj\r\npnpm add @nuxt/ui@next\r\npnpm add -D typescript\r\npnpm install\r\n\r\n# Add @nuxt/ui module\r\ncat \u003C\u003CEOF > nuxt.config.ts\r\nexport default defineNuxtConfig({\r\n compatibilityDate: '2024-04-03',\r\n modules: [\"@nuxt/ui\"],\r\n devtools: { enabled: true }\r\n})\r\nEOF\r\n\r\n# Use nuxt ui in app.vue\r\ncat \u003C\u003CEOF > app.vue\r\n\u003Ctemplate>\r\n \u003Cdiv>\r\n \u003CUButton>Button\u003C/UButton>\r\n \u003C/div>\r\n\u003C/template>\r\nEOF\r\n\r\n# Run\r\npnpm dev\r\n```\n\n### Description\n\nWhen `@nuxt/ui` 3 is used in a pnpm workspace project, the `run dev` fails on error: \"Pre-transform error: [@vue/compiler-sfc] Failed to resolve extends base type.\"\r\n\r\nWhen the workspace is removed (remove `pnpm-workspace.yaml` and run `pnpm install` in the project folder) the run works. Having `typescript` in `devDependencies` (as said in https://github.com/nuxt/ui/issues/1289#issuecomment-2345702060) does not help.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n> nuxt dev\r\n\r\nNuxt 3.13.2 with Nitro 2.9.7 \r\n \r\n ➜ Local: http://localhost:3000/\r\n ➜ Network: use --host to expose\r\n ➜ DevTools: press Shift + Alt + D in the browser (v1.5.1) \r\n\r\nℹ Nuxt Icon server bundle mode is set to local \r\n✔ Vite client built in 41ms \r\n\r\n ERROR Pre-transform error: [@vue/compiler-sfc] Failed to resolve extends base type. \r\nIf this previously worked in 3.2, you can instruct the compiler to ignore this extend by adding /* @vue-ignore */ before it, for example:\r\n\r\ninterface Props extends /* @vue-ignore */ Base {}\r\n\r\nNote: both in 3.2 or with the ignore, the properties in the base type are treated as fallthrough attrs at runtime.\r\n\r\nC:/root/nuxt-proj/node_modules/.pnpm/@nuxt+ui@3.0.0-alpha.4_ioredis@5.4.1_magicast@0.3.5_postcss@8.4.47_rollup@4.23.0_vite@5.4.8_@_ytyqagzq6elb226bn7bwxmetxq/node_modules/@nuxt/ui/dist/runtime/components/Button.vue\r\n57 | const formLoading = inject\u003CRef\u003Cboolean> | undefined>(formLoadingInjectionKey, undefined)\r\n58 |\r\n59 | async function onClickWrapper(event: MouseEvent) {\r\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n60 | loadingAutoState.value = true\r\n | ^^^\r\n61 | const callbacks = Array.isArray(props.onClick) ? props.onClick : [props.onClick]\r\n\r\n✔ Vite server built in 1581ms \r\n✔ Nuxt Nitro server built in 1258 ms \r\nℹ Vite client warmed up in 1ms \r\nℹ Vite server warmed up in 827ms\n```\n",[2013,2016],{"name":2014,"color":2015},"bug","d73a4a",{"name":1988,"color":1989},2291,"closed","When running in pnpm workspace: \"Pre-transform error: [@vue/compiler-sfc] Failed to resolve extends base type.\"","2024-10-02T12:51:09Z","https://github.com/nuxt/ui/issues/2291",0.712961,{"description":2024,"labels":2025,"number":2028,"owner":1994,"repository":1995,"state":2018,"title":2029,"updated_at":2030,"url":2031,"score":2032},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\nI would like to keep the behavior of the popover opening only on click, but also allow it to close when something in the content slot is clicked.\n\nSuggestion:\n``` \u003CUPopover :content=\"{align: 'start'}\">\n \u003Ctemplate #default=\"{open}\">\n ....\n \u003C/template>\n \u003Ctemplate #content=\"{close}\">\n \u003Cdiv class=\"p-2\">\n \u003Cul class=\"flex flex-col gap-1 min-w-[150px]\">\n \u003Cli v-for=\"assistant in assistantsList\"\n :key=\"assistant.documentUuid\"\n @click=\"assistantSelected = assistant; close()\"\n class=\"p-1 rounded-md bg-neutral-800/40 hover:bg-neutral-800 cursor-pointer\">\n \u003Cp class=\"text-sm\">{{ assistant.name }}\u003C/p>\n \u003C/li>\n \u003C/ul>\n \u003C/div>\n \u003C/template>\n \u003C/UPopover>```\n\n### Additional context\n\n_No response_",[2026,2027],{"name":1985,"color":1986},{"name":1988,"color":1989},2789,"[v3][Popover] Close method exposed to the `content` slot","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/2789",0.7160262,{"description":2034,"labels":2035,"number":2039,"owner":1994,"repository":2040,"state":2018,"title":2041,"updated_at":2042,"url":2043,"score":2044},"### 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",[2036],{"name":2037,"color":2038},"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.7201833,{"description":2046,"labels":2047,"number":2052,"owner":1994,"repository":2040,"state":2018,"title":2053,"updated_at":2054,"url":2055,"score":2056},"### 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).",[2048,2051],{"name":2049,"color":2050},"question","d876e3",{"name":2037,"color":2038},758,"Mock websocket server for unit tests","2024-02-19T09:43:58Z","https://github.com/nuxt/test-utils/issues/758",0.72416174,{"description":2058,"labels":2059,"number":2062,"owner":1994,"repository":1995,"state":2018,"title":2063,"updated_at":2064,"url":2065,"score":2066},"### Description\n\nHey!\n\nIt would be nice to have the primary/secondary/neutral/etc colours defined in `app.config.ts` directly as tailwind variables (ex: text-primary-500)\n\nRight now we have to define the colours both in `app.config.ts` and `tailwind.config.js` to be able to do that. (the new `main.css` would require to create a variable for each sub-colour manually so not worth using it) \n\nFor `neutral`, since it's a tailwind colour, it could be named `text-neutr-500`\nOr maybe name all colours with something like `text-Uneutral-500`\n\n\n### Additional context\n\n_No response_",[2060,2061],{"name":1985,"color":1986},{"name":1988,"color":1989},2948,"Add theme colors as tailwind variables","2025-02-06T16:29:04Z","https://github.com/nuxt/ui/issues/2948",0.7266502,{"description":2068,"labels":2069,"number":2075,"owner":1994,"repository":1995,"state":2018,"title":2076,"updated_at":2077,"url":2078,"score":2079},"### Description\n\nI really love all the work that went into this, but it's currently connected to vue-router for `Link` and `Pagination` components. I would love to see these become optional dependencies so it can be used with projects that do not use `vue-router`.\n\nMaybe there is some way to stub out the link components to enable support for Inertia \\ default HTML?",[2070,2071,2072],{"name":2049,"color":2050},{"name":1988,"color":1989},{"name":2073,"color":2074},"vue","42b883",3001,"How likely is it that we'll see a routerless version?","2025-04-14T08:47:28Z","https://github.com/nuxt/ui/issues/3001",0.7266918,{"description":2081,"labels":2082,"number":2085,"owner":1994,"repository":1995,"state":2018,"title":2086,"updated_at":2087,"url":2088,"score":2089},"### Environment\n\n------------------------------\n- Operating System: Windows_NT\n- Node Version: v20.9.0\n- Nuxt Version: 3.13.1\n- CLI Version: 3.13.1\n- Nitro Version: 2.9.7\n- Package Manager: npm@10.9.0\n- Builder: -\n- User Config: devtools, modules, css, ui, colorMode, compatibilityDate, icon, sourcemap, experimental, nitro, future, pwa, routeRules, spaLoadingTemplate, runtimeConfig\n- Runtime Modules: @nuxt/ui@3.0.0-alpha.9, @vueuse/nuxt@10.11.1, @nuxtjs/mdc@0.6.1, @formkit/auto-animate/nuxt@0.8.2, @vite-pwa/nuxt@0.10.5\n- Build Modules: -\n------------------------------\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0-alpha.9\n\n### Reproduction\n\n`style tag`\n\n`Use`\n\n`debug`\n\n\n\n### Description\n\nSorry, I don't know if it's a bad configuration on my part, however the styles in which I use @apply don't work for me.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2083,2084],{"name":2014,"color":2015},{"name":1988,"color":1989},2763,"postcss style not applying","2024-12-05T13:48:59Z","https://github.com/nuxt/ui/issues/2763",0.7284297,{"description":2091,"labels":2092,"number":2098,"owner":1994,"repository":2005,"state":2018,"title":2099,"updated_at":2100,"url":2101,"score":2102},"Update [Webreinvent partner page](https://nuxt.com/support/agencies/webreinvent) with content below :\n\nWebReinvent has 12+ years of experience building software and a team of 50+ software professionals including software developers, UI/UX designers, testers, DevOps, project managers, etc. The team is well-versed in the Nuxt ecosystem and has delivered multiple high-performance web apps, dashboards, real-time apps, multi-tenant SaaS applications, etc.\n\nWe are one of the most process-driven companies and we love to follow industry standards. Some of them are managing git repo, code review/audits, deploying new releases via CI/CD, automated software testing, maintaining detailed technical documentation, application performance monitoring, etc. We have been delivering MVP to enterprise-level software products from startup to MSME.\n\nContact us to build your MVP fast or migrate your legacy software to Nuxt or maintain your existing software or scale your software to the enterprise level. We're here to help.\n",[2093,2095],{"name":1985,"color":2094},"1ad6ff",{"name":2096,"color":2097},"marketing","f5c828",1156,"Update Webreinvent partner page","2023-06-06T12:14:42Z","https://github.com/nuxt/nuxt.com/issues/1156",0.7307916,["Reactive",2104],{},["Set"],["ShallowReactive",2107],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"1Tf5EU9T-H69uJClfQWxiWD5K-ka-SK-J9w7BuRlH0k":-1},"/nuxt/ui/3068"]