UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

285 lines (284 loc) 7.49 kB
/* 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 WebColumnStateDescription = /*@__PURE__*/ (() => { class WebColumnStateDescription extends Description { constructor() { super(); this.x = false; this.aa = false; this.s = false; this.q = false; this.ab = false; this.t = false; this.bb = null; this.bc = null; this.be = null; this.u = false; this.w = false; this.a8 = null; this.v = false; this.a9 = null; this.a4 = null; this.ba = null; this.y = false; this.z = false; this.m = false; this.n = false; this.ay = 0; this.ax = 0; this.aw = 0; this.av = 0; this.a3 = null; this.bd = null; this.bf = null; this.o = false; this.p = false; this.l = false; this.r = false; this.ac = false; } get_type() { return "WebColumnState"; } get type() { return this.get_type(); } get pinned() { return this.x; } set pinned(a) { this.x = a; this.j("Pinned"); } get sortable() { return this.aa; } set sortable(a) { this.aa = a; this.j("Sortable"); } get filterable() { return this.s; } set filterable(a) { this.s = a; this.j("Filterable"); } get editable() { return this.q; } set editable(a) { this.q = a; this.j("Editable"); } get sortingIgnoreCase() { return this.ab; } set sortingIgnoreCase(a) { this.ab = a; this.j("SortingIgnoreCase"); } get filteringIgnoreCase() { return this.t; } set filteringIgnoreCase(a) { this.t = a; this.j("FilteringIgnoreCase"); } get headerClasses() { return this.bb; } set headerClasses(a) { this.bb = a; this.j("HeaderClasses"); } get headerGroupClasses() { return this.bc; } set headerGroupClasses(a) { this.bc = a; this.j("HeaderGroupClasses"); } get maxWidth() { return this.be; } set maxWidth(a) { this.be = a; this.j("MaxWidth"); } get groupable() { return this.u; } set groupable(a) { this.u = a; this.j("Groupable"); } get hidden() { return this.w; } set hidden(a) { this.w = a; this.j("Hidden"); } get dataType() { return this.a8; } set dataType(a) { this.a8 = a; this.j("DataType"); } get hasSummary() { return this.v; } set hasSummary(a) { this.v = a; this.j("HasSummary"); } get field() { return this.a9; } set field(a) { this.a9 = a; this.j("Field"); } get width() { return this.a4; } set width(a) { this.a4 = a; this.j("Width"); } get header() { return this.ba; } set header(a) { this.ba = a; this.j("Header"); } get resizable() { return this.y; } set resizable(a) { this.y = a; this.j("Resizable"); } get searchable() { return this.z; } set searchable(a) { this.z = a; this.j("Searchable"); } get columnGroup() { return this.m; } set columnGroup(a) { this.m = a; this.j("ColumnGroup"); } get columnLayout() { return this.n; } set columnLayout(a) { this.n = a; this.j("ColumnLayout"); } get rowStart() { return this.ay; } set rowStart(a) { this.ay = a; this.j("RowStart"); } get rowEnd() { return this.ax; } set rowEnd(a) { this.ax = a; this.j("RowEnd"); } get colStart() { return this.aw; } set colStart(a) { this.aw = a; this.j("ColStart"); } get colEnd() { return this.av; } set colEnd(a) { this.av = a; this.j("ColEnd"); } get parent() { return this.a3; } set parent(a) { this.a3 = a; this.j("Parent"); } get key() { return this.bd; } set key(a) { this.bd = a; this.j("Key"); } get parentKey() { return this.bf; } set parentKey(a) { this.bf = a; this.j("ParentKey"); } get disableHiding() { return this.o; } set disableHiding(a) { this.o = a; this.j("DisableHiding"); } get disablePinning() { return this.p; } set disablePinning(a) { this.p = a; this.j("DisablePinning"); } get collapsible() { return this.l; } set collapsible(a) { this.l = a; this.j("Collapsible"); } get expanded() { return this.r; } set expanded(a) { this.r = a; this.j("Expanded"); } get visibleWhenCollapsed() { return this.ac; } set visibleWhenCollapsed(a) { this.ac = a; this.j("VisibleWhenCollapsed"); } } WebColumnStateDescription.$t = markType(WebColumnStateDescription, 'WebColumnStateDescription', Description.$); WebColumnStateDescription.__marshalByValue = true; WebColumnStateDescription.__marshalByValueAlias = "ColumnState"; return WebColumnStateDescription; })();