RadioGroup
type RadioGroup = { ariaLabel?: string; defaultValue?: string; direction?: 'row' | 'col'; disabled?: boolean; id?: string; key?: string; name: string; onChangeAction?: ActionConfig; options?: { disabled?: boolean; label: string; value: string; }[]; required?: boolean; type: 'RadioGroup';};
Properties
Section titled “Properties”ariaLabel?
Section titled “ariaLabel?”optional ariaLabel: string;
defaultValue?
Section titled “defaultValue?”optional defaultValue: string;
direction?
Section titled “direction?”optional direction: "row" | "col";
disabled?
Section titled “disabled?”optional disabled: boolean;
optional id: string;
optional key: string;
name: string;
onChangeAction?
Section titled “onChangeAction?”optional onChangeAction: ActionConfig;
options?
Section titled “options?”optional options: { disabled?: boolean; label: string; value: string;}[];
Name | Type |
---|---|
|
|
|
|
|
|
required?
Section titled “required?”optional required: boolean;
type: 'RadioGroup';