2019-01-01 04:13:51 +00:00
|
|
|
// Project: https://github.com/vueComponent/ant-design-vue
|
|
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
|
2019-01-12 03:33:27 +00:00
|
|
|
import { AntdComponent } from '../component';
|
|
|
|
import { RadioGroup } from './radio-group';
|
|
|
|
import { RadioButton } from './radio-button';
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
export declare class Radio extends AntdComponent {
|
2019-01-19 10:56:33 +00:00
|
|
|
static Group: typeof RadioGroup;
|
|
|
|
static Button: typeof RadioButton;
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* get focus when component mounted
|
|
|
|
* @default false
|
|
|
|
* @type boolean
|
|
|
|
*/
|
2020-07-17 09:36:58 +00:00
|
|
|
autofocus: boolean;
|
2019-01-01 04:13:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Specifies whether the radio is selected.
|
|
|
|
* @type boolean
|
|
|
|
*/
|
|
|
|
checked: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Specifies the initial state: whether or not the radio is selected.
|
|
|
|
* @type boolean
|
|
|
|
*/
|
|
|
|
defaultChecked: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disable radio
|
|
|
|
* @default false
|
|
|
|
* @type boolean
|
|
|
|
*/
|
|
|
|
disabled: boolean;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* According to value for comparison, to determine whether the selected
|
|
|
|
* @type any
|
|
|
|
*/
|
|
|
|
value: any;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* remove focus
|
|
|
|
*/
|
|
|
|
blur(): void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get focus
|
|
|
|
*/
|
|
|
|
focus(): void;
|
|
|
|
}
|