igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
194 lines (193 loc) • 6.27 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 { __extends } from "tslib";
import { WebGridBaseDirectiveDescription } from "./WebGridBaseDirectiveDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebPivotGridDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotGridDescription, _super);
function WebPivotGridDescription() {
var _this = _super.call(this) || this;
_this.hm = null;
_this.g5 = null;
_this.g8 = false;
_this.g9 = false;
_this.hd = null;
_this.g7 = false;
_this.hh = null;
_this.he = null;
_this.hl = null;
_this.hj = null;
_this.hi = null;
_this.hn = null;
_this.hk = null;
_this.ho = null;
return _this;
}
WebPivotGridDescription.prototype.get_type = function () {
return "WebPivotGrid";
};
Object.defineProperty(WebPivotGridDescription.prototype, "valueChipTemplateRef", {
get: function () {
return this.hm;
},
set: function (a) {
this.hm = a;
this.e("ValueChipTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "pivotConfiguration", {
get: function () {
return this.g5;
},
set: function (a) {
this.g5 = a;
this.e("PivotConfiguration");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "showPivotConfigurationUI", {
get: function () {
return this.g8;
},
set: function (a) {
this.g8 = a;
this.e("ShowPivotConfigurationUI");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "superCompactMode", {
get: function () {
return this.g9;
},
set: function (a) {
this.g9 = a;
this.e("SuperCompactMode");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "dimensionDataColumns", {
get: function () {
return this.hd;
},
set: function (a) {
this.hd = a;
this.e("DimensionDataColumns");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "defaultExpandState", {
get: function () {
return this.g7;
},
set: function (a) {
this.g7 = a;
this.e("DefaultExpandState");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "dataRef", {
get: function () {
return this.hh;
},
set: function (a) {
this.hh = a;
this.e("DataRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "filteredData", {
get: function () {
return this.he;
},
set: function (a) {
this.he = a;
this.e("FilteredData");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "emptyPivotGridTemplateRef", {
get: function () {
return this.hl;
},
set: function (a) {
this.hl = a;
this.e("EmptyPivotGridTemplateRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "dimensionsChangeRef", {
get: function () {
return this.hj;
},
set: function (a) {
this.hj = a;
this.e("DimensionsChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "dimensionInitRef", {
get: function () {
return this.hi;
},
set: function (a) {
this.hi = a;
this.e("DimensionInitRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "valueInitRef", {
get: function () {
return this.hn;
},
set: function (a) {
this.hn = a;
this.e("ValueInitRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "dimensionsSortingExpressionsChangeRef", {
get: function () {
return this.hk;
},
set: function (a) {
this.hk = a;
this.e("DimensionsSortingExpressionsChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotGridDescription.prototype, "valuesChangeRef", {
get: function () {
return this.ho;
},
set: function (a) {
this.ho = a;
this.e("ValuesChangeRef");
},
enumerable: false,
configurable: true
});
WebPivotGridDescription.$t = markType(WebPivotGridDescription, 'WebPivotGridDescription', WebGridBaseDirectiveDescription.$);
return WebPivotGridDescription;
}(WebGridBaseDirectiveDescription));
export { WebPivotGridDescription };