mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-11-30 11:17:38 +08:00
41 lines
970 B
TypeScript
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
|
|
}
|