igniteui-webcomponents-charts
Version:
Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.
63 lines (62 loc) • 2.25 kB
JavaScript
import { FilterStringErrorsParsingEventArgs as FilterStringErrorsParsingEventArgs_internal } from "./FilterStringErrorsParsingEventArgs";
/**
* Represents event arguments for when there are errors parsing the filter string
*/
var IgcFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgcFilterStringErrorsParsingEventArgs() {
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgcFilterStringErrorsParsingEventArgs.prototype.createImplementation = function () {
return new FilterStringErrorsParsingEventArgs_internal();
};
Object.defineProperty(IgcFilterStringErrorsParsingEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgcFilterStringErrorsParsingEventArgs.prototype.onImplementationCreated = function () {
};
IgcFilterStringErrorsParsingEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgcFilterStringErrorsParsingEventArgs.prototype, "propertyName", {
get: function () {
return this.i.propertyName;
},
set: function (v) {
this.i.propertyName = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgcFilterStringErrorsParsingEventArgs.prototype, "errors", {
/**
* Gets the errors from parsing the filter string.
*/
get: function () {
return this.i.errors;
},
set: function (v) {
this.i.errors = v;
},
enumerable: false,
configurable: true
});
return IgcFilterStringErrorsParsingEventArgs;
}());
export { IgcFilterStringErrorsParsingEventArgs };