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.
53 lines
1.1 KiB
53 lines
1.1 KiB
// 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
|
|
|
|
import { AntdComponent } from '../component';
|
|
|
|
export declare class RadioGroup extends AntdComponent {
|
|
/**
|
|
* Specifies the initial state: whether or not the radio is selected.
|
|
* @type boolean
|
|
*/
|
|
defaultValue: boolean;
|
|
|
|
/**
|
|
* Disable radio
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
disabled: boolean;
|
|
|
|
/**
|
|
* The name property of all input[type="radio"] children
|
|
* @type string
|
|
*/
|
|
name: string;
|
|
|
|
/**
|
|
* set children optional
|
|
* @type Array<string | { label: string, value: string, disabled?: boolean }>
|
|
*/
|
|
options: Array<string | { label: string; value: string; disabled?: boolean }>;
|
|
|
|
/**
|
|
* size for radio button style
|
|
* @default 'default'
|
|
* @type String
|
|
*/
|
|
size: 'large' | 'default' | 'small';
|
|
|
|
/**
|
|
* Used for setting the currently selected value.
|
|
* @type any
|
|
*/
|
|
value: any;
|
|
|
|
/**
|
|
* style type of radio button
|
|
* @default 'outline'
|
|
* @type string
|
|
*/
|
|
buttonStyle: 'outline' | 'solid';
|
|
}
|