igniteui-react-core
Version:
Ignite UI React Core.
144 lines (143 loc) • 4.33 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebPivotGridDescription = /*@__PURE__*/ (() => {
class WebPivotGridDescription extends WebGridBaseDirectiveDescription {
get_type() {
return "WebPivotGrid";
}
constructor() {
super();
this.g6 = null;
this.g5 = null;
this.gp = null;
this.gt = false;
this.gr = null;
this.gv = false;
this.gu = false;
this.gz = null;
this.g3 = null;
this.g1 = null;
this.g4 = null;
this.g0 = null;
this.g7 = null;
this.g2 = null;
this.g8 = null;
}
get valueChipTemplateRef() {
return this.g6;
}
set valueChipTemplateRef(a) {
this.g6 = a;
this.g("ValueChipTemplateRef");
}
get rowDimensionHeaderTemplateRef() {
return this.g5;
}
set rowDimensionHeaderTemplateRef(a) {
this.g5 = a;
this.g("RowDimensionHeaderTemplateRef");
}
get pivotConfiguration() {
return this.gp;
}
set pivotConfiguration(a) {
this.gp = a;
this.g("PivotConfiguration");
}
get autoGenerateConfig() {
return this.gt;
}
set autoGenerateConfig(a) {
this.gt = a;
this.g("AutoGenerateConfig");
}
get pivotUI() {
return this.gr;
}
set pivotUI(a) {
this.gr = a;
this.g("PivotUI");
}
get superCompactMode() {
return this.gv;
}
set superCompactMode(a) {
this.gv = a;
this.g("SuperCompactMode");
}
get defaultExpandState() {
return this.gu;
}
set defaultExpandState(a) {
this.gu = a;
this.g("DefaultExpandState");
}
get dataRef() {
return this.gz;
}
set dataRef(a) {
this.gz = a;
this.g("DataRef");
}
get emptyPivotGridTemplateRef() {
return this.g3;
}
set emptyPivotGridTemplateRef(a) {
this.g3 = a;
this.g("EmptyPivotGridTemplateRef");
}
get dimensionsChangeRef() {
return this.g1;
}
set dimensionsChangeRef(a) {
this.g1 = a;
this.g("DimensionsChangeRef");
}
get pivotConfigurationChangeRef() {
return this.g4;
}
set pivotConfigurationChangeRef(a) {
this.g4 = a;
this.g("PivotConfigurationChangeRef");
}
get dimensionInitRef() {
return this.g0;
}
set dimensionInitRef(a) {
this.g0 = a;
this.g("DimensionInitRef");
}
get valueInitRef() {
return this.g7;
}
set valueInitRef(a) {
this.g7 = a;
this.g("ValueInitRef");
}
get dimensionsSortingExpressionsChangeRef() {
return this.g2;
}
set dimensionsSortingExpressionsChangeRef(a) {
this.g2 = a;
this.g("DimensionsSortingExpressionsChangeRef");
}
get valuesChangeRef() {
return this.g8;
}
set valuesChangeRef(a) {
this.g8 = a;
this.g("ValuesChangeRef");
}
}
WebPivotGridDescription.$t = /*@__PURE__*/ markType(WebPivotGridDescription, 'WebPivotGridDescription', WebGridBaseDirectiveDescription.$);
return WebPivotGridDescription;
})();