igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.22 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 WebHeaderTypeDescription = /*@__PURE__*/ (() => {
class WebHeaderTypeDescription extends Description {
constructor() {
super();
this.k = null;
this.o = false;
this.m = false;
this.n = false;
this.p = false;
this.u = null;
}
get_type() {
return "WebHeaderType";
}
get type() {
return this.get_type();
}
get column() {
return this.k;
}
set column(a) {
this.k = a;
this.j("Column");
}
get sorted() {
return this.o;
}
set sorted(a) {
this.o = a;
this.j("Sorted");
}
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 title() {
return this.p;
}
set title(a) {
this.p = a;
this.j("Title");
}
get sortDirection() {
return this.u;
}
set sortDirection(a) {
this.u = a;
this.j("SortDirection");
}
}
WebHeaderTypeDescription.$t = markType(WebHeaderTypeDescription, 'WebHeaderTypeDescription', Description.$);
return WebHeaderTypeDescription;
})();