UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

141 lines (140 loc) 4.73 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebPivotDataSelectorDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebPivotDataSelectorDescription, _super); function WebPivotDataSelectorDescription() { var _this = _super.call(this) || this; _this.k = false; _this.m = false; _this.l = false; _this.n = false; _this.u = null; _this.s = null; _this.v = null; _this.t = null; _this.w = null; return _this; } WebPivotDataSelectorDescription.prototype.get_type = function () { return "WebPivotDataSelector"; }; Object.defineProperty(WebPivotDataSelectorDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "columnsExpanded", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("ColumnsExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "rowsExpanded", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("RowsExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "filtersExpanded", { get: function () { return this.l; }, set: function (a) { this.l = a; this.j("FiltersExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "valuesExpanded", { get: function () { return this.n; }, set: function (a) { this.n = a; this.j("ValuesExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "gridRef", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("GridRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "columnsExpandedChangeRef", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("ColumnsExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "rowsExpandedChangeRef", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("RowsExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "filtersExpandedChangeRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("FiltersExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "valuesExpandedChangeRef", { get: function () { return this.w; }, set: function (a) { this.w = a; this.j("ValuesExpandedChangeRef"); }, enumerable: false, configurable: true }); WebPivotDataSelectorDescription.$t = markType(WebPivotDataSelectorDescription, 'WebPivotDataSelectorDescription', Description.$); return WebPivotDataSelectorDescription; }(Description)); export { WebPivotDataSelectorDescription };