mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
fix(types): fix types for on:paste
event
This commit is contained in:
parent
e8237b2575
commit
3167e449fd
11 changed files with 11 additions and 11 deletions
2
types/TextInput/PasswordInput.svelte.d.ts
vendored
2
types/TextInput/PasswordInput.svelte.d.ts
vendored
|
@ -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: {} }
|
||||
> {}
|
||||
|
|
2
types/TextInput/TextInput.svelte.d.ts
vendored
2
types/TextInput/TextInput.svelte.d.ts
vendored
|
@ -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: {} }
|
||||
> {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue