devextreme-vue
Version:
DevExtreme Vue UI and Visualization Components
58 lines (56 loc) • 1.71 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 scroll_view_1 = require("devextreme/ui/scroll_view");
var component_1 = require("./core/component");
var DxScrollView = Vue.extend({
extends: component_1.DxComponent,
props: {
bounceEnabled: Boolean,
direction: String,
disabled: Boolean,
elementAttr: Object,
height: [Function, Number, String],
onDisposing: Function,
onInitialized: Function,
onOptionChanged: Function,
onPullDown: Function,
onReachBottom: Function,
onScroll: Function,
onUpdated: Function,
pulledDownText: String,
pullingDownText: String,
reachBottomText: String,
refreshingText: String,
rtlEnabled: Boolean,
scrollByContent: Boolean,
scrollByThumb: Boolean,
showScrollbar: String,
useNative: Boolean,
width: [Function, Number, String]
},
computed: {
instance: function () {
return this.$_instance;
}
},
beforeCreate: function () {
this.$_hasTranscludedContent = true;
this.$_WidgetClass = scroll_view_1.default;
}
});
exports.DxScrollView = DxScrollView;
exports.default = DxScrollView;