igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.38 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 WebChipDescription = /*@__PURE__*/ (() => {
class WebChipDescription extends Description {
constructor() {
super();
this.k = false;
this.l = false;
this.m = false;
this.n = false;
this.u = null;
this.s = null;
this.t = null;
}
get_type() {
return "WebChip";
}
get type() {
return this.get_type();
}
get disabled() {
return this.k;
}
set disabled(a) {
this.k = a;
this.j("Disabled");
}
get removable() {
return this.l;
}
set removable(a) {
this.l = a;
this.j("Removable");
}
get selectable() {
return this.m;
}
set selectable(a) {
this.m = a;
this.j("Selectable");
}
get selected() {
return this.n;
}
set selected(a) {
this.n = a;
this.j("Selected");
}
get variant() {
return this.u;
}
set variant(a) {
this.u = a;
this.j("Variant");
}
get removeRef() {
return this.s;
}
set removeRef(a) {
this.s = a;
this.j("RemoveRef");
}
get selectRef() {
return this.t;
}
set selectRef(a) {
this.t = a;
this.j("SelectRef");
}
}
WebChipDescription.$t = markType(WebChipDescription, 'WebChipDescription', Description.$);
return WebChipDescription;
})();