diff --git a/src/lib/components/listbox/Listbox.svelte b/src/lib/components/listbox/Listbox.svelte index 0ca69ea..be192e4 100644 --- a/src/lib/components/listbox/Listbox.svelte +++ b/src/lib/components/listbox/Listbox.svelte @@ -50,6 +50,14 @@ return context; } + type TListboxProps< + TSlotProps extends {}, + TAsProp extends SupportedAs + > = TPassThroughProps & { + disabled?: boolean; + horizontal?: boolean; + value?: StateDefinition["value"]; + }; + + + +