UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

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