UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

81 lines (79 loc) 3.04 kB
/*! * 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 ColorBox, { IOptions } from "devextreme/ui/color_box"; declare type AccessibleOptions = Pick<IOptions, "acceptCustomValue" | "accessKey" | "activeStateEnabled" | "applyButtonText" | "applyValueMode" | "buttons" | "cancelButtonText" | "deferRendering" | "disabled" | "dropDownButtonTemplate" | "editAlphaChannel" | "elementAttr" | "fieldTemplate" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "inputAttr" | "isValid" | "keyStep" | "name" | "onChange" | "onClosed" | "onCopy" | "onCut" | "onDisposing" | "onEnterKey" | "onFocusIn" | "onFocusOut" | "onInitialized" | "onInput" | "onKeyDown" | "onKeyPress" | "onKeyUp" | "onOpened" | "onOptionChanged" | "onPaste" | "onValueChanged" | "opened" | "placeholder" | "readOnly" | "rtlEnabled" | "showClearButton" | "stylingMode" | "tabIndex" | "text" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "visible" | "width">; interface DxColorBox extends AccessibleOptions { readonly instance?: ColorBox; } declare const DxColorBox: VueType.VueConstructor<{ instance: ColorBox; } & { acceptCustomValue: boolean; accessKey: string; activeStateEnabled: boolean; applyButtonText: string; applyValueMode: string; buttons: unknown[]; cancelButtonText: string; deferRendering: boolean; disabled: boolean; dropDownButtonTemplate: unknown; editAlphaChannel: boolean; elementAttr: any; fieldTemplate: unknown; focusStateEnabled: boolean; height: string | number | Function; hint: string; hoverStateEnabled: boolean; inputAttr: any; isValid: boolean; keyStep: 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; placeholder: string; readOnly: boolean; rtlEnabled: boolean; showClearButton: boolean; stylingMode: string; tabIndex: number; text: string; validationError: any; validationErrors: unknown[]; validationMessageMode: string; validationStatus: string; value: string; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxButton: any; declare const DxOptions: any; export default DxColorBox; export { DxColorBox, DxButton, DxOptions };