igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.54 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 WebSliderDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebSliderDescription, _super);
function WebSliderDescription() {
var _this = _super.call(this) || this;
_this.ao = 0;
_this.aq = null;
_this.as = null;
_this.ar = null;
return _this;
}
WebSliderDescription.prototype.get_type = function () {
return "WebSlider";
};
Object.defineProperty(WebSliderDescription.prototype, "value", {
get: function () {
return this.ao;
},
set: function (a) {
this.ao = a;
this.e("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "ariaLabel", {
get: function () {
return this.aq;
},
set: function (a) {
this.aq = a;
this.e("AriaLabel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "inputRef", {
get: function () {
return this.as;
},
set: function (a) {
this.as = a;
this.e("InputRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "changeRef", {
get: function () {
return this.ar;
},
set: function (a) {
this.ar = a;
this.e("ChangeRef");
},
enumerable: false,
configurable: true
});
WebSliderDescription.$t = markType(WebSliderDescription, 'WebSliderDescription', WebSliderBaseDescription.$);
return WebSliderDescription;
}(WebSliderBaseDescription));
export { WebSliderDescription };