Align NumberInput change/input with native.

Fixes #1052.
Obsoletes #1051.
This commit is contained in:
Harald Brunner 2022-01-30 12:15:00 +01:00
commit 64f45f739b
4 changed files with 25 additions and 15 deletions

View file

@ -149,11 +149,11 @@ export default class NumberInput extends SvelteComponentTyped<
NumberInputProps,
{
change: CustomEvent<null | number>;
input: CustomEvent<null | number>;
click: WindowEventMap["click"];
mouseover: WindowEventMap["mouseover"];
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
input: WindowEventMap["input"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
},