UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

72 lines (71 loc) 2.42 kB
import { IgrExporterEventArgsDetail } from "./igr-exporter-event-args-detail"; import { ExporterEventArgs as ExporterEventArgs_internal } from "./ExporterEventArgs"; var IgrExporterEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgrExporterEventArgs() { this.mounted = false; this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgrExporterEventArgs.prototype.createImplementation = function () { return new ExporterEventArgs_internal(); }; Object.defineProperty(IgrExporterEventArgs.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrExporterEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrExporterEventArgs.prototype.onImplementationCreated = function () { }; IgrExporterEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgrExporterEventArgs.prototype, "detail", { get: function () { var r = this.i.b; if (r == null) { return null; } if (!r.externalObject) { var e = new IgrExporterEventArgsDetail(); if (r.$type) { e._implementation = r; } else { if (e.i.setNativeElement) { e.i.setNativeElement(r); } } r.externalObject = e; } return r.externalObject; }, set: function (v) { v == null ? this.i.b = null : this.i.b = v.i; }, enumerable: false, configurable: true }); return IgrExporterEventArgs; }()); export { IgrExporterEventArgs };