mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
Run npm run build:docs
This commit is contained in:
parent
db5aaee501
commit
c70ac9b863
3 changed files with 17 additions and 1 deletions
|
@ -2966,6 +2966,8 @@ None.
|
||||||
|
|
||||||
| Event name | Type | Detail |
|
| Event name | Type | Detail |
|
||||||
| :--------- | :-------- | :----- |
|
| :--------- | :-------- | :----- |
|
||||||
|
| focus | forwarded | -- |
|
||||||
|
| blur | forwarded | -- |
|
||||||
| change | forwarded | -- |
|
| change | forwarded | -- |
|
||||||
|
|
||||||
## `RadioButtonGroup`
|
## `RadioButtonGroup`
|
||||||
|
|
|
@ -11389,6 +11389,16 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"events": [
|
"events": [
|
||||||
|
{
|
||||||
|
"type": "forwarded",
|
||||||
|
"name": "focus",
|
||||||
|
"element": "input"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "forwarded",
|
||||||
|
"name": "blur",
|
||||||
|
"element": "input"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "forwarded",
|
"type": "forwarded",
|
||||||
"name": "change",
|
"name": "change",
|
||||||
|
|
6
types/RadioButton/RadioButton.svelte.d.ts
vendored
6
types/RadioButton/RadioButton.svelte.d.ts
vendored
|
@ -71,6 +71,10 @@ export type RadioButtonProps = Omit<$RestProps, keyof $Props> & $Props;
|
||||||
|
|
||||||
export default class RadioButton extends SvelteComponentTyped<
|
export default class RadioButton extends SvelteComponentTyped<
|
||||||
RadioButtonProps,
|
RadioButtonProps,
|
||||||
{ change: WindowEventMap["change"] },
|
{
|
||||||
|
focus: WindowEventMap["focus"];
|
||||||
|
blur: WindowEventMap["blur"];
|
||||||
|
change: WindowEventMap["change"];
|
||||||
|
},
|
||||||
{ labelText: {} }
|
{ labelText: {} }
|
||||||
> {}
|
> {}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue