UNPKG

igniteui-angular-charts

Version:

Ignite UI Angular charting components for building rich data visualizations for modern web apps.

60 lines (59 loc) 2.22 kB
import { FilterStringErrorsParsingEventArgs as FilterStringErrorsParsingEventArgs_internal } from "./FilterStringErrorsParsingEventArgs"; /** * Represents event arguments for when there are errors parsing the filter string */ var IgxFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE__*/ (function () { function IgxFilterStringErrorsParsingEventArgs() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgxFilterStringErrorsParsingEventArgs.prototype.createImplementation = function () { return new FilterStringErrorsParsingEventArgs_internal(); }; Object.defineProperty(IgxFilterStringErrorsParsingEventArgs.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgxFilterStringErrorsParsingEventArgs.prototype.onImplementationCreated = function () { }; IgxFilterStringErrorsParsingEventArgs.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); }; Object.defineProperty(IgxFilterStringErrorsParsingEventArgs.prototype, "propertyName", { get: function () { return this.i.propertyName; }, set: function (v) { this.i.propertyName = v; }, enumerable: false, configurable: true }); Object.defineProperty(IgxFilterStringErrorsParsingEventArgs.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 IgxFilterStringErrorsParsingEventArgs; }()); export { IgxFilterStringErrorsParsingEventArgs };