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