igniteui-angular-inputs
Version:
Ignite UI Angular input components for building rich data visualizations for modern web apps.
34 lines (33 loc) • 1.22 kB
JavaScript
import { GotFocusEventArgs as GotFocusEventArgs_internal } from "./GotFocusEventArgs";
var IgxGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgxGotFocusEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgxGotFocusEventArgs.prototype.createImplementation = function () {
return new GotFocusEventArgs_internal();
};
Object.defineProperty(IgxGotFocusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgxGotFocusEventArgs.prototype.onImplementationCreated = function () {
};
IgxGotFocusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
};
return IgxGotFocusEventArgs;
}());
export { IgxGotFocusEventArgs };