devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
50 lines (48 loc) • 1.72 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 Button, { IOptions } from "devextreme/ui/button";
declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "icon" | "onClick" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "rtlEnabled" | "stylingMode" | "tabIndex" | "template" | "text" | "type" | "useSubmitBehavior" | "validationGroup" | "visible" | "width">;
interface DxButton extends AccessibleOptions {
readonly instance?: Button;
}
declare const DxButton: VueType.VueConstructor<{
instance: Button;
} & {
accessKey: string;
activeStateEnabled: boolean;
disabled: boolean;
elementAttr: any;
focusStateEnabled: boolean;
height: string | number | Function;
hint: string;
hoverStateEnabled: boolean;
icon: string;
onClick: Function;
onContentReady: Function;
onDisposing: Function;
onInitialized: Function;
onOptionChanged: Function;
rtlEnabled: boolean;
stylingMode: string;
tabIndex: number;
template: unknown;
text: string;
type: string;
useSubmitBehavior: boolean;
validationGroup: string;
visible: boolean;
width: string | number | Function;
} & VueType.default>;
export default DxButton;
export { DxButton };