UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

51 lines (49 loc) 1.82 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 ProgressBar, { IOptions } from "devextreme/ui/progress_bar"; declare type AccessibleOptions = Pick<IOptions, "disabled" | "elementAttr" | "height" | "hint" | "hoverStateEnabled" | "isValid" | "max" | "min" | "onComplete" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "onValueChanged" | "readOnly" | "rtlEnabled" | "showStatus" | "statusFormat" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "visible" | "width">; interface DxProgressBar extends AccessibleOptions { readonly instance?: ProgressBar; } declare const DxProgressBar: VueType.VueConstructor<{ instance: ProgressBar; } & { disabled: boolean; elementAttr: any; height: string | number | Function; hint: string; hoverStateEnabled: boolean; isValid: boolean; max: number; min: number; onComplete: Function; onContentReady: Function; onDisposing: Function; onInitialized: Function; onOptionChanged: Function; onValueChanged: Function; readOnly: boolean; rtlEnabled: boolean; showStatus: boolean; statusFormat: TimerHandler; validationError: any; validationErrors: unknown[]; validationMessageMode: string; validationStatus: string; value: number; visible: boolean; width: string | number | Function; } & VueType.default>; export default DxProgressBar; export { DxProgressBar };