fix(types): fix types for on:paste event

This commit is contained in:
metonym 2024-10-25 15:29:48 -07:00 committed by Eric Liu
commit 3167e449fd
11 changed files with 11 additions and 11 deletions

View file

@ -146,7 +146,7 @@ export default class PasswordInput extends SvelteComponentTyped<
keyup: WindowEventMap["keyup"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
paste: DocumentAndElementEventHandlersEventMap["paste"];
paste: WindowEventMap["paste"];
},
{ labelText: {} }
> {}

View file

@ -131,7 +131,7 @@ export default class TextInput extends SvelteComponentTyped<
keyup: WindowEventMap["keyup"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
paste: DocumentAndElementEventHandlersEventMap["paste"];
paste: WindowEventMap["paste"];
},
{ labelText: {} }
> {}