UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

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