igniteui-react-core
Version:
Ignite UI React Core.
45 lines (44 loc) • 1.52 kB
JavaScript
import { OnPopupEventArgs as OnPopupEventArgs_internal } from "./OnPopupEventArgs";
var IgrOnPopupEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrOnPopupEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrOnPopupEventArgs.prototype.createImplementation = function () {
return new OnPopupEventArgs_internal();
};
Object.defineProperty(IgrOnPopupEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrOnPopupEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrOnPopupEventArgs.prototype.onImplementationCreated = function () {
};
IgrOnPopupEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrOnPopupEventArgs;
}());
export { IgrOnPopupEventArgs };