@pepperi-addons/ngx-lib 0.3.1 → 0.3.2

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.
@@ -442,11 +442,11 @@
442
442
  });
443
443
  Object.defineProperty(VirtualScrollerComponent.prototype, "bufferAmount", {
444
444
  get: function () {
445
- if (typeof (this._bufferAmount) === 'number' && this._bufferAmount >= 0) {
445
+ if (typeof (this._bufferAmount) === 'number' && this._bufferAmount > 0) {
446
446
  return this._bufferAmount;
447
447
  }
448
448
  else {
449
- return this.enableUnequalChildrenSizes ? 5 : 0;
449
+ return this.enableUnequalChildrenSizes ? 5 : 1;
450
450
  }
451
451
  },
452
452
  set: function (value) {