@syncfusion/ej2-filemanager 27.1.55 → 27.2.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.
@@ -9697,7 +9697,7 @@ var Virtualization = /** @__PURE__ @class */ (function () {
9697
9697
  var itemCount = this.rowItemCount *
9698
9698
  (Math.round(parseFloat(formatUnit(this.largeIconInstance.element.clientHeight)) / this.itemList[0].offsetHeight));
9699
9699
  // If the calculated item count is greater than the data source length, set the item count to the data source length
9700
- if (itemCount > dataSourceLength) {
9700
+ if (itemCount > dataSourceLength || itemCount === 0) {
9701
9701
  itemCount = dataSourceLength;
9702
9702
  }
9703
9703
  return itemCount;
@@ -10378,7 +10378,7 @@ var NavigationPane = /** @__PURE__ @class */ (function () {
10378
10378
  this.addDragDrop();
10379
10379
  break;
10380
10380
  case 'navigationPaneSettings':
10381
- read(this.parent, finalizeEnd, '/');
10381
+ read(this.parent, finalizeEnd, this.parent.path);
10382
10382
  if (e.oldProp.navigationPaneSettings.sortOrder !== e.newProp.navigationPaneSettings.sortOrder) {
10383
10383
  this.treeObj.sortOrder = e.newProp.navigationPaneSettings.sortOrder;
10384
10384
  }