@syncfusion/ej2-navigations 27.2.3 → 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 {
@@ -11203,7 +11203,9 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
11203
11203
  .filter(function (childNode) {
11204
11204
  if (childNode && typeof childNode === 'object' && 'pid' in childNode) {
11205
11205
  var childNodePid = childNode.pid;
11206
- return childNodePid.toString() === dataUid;
11206
+ if (!isNullOrUndefined(childNodePid)) {
11207
+ return childNodePid.toString() === dataUid;
11208
+ }
11207
11209
  }
11208
11210
  return false;
11209
11211
  });
@@ -15481,7 +15483,7 @@ var TreeView = /** @__PURE__ @class */ (function (_super) {
15481
15483
  }
15482
15484
  else {
15483
15485
  this.expandAllNodes(excludeHiddenNodes);
15484
- if (!this.loadOnDemand) {
15486
+ if (!this.loadOnDemand || this.element.classList.contains('e-filtering')) {
15485
15487
  this.updateAttributes(this.element);
15486
15488
  this.updateList();
15487
15489
  }