igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
144 lines (143 loc) • 4.46 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 {
constructor() {
super();
this.hh = null;
this.hg = null;
this.g0 = null;
this.g4 = false;
this.g2 = null;
this.g6 = false;
this.g5 = false;
this.ha = null;
this.he = null;
this.hc = null;
this.hf = null;
this.hb = null;
this.hi = null;
this.hd = null;
this.hj = null;
}
get_type() {
return "WebPivotGrid";
}
get valueChipTemplateRef() {
return this.hh;
}
set valueChipTemplateRef(a) {
this.hh = a;
this.j("ValueChipTemplateRef");
}
get rowDimensionHeaderTemplateRef() {
return this.hg;
}
set rowDimensionHeaderTemplateRef(a) {
this.hg = a;
this.j("RowDimensionHeaderTemplateRef");
}
get pivotConfiguration() {
return this.g0;
}
set pivotConfiguration(a) {
this.g0 = a;
this.j("PivotConfiguration");
}
get autoGenerateConfig() {
return this.g4;
}
set autoGenerateConfig(a) {
this.g4 = a;
this.j("AutoGenerateConfig");
}
get pivotUI() {
return this.g2;
}
set pivotUI(a) {
this.g2 = a;
this.j("PivotUI");
}
get superCompactMode() {
return this.g6;
}
set superCompactMode(a) {
this.g6 = a;
this.j("SuperCompactMode");
}
get defaultExpandState() {
return this.g5;
}
set defaultExpandState(a) {
this.g5 = a;
this.j("DefaultExpandState");
}
get dataRef() {
return this.ha;
}
set dataRef(a) {
this.ha = a;
this.j("DataRef");
}
get emptyPivotGridTemplateRef() {
return this.he;
}
set emptyPivotGridTemplateRef(a) {
this.he = a;
this.j("EmptyPivotGridTemplateRef");
}
get dimensionsChangeRef() {
return this.hc;
}
set dimensionsChangeRef(a) {
this.hc = a;
this.j("DimensionsChangeRef");
}
get pivotConfigurationChangeRef() {
return this.hf;
}
set pivotConfigurationChangeRef(a) {
this.hf = a;
this.j("PivotConfigurationChangeRef");
}
get dimensionInitRef() {
return this.hb;
}
set dimensionInitRef(a) {
this.hb = a;
this.j("DimensionInitRef");
}
get valueInitRef() {
return this.hi;
}
set valueInitRef(a) {
this.hi = a;
this.j("ValueInitRef");
}
get dimensionsSortingExpressionsChangeRef() {
return this.hd;
}
set dimensionsSortingExpressionsChangeRef(a) {
this.hd = a;
this.j("DimensionsSortingExpressionsChangeRef");
}
get valuesChangeRef() {
return this.hj;
}
set valuesChangeRef(a) {
this.hj = a;
this.j("ValuesChangeRef");
}
}
WebPivotGridDescription.$t = markType(WebPivotGridDescription, 'WebPivotGridDescription', WebGridBaseDirectiveDescription.$);
return WebPivotGridDescription;
})();