fix(checkbox): forward on:focus, on:blur to Checkbox and InlineCheckbox (#1937)

This commit is contained in:
Nick Wing 2024-03-16 11:31:30 -05:00 committed by GitHub
commit 6364b23030
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 6 additions and 0 deletions

View file

@ -100,6 +100,7 @@ export default class Checkbox extends SvelteComponentTyped<
mouseenter: WindowEventMap["mouseenter"];
mouseleave: WindowEventMap["mouseleave"];
change: WindowEventMap["change"];
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
},
{ labelText: {} }