Run npm run build:docs

This commit is contained in:
Eric Liu 2025-03-22 08:51:38 -07:00
commit c70ac9b863
3 changed files with 17 additions and 1 deletions

View file

@ -2966,6 +2966,8 @@ None.
| Event name | Type | Detail |
| :--------- | :-------- | :----- |
| focus | forwarded | -- |
| blur | forwarded | -- |
| change | forwarded | -- |
## `RadioButtonGroup`

View file

@ -11389,6 +11389,16 @@
}
],
"events": [
{
"type": "forwarded",
"name": "focus",
"element": "input"
},
{
"type": "forwarded",
"name": "blur",
"element": "input"
},
{
"type": "forwarded",
"name": "change",

View file

@ -71,6 +71,10 @@ export type RadioButtonProps = Omit<$RestProps, keyof $Props> & $Props;
export default class RadioButton extends SvelteComponentTyped<
RadioButtonProps,
{ change: WindowEventMap["change"] },
{
focus: WindowEventMap["focus"];
blur: WindowEventMap["blur"];
change: WindowEventMap["change"];
},
{ labelText: {} }
> {}