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