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