UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

144 lines (143 loc) 4.46 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 { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription"; import { markType } from "./type"; /** * @hidden */ export let WebPivotGridDescription = /*@__PURE__*/ (() => { class WebPivotGridDescription extends WebGridBaseDirectiveDescription { constructor() { super(); this.hf = null; this.he = null; this.gy = null; this.g2 = false; this.g0 = null; this.g4 = false; this.g3 = false; this.g8 = null; this.hc = null; this.ha = null; this.hd = null; this.g9 = null; this.hg = null; this.hb = null; this.hh = null; } get_type() { return "WebPivotGrid"; } get valueChipTemplateRef() { return this.hf; } set valueChipTemplateRef(a) { this.hf = a; this.j("ValueChipTemplateRef"); } get rowDimensionHeaderTemplateRef() { return this.he; } set rowDimensionHeaderTemplateRef(a) { this.he = a; this.j("RowDimensionHeaderTemplateRef"); } get pivotConfiguration() { return this.gy; } set pivotConfiguration(a) { this.gy = a; this.j("PivotConfiguration"); } get autoGenerateConfig() { return this.g2; } set autoGenerateConfig(a) { this.g2 = a; this.j("AutoGenerateConfig"); } get pivotUI() { return this.g0; } set pivotUI(a) { this.g0 = a; this.j("PivotUI"); } get superCompactMode() { return this.g4; } set superCompactMode(a) { this.g4 = a; this.j("SuperCompactMode"); } get defaultExpandState() { return this.g3; } set defaultExpandState(a) { this.g3 = a; this.j("DefaultExpandState"); } get dataRef() { return this.g8; } set dataRef(a) { this.g8 = a; this.j("DataRef"); } get emptyPivotGridTemplateRef() { return this.hc; } set emptyPivotGridTemplateRef(a) { this.hc = a; this.j("EmptyPivotGridTemplateRef"); } get dimensionsChangeRef() { return this.ha; } set dimensionsChangeRef(a) { this.ha = a; this.j("DimensionsChangeRef"); } get pivotConfigurationChangeRef() { return this.hd; } set pivotConfigurationChangeRef(a) { this.hd = a; this.j("PivotConfigurationChangeRef"); } get dimensionInitRef() { return this.g9; } set dimensionInitRef(a) { this.g9 = a; this.j("DimensionInitRef"); } get valueInitRef() { return this.hg; } set valueInitRef(a) { this.hg = a; this.j("ValueInitRef"); } get dimensionsSortingExpressionsChangeRef() { return this.hb; } set dimensionsSortingExpressionsChangeRef(a) { this.hb = a; this.j("DimensionsSortingExpressionsChangeRef"); } get valuesChangeRef() { return this.hh; } set valuesChangeRef(a) { this.hh = a; this.j("ValuesChangeRef"); } } WebPivotGridDescription.$t = markType(WebPivotGridDescription, 'WebPivotGridDescription', WebGridBaseDirectiveDescription.$); return WebPivotGridDescription; })();