igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
131 lines (130 loc) • 3.46 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.n = 0;
this.o = 0;
this.w = null;
this.v = null;
this.y = null;
this.p = 0;
this.f = false;
this.g = false;
this.h = false;
this.i = false;
this.x = null;
this.t = null;
this.u = null;
}
get_type() {
return "WebRating";
}
get type() {
return this.get_type();
}
get max() {
return this.n;
}
set max(a) {
this.n = a;
this.e("Max");
}
get step() {
return this.o;
}
set step(a) {
this.o = a;
this.e("Step");
}
get name() {
return this.w;
}
set name(a) {
this.w = a;
this.e("Name");
}
get label() {
return this.v;
}
set label(a) {
this.v = a;
this.e("Label");
}
get valueFormat() {
return this.y;
}
set valueFormat(a) {
this.y = a;
this.e("ValueFormat");
}
get value() {
return this.p;
}
set value(a) {
this.p = a;
this.e("Value");
}
get disabled() {
return this.f;
}
set disabled(a) {
this.f = a;
this.e("Disabled");
}
get hoverPreview() {
return this.g;
}
set hoverPreview(a) {
this.g = a;
this.e("HoverPreview");
}
get readonly() {
return this.h;
}
set readonly(a) {
this.h = a;
this.e("Readonly");
}
get single() {
return this.i;
}
set single(a) {
this.i = a;
this.e("Single");
}
get size() {
return this.x;
}
set size(a) {
this.x = a;
this.e("Size");
}
get changeRef() {
return this.t;
}
set changeRef(a) {
this.t = a;
this.e("ChangeRef");
}
get hoverRef() {
return this.u;
}
set hoverRef(a) {
this.u = a;
this.e("HoverRef");
}
}
WebRatingDescription.$t = markType(WebRatingDescription, 'WebRatingDescription', Description.$);
return WebRatingDescription;
})();