UNPKG

592 BTypeScriptView Raw
1import { ElementUIComponent, ElementUIComponentSize } from './component'
2
3/** Checkbox Group Component */
4export declare class ElCheckboxGroup extends ElementUIComponent {
5 /** Size of checkbox buttons or bordered checkboxes */
6 size: ElementUIComponentSize
7
8 /** Whether the nesting checkboxes are disabled */
9 disabled: boolean
10
11 /** Minimum number of checkbox checked */
12 min: number
13
14 /** Maximum number of checkbox checked */
15 max: number
16
17 /** Font color when button is active */
18 textColor: string
19
20 /** Border and background color when button is active */
21 fill: string
22}