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.h = false; this.j = false; this.i = false; this.k = false; this.r = null; this.p = null; this.s = null; this.q = null; this.t = null; } get_type() { return "WebPivotDataSelector"; } get type() { return this.get_type(); } get columnsExpanded() { return this.h; } set columnsExpanded(a) { this.h = a; this.g("ColumnsExpanded"); } get rowsExpanded() { return this.j; } set rowsExpanded(a) { this.j = a; this.g("RowsExpanded"); } get filtersExpanded() { return this.i; } set filtersExpanded(a) { this.i = a; this.g("FiltersExpanded"); } get valuesExpanded() { return this.k; } set valuesExpanded(a) { this.k = a; this.g("ValuesExpanded"); } get gridRef() { return this.r; } set gridRef(a) { this.r = a; this.g("GridRef"); } get columnsExpandedChangeRef() { return this.p; } set columnsExpandedChangeRef(a) { this.p = a; this.g("ColumnsExpandedChangeRef"); } get rowsExpandedChangeRef() { return this.s; } set rowsExpandedChangeRef(a) { this.s = a; this.g("RowsExpandedChangeRef"); } get filtersExpandedChangeRef() { return this.q; } set filtersExpandedChangeRef(a) { this.q = a; this.g("FiltersExpandedChangeRef"); } get valuesExpandedChangeRef() { return this.t; } set valuesExpandedChangeRef(a) { this.t = a; this.g("ValuesExpandedChangeRef"); } } WebPivotDataSelectorDescription.$t = markType(WebPivotDataSelectorDescription, 'WebPivotDataSelectorDescription', Description.$); return WebPivotDataSelectorDescription; })();