@dangl/angular-ava 1.5.2-beta0082 → 1.5.2-beta0083

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.
@@ -39,12 +39,12 @@ var ModeViewType;
39
39
 
40
40
  // This file is automatically generated as part of the build process
41
41
  const version = {
42
- version: "1.5.2-beta0082",
43
- commitInfo: "Branch.develop.Sha.0ccd1168d5b030b759dc5ff328bb2a3971aa9a95",
42
+ version: "1.5.2-beta0083",
43
+ commitInfo: "Branch.develop.Sha.a1a6e645a17495ec944cf27c5163cadbc773d254",
44
44
  commitDate: "2026-04-26",
45
- commitHash: "0ccd1168d5b030b759dc5ff328bb2a3971aa9a95",
46
- informationalVersion: "1.5.2-beta.82+Branch.develop.Sha.0ccd1168d5b030b759dc5ff328bb2a3971aa9a95",
47
- buildDateUtc: new Date(Date.UTC(2026, 3, 26, 14, 12, 5))
45
+ commitHash: "a1a6e645a17495ec944cf27c5163cadbc773d254",
46
+ informationalVersion: "1.5.2-beta.83+Branch.develop.Sha.a1a6e645a17495ec944cf27c5163cadbc773d254",
47
+ buildDateUtc: new Date(Date.UTC(2026, 3, 26, 14, 15, 25))
48
48
  };
49
49
 
50
50
  class TreeHoverTooltipService {
@@ -2391,15 +2391,15 @@ class AvaTreeComponent {
2391
2391
  this.cdr = inject(ChangeDetectorRef);
2392
2392
  }
2393
2393
  updateTree(elementIds, hasAddedOrRemovedElements) {
2394
+ let foundInTree = false;
2394
2395
  this.treeNodes.forEach((treeNode) => {
2395
- let foundInTree = false;
2396
2396
  elementIds.forEach((elementId) => {
2397
- if (!foundInTree) {
2398
- foundInTree = treeNode.updateTree(elementId);
2397
+ if (treeNode.updateTree(elementId)) {
2398
+ foundInTree = true;
2399
2399
  }
2400
2400
  });
2401
2401
  });
2402
- if (hasAddedOrRemovedElements) {
2402
+ if (hasAddedOrRemovedElements && foundInTree) {
2403
2403
  this.flatElementsService.setElementsDto(this.serviceSpecification());
2404
2404
  }
2405
2405
  }