igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
34 lines (33 loc) • 1.2 kB
JavaScript
import { OnPopupEventArgs as OnPopupEventArgs_internal } from "./OnPopupEventArgs";
var IgxOnPopupEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxOnPopupEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxOnPopupEventArgs.prototype.createImplementation = function () {
return new OnPopupEventArgs_internal();
};
Object.defineProperty(IgxOnPopupEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxOnPopupEventArgs.prototype.onImplementationCreated = function () {
};
IgxOnPopupEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxOnPopupEventArgs;
}());
export { IgxOnPopupEventArgs };