igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
86 lines (85 loc) • 2.88 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.av = 0;
_this.ax = null;
_this.at = false;
_this.a0 = null;
_this.az = null;
return _this;
}
WebSliderDescription.prototype.get_type = function () {
return "WebSlider";
};
Object.defineProperty(WebSliderDescription.prototype, "value", {
get: function () {
return this.av;
},
set: function (a) {
this.av = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "defaultValue", {
get: function () {
return this.ax;
},
set: function (a) {
this.ax = a;
this.j("DefaultValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "invalid", {
get: function () {
return this.at;
},
set: function (a) {
this.at = a;
this.j("Invalid");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "inputRef", {
get: function () {
return this.a0;
},
set: function (a) {
this.a0 = a;
this.j("InputRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebSliderDescription.prototype, "changeRef", {
get: function () {
return this.az;
},
set: function (a) {
this.az = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
WebSliderDescription.$t = markType(WebSliderDescription, 'WebSliderDescription', WebSliderBaseDescription.$);
return WebSliderDescription;
}(WebSliderBaseDescription));
export { WebSliderDescription };