ant-design/components/radio/interface.tsx

51 lines
1.4 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';
export type RadioGroupOptionType = 'default' | 'button';
2018-07-23 10:01:42 +08:00
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;
optionType?: RadioGroupOptionType;
2018-07-23 10:01:42 +08:00
buttonStyle?: RadioGroupButtonStyle;
2017-11-21 15:12:03 +08:00
}
export interface RadioGroupContextProps {
onChange: (e: RadioChangeEvent) => void;
value: any;
disabled?: boolean;
name?: string;
/**
* Control the appearance for Radio to display as button or not
*
* @default 'default'
* @internal
*/
optionType?: RadioGroupOptionType;
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;
}
export type RadioOptionTypeContextProps = RadioGroupOptionType;