/
githubmirror
/
element
Обзор
Документация
Войти
/
githubmirror
/
element
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
types/switch.d.ts
43 строки
1 KB
hetech
Switch: trigger form validation if value changes (#14426)
28 фев 2019, 11:07
28 фев 2019, 11:07
651438e
Код
Авторство
О чём код?
import { ElementUIComponent } from './component' /** Switch Component */ export declare class ElSwitch extends ElementUIComponent { /** Whether Switch is on */ value: boolean /** Whether Switch is disabled */ disabled: boolean /** Width of Switch */ width: number /** Class name of the icon displayed when in on state, overrides on-text */ activeIconClass: string /** Class name of the icon displayed when in off state, overrides off-text */ inactiveIconClass: string /** Text displayed when in on state */ activeText: string /** Text displayed when in off state */ inactiveText: string /** Background color when in on state */ activeColor: string /** Background color when in off state */ inactiveColor: string /** Switch value when in on state */ activeValue: string | boolean | number /** Switch value when in off state */ inactiveValue: string | boolean | number /** Input name of Switch */ name: string /** Whether to trigger form validation */ validateEvent: boolean }