feat(number-input): forward focus, blur events to input

This commit is contained in:
Eric Liu 2022-01-22 08:39:54 -08:00
commit 50b62b754b
4 changed files with 11 additions and 1 deletions

View file

@ -153,6 +153,8 @@ export default class NumberInput extends SvelteComponentTyped<
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
input: WindowEventMap["input"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
},
{ label: {} }
> {