UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

124 lines (123 loc) 3.88 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-react-core"; import { WCNativeHelper } from "igniteui-react"; /** * @hidden */ var RowDirective = /** @class */ /*@__PURE__*/ (function (_super) { __extends(RowDirective, _super); function RowDirective() { var _this = _super !== null && _super.apply(this, arguments) || this; _this.a = new WCNativeHelper(); _this.g = null; return _this; } Object.defineProperty(RowDirective.prototype, "b", { get: function () { return this.a; }, enumerable: false, configurable: true }); Object.defineProperty(RowDirective.prototype, "nativeElement", { get: function () { return this.g; }, set: function (a) { this.g = a; this.a.o = this.g; }, enumerable: false, configurable: true }); RowDirective.prototype.setNativeElement = function (a) { this.nativeElement = a; }; Object.defineProperty(RowDirective.prototype, "h", { get: function () { var ret_ = this.b.n("data"); return ret_; }, set: function (a) { var value_ = a; this.b.w("data", value_); }, enumerable: false, configurable: true }); Object.defineProperty(RowDirective.prototype, "f", { get: function () { var ret_ = this.b.n("index"); return ret_; }, set: function (a) { var value_ = a; this.b.w("index", value_); }, enumerable: false, configurable: true }); Object.defineProperty(RowDirective.prototype, "c", { get: function () { var ret_ = this.b.n("disabled"); return ret_; }, set: function (a) { var value_ = a; this.b.w("disabled", value_); }, enumerable: false, configurable: true }); Object.defineProperty(RowDirective.prototype, "e", { get: function () { var ret_ = this.b.n("pinned"); return ret_; }, set: function (a) { var value_ = a; this.b.w("pinned", value_); }, enumerable: false, configurable: true }); Object.defineProperty(RowDirective.prototype, "d", { get: function () { var ret_ = this.b.n("expanded"); return ret_; }, set: function (a) { var value_ = a; this.b.w("expanded", value_); }, enumerable: false, configurable: true }); RowDirective.prototype.p = function (a) { this.nativeElement.update(this.b.i(a)); }; RowDirective.prototype.k = function () { this.nativeElement.delete(); }; RowDirective.prototype.l = function (a) { this.nativeElement.isCellActive(this.b.i(a)); }; RowDirective.prototype.m = function () { this.nativeElement.pin(); }; RowDirective.prototype.o = function () { this.nativeElement.unpin(); }; RowDirective.prototype.j = function () { this.nativeElement.beginAddRow(); }; RowDirective.$t = markType(RowDirective, 'RowDirective'); return RowDirective; }(Base)); export { RowDirective };