built docs after reordering focus and blur

This commit is contained in:
Nick Wing 2024-03-15 09:28:52 -05:00
commit 0fd06e6140
3 changed files with 4 additions and 4 deletions

View file

@ -487,8 +487,8 @@ None.
| mouseenter | forwarded | -- |
| mouseleave | forwarded | -- |
| change | forwarded | -- |
| blur | forwarded | -- |
| focus | forwarded | -- |
| blur | forwarded | -- |
## `CheckboxSkeleton`

View file

@ -926,8 +926,8 @@
"element": "CheckboxSkeleton"
},
{ "type": "forwarded", "name": "change", "element": "input" },
{ "type": "forwarded", "name": "blur", "element": "input" },
{ "type": "forwarded", "name": "focus", "element": "input" }
{ "type": "forwarded", "name": "focus", "element": "input" },
{ "type": "forwarded", "name": "blur", "element": "input" }
],
"typedefs": [],
"rest_props": { "type": "Element", "name": "div" }

View file

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