mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
0e499ee908
* feat: typescript support Added typing files for better support in Typescript * feat: typescript support Adding declare keywords left in last commit * feat: typescript support Added support to add Ant Design globally (Vue.use(Antd)) * feat: typescript support Fix wrong import file * fix: typescript support changed aobject[] to object[] * feat: typescript support Removed Library version from comments & corrected few incorrect types * fix: typescript support Tree : xxxKeys should support number[] * fix: typescript support table: updated return type for customXXX * fix: typescript support Fix spelling mistake (plcement => placement)
222 lines
4.6 KiB
TypeScript
222 lines
4.6 KiB
TypeScript
// 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 } from "../component";
|
|
import { Option } from "./option";
|
|
import { OptionGroup } from "./option-group";
|
|
|
|
export declare class Select extends AntdComponent {
|
|
static Option: Option;
|
|
static OptGroup: OptionGroup;
|
|
|
|
/**
|
|
* Show clear button.
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
allowClear: boolean;
|
|
|
|
/**
|
|
* Whether the current search will be cleared on selecting an item. Only applies when mode is set to multiple or tags.
|
|
* @default true
|
|
* @type boolean
|
|
*/
|
|
autoClearSearchValue: boolean;
|
|
|
|
/**
|
|
* Get focus by default
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
autoFocus: boolean;
|
|
|
|
/**
|
|
* Whether active first option by default
|
|
* @default true
|
|
* @type boolean
|
|
*/
|
|
defaultActiveFirstOption: boolean;
|
|
|
|
/**
|
|
* Initial selected option.
|
|
* @type string | number | Array<string | number>
|
|
*/
|
|
defaultValue: string | number | Array<string | number>;
|
|
|
|
/**
|
|
* Whether disabled select
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
disabled: boolean;
|
|
|
|
/**
|
|
* className of dropdown menu
|
|
* @type string
|
|
*/
|
|
dropdownClassName: string;
|
|
|
|
/**
|
|
* Whether dropdown's width is same with select.
|
|
* @default true
|
|
* @type boolean
|
|
*/
|
|
dropdownMatchSelectWidth: boolean;
|
|
|
|
/**
|
|
* style of dropdown menu
|
|
* @type object
|
|
*/
|
|
dropdownStyle: object;
|
|
|
|
/**
|
|
* If true, filter options by input, if function, filter options against it. The function will receive two arguments, inputValue and option,
|
|
* if the function returns true, the option will be included in the filtered set; Otherwise, it will be excluded.
|
|
* @default true
|
|
* @type boolean | Function
|
|
*/
|
|
filterOption: boolean | Function;
|
|
|
|
/**
|
|
* Value of action option by default
|
|
* @type string | string[]
|
|
*/
|
|
firstActiveValue: string | string[];
|
|
|
|
/**
|
|
* Parent Node which the selector should be rendered to. Default to body.
|
|
* When position issues happen, try to modify it into scrollable content and position it relative.
|
|
* @default () => document.body
|
|
* @type Function
|
|
*/
|
|
getPopupContainer: (triggerNode: any) => any;
|
|
|
|
/**
|
|
* whether to embed label in value, turn the format of value from string to {key: string, label: vNodes}
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
labelInValue: boolean;
|
|
|
|
/**
|
|
* Max tag count to show
|
|
* @type number
|
|
*/
|
|
maxTagCount: number;
|
|
|
|
/**
|
|
* Placeholder for not showing tags
|
|
* @type any (slot | Function)
|
|
*/
|
|
maxTagPlaceholder: any;
|
|
|
|
/**
|
|
* Set mode of Select
|
|
* @default 'default'
|
|
* @type string
|
|
*/
|
|
mode: "default" | "multiple" | "tags";
|
|
|
|
/**
|
|
* Specify content to show when no result matches..
|
|
* @default 'Not Found'
|
|
* @type any (string | slot)
|
|
*/
|
|
notFoundContent: any;
|
|
|
|
/**
|
|
* Which prop value of option will be used for filter if filterOption is true
|
|
* @default 'value'
|
|
* @type string
|
|
*/
|
|
optionFilterProp: string;
|
|
|
|
/**
|
|
* Which prop value of option will render as content of select.
|
|
* @default 'value' for combobox, 'children' for other modes
|
|
* @type string
|
|
*/
|
|
optionLabelProp: string;
|
|
|
|
/**
|
|
* Placeholder of select
|
|
* @type any (string | slot)
|
|
*/
|
|
placeholder: any;
|
|
|
|
/**
|
|
* Whether show search input in single mode.
|
|
* @default false
|
|
* @type boolean
|
|
*/
|
|
showSearch: boolean;
|
|
|
|
/**
|
|
* Whether to show the drop-down arrow
|
|
* @default true
|
|
* @type boolean
|
|
*/
|
|
showArrow: boolean;
|
|
|
|
/**
|
|
* Size of Select input. default large small
|
|
* @default 'default'
|
|
* @type string
|
|
*/
|
|
size: "default" | "large" | "small";
|
|
|
|
/**
|
|
* The custom suffix icon
|
|
* @type any (string | VNode | slot)
|
|
*/
|
|
suffixIcon: any;
|
|
|
|
/**
|
|
* Separator used to tokenize on tag/multiple mode
|
|
* @type string[]
|
|
*/
|
|
tokenSeparators: string[];
|
|
|
|
/**
|
|
* Current selected option.
|
|
* @type string | number | Array<string | number>
|
|
*/
|
|
value: string | number | Array<string | number>;
|
|
|
|
/**
|
|
* Data of the selectOption, manual construction work is no longer needed if this property has been set
|
|
* @default []
|
|
* @type Array<{ value; label; disabled?; key?; title? }>
|
|
*/
|
|
options: Array<{
|
|
value: any;
|
|
label: any;
|
|
disabled?: boolean;
|
|
key?: any;
|
|
title?: any;
|
|
}>;
|
|
|
|
/**
|
|
* Initial open state of dropdown
|
|
* @type boolean
|
|
*/
|
|
defaultOpen: boolean;
|
|
|
|
/**
|
|
* Controlled open state of dropdown
|
|
* @type boolean
|
|
*/
|
|
open: boolean;
|
|
|
|
/**
|
|
* remove focus
|
|
*/
|
|
blur(): void;
|
|
|
|
/**
|
|
* get focus
|
|
*/
|
|
focus(): void;
|
|
}
|