UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

99 lines (98 loc) 2.92 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 { Base, markType } from "igniteui-webcomponents-core"; /** * @hidden */ var GridColumnSpacer = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridColumnSpacer, _super); function GridColumnSpacer() { var _this = _super.call(this) || this; _this.g = 0; _this.h = 0; _this.m = 0; _this.c = false; _this.l = 0; _this.b = false; _this.a = false; _this.m = GridColumnSpacer.k; GridColumnSpacer.k++; return _this; } Object.defineProperty(GridColumnSpacer.prototype, "i", { get: function () { return this.g; }, set: function (a) { this.g = a; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "j", { get: function () { return this.h; }, set: function (a) { this.h = a; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "o", { get: function () { return this.m; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "f", { get: function () { return this.c; }, set: function (a) { this.c = a; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "n", { get: function () { return this.l; }, set: function (a) { this.l = a; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "e", { get: function () { return this.b; }, set: function (a) { this.b = a; }, enumerable: false, configurable: true }); Object.defineProperty(GridColumnSpacer.prototype, "d", { get: function () { return this.a; }, set: function (a) { this.a = a; }, enumerable: false, configurable: true }); GridColumnSpacer.$t = markType(GridColumnSpacer, 'GridColumnSpacer'); GridColumnSpacer.k = 0; return GridColumnSpacer; }(Base)); export { GridColumnSpacer };