\n \u003C/div>\n[...]\n\u003C/template>\n```\n\nThe icon (which is and remains black) does not accept any color, while any standard implementation (icon from a downloaded icon set like mdi) does indeed change the color of an icon.\n\n(Just in case this is not an error: What kind of \"treatment\" do I have to apply to make my icon accept color?)",[],307,"custom local collections do not accept props like color","2024-11-23T10:19:42Z","https://github.com/nuxt/icon/issues/307",0.63412434,{"description":2043,"labels":2044,"number":2045,"owner":1991,"repository":2046,"state":2029,"title":2047,"updated_at":2048,"url":2049,"score":2050},"Hello there!\r\n\r\nEvery since your beautiful new website update, our Nuxt 3 module, `sidebase/nuxt-auth` has been displaying the message: \"This module is not yet compatible with Nuxt 3\".\r\n\r\n\r\n\r\nInside of our [file in this repo](https://github.com/nuxt/modules/blob/main/modules/sidebase-auth.yml), we do list that we support Nuxt 3. How do we resolve this issue? Is there something we need to update here to ensure this message goes away? \r\n\r\nThank you very much!",[],1395,"nuxt.com","Since website update, some Nuxt 3 modules, display they are not compatible with Nuxt 3","2023-10-25T10:25:05Z","https://github.com/nuxt/nuxt.com/issues/1395",0.64563185,{"description":2052,"labels":2053,"number":2054,"owner":1991,"repository":2055,"state":2029,"title":2056,"updated_at":2057,"url":2058,"score":2059},"Docs: https://posthog.com/docs/libraries/js\r\n\r\nFor reference this is how I currently instrument it:\r\n\r\n```\r\nimport { Capacitor } from '@capacitor/core'\r\nimport { posthog } from 'posthog-js'\r\nimport { appVersion } from '~/shared/version'\r\n\r\nexport default defineNuxtPlugin({\r\n name: 'analytics',\r\n setup() {\r\n if (import.meta.env.TEST) {\r\n return\r\n }\r\n\r\n const config = useRuntimeConfig()\r\n const router = useRouter()\r\n\r\n if (config.public.analyticsReportingEnabled) {\r\n posthog.init(config.public.posthog.dsn, {\r\n capture_pageview: false,\r\n capture_pageleave: true,\r\n api_host: config.public.posthog.apiHost,\r\n disable_session_recording: true,\r\n advanced_disable_decide: true,\r\n advanced_disable_feature_flags: true,\r\n advanced_disable_feature_flags_on_first_load: true,\r\n enable_recording_console_log: false,\r\n autocapture: false\r\n })\r\n\r\n posthog.register({\r\n environment: config.public.appEnvironment,\r\n countryCode: config.public.appCountryCode,\r\n release: appVersion,\r\n platform: Capacitor.getPlatform(),\r\n native: Capacitor.isNativePlatform()\r\n })\r\n\r\n router.afterEach(to => {\r\n posthog.capture('$pageview', {\r\n $current_url: to.fullPath\r\n })\r\n })\r\n }\r\n\r\n return {\r\n provide: {\r\n analytics: posthog\r\n }\r\n }\r\n }\r\n})\r\n```\r\n\r\nand after the user has logged in or we detect they are already logged in on page load:\r\n\r\n```\r\nthis.analytics.identify(userId, {\r\n email\r\n roles\r\n})\r\n ```\r\n \r\n Thanks!\r\n\r\n",[],206,"scripts","Suggestion: Posthog [analytics]","2024-09-03T16:06:49Z","https://github.com/nuxt/scripts/issues/206",0.6529685,{"description":2061,"labels":2062,"number":2067,"owner":1991,"repository":2068,"state":2029,"title":2069,"updated_at":2070,"url":2071,"score":2072},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\n[CommandPalette](https://ui3.nuxt.dev/components/command-palette) is great but I wish it could display only an input by default and then open the content in a popper when clicking in the input. I think this is currently not possible but a very common use case. \n\nThis is what I would like to archive, screenshots from Shopify:\n\n\n\n\n\n\n\n### Additional context\n\n_No response_",[2063,2064],{"name":1985,"color":1986},{"name":2065,"color":2066},"v3","49DCB8",2832,"ui","v3 CommandPalette: Open only content within popper","2024-12-05T13:24:12Z","https://github.com/nuxt/ui/issues/2832",0.6547285,{"description":2074,"labels":2075,"number":2080,"owner":1991,"repository":2068,"state":2029,"title":2081,"updated_at":2082,"url":2083,"score":2084},"### Environment\n\n\n\nI get this error anytime I try and use \u003CUInput /> even without any other code.\n\n### Version\n\nv3.0.0-alpha.5\n\n### Reproduction\n\n`\u003Ctemplate>\n \u003CUContainer>\n \u003CUForm :schema=\"schema\" :state=\"state\" class=\"space-y-4\" @submit=\"onSubmit\">\n \u003CUFormField label=\"Code\" name=\"Code\"\n >\u003CUInput v-model=\"state.code\" />\n \u003C/UFormField>\n \u003C/UForm>\n \u003C/UContainer>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nimport { z } from 'zod';\nimport type { FormSubmitEvent } from '#ui/types';\n\nconst supabase = useSupabaseClient();\nconst toast = useToast();\n\n//Form\nconst schema = z.object({\n code: z.string().min(3),\n});\n\ntype Schema = z.output\u003Ctypeof schema>;\n\nconst state = reactive\u003CPartial\u003CSchema>>({\n code: undefined,\n});\n\nasync function onSubmit(event: FormSubmitEvent\u003CSchema>) {\n toast.add({\n title: 'Success',\n description: 'The form has been submitted.',\n color: 'success',\n });\n console.log(event.data);\n}\n\u003C/script>\n`\n\n### Description\n\nUInput causes an error\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2076,2079],{"name":2077,"color":2078},"bug","d73a4a",{"name":2065,"color":2066},2349,"UInput causes error","2024-10-10T14:15:25Z","https://github.com/nuxt/ui/issues/2349",0.68106407,{"description":2086,"labels":2087,"number":2094,"owner":1991,"repository":1991,"state":2029,"title":2095,"updated_at":2096,"url":2097,"score":2098},"### Environment\n\n------------------------------\r\n- Operating System: `Windows_NT`\r\n- Node Version: `v16.16.0`\r\n- Nuxt Version: `3.0.0-rc.9`\r\n- Nitro Version: `0.5.0`\r\n- Package Manager: `yarn@1.22.19`\r\n- Builder: `vite`\r\n- User Config: `modules`, `build`\r\n- Runtime Modules: `@nuxtjs/supabase@0.1.25`, `nuxt-windicss@2.5.1`\r\n- Build Modules: `-`\r\n------------------------------\n\n### Reproduction\n\nhttps://github.com/BroJenuel/believers-sword-web\n\n### Describe the bug\n\nSo I actually created a project when I run in `yarn dev`, eveything works perfectly but after build and preview it this error shows in my console\r\n\r\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell\nyarn preview\r\nyarn run v1.22.19\r\n$ nuxt preview\r\nNuxi 3.0.0-rc.9 19:57:31\r\ni Node.js version: 16.16.0 19:57:31\r\ni Preset: node-server 19:57:31\r\ni Working dir: .output 19:57:31\r\ni Loading .env. This will not be loaded when running the server in production. 19:57:31\r\ni Starting preview command: node ./server/index.mjs 19:57:31\r\n 19:57:31\r\nListening on http://0.0.0.0:3000/\r\n[nuxt] [request error] [unhandled] [500] Named export 'VBinder' not found. The requested module 'vueuc' is a CommonJS module, which may not support all module.exports as named exports.\r\nCommonJS modules can always be imported via the default export, for example using:\r\n\r\nimport pkg from 'vueuc';\r\nconst { resizeObserverManager, VResizeObserver, VirtualList, VFollower, VFocusTrap, VBinder, VTarget, VOverflow, VLazyTeleport } = pkg;\r\n\r\n at ModuleJob._instantiate (node:internal/modules/esm/module_job:128:21)\r\n at async ModuleJob.run (node:internal/modules/esm/module_job:194:5)\r\n at async Promise.all (index 0)\r\n at async ESMLoader.import (node:internal/modules/esm/loader:385:24)\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:303:24\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:359:64\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:28:22\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:592:19\r\n at async Server.nodeHandler (/D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:538:7)\r\n[nuxt] [request error] [unhandled] [500] Named export 'VBinder' not found. The requested module 'vueuc' is a CommonJS module, which may not support all module.exports as named exports.\r\nCommonJS modules can always be imported via the default export, for example using:\r\n\r\nimport pkg from 'vueuc';\r\nconst { resizeObserverManager, VResizeObserver, VirtualList, VFollower, VFocusTrap, VBinder, VTarget, VOverflow, VLazyTeleport } = pkg;\r\n\r\n at ModuleJob._instantiate (node:internal/modules/esm/module_job:128:21)\r\n at async ModuleJob.run (node:internal/modules/esm/module_job:194:5)\r\n at async Promise.all (index 0)\r\n at async ESMLoader.import (node:internal/modules/esm/loader:385:24)\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:303:24\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:359:64\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:28:22\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:592:19\r\n at async Server.nodeHandler (/D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:538:7)\r\n[nuxt] [request error] [unhandled] [500] Named export 'VBinder' not found. The requested module 'vueuc' is a CommonJS module, which may not support all module.exports as named exports.\r\nCommonJS modules can always be imported via the default export, for example using:\r\n\r\nimport pkg from 'vueuc';\r\nconst { resizeObserverManager, VResizeObserver, VirtualList, VFollower, VFocusTrap, VBinder, VTarget, VOverflow, VLazyTeleport } = pkg;\r\n\r\n at ModuleJob._instantiate (node:internal/modules/esm/module_job:128:21)\r\n at async ModuleJob.run (node:internal/modules/esm/module_job:194:5)\r\n at async Promise.all (index 0)\r\n at async ESMLoader.import (node:internal/modules/esm/loader:385:24)\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:303:24\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:359:64\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/chunks/renderer.mjs:28:22\r\n at async /D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:592:19\r\n at async Server.nodeHandler (/D:/Projects/_PersonalProjects/Believers%20Sword%20Project/believers-sword-web-new/.output/server/node_modules/h3/dist/index.mjs:538:7)\n```\n",[2088,2091],{"name":2089,"color":2090},"3.x","29bc7f",{"name":2092,"color":2093},"pending triage","E99695",14865,"Its working on `yarn dev` but after build, and preview its showing an error.","2023-01-19T17:41:34Z","https://github.com/nuxt/nuxt/issues/14865",0.6819445,["Reactive",2100],{},["Set"],["ShallowReactive",2103],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"X9ZvSpZb2SlOJjNFIDjU-68OSN6tc6Oz0RcPayX04Io":-1},"/nuxt/scripts/47"]