huntabyte / cmdk-sv

cmdk, but for Svelte ✨
https://cmdk-sv.com
MIT License
410 stars 17 forks source link

Limit the number of options to be shown at once #75

Closed pratikbhadane24 closed 1 month ago

pratikbhadane24 commented 2 months ago

I was not able to find the limit for options in a group or list. If it is there already please point it.

jcmiron commented 1 month ago

Not sure if you are asking from a view perspective but I've been able to do this by adding css (tailwindcss in my case).

E.g. adding "max-h-64 overflow-y-auto" will set a size to the list with scrolling. (added to the group)

huntabyte commented 1 month ago

What @jcmiron said. If you want strict limits then you can implement a custom filter yourself and limit it to only the first 5 or 10 or whatever.