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