igniteui-react-inputs
Version:
Ignite UI React input components.
45 lines (44 loc) • 1.68 kB
JavaScript
import { ColorEditorGotFocusEventArgs as ColorEditorGotFocusEventArgs_internal } from "./ColorEditorGotFocusEventArgs";
var IgrColorEditorGotFocusEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrColorEditorGotFocusEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrColorEditorGotFocusEventArgs.prototype.createImplementation = function () {
return new ColorEditorGotFocusEventArgs_internal();
};
Object.defineProperty(IgrColorEditorGotFocusEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrColorEditorGotFocusEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrColorEditorGotFocusEventArgs.prototype.onImplementationCreated = function () {
};
IgrColorEditorGotFocusEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
return IgrColorEditorGotFocusEventArgs;
}());
export { IgrColorEditorGotFocusEventArgs };