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

This commit is contained in:
Eric Liu 2022-01-22 08:58:59 -08:00 committed by GitHub
commit 493568f08d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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: {} }
> {