UNPKG

igniteui-react-core

Version:
141 lines (140 loc) 4.59 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.h = false; _this.j = false; _this.i = false; _this.k = false; _this.r = null; _this.p = null; _this.s = null; _this.q = null; _this.t = 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.h; }, set: function (a) { this.h = a; this.g("ColumnsExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "rowsExpanded", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("RowsExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "filtersExpanded", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("FiltersExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "valuesExpanded", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("ValuesExpanded"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "gridRef", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("GridRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "columnsExpandedChangeRef", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("ColumnsExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "rowsExpandedChangeRef", { get: function () { return this.s; }, set: function (a) { this.s = a; this.g("RowsExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "filtersExpandedChangeRef", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("FiltersExpandedChangeRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebPivotDataSelectorDescription.prototype, "valuesExpandedChangeRef", { get: function () { return this.t; }, set: function (a) { this.t = a; this.g("ValuesExpandedChangeRef"); }, enumerable: false, configurable: true }); WebPivotDataSelectorDescription.$t = markType(WebPivotDataSelectorDescription, 'WebPivotDataSelectorDescription', Description.$); return WebPivotDataSelectorDescription; }(Description)); export { WebPivotDataSelectorDescription };