@dangl/angular-ava 1.5.2-beta0089 → 1.5.2-beta0090
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.
|
|
44
|
-
commitDate: "2026-04-
|
|
45
|
-
commitHash: "
|
|
46
|
-
informationalVersion: "1.5.2-beta.
|
|
47
|
-
buildDateUtc: new Date(Date.UTC(2026, 3,
|
|
42
|
+
version: "1.5.2-beta0090",
|
|
43
|
+
commitInfo: "Branch.develop.Sha.b71fb671fd137af437fcc84bd1ac47531dc4249a",
|
|
44
|
+
commitDate: "2026-04-27",
|
|
45
|
+
commitHash: "b71fb671fd137af437fcc84bd1ac47531dc4249a",
|
|
46
|
+
informationalVersion: "1.5.2-beta.90+Branch.develop.Sha.b71fb671fd137af437fcc84bd1ac47531dc4249a",
|
|
47
|
+
buildDateUtc: new Date(Date.UTC(2026, 3, 27, 14, 29, 37))
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
class TreeHoverTooltipService {
|
|
@@ -2696,6 +2696,18 @@ class AvaTreeComponent {
|
|
|
2696
2696
|
});
|
|
2697
2697
|
}
|
|
2698
2698
|
}
|
|
2699
|
+
/**
|
|
2700
|
+
* Programmatically select an element in the tree from outside the component.
|
|
2701
|
+
* You can pass either an IElementDto instance or a string id.
|
|
2702
|
+
*/
|
|
2703
|
+
selectElement(elementOrId) {
|
|
2704
|
+
if (typeof elementOrId === 'string') {
|
|
2705
|
+
this.selectElementById(elementOrId);
|
|
2706
|
+
}
|
|
2707
|
+
else {
|
|
2708
|
+
this.selectElementService.setClickElement(elementOrId);
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2699
2711
|
selectElementById(id) {
|
|
2700
2712
|
this.flatElementsService.getOneElementById(id).subscribe((e) => {
|
|
2701
2713
|
if (e) {
|