feat: radiogroup support any label&value #4720
parent
84341ef912
commit
4021e89b15
|
@ -17,8 +17,8 @@ const RadioGroupOptionTypes = tuple('default', 'button');
|
||||||
export type RadioGroupOption = typeof RadioGroupOptionTypes[number];
|
export type RadioGroupOption = typeof RadioGroupOptionTypes[number];
|
||||||
|
|
||||||
export type RadioGroupChildOption = {
|
export type RadioGroupChildOption = {
|
||||||
label: string;
|
label: any;
|
||||||
value: string;
|
value: any;
|
||||||
disabled?: boolean;
|
disabled?: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue