",[1995,1998,2001],{"name":1996,"color":1997},"enhancement","a2eeef",{"name":1999,"color":2000},"v3","49DCB8",{"name":2002,"color":2003},"triage","ffffff",3270,"ui","[Feature request] Toast hide progress in app.config","2025-02-09T17:11:11Z","https://github.com/nuxt/ui/issues/3270",0.7596378,{"description":2011,"labels":2012,"number":2016,"owner":1985,"repository":2017,"state":1987,"title":2018,"updated_at":2019,"url":2020,"score":2021},"Im trying to use country-icons dynamically based on input, but Im having issues.\n\n```\n\u003Cscript setup lang=\"ts\">\nimport { Icon } from '#components'\n\nconst props = defineProps\u003C{\n country: string\n}>()\n\nconst icon = computed(() => {\n const icon = props?.country.toLowerCase()\n if (icon == 'northern ireland') {\n return 'ireland'\n }\n return icon\n})\nconst FlagIcon = h(Icon, { name: 'twemoji:flag-' + icon.value, size: 18 })\n\n\u003C/script>\n\u003Ctemplate>\n \u003CFlagIcon />\n\u003C/template>\n```\n\nThis is working when loading the page SSR, but navigating to the page results in errors like this:\n`DR5f3n0Z.js:52 [Icon] failed to load icon 'twemoji:flag-hungary'`\n\nHow can I create the icon names dynamically?",[2013],{"name":2014,"color":2015},"need-repro","A50BA3",321,"icon","Dynamic icon name","2024-12-12T08:54:20Z","https://github.com/nuxt/icon/issues/321",0.7757979,{"description":2023,"labels":2024,"number":2027,"owner":1985,"repository":2005,"state":2028,"title":2029,"updated_at":2030,"url":2031,"score":2032},"### For what version of Nuxt UI are you asking this question?\n\nv3.0.0-alpha.x\n\n### Description\n\nI want to customize my `app.config.ts` file from an external source.\n\nConsider the following:\n\n```ts\n// plugins/config.ts\n\nexport default defineNuxtPlugin({\n async setup(nuxtapp) {\n const config = await fetchConfig()\n // output: {ui: {primary: \"violet\", button: {slots: {base: \"hidden\"}}}}\n\n if (config?.app_config) {\n updateAppConfig(config.app_config);\n }\n },\n});\n```\n\nThe primary color is updated correctly, but the `hidden` class is not applied to buttons.\nAny ideas why?",[2025,2026],{"name":1996,"color":1997},{"name":1999,"color":2000},2828,"closed","Runtime component customization with updateAppConfig","2025-04-12T15:53:05Z","https://github.com/nuxt/ui/issues/2828",0.68865496,{"description":2034,"labels":2035,"number":2036,"owner":1985,"repository":1986,"state":2028,"title":2037,"updated_at":2038,"url":2039,"score":2040},"[nuxi build](https://nuxt.com/docs/api/commands/build) is missing the docs for `--preset`\r\n\r\nSource: https://github.com/nuxt/cli/blob/main/src/commands/build.ts#L22",[],1556,"docs: nuxi build missing `--preset` option","2024-04-12T22:06:13Z","https://github.com/nuxt/nuxt.com/issues/1556",0.72987634,{"description":2042,"labels":2043,"number":2045,"owner":1985,"repository":2005,"state":2028,"title":2046,"updated_at":2047,"url":2048,"score":2049},"### Description\n\nWhen using a Table component, it would be a cool feature to allow the items to be modified in place and an event emitted. There arent really many good solutions for this in Vue ecosystem, that I know of. \n\n### Additional context\n\n_No response_",[2044],{"name":1996,"color":1997},2168,"Make an inplace editable table","2024-09-11T14:14:15Z","https://github.com/nuxt/ui/issues/2168",0.74883217,{"description":2051,"labels":2052,"number":2056,"owner":1985,"repository":2005,"state":2028,"title":2057,"updated_at":2058,"url":2059,"score":2060},"### Description\n\nHello, \n\nI was looking for adding Català language to nuxt ui v3. However, i am not used to pull requests but also, the 'ca' code may be confusing with Canada one (and may be others?)\n\nCan someone help me on that way so I will be able to use the locale in the UApp componente :) ?\n\nThank you very much ! \n\n```\n\nimport { defineLocale } from '../composables/defineLocale'\n\nexport default defineLocale({\n name: 'Català',\n code: 'ca',\n messages: {\n inputMenu: {\n noMatch: 'No hi ha dades coincidents',\n noData: 'Sense dades',\n create: 'Crear \"{label}\"'\n },\n calendar: {\n prevYear: 'Any anterior',\n nextYear: 'Any següent',\n prevMonth: 'Mes anterior',\n nextMonth: 'Mes següent'\n },\n inputNumber: {\n increment: 'Incrementar',\n decrement: 'Decrementar'\n },\n commandPalette: {\n placeholder: 'Escriu una ordre o cerca...',\n noMatch: 'No hi ha dades coincidents',\n noData: 'Sense dades',\n close: 'Tancar'\n },\n selectMenu: {\n noMatch: 'No hi ha dades coincidents',\n noData: 'Sense dades',\n create: 'Crear \"{label}\"',\n search: 'Cerca...'\n },\n toast: {\n close: 'Tancar'\n },\n carousel: {\n prev: 'Anterior',\n next: 'Següent',\n goto: 'Anar a la diapositiva {slide}'\n },\n modal: {\n close: 'Tancar'\n },\n slideover: {\n close: 'Tancar'\n },\n alert: {\n close: 'Tancar'\n },\n table: {\n noData: 'Sense dades'\n }\n }\n})\n\n```\n\n### Additional context\n\n_No response_",[2053,2054,2055],{"name":1996,"color":1997},{"name":1999,"color":2000},{"name":2002,"color":2003},3477,"Adding Català language","2025-03-20T14:09:46Z","https://github.com/nuxt/ui/issues/3477",0.7509839,{"description":2062,"labels":2063,"number":2066,"owner":1985,"repository":2005,"state":2028,"title":2067,"updated_at":2068,"url":2069,"score":2070},"### 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_",[2064,2065],{"name":1996,"color":1997},{"name":1999,"color":2000},2948,"Add theme colors as tailwind variables","2025-02-06T16:29:04Z","https://github.com/nuxt/ui/issues/2948",0.7538067,{"description":2072,"labels":2073,"number":2082,"owner":1985,"repository":2005,"state":2028,"title":2083,"updated_at":2084,"url":2085,"score":2086},"### Environment\n\n- Operating System: Linux\n- Node Version: v20.18.1\n- Nuxt Version: 3.16.1\n- CLI Version: 3.23.1\n- Nitro Version: 2.11.7\n- Package Manager: yarn@1.22.22\n- Builder: -\n- User Config: devtools, typescript, css, compatibilityDate, devServer, vite, runtimeConfig, app, ui, modules\n- Runtime Modules: @nuxt/ui@3.0.1, @pinia/nuxt@0.10.1, pinia-plugin-persistedstate/nuxt@4.2.0\n- Build Modules: -\n- Typescript: 5.8.2\n- Vue-tsc: 2.2.8\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.1\n\n### Reproduction\n\n```\n// will trigger typescript error on v-model\n\u003CUSelectMenu\n v-model=\"memberForm.user\"\n :items=\"addableUsers\"\n label-key=\"email\"\n/>\n// will trigger typescript error on v-model\n\u003CUSelectMenu\n v-model=\"memberForm.user\"\n :items=\"addableUsers\"\n label-key=\"email\"\n :value-key=\"undefined\"\n/>\n// will work but i need to handle label display manually using slot\n\u003CUSelectMenu\n v-model=\"memberForm.user\"\n :items=\"addableUsers\"\n/>\n```\n\n### Description\n\nI'm currently migrate my project to NuxtUi V3 and I have some issues with `\u003CUInputMenu />` and `\u003CUSelectMenu />`. On my selects I want to retrieve the full object selected so I don't set `value-key` but for display purpose I use the `label-key` props, however when I do this I get this typescript error on the `v-model` :\n```\nUnable to assign type 'User | undefined' to type 'string | undefined'.\nUnable to assign type 'User' to type 'string'. ts-plugin(2322)\n```\nAfter some research, I think the `label-key` alter the `value-key` type and that's what triggers the error.\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2074,2077,2078,2081],{"name":2075,"color":2076},"bug","d73a4a",{"name":1999,"color":2000},{"name":2079,"color":2080},"typescript","3A629E",{"name":2002,"color":2003},3670,"v-model typescript error when using label-key InputMenu/SelectMenu","2025-03-24T20:38:15Z","https://github.com/nuxt/ui/issues/3670",0.7606988,{"description":2088,"labels":2089,"number":2096,"owner":1985,"repository":1985,"state":2028,"title":2097,"updated_at":2098,"url":2099,"score":2100},"### Describe the feature\r\n\r\nIt would be great if we could provide code documentation for everything that ends up being auto-imported and available in userland (as well as a link towards the actual docs).\r\nSome composables are already documented, such as https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/app/composables/state.ts\r\n\r\nIt would be great if we could go through all of them to add missing docs and a link to the official docs.\r\n\r\n### Additional information\r\n\r\n- [X] Would you be willing to help implement this feature?\r\n- [ ] Could this feature be implemented as a module?\r\n\r\n### Final checks\r\n\r\n- [X] Read the [contribution guide](https://nuxt.com/docs/community/contribution).\r\n- [X] Check existing [discussions](https://github.com/nuxt/nuxt/discussions) and [issues](https://github.com/nuxt/nuxt/issues).",[2090,2093],{"name":2091,"color":2092},"3.x","29bc7f",{"name":2094,"color":2095},"pending triage","E99695",22884,"[feature request] add code documentation for all user facing exports","2023-08-29T15:30:14Z","https://github.com/nuxt/nuxt/issues/22884",0.766483,["Reactive",2102],{},["Set"],["ShallowReactive",2105],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"1d7-OC2I4029xLxTeZ1IabefsaFN780ZKKWpM8C1HPI":-1},"/nuxt/ui/2199"]