\n\n \u003Ctemplate #panel>\n \u003CRegioloketPreview \n :data=\"row\"\n />\n \u003C/template>\n \u003C/UPopover>\n \u003C/template>\n\n```\n\n",[2026,2027],{"name":1985,"color":1986},{"name":2028,"color":2029},"stale","ededed",2435,"@hover event for UTable rows","2025-02-14T01:58:49Z","https://github.com/nuxt/ui/issues/2435",0.7875995,{"description":2036,"labels":2037,"number":2040,"owner":1991,"repository":1992,"state":1993,"title":2041,"updated_at":2042,"url":2043,"score":2044},"### Description\n\nThere is a way to enable tooltip on mobile when touching it? Can it be globally enabled?",[2038,2039],{"name":1985,"color":1986},{"name":1988,"color":1989},3847,"Tooltip on mobile devices","2025-04-09T17:04:51Z","https://github.com/nuxt/ui/issues/3847",0.7883276,{"description":2046,"labels":2047,"number":2049,"owner":1991,"repository":1992,"state":2050,"title":2051,"updated_at":2052,"url":2053,"score":2054},"### For what version of Nuxt UI are you asking this question?\n\nv2.x\n\n### Description\n\n### Description\nHi there,\n\nIn many of the projects I鈥檓 working on, I need to display a limited number of items in the command palette when no search is performed and show more items when a search is initiated.\n\nCurrent Issue\nThe `resultLimit` currently controls how many search results are shown, but I want to decouple the initial number of displayed items from the search result limit. Specifically, I want to:\n\n- Display 5 items by default when no search is performed.\n- Increase the number of displayed items to 20 when a search is initiated, controlled by the `resultLimit`, without affecting the initial state.\n- When attempting to conditionally control this behavior using a computed property, the feature does not work as expected.\n\n Versions\n\n@nuxt/ui: ^2.18.2\nnuxt: ^3.12.4\n\nExample\n\n```Javascript\n\u003Ctemplate>\n \u003CUCommandPalette\n command-attribute=\"title\"\n :fuse=\"{\n resultLimit: computedResultLimit\n }\"\n />\n\u003C/template>\n\n\u003Cscript setup>\nconst searchTerm = ref('');\n\nconst computedResultLimit = computed(() => {\n if (!searchTerm.value) {\n return 5;\n }\n return 20;\n});\n\u003C/script>\n```\n",[2048],{"name":1985,"color":1986},2393,"closed","Command Palette: Specific Item Display with Conditional resultLimit Behavior","2024-10-16T09:31:26Z","https://github.com/nuxt/ui/issues/2393",0.7126627,{"description":2056,"labels":2057,"number":2061,"owner":1991,"repository":1992,"state":2050,"title":2062,"updated_at":2063,"url":2064,"score":2065},"### For what version of Nuxt UI are you suggesting this?\n\nv3.0.0-alpha.x\n\n### Description\n\nRight now, using the CLI does not create a template for documentation.\n\n### Additional context\n\n_No response_",[2058,2060],{"name":2002,"color":2059},"a2eeef",{"name":1988,"color":1989},2615,"Add a template for documentation in the CLI","2024-11-12T14:57:04Z","https://github.com/nuxt/ui/issues/2615",0.75223964,{"labels":2067,"number":2074,"owner":1991,"repository":1991,"state":2050,"title":2075,"updated_at":2076,"url":2077,"score":2078},[2068,2071],{"name":2069,"color":2070},"3.x","29bc7f",{"name":2072,"color":2073},"pending triage","E99695",13744,"can't use web3.js and @walletconnect/web3-provider ","2023-01-19T17:04:38Z","https://github.com/nuxt/nuxt/issues/13744",0.75291574,{"description":2080,"labels":2081,"number":2086,"owner":1991,"repository":1992,"state":2050,"title":2087,"updated_at":2088,"url":2089,"score":2090},"### Environment\n\n------------------------------\n- Operating System: Darwin\n- Node Version: v20.18.0\n- Nuxt Version: 3.13.2\n- CLI Version: 3.15.0\n- Nitro Version: 2.9.7\n- Package Manager: pnpm@9.12.2\n- Builder: -\n- User Config: default\n- Runtime Modules: -\n- Build Modules: -\n------------------------------\n\n### Version\n\n3.0.0-alpha.7\n\n### Reproduction\n\n-\n\n### Description\n\nCurrently the type hints for the `modelValue` prop and `update:modelValue` event of the `Select`/`SelectMenu`/`InputMenu` components are incorrect, e.g.:\n\nHere the correct type should be `number`, not the item object:\n\n\nSimilarly, when the `multiple` prop is set, the correct type should be `number[]`, not the item object:\n\n\n\n### Additional context\n\n_No response_\n\n### Logs\n\n_No response_",[2082,2085],{"name":2083,"color":2084},"bug","d73a4a",{"name":1988,"color":1989},2470,"[v3]: wrong types on select inputs components","2024-11-05T16:03:04Z","https://github.com/nuxt/ui/issues/2470",0.7591827,{"description":2092,"labels":2093,"number":2102,"owner":1991,"repository":1992,"state":2050,"title":2103,"updated_at":2104,"url":2105,"score":2106},"### Environment\n\n- Operating System: Darwin\n- Node Version: v20.19.0\n- Nuxt Version: -\n- CLI Version: 3.23.1\n- Nitro Version: -\n- Package Manager: pnpm@10.7.0\n- Builder: -\n- User Config: -\n- Runtime Modules: -\n- Build Modules: -\n\n### Is this bug related to Nuxt or Vue?\n\nVue\n\n### Version\n\nv3.0.2\n\n### Reproduction\n\nfreshly pulled official starter template using\n```bash\nnpx giget@latest gh:nuxt-ui-pro/starter-vue . --force\n```\ncleaned components.d.ts / deleted it\nit has been recreated: but missing ALL nuxtui components:\n\n```js\n/* eslint-disable */\n// @ts-nocheck\n// Generated by unplugin-vue-components\n// Read more: https://github.com/vuejs/core/pull/3399\n// biome-ignore lint: disable\nexport {}\n\n/* prettier-ignore */\ndeclare module 'vue' {\n export interface GlobalComponents {\n LogoPro: typeof import('./src/components/LogoPro.vue')['default']\n RouterLink: typeof import('vue-router')['RouterLink']\n RouterView: typeof import('vue-router')['RouterView']\n }\n}\n```\n\n### Description\n\nThe components.d.ts file generated by `unplugin-vue-components` is incomplete.\n\n### Additional context\n\n```js\nimport { defineConfig } from 'vite'\nimport vue from '@vitejs/plugin-vue'\nimport uiPro from '@nuxt/ui-pro/vite'\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n plugins: [\n vue(),\n uiPro({\n ui: {\n colors: {\n primary: 'green',\n neutral: 'slate'\n }\n },\n prefix: 'U'\n })\n ]\n})\n```\n\n### Logs\n\n```shell-script\n\n```",[2094,2095,2098,2099],{"name":2083,"color":2084},{"name":2096,"color":2097},"needs reproduction","CB47CF",{"name":1988,"color":1989},{"name":2100,"color":2101},"triage","ffffff",3753,"unplugin components.d.ts not working","2025-03-31T13:04:11Z","https://github.com/nuxt/ui/issues/3753",0.7732915,["Reactive",2108],{},["Set"],["ShallowReactive",2111],{"TRc1wZytZ_XrK4EfJfei_Sz-An4H4Yy6syhVxH_PVJc":-1,"9osdFCc6wvxKXKXI6CQR8k4oeJe4eHlzsjRrvZJ3Txg":-1},"/nuxt/ui/2438"]