UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

71 lines (70 loc) 2.3 kB
import { GridRowEditEndedEventArgs as GridRowEditEndedEventArgs_internal } from "./GridRowEditEndedEventArgs"; var IgrGridRowEditEndedEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgrGridRowEditEndedEventArgs() { this.mounted = false; this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgrGridRowEditEndedEventArgs.prototype.createImplementation = function () { return new GridRowEditEndedEventArgs_internal(); }; Object.defineProperty(IgrGridRowEditEndedEventArgs.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrGridRowEditEndedEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrGridRowEditEndedEventArgs.prototype.onImplementationCreated = function () { }; IgrGridRowEditEndedEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgrGridRowEditEndedEventArgs.prototype, "row", { /** * Gets the row that ended editing. */ get: function () { return this.i.a; }, set: function (v) { this.i.a = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrGridRowEditEndedEventArgs.prototype, "item", { /** * Gets the row item. */ get: function () { return this.i.item; }, set: function (v) { this.i.item = v; }, enumerable: false, configurable: true }); return IgrGridRowEditEndedEventArgs; }()); export { IgrGridRowEditEndedEventArgs };