element/types/switch.d.ts
2017-10-19 03:30:24 -05:00

41 lines
970 B
TypeScript

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
}