igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
67 lines (66 loc) • 2.15 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 WebPivotDataSelectorDescription = /*@__PURE__*/ (() => {
class WebPivotDataSelectorDescription extends Description {
constructor() {
super();
this.f = false;
this.h = false;
this.g = false;
this.i = false;
this.n = null;
}
get_type() {
return "WebPivotDataSelector";
}
get type() {
return this.get_type();
}
get columnsExpanded() {
return this.f;
}
set columnsExpanded(a) {
this.f = a;
this.e("ColumnsExpanded");
}
get rowsExpanded() {
return this.h;
}
set rowsExpanded(a) {
this.h = a;
this.e("RowsExpanded");
}
get filtersExpanded() {
return this.g;
}
set filtersExpanded(a) {
this.g = a;
this.e("FiltersExpanded");
}
get valuesExpanded() {
return this.i;
}
set valuesExpanded(a) {
this.i = a;
this.e("ValuesExpanded");
}
get gridRef() {
return this.n;
}
set gridRef(a) {
this.n = a;
this.e("GridRef");
}
}
WebPivotDataSelectorDescription.$t = markType(WebPivotDataSelectorDescription, 'WebPivotDataSelectorDescription', Description.$);
return WebPivotDataSelectorDescription;
})();