igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
179 lines (178 loc) • 5.71 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var WebPivotDimensionDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPivotDimensionDescription, _super);
function WebPivotDimensionDescription() {
var _this = _super.call(this) || this;
_this.m = null;
_this.ab = null;
_this.z = null;
_this.p = false;
_this.k = null;
_this.r = false;
_this.ac = null;
_this.y = null;
_this.ad = null;
_this.v = 0;
_this.q = false;
_this.aa = null;
return _this;
}
WebPivotDimensionDescription.prototype.get_type = function () {
return "WebPivotDimension";
};
Object.defineProperty(WebPivotDimensionDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "childLevel", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("ChildLevel");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "memberName", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("MemberName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "displayName", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("DisplayName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "enabled", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("Enabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "filter", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("Filter");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "sortable", {
get: function () {
return this.r;
},
set: function (a) {
this.r = a;
this.j("Sortable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "sortDirection", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.j("SortDirection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "dataType", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("DataType");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "width", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("Width");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "level", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Level");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "horizontalSummary", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("HorizontalSummary");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPivotDimensionDescription.prototype, "memberFunctionRef", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("MemberFunctionRef");
},
enumerable: false,
configurable: true
});
WebPivotDimensionDescription.$t = markType(WebPivotDimensionDescription, 'WebPivotDimensionDescription', Description.$);
WebPivotDimensionDescription.__marshalByValue = true;
WebPivotDimensionDescription.__marshalByValueAlias = "PivotDimension";
return WebPivotDimensionDescription;
}(Description));
export { WebPivotDimensionDescription };