igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
47 lines (46 loc) • 1.8 kB
JavaScript
import { GridFilterDialogFilterChangeEventArgs as GridFilterDialogFilterChangeEventArgs_internal } from "./GridFilterDialogFilterChangeEventArgs";
var IgcGridFilterDialogFilterChangeEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcGridFilterDialogFilterChangeEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcGridFilterDialogFilterChangeEventArgs.prototype.createImplementation = function () {
return new GridFilterDialogFilterChangeEventArgs_internal();
};
Object.defineProperty(IgcGridFilterDialogFilterChangeEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcGridFilterDialogFilterChangeEventArgs.prototype.onImplementationCreated = function () {
};
IgcGridFilterDialogFilterChangeEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcGridFilterDialogFilterChangeEventArgs.prototype, "filter", {
get: function () {
return this.i.a;
},
set: function (v) {
this.i.a = v;
},
enumerable: false,
configurable: true
});
return IgcGridFilterDialogFilterChangeEventArgs;
}());
export { IgcGridFilterDialogFilterChangeEventArgs };