UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

157 lines (156 loc) 4.39 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 WebGridStateInfoDescription = /*@__PURE__*/ (() => { class WebGridStateInfoDescription extends Description { constructor() { super(); this.l = null; this.ab = null; this.aa = null; this.ag = null; this.an = false; this.r = null; this.ae = null; this.k = null; this.q = null; this.m = null; this.p = null; this.ai = null; this.n = null; this.o = null; this.aq = null; this.ak = null; } get_type() { return "WebGridStateInfo"; } get type() { return this.get_type(); } get columns() { return this.l; } set columns(a) { this.l = a; this.j("Columns"); } get filtering() { return this.ab; } set filtering(a) { this.ab = a; this.j("Filtering"); } get advancedFiltering() { return this.aa; } set advancedFiltering(a) { this.aa = a; this.j("AdvancedFiltering"); } get paging() { return this.ag; } set paging(a) { this.ag = a; this.j("Paging"); } get moving() { return this.an; } set moving(a) { this.an = a; this.j("Moving"); } get sorting() { return this.r; } set sorting(a) { this.r = a; this.j("Sorting"); } get groupBy() { return this.ae; } set groupBy(a) { this.ae = a; this.j("GroupBy"); } get cellSelection() { return this.k; } set cellSelection(a) { this.k = a; this.j("CellSelection"); } get rowSelection() { return this.q; } set rowSelection(a) { this.q = a; this.j("RowSelection"); } get columnSelection() { return this.m; } set columnSelection(a) { this.m = a; this.j("ColumnSelection"); } get rowPinning() { return this.p; } set rowPinning(a) { this.p = a; this.j("RowPinning"); } get pinningConfig() { return this.ai; } set pinningConfig(a) { this.ai = a; this.j("PinningConfig"); } get expansion() { return this.n; } set expansion(a) { this.n = a; this.j("Expansion"); } get rowIslands() { return this.o; } set rowIslands(a) { this.o = a; this.j("RowIslands"); } get id() { return this.aq; } set id(a) { this.aq = a; this.j("Id"); } get pivotConfiguration() { return this.ak; } set pivotConfiguration(a) { this.ak = a; this.j("PivotConfiguration"); } } WebGridStateInfoDescription.$t = markType(WebGridStateInfoDescription, 'WebGridStateInfoDescription', Description.$); WebGridStateInfoDescription.__marshalByValue = true; WebGridStateInfoDescription.__marshalByValueAlias = "GridStateInfo"; return WebGridStateInfoDescription; })();