You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
1.5 KiB
73 lines
1.5 KiB
// Project: https://github.com/vueComponent/ant-design-vue
|
|
// Definitions by: akki-jat <https://github.com/akki-jat>
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
import { AntdComponent, AntdProps } from './component';
|
|
import { VNodeChild } from 'vue';
|
|
export declare class Switch extends AntdComponent {
|
|
$props: AntdProps & {
|
|
/**
|
|
* get focus when component mounted
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
autofocus?: boolean;
|
|
|
|
/**
|
|
* determine whether the Switch is checked
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
checked?: boolean;
|
|
|
|
/**
|
|
* content to be shown when the state is checked
|
|
* @type any (string | slot)
|
|
*/
|
|
checkedChildren?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* to set the initial state
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
defaultChecked?: boolean;
|
|
|
|
/**
|
|
* Disable switch
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
disabled?: boolean;
|
|
|
|
/**
|
|
* loading state of switch
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
loading?: boolean;
|
|
|
|
/**
|
|
* the size of the Switch, options: default small
|
|
* @default 'default'
|
|
* @type string
|
|
*/
|
|
size?: 'small' | 'default' | 'large';
|
|
|
|
/**
|
|
* content to be shown when the state is unchecked
|
|
* @type any (string | slot)
|
|
*/
|
|
unCheckedChildren?: VNodeChild | JSX.Element;
|
|
};
|
|
/**
|
|
* remove focus
|
|
*/
|
|
blur(): void;
|
|
|
|
/**
|
|
* get focus
|
|
*/
|
|
focus(): void;
|
|
}
|