@acorex/components 21.0.0-next.52 → 21.0.0-next.55
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.
|
@@ -1689,6 +1689,9 @@ class AXTreeViewComponent {
|
|
|
1689
1689
|
if (mode === 'single' && this.canSelectNode(node)) {
|
|
1690
1690
|
this.handleSingleSelection(node, event);
|
|
1691
1691
|
}
|
|
1692
|
+
else if (mode === 'multiple' && this.canSelectNode(node)) {
|
|
1693
|
+
this.handleMultipleSelection(node, event);
|
|
1694
|
+
}
|
|
1692
1695
|
this.onNodeClick.emit({ component: this, node, nativeEvent: event });
|
|
1693
1696
|
}
|
|
1694
1697
|
/**
|