UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

99 lines (98 loc) 3.09 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 WebPivotDataSelectorDescription = /*@__PURE__*/ (() => { class WebPivotDataSelectorDescription extends Description { constructor() { super(); this.k = false; this.m = false; this.l = false; this.n = false; this.u = null; this.s = null; this.v = null; this.t = null; this.w = null; } get_type() { return "WebPivotDataSelector"; } get type() { return this.get_type(); } get columnsExpanded() { return this.k; } set columnsExpanded(a) { this.k = a; this.j("ColumnsExpanded"); } get rowsExpanded() { return this.m; } set rowsExpanded(a) { this.m = a; this.j("RowsExpanded"); } get filtersExpanded() { return this.l; } set filtersExpanded(a) { this.l = a; this.j("FiltersExpanded"); } get valuesExpanded() { return this.n; } set valuesExpanded(a) { this.n = a; this.j("ValuesExpanded"); } get gridRef() { return this.u; } set gridRef(a) { this.u = a; this.j("GridRef"); } get columnsExpandedChangeRef() { return this.s; } set columnsExpandedChangeRef(a) { this.s = a; this.j("ColumnsExpandedChangeRef"); } get rowsExpandedChangeRef() { return this.v; } set rowsExpandedChangeRef(a) { this.v = a; this.j("RowsExpandedChangeRef"); } get filtersExpandedChangeRef() { return this.t; } set filtersExpandedChangeRef(a) { this.t = a; this.j("FiltersExpandedChangeRef"); } get valuesExpandedChangeRef() { return this.w; } set valuesExpandedChangeRef(a) { this.w = a; this.j("ValuesExpandedChangeRef"); } } WebPivotDataSelectorDescription.$t = markType(WebPivotDataSelectorDescription, 'WebPivotDataSelectorDescription', Description.$); return WebPivotDataSelectorDescription; })();