checkbox-group.d.ts 592 B

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