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