UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

76 lines (75 loc) 2.43 kB
import { ForOfStateDetail as ForOfStateDetail_internal } from "./ForOfStateDetail"; var IgrForOfStateDetail = /** @class */ /*@__PURE__*/ (function () { function IgrForOfStateDetail() { this.mounted = false; this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } IgrForOfStateDetail.prototype.createImplementation = function () { return new ForOfStateDetail_internal(); }; Object.defineProperty(IgrForOfStateDetail.prototype, "nativeElement", { get: function () { return this._implementation.nativeElement; }, enumerable: false, configurable: true }); Object.defineProperty(IgrForOfStateDetail.prototype, "i", { /** * @hidden */ get: function () { return this._implementation; }, enumerable: false, configurable: true }); IgrForOfStateDetail.prototype.onImplementationCreated = function () { }; IgrForOfStateDetail.prototype._provideImplementation = function (i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } }; Object.defineProperty(IgrForOfStateDetail.prototype, "startIndex", { get: function () { return this.i.d; }, set: function (v) { this.i.d = +v; }, enumerable: false, configurable: true }); Object.defineProperty(IgrForOfStateDetail.prototype, "chunkSize", { get: function () { return this.i.c; }, set: function (v) { this.i.c = +v; }, enumerable: false, configurable: true }); IgrForOfStateDetail.prototype.findByName = function (name) { if (this.findEphemera) { if (name && name.indexOf("@@e:") == 0) { return this.findEphemera(name); } } return null; }; IgrForOfStateDetail.prototype.setNativeElement = function (element) { this.i.setNativeElement(element); }; return IgrForOfStateDetail; }()); export { IgrForOfStateDetail };