igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.41 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.f = null;
this.p = null;
this.j = false;
this.h = false;
this.i = false;
this.k = false;
this.q = null;
}
get_type() {
return "WebHeaderType";
}
get type() {
return this.get_type();
}
get column() {
return this.f;
}
set column(a) {
this.f = a;
this.e("Column");
}
get density() {
return this.p;
}
set density(a) {
this.p = a;
this.e("Density");
}
get sorted() {
return this.j;
}
set sorted(a) {
this.j = a;
this.e("Sorted");
}
get selectable() {
return this.h;
}
set selectable(a) {
this.h = a;
this.e("Selectable");
}
get selected() {
return this.i;
}
set selected(a) {
this.i = a;
this.e("Selected");
}
get title() {
return this.k;
}
set title(a) {
this.k = a;
this.e("Title");
}
get sortDirection() {
return this.q;
}
set sortDirection(a) {
this.q = a;
this.e("SortDirection");
}
}
WebHeaderTypeDescription.$t = markType(WebHeaderTypeDescription, 'WebHeaderTypeDescription', Description.$);
return WebHeaderTypeDescription;
})();