fix(multi-select): forward on:input for filterable variant (#2170)

This commit is contained in:
Nick Wing 2025-06-10 17:31:28 -05:00 committed by GitHub
commit aecc4e8eec
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 8 additions and 0 deletions

View file

@ -255,6 +255,7 @@ export default class MultiSelect extends SvelteComponentTyped<
clear: CustomEvent<null>;
blur: FocusEvent | CustomEvent<FocusEvent>;
keydown: WindowEventMap["keydown"];
input: WindowEventMap["input"];
keyup: WindowEventMap["keyup"];
focus: WindowEventMap["focus"];
paste: WindowEventMap["paste"];