UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

73 lines (72 loc) 2.57 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 { GridActionsBaseDirective } from "./GridActionsBaseDirective"; import { markType } from "igniteui-react-core"; /** * @hidden */ var GridEditingActions = /** @class */ /*@__PURE__*/ (function (_super) { __extends(GridEditingActions, _super); function GridEditingActions() { return _super !== null && _super.apply(this, arguments) || this; } Object.defineProperty(GridEditingActions.prototype, "i", { get: function () { var ret_ = this.b.n("addRow"); return ret_; }, set: function (a) { var value_ = a; this.b.w("addRow", value_); }, enumerable: false, configurable: true }); Object.defineProperty(GridEditingActions.prototype, "k", { get: function () { var ret_ = this.b.n("editRow"); return ret_; }, set: function (a) { var value_ = a; this.b.w("editRow", value_); }, enumerable: false, configurable: true }); Object.defineProperty(GridEditingActions.prototype, "j", { get: function () { var ret_ = this.b.n("deleteRow"); return ret_; }, set: function (a) { var value_ = a; this.b.w("deleteRow", value_); }, enumerable: false, configurable: true }); Object.defineProperty(GridEditingActions.prototype, "h", { get: function () { var ret_ = this.b.n("addChild"); return ret_; }, set: function (a) { var value_ = a; this.b.w("addChild", value_); }, enumerable: false, configurable: true }); GridEditingActions.prototype.l = function (a) { this.nativeElement.startEdit(this.b.i(a)); }; GridEditingActions.$t = markType(GridEditingActions, 'GridEditingActions', GridActionsBaseDirective.$); return GridEditingActions; }(GridActionsBaseDirective)); export { GridEditingActions };