igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
37 lines (36 loc) • 1.28 kB
JavaScript
import { LostFocusEventArgs as LostFocusEventArgs_internal } from "./LostFocusEventArgs";
var IgcLostFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcLostFocusEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcLostFocusEventArgs.prototype.createImplementation = function () {
return new LostFocusEventArgs_internal();
};
Object.defineProperty(IgcLostFocusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcLostFocusEventArgs.prototype.onImplementationCreated = function () {
};
IgcLostFocusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgcLostFocusEventArgs;
}());
export { IgcLostFocusEventArgs };