igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
201 lines (200 loc) • 6 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebRatingDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebRatingDescription, _super);
function WebRatingDescription() {
var _this = _super.call(this) || this;
_this.w = 0;
_this.x = 0;
_this.ag = null;
_this.ah = null;
_this.y = 0;
_this.m = false;
_this.o = false;
_this.p = false;
_this.k = false;
_this.l = false;
_this.ac = null;
_this.n = false;
_this.ae = null;
_this.af = null;
return _this;
}
WebRatingDescription.prototype.get_type = function () {
return "WebRating";
};
Object.defineProperty(WebRatingDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "max", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("Max");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "step", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("Step");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "label", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("Label");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "valueFormat", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("ValueFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "value", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "hoverPreview", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("HoverPreview");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "readOnly", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("ReadOnly");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "single", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Single");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "allowReset", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("AllowReset");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "disabled", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "defaultValue", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("DefaultValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "invalid", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Invalid");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "changeRef", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.j("ChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebRatingDescription.prototype, "hoverRef", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("HoverRef");
},
enumerable: false,
configurable: true
});
WebRatingDescription.$t = markType(WebRatingDescription, 'WebRatingDescription', Description.$);
return WebRatingDescription;
}(Description));
export { WebRatingDescription };