mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
breaking(number-input): align change
, input
events with native input
behavior (#1053)
* Closes #1052 * Closes #1050
This commit is contained in:
parent
a8039a4d1e
commit
099efedef1
4 changed files with 25 additions and 15 deletions
2
types/NumberInput/NumberInput.svelte.d.ts
vendored
2
types/NumberInput/NumberInput.svelte.d.ts
vendored
|
@ -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"];
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue