You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
805 B
29 lines
805 B
import * as React from 'react';
|
|
import { AbstractCheckboxGroupProps } from '../checkbox/Group';
|
|
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
|
|
|
|
export interface RadioGroupProps extends AbstractCheckboxGroupProps {
|
|
defaultValue?: any;
|
|
value?: any;
|
|
onChange?: React.ChangeEventHandler<HTMLInputElement>;
|
|
size?: 'large' | 'default' | 'small';
|
|
onMouseEnter?: React.MouseEventHandler<HTMLDivElement>;
|
|
onMouseLeave?: React.MouseEventHandler<HTMLDivElement>;
|
|
name?: string;
|
|
children?: React.ReactNode;
|
|
}
|
|
|
|
export interface RadioGroupState {
|
|
value: any;
|
|
}
|
|
|
|
export interface RadioGroupContext {
|
|
radioGroup: {
|
|
onChange: React.ChangeEventHandler<HTMLInputElement>;
|
|
value: any;
|
|
disabled: boolean;
|
|
name: string;
|
|
};
|
|
}
|
|
|
|
export type RadioProps = AbstractCheckboxProps;
|
|
|