igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.31 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { __extends } from "tslib";
import { WebSliderBaseDescription } from "./WebSliderBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebRangeSliderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebRangeSliderDescription, _super);
function WebRangeSliderDescription() {
var _this = _super.call(this) || this;
_this.at = 0;
_this.au = 0;
_this.az = null;
_this.a0 = null;
_this.ay = null;
_this.ax = null;
return _this;
}
WebRangeSliderDescription.prototype.get_type = function () {
return "WebRangeSlider";
};
Object.defineProperty(WebRangeSliderDescription.prototype, "lower", {
get: function () {
return this.at;
},
set: function (a) {
this.at = a;
this.j("Lower");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "upper", {
get: function () {
return this.au;
},
set: function (a) {
this.au = a;
this.j("Upper");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "thumbLabelLower", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("ThumbLabelLower");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "thumbLabelUpper", {
get: function () {
return this.a0;
},
set: function (a) {
this.a0 = a;
this.j("ThumbLabelUpper");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "inputRef", {
get: function () {
return this.ay;
},
set: function (a) {
this.ay = a;
this.j("InputRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "changeRef", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
WebRangeSliderDescription.$t = markType(WebRangeSliderDescription, 'WebRangeSliderDescription', WebSliderBaseDescription.$);
return WebRangeSliderDescription;
}(WebSliderBaseDescription));
export { WebRangeSliderDescription };