@dangl/angular-ava 1.5.2-beta0086 → 1.5.2-beta0087
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-
|
|
43
|
-
commitInfo: "Branch.develop.Sha.
|
|
42
|
+
version: "1.5.2-beta0087",
|
|
43
|
+
commitInfo: "Branch.develop.Sha.ccc8e6b84a5827563a4d760876abc6dd021ae00a",
|
|
44
44
|
commitDate: "2026-04-26",
|
|
45
|
-
commitHash: "
|
|
46
|
-
informationalVersion: "1.5.2-beta.
|
|
47
|
-
buildDateUtc: new Date(Date.UTC(2026, 3, 26, 19,
|
|
45
|
+
commitHash: "ccc8e6b84a5827563a4d760876abc6dd021ae00a",
|
|
46
|
+
informationalVersion: "1.5.2-beta.87+Branch.develop.Sha.ccc8e6b84a5827563a4d760876abc6dd021ae00a",
|
|
47
|
+
buildDateUtc: new Date(Date.UTC(2026, 3, 26, 19, 4, 8))
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
class TreeHoverTooltipService {
|
|
@@ -2427,15 +2427,17 @@ class AvaTreeComponent {
|
|
|
2427
2427
|
else if (this.modeview() === ModeViewType.List ||
|
|
2428
2428
|
(this.modeview() === ModeViewType.Tree && this.avaTreeFilterInput().nativeElement.value)) {
|
|
2429
2429
|
if (this.listStructureComponent) {
|
|
2430
|
-
|
|
2430
|
+
this.listStructureComponent.updateList(elementIds);
|
|
2431
2431
|
}
|
|
2432
|
+
foundInTree = true;
|
|
2432
2433
|
}
|
|
2433
2434
|
else {
|
|
2434
2435
|
// If we're in the list view, we don't directly update the elements but we regenerate
|
|
2435
2436
|
// the list view for them
|
|
2436
2437
|
foundInTree = true;
|
|
2437
2438
|
}
|
|
2438
|
-
if (
|
|
2439
|
+
if (foundInTree &&
|
|
2440
|
+
(hasAddedOrRemovedElements || this.modeview() === ModeViewType.List || this.avaTreeFilterInput().nativeElement.value)) {
|
|
2439
2441
|
this.flatElementsService.setElementsDto(this.serviceSpecification());
|
|
2440
2442
|
}
|
|
2441
2443
|
}
|