igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
71 lines (70 loc) • 2.53 kB
JavaScript
import { FilterStringErrorsParsingEventArgs as FilterStringErrorsParsingEventArgs_internal } from "./FilterStringErrorsParsingEventArgs";
/**
* Represents event arguments for when there are errors parsing the filter string
*/
var IgrFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE__*/ (function () {
function IgrFilterStringErrorsParsingEventArgs() {
this.mounted = false;
this._implementation = this.createImplementation();
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
}
IgrFilterStringErrorsParsingEventArgs.prototype.createImplementation = function () {
return new FilterStringErrorsParsingEventArgs_internal();
};
Object.defineProperty(IgrFilterStringErrorsParsingEventArgs.prototype, "nativeElement", {
get: function () {
return this._implementation.nativeElement;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterStringErrorsParsingEventArgs.prototype, "i", {
/**
* @hidden
*/
get: function () {
return this._implementation;
},
enumerable: false,
configurable: true
});
IgrFilterStringErrorsParsingEventArgs.prototype.onImplementationCreated = function () {
};
IgrFilterStringErrorsParsingEventArgs.prototype._provideImplementation = function (i) {
this._implementation = i;
this._implementation.externalObject = this;
this.onImplementationCreated();
if (this._initializeAdapters) {
this._initializeAdapters();
}
};
Object.defineProperty(IgrFilterStringErrorsParsingEventArgs.prototype, "propertyName", {
get: function () {
return this.i.propertyName;
},
set: function (v) {
this.i.propertyName = v;
},
enumerable: false,
configurable: true
});
Object.defineProperty(IgrFilterStringErrorsParsingEventArgs.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 IgrFilterStringErrorsParsingEventArgs;
}());
export { IgrFilterStringErrorsParsingEventArgs };