ant-design/components/radio/interface.tsx

44 lines
1.1 KiB
TypeScript
Raw Normal View History

2017-11-21 15:12:03 +08:00
import * as React from 'react';
import { AbstractCheckboxGroupProps } from '../checkbox/Group';
import { AbstractCheckboxProps } from '../checkbox/Checkbox';
import { SizeType } from '../config-provider/SizeContext';
2017-11-21 15:12:03 +08:00
2018-07-23 10:01:42 +08:00
export type RadioGroupButtonStyle = 'outline' | 'solid';
2017-11-21 15:12:03 +08:00
export interface RadioGroupProps extends AbstractCheckboxGroupProps {
defaultValue?: any;
value?: any;
onChange?: (e: RadioChangeEvent) => void;
size?: SizeType;
2017-11-21 15:12:03 +08:00
onMouseEnter?: React.MouseEventHandler<HTMLDivElement>;
onMouseLeave?: React.MouseEventHandler<HTMLDivElement>;
name?: string;
children?: React.ReactNode;
2017-12-01 11:50:07 +08:00
id?: string;
2018-07-23 10:01:42 +08:00
buttonStyle?: RadioGroupButtonStyle;
2017-11-21 15:12:03 +08:00
}
export interface RadioGroupState {
value: any;
}
export interface RadioGroupContextProps {
onChange: (e: RadioChangeEvent) => void;
value: any;
disabled?: boolean;
name?: string;
2017-11-21 15:12:03 +08:00
}
export type RadioProps = AbstractCheckboxProps<RadioChangeEvent>;
export interface RadioChangeEventTarget extends RadioProps {
checked: boolean;
}
export interface RadioChangeEvent {
target: RadioChangeEventTarget;
stopPropagation: () => void;
preventDefault: () => void;
nativeEvent: MouseEvent;
}