UNPKG

devextreme-vue

Version:

DevExtreme Vue UI and Visualization Components

61 lines (59 loc) 2.13 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 Slider, { IOptions } from "devextreme/ui/slider"; declare type AccessibleOptions = Pick<IOptions, "accessKey" | "activeStateEnabled" | "disabled" | "elementAttr" | "focusStateEnabled" | "height" | "hint" | "hoverStateEnabled" | "isValid" | "keyStep" | "label" | "max" | "min" | "name" | "onContentReady" | "onDisposing" | "onInitialized" | "onOptionChanged" | "onValueChanged" | "readOnly" | "rtlEnabled" | "showRange" | "step" | "tabIndex" | "tooltip" | "validationError" | "validationErrors" | "validationMessageMode" | "validationStatus" | "value" | "visible" | "width">; interface DxSlider extends AccessibleOptions { readonly instance?: Slider; } declare const DxSlider: VueType.VueConstructor<{ instance: Slider; } & { accessKey: string; activeStateEnabled: boolean; disabled: boolean; elementAttr: any; focusStateEnabled: boolean; height: string | number | Function; hint: string; hoverStateEnabled: boolean; isValid: boolean; keyStep: number; label: any; max: number; min: number; name: string; onContentReady: Function; onDisposing: Function; onInitialized: Function; onOptionChanged: Function; onValueChanged: Function; readOnly: boolean; rtlEnabled: boolean; showRange: boolean; step: number; tabIndex: number; tooltip: any; validationError: any; validationErrors: unknown[]; validationMessageMode: string; validationStatus: string; value: number; visible: boolean; width: string | number | Function; } & VueType.default>; declare const DxFormat: any; declare const DxLabel: any; declare const DxTooltip: any; export default DxSlider; export { DxSlider, DxFormat, DxLabel, DxTooltip };