@syncfusion/ej2-schedule 30.1.37 → 30.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14992,7 +14992,8 @@ var VirtualScroll = /** @__PURE__ @class */ (function () {
14992
14992
  if ((conWrap.scrollTop) - this.translateY < 0) {
14993
14993
  resCollection = this.upScroll(conWrap, firstTDIndex);
14994
14994
  }
14995
- else if (conWrap.scrollTop - this.translateY > scrollHeight) {
14995
+ else if ((conWrap.scrollTop + conWrap.clientHeight >= conWrap.scrollHeight - this.itemSize) ||
14996
+ (conWrap.scrollTop > (this.translateY + scrollHeight))) {
14996
14997
  resCollection = this.downScroll(conWrap, firstTDIndex);
14997
14998
  }
14998
14999
  if (!isNullOrUndefined(resCollection) && resCollection.length > 0) {