UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

95 lines (94 loc) 3.33 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 { NativeUIContainer } from "./NativeUIContainer"; import { markType } from "./type"; /** * @hidden */ var NativeUIGrid = /** @class */ /*@__PURE__*/ (function (_super) { __extends(NativeUIGrid, _super); function NativeUIGrid() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.a0 = null; return _this; } NativeUIGrid.prototype.get_c = function () { return 7; }; Object.defineProperty(NativeUIGrid.prototype, "a5", { get: function () { return this.az.getRowDefinitionsCount(this.u); }, enumerable: false, configurable: true }); Object.defineProperty(NativeUIGrid.prototype, "a2", { get: function () { return this.az.getColumnDefinitionsCount(this.u); }, enumerable: false, configurable: true }); Object.defineProperty(NativeUIGrid.prototype, "az", { get: function () { return this.b; }, enumerable: false, configurable: true }); NativeUIGrid.prototype.a7 = function (a, b, c) { this.az.addRowDefinition(this.u, a, b, c); }; NativeUIGrid.prototype.bd = function (a, b, c) { this.az.updateRowDefinition(this.u, a, b, c); }; NativeUIGrid.prototype.a6 = function (a, b, c) { this.az.addColumnDefinition(this.u, a, b, c); }; NativeUIGrid.prototype.bc = function (a, b, c) { this.az.updateColumnDefinition(this.u, a, b, c); }; NativeUIGrid.prototype.bb = function (a, b) { this.az.setRow(this.u, a, b); }; NativeUIGrid.prototype.ba = function (a, b) { this.az.setColumn(this.u, a, b); }; NativeUIGrid.prototype.a4 = function (a) { return this.az.getRow(this.u, a); }; NativeUIGrid.prototype.a3 = function (a) { return this.az.getColumn(this.u, a); }; NativeUIGrid.prototype.a9 = function (a) { this.az.removeRowDefinition(this.u, a); }; NativeUIGrid.prototype.a8 = function (a) { this.az.removeColumnDefinition(this.u, a); }; Object.defineProperty(NativeUIGrid.prototype, "a1", { get: function () { return this.a0; }, set: function (a) { var b = this.a0; this.a0 = a; if (this.a0 != null) { this.x(1, this.a0); } else { this.ad(1, b); } }, enumerable: false, configurable: true }); NativeUIGrid.$t = markType(NativeUIGrid, 'NativeUIGrid', NativeUIContainer.$); return NativeUIGrid; }(NativeUIContainer)); export { NativeUIGrid };