mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
fix(radio-button-group): strongly type dispatched change/select events (#1819)
This commit is contained in:
parent
836b360b9b
commit
06d81ddbff
8 changed files with 42 additions and 18 deletions
|
@ -64,11 +64,11 @@ export interface RadioButtonGroupProps extends RestProps {
|
|||
export default class RadioButtonGroup extends SvelteComponentTyped<
|
||||
RadioButtonGroupProps,
|
||||
{
|
||||
change: CustomEvent<string>;
|
||||
click: WindowEventMap["click"];
|
||||
mouseover: WindowEventMap["mouseover"];
|
||||
mouseenter: WindowEventMap["mouseenter"];
|
||||
mouseleave: WindowEventMap["mouseleave"];
|
||||
change: CustomEvent<any>;
|
||||
},
|
||||
{ default: {}; legendText: {} }
|
||||
> {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue