ant-design-vue/types/checkbox/checkbox-group.d.ts

35 lines
902 B
TypeScript
Raw Normal View History

// 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';
export declare class CheckboxGroup extends AntdComponent {
/**
* Default selected value
* @type string[]
*/
defaultValue: string[];
/**
* Disable all checkboxes
* @default false
* @type boolean
*/
disabled: boolean;
/**
2019-01-02 12:22:45 +00:00
* Specifies options, you can customize `label` with slot = "label" slot-scope = "option"
* @type Array<string | { label: string, value: string, disabled?: boolean, onChange?: Function }>
*/
options: Array<
2019-01-12 03:33:27 +00:00
string | { label: string; value: string; disabled?: boolean; onChange?: Function }
>;
/**
* Used for setting the currently selected value.
* @type string[]
*/
value: string[];
}