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