We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yun8711/element-ui-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
el-switch.d.ts•1.02 KiB
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
}