` for the rest of the content, which could be either 1 or more DashboardPanels.\n\nThanks in advance!",[2027,2030,2031],{"name":2028,"color":2029},"question","d876e3",{"name":1988,"color":1989},{"name":2032,"color":2033},"pro","5BD3CB",3627,"How to add a persistent Navbar on top of all DashboardPanels inside of a DashboardGroup?","2025-03-19T20:53:14Z","https://github.com/nuxt/ui/issues/3627",0.6995688,{"description":2040,"labels":2041,"number":2044,"owner":1994,"repository":1995,"state":2019,"title":2045,"updated_at":2046,"url":2047,"score":2048},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\nI find that creating an input password with toggle button to show the text felt so verbose. How about adding a default toggle button when the input has password type since it was a good practice for accessibility?\n\n\n\n### Additional context\n\n```html\n\u003C!-- this is easier and shorter to write -->\n\u003CUInput type=\"password\" />\n\n\u003C!-- if we want to hide, we can let slot do the work, or maybe consider adding a properties to hide it. It's more shorter -->\n\u003CUInput type=\"password\">\n \u003Ctemplate #trailing>\u003C/template>\n\u003C/UInput>\n\n\u003C!-- compared to what we must do now as the documentation say -->\n\u003Ctemplate>\n \u003CUInput\n v-model=\"password\"\n placeholder=\"Password\"\n :type=\"show ? 'text' : 'password'\"\n :ui=\"{ trailing: 'pe-1' }\"\n >\n \u003Ctemplate #trailing>\n \u003CUButton\n color=\"neutral\"\n variant=\"link\"\n size=\"sm\"\n :icon=\"show ? 'i-lucide-eye-off' : 'i-lucide-eye'\"\n aria-label=\"show ? 'Hide password' : 'Show password'\"\n :aria-pressed=\"show\"\n aria-controls=\"password\"\n @click=\"show = !show\"\n />\n \u003C/template>\n \u003C/UInput>\n\u003C/template>\n\n\u003Cscript setup lang=\"ts\">\nconst show = ref(false)\nconst password = ref('password')\n\u003C/script>\n```",[2042,2043],{"name":1985,"color":1986},{"name":1988,"color":1989},2806,"input: add toggle password button automatically for type password","2024-12-02T17:21:42Z","https://github.com/nuxt/ui/issues/2806",0.73324955,{"description":2050,"labels":2051,"number":2054,"owner":1994,"repository":1995,"state":2019,"title":2055,"updated_at":2056,"url":2057,"score":2058},"### Description\n\nWould like to modify the default dark mode appearance of the UInput component.\n\nThe first name field is unstyled. The last name field shows my attempt to add styles, but to no effect. \n\nThe v2 component apparently had a `inputClass` that allowed the text and background color to be styled. \n\nIs there a v3 equivalent?\n\nThanks\n\nPS. the password fields are both also unstyled -- they just seem to have a different behaviors dependent on whether any text has been entered.\n\n```\n\u003Ctemplate>\n \u003CUContainer class=\"z-10 max-w-md py-10\">\n \u003CUCard class=\"bg-slate-200 shadow-md dark:bg-slate-600\">\n\n \u003Ctemplate #header>\n \u003Cspan class=\"text-center text-xl font-semibold text-gray-900 dark:text-white\">Sign up\u003C/span>\n \u003C/template>\n\n \u003CUForm\n :state=\"formState\"\n :schema=\"signUpSchema\"\n class=\"space-y-4\"\n @submit=\"onSubmit\">\n \u003Cdiv class=\"flex\">\n \u003CUFormField\n label=\"First Name\"\n name=\"firstName\"\n class=\"mr-3 flex-4\">\n \u003CUInput\n v-model=\"formState.firstName\"\n type=\"text\"\n placeholder=\"First Name\"\n icon=\"i-heroicons-user-solid\"/>\n \u003C/UFormField>\n \u003CUFormField\n label=\"Last Name\"\n name=\"lastName\"\n class=\"flex-5\">\n \u003CUInput\n v-model=\"formState.lastName\"\n type=\"text\"\n placeholder=\"Last Name\"\n icon=\"i-heroicons-user-solid\"\n class=\"text-gray-900 dark:text-white\" /> \u003C!-- has no effect -->\n \u003C/UFormField>\n \u003C/div>\n ...\n```\n\n",[2052,2053],{"name":2028,"color":2029},{"name":1988,"color":1989},3136,"Q: how to style the text and background color of the UInput component?","2025-01-18T00:58:37Z","https://github.com/nuxt/ui/issues/3136",0.7333677,{"description":2060,"labels":2061,"number":2063,"owner":1994,"repository":1995,"state":2019,"title":2064,"updated_at":2065,"url":2066,"score":2067},"### Description\n\nCurrent `UTable` can only support multiple selection.\r\nIn my scenario, I want to make it to support both single or multiple selection.\n\n### Additional context\n\n_No response_",[2062],{"name":1985,"color":1986},2065,"UTable can support single selection","2024-09-06T10:17:08Z","https://github.com/nuxt/ui/issues/2065",0.73748076,{"description":2069,"labels":2070,"number":2080,"owner":1994,"repository":1995,"state":2019,"title":2081,"updated_at":2082,"url":2083,"score":2084},"### Environment\n\nNode 22\nNuxt 4\n\n### Is this bug related to Nuxt or Vue?\n\nNuxt\n\n### Version\n\nv3.0.0 alpha 10\n\n### Reproduction\n\n1. create a modal and a slideover using useModal and useSlideover\n2. create a button **(first button**) that opens the modal with useModal()\n3. create one as well **(second button**) INSIDE! the slideover that opens the same modal with useModal()\n\n### Description\n\nNow open the modal outside the slideover with the **first button**. Thats set an index I suppose.\nBut now if you open the slideover and click the **second button** which opens the same modal, it appears behind the slideover.\n\nBut if you reload the page, open the slideover first and then press the second button without ever pressing the first button to open the modal it appears infront.\n\n### Additional context\n\n\n\n\n\n### Logs\n\n```shell-script\n\n```",[2071,2072,2075,2076,2077],{"name":2014,"color":2015},{"name":2073,"color":2074},"needs reproduction","CB47CF",{"name":1988,"color":1989},{"name":1991,"color":1992},{"name":2078,"color":2079},"closed-by-bot","ededed",3079,"Modal and slideover z-index bug","2025-03-25T02:04:49Z","https://github.com/nuxt/ui/issues/3079",0.7379041,{"description":2086,"labels":2087,"number":2091,"owner":1994,"repository":1995,"state":2019,"title":2092,"updated_at":2093,"url":2094,"score":2095},"### Environment\n\n- Operating System: Darwin\n- Node Version: v22.12.0\n- Nuxt Version: 3.16.0\n- CLI Version: 3.22.5\n- Nitro Version: 2.11.6\n- Package Manager: pnpm@10.6.2\n- Builder: -\n- User Config: modules, css, runtimeConfig, uiPro, compatibilityDate, devtools, future, experimental\n- Runtime Modules: @nuxt/eslint@1.2.0, @nuxt/ui-pro@3.0.0, @nuxt/content@3.3.0\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```html\n\u003CProsePre lang=\"yaml\">{{ yaml }}\u003C/ProsePre>\n```\n\n\n### Description\n\nMade sure I have content installed and loaded - renders just fine, copy button shows the ✅ - but nothing is copied\n\n### Additional context\n\n_No response_\n\n### Logs\n\n```shell-script\n\n```",[2088,2089,2090],{"name":2014,"color":2015},{"name":1988,"color":1989},{"name":1991,"color":1992},3545,"Clipboard button doesnt copy content when using ProsePre directly","2025-03-13T00:31:04Z","https://github.com/nuxt/ui/issues/3545",0.73848355,{"description":2097,"labels":2098,"number":2101,"owner":1994,"repository":1995,"state":2019,"title":2102,"updated_at":2103,"url":2104,"score":2105},"### Description\n\nI've been trying for some time to disable the external icon as shown here but was unable to, even if target=\"_blank\":\n\u003Cimg width=\"243\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/a81dfa32-a8bb-4ec7-9671-006d0161bcef\" />\n\nIn this case, I want to display the icons as below without the external icons, even if the target='_blank':\n\u003Cimg width=\"203\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/d52b4a82-306b-4c69-8117-3a7e8ee6a2ea\" />\n\n\n### Additional context\n\nThe lines responsible identified here:\nhttps://github.com/nuxt/ui/blob/d4653e3c02e877eed1f8762046b2b1f001b2e84b/src/runtime/components/NavigationMenu.vue#L191\nhttps://github.com/nuxt/ui/blob/d4653e3c02e877eed1f8762046b2b1f001b2e84b/src/runtime/components/NavigationMenu.vue#L252",[2099,2100],{"name":1985,"color":1986},{"name":1988,"color":1989},2996,"Ability to disable external icon in NavigationMenu","2025-03-08T12:22:25Z","https://github.com/nuxt/ui/issues/2996",0.7411043,["Reactive",2107],{},["Set"],["ShallowReactive",2110],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"3vVRT7QKyfny4RZEJl5ydgZB0A0fhof3gqW-kxJCaXY":-1},"/nuxt/ui/2915"]