devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
60 lines (58 loc) • 1.75 kB
JavaScript
/*!
* 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
*/
;
Object.defineProperty(exports, "__esModule", { value: true });
var VueType = require("vue");
var Vue = VueType.default || VueType;
var progress_bar_1 = require("devextreme/ui/progress_bar");
var component_1 = require("./core/component");
var DxProgressBar = Vue.extend({
extends: component_1.DxComponent,
props: {
disabled: Boolean,
elementAttr: Object,
height: [Function, Number, String],
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: [Function, String],
validationError: Object,
validationErrors: Array,
validationMessageMode: String,
validationStatus: String,
value: Number,
visible: Boolean,
width: [Function, Number, String]
},
computed: {
instance: function () {
return this.$_instance;
}
},
beforeCreate: function () {
this.$_WidgetClass = progress_bar_1.default;
}
});
exports.DxProgressBar = DxProgressBar;
exports.default = DxProgressBar;