@syncfusion/ej2-navigations 27.2.4 → 27.2.5

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.
@@ -9396,7 +9396,7 @@ var Tab = /** @__PURE__ @class */ (function (_super) {
9396
9396
  else {
9397
9397
  if (_this.items.length > 0 && _this.draggingItems.length > 0) {
9398
9398
  _this.items = _this.draggingItems;
9399
- _this.selectedItem = _this.droppedIndex;
9399
+ _this.selectedItem = isNullOrUndefined(_this.droppedIndex) ? _this.getEleIndex(_this.dragItem) : _this.droppedIndex;
9400
9400
  _this.refresh();
9401
9401
  }
9402
9402
  else {
@@ -15483,7 +15483,7 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
15483
15483
  }
15484
15484
  else {
15485
15485
  this.expandAllNodes(excludeHiddenNodes);
15486
- if (!this.loadOnDemand) {
15486
+ if (!this.loadOnDemand || this.element.classList.contains('e-filtering')) {
15487
15487
  this.updateAttributes(this.element);
15488
15488
  this.updateList();
15489
15489
  }