We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad12c40 commit bb8f764Copy full SHA for bb8f764
packages/core/src/components/RadioGroup.tsx
@@ -7,9 +7,10 @@ import {
7
import { Field } from './FieldBase';
8
9
export interface RadioGroupProps
10
- extends BPRadioGroupProps,
+ extends Omit<BPRadioGroupProps, 'onChange'>,
11
Omit<FieldConfig, 'component'> {
12
name: string;
13
+ onChange?: (event: React.FormEvent<HTMLInputElement>) => void;
14
}
15
16
interface FieldToRadioGroupProps
0 commit comments