igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
98 lines (97 loc) • 3.3 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.ao = 0;
_this.ap = 0;
_this.as = null;
_this.at = null;
_this.av = null;
_this.au = null;
return _this;
}
WebRangeSliderDescription.prototype.get_type = function () {
return "WebRangeSlider";
};
Object.defineProperty(WebRangeSliderDescription.prototype, "lower", {
get: function () {
return this.ao;
},
set: function (a) {
this.ao = a;
this.e("Lower");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "upper", {
get: function () {
return this.ap;
},
set: function (a) {
this.ap = a;
this.e("Upper");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "ariaLabelLower", {
get: function () {
return this.as;
},
set: function (a) {
this.as = a;
this.e("AriaLabelLower");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "ariaLabelUpper", {
get: function () {
return this.at;
},
set: function (a) {
this.at = a;
this.e("AriaLabelUpper");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "inputRef", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.e("InputRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRangeSliderDescription.prototype, "changeRef", {
get: function () {
return this.au;
},
set: function (a) {
this.au = a;
this.e("ChangeRef");
},
enumerable: false,
configurable: true
});
WebRangeSliderDescription.$t = markType(WebRangeSliderDescription, 'WebRangeSliderDescription', WebSliderBaseDescription.$);
return WebRangeSliderDescription;
}(WebSliderBaseDescription));
export { WebRangeSliderDescription };