devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
99 lines (97 loc) • 3.86 kB
TypeScript
/*!
* devextreme-vue
* Version: 19.2.6
* Build date: Thu Jan 30 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-vue
*/
import * as VueType from "vue";
import DropDownBox, { IOptions } from "devextreme/ui/drop_down_box";
declare type AccessibleOptions = Pick<IOptions, "acceptCustomValue" | "accessKey" | "activeStateEnabled" | "buttons" | "contentTemplate" | "dataSource" | "deferRendering" | "disabled" | "displayExpr" | "displayValueFormatter" | "dropDownButtonTemplate" | "dropDownOptions" | "elementAttr" | "fieldTemplate" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "inputAttr" | "isValid" | "items" | "maxLength" | "name" | "onChange" | "onClosed" | "onCopy" | "onCut" | "onDisposing" | "onEnterKey" | "onFocusIn" | "onFocusOut" | "onInitialized" | "onInput" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onOpened" | "onOptionChanged" | "onPaste" | "onValueChanged" | "opened" | "openOnFieldClick" | "placeholder" | "readOnly" | "rtlEnabled" | "showClearButton" | "showDropDownButton" | "stylingMode" | "tabIndex" | "text" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "valueChangeEvent" | "valueExpr" | "visible" | "width">;
interface DxDropDownBox extends AccessibleOptions {
readonly instance?: DropDownBox;
}
declare const DxDropDownBox: VueType.VueConstructor<{
instance: DropDownBox;
} & {
acceptCustomValue: boolean;
accessKey: string;
activeStateEnabled: boolean;
buttons: unknown[];
contentTemplate: unknown;
dataSource: any;
deferRendering: boolean;
disabled: boolean;
displayExpr: TimerHandler;
displayValueFormatter: Function;
dropDownButtonTemplate: unknown;
dropDownOptions: any;
elementAttr: any;
fieldTemplate: unknown;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
inputAttr: any;
isValid: boolean;
items: unknown[];
maxLength: string | number;
name: string;
onChange: Function;
onClosed: Function;
onCopy: Function;
onCut: Function;
onDisposing: Function;
onEnterKey: Function;
onFocusIn: Function;
onFocusOut: Function;
onInitialized: Function;
onInput: Function;
onKeyDown: Function;
onKeyPress: Function;
onKeyUp: Function;
onOpened: Function;
onOptionChanged: Function;
onPaste: Function;
onValueChanged: Function;
opened: boolean;
openOnFieldClick: boolean;
placeholder: string;
readOnly: boolean;
rtlEnabled: boolean;
showClearButton: boolean;
showDropDownButton: boolean;
stylingMode: string;
tabIndex: number;
text: string;
validationError: any;
validationErrors: unknown[];
validationMessageMode: string;
validationStatus: string;
value: unknown;
valueChangeEvent: string;
valueExpr: TimerHandler;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
declare const DxAnimation: any;
declare const DxAt: any;
declare const DxBoundaryOffset: any;
declare const DxButton: any;
declare const DxCollision: any;
declare const DxDropDownOptions: any;
declare const DxHide: any;
declare const DxItem: any;
declare const DxMy: any;
declare const DxOffset: any;
declare const DxOptions: any;
declare const DxPosition: any;
declare const DxShow: any;
declare const DxToolbarItem: any;
export default DxDropDownBox;
export { DxDropDownBox, DxAnimation, DxAt, DxBoundaryOffset, DxButton, DxCollision, DxDropDownOptions, DxHide, DxItem, DxMy, DxOffset, DxOptions, DxPosition, DxShow, DxToolbarItem };