@acorex/components 20.3.33 → 20.3.35

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.
@@ -1537,6 +1537,9 @@ class AXTreeViewComponent {
1537
1537
  const showCheckbox = this.shouldShowCheckboxForNode(node);
1538
1538
  const indeterminate = this.getNodeIndeterminate(node);
1539
1539
  const selected = this.getNodeSelected(node);
1540
+ const dragEnabled = this.dragBehavior() !== 'none';
1541
+ const dragAreaValue = this.dragArea();
1542
+ const showDragHandle = this.shouldShowDragHandle();
1540
1543
  return {
1541
1544
  $implicit: node,
1542
1545
  node,
@@ -1557,6 +1560,9 @@ class AXTreeViewComponent {
1557
1560
  };
1558
1561
  this.toggleSelection(node, mockEvent);
1559
1562
  },
1563
+ dragEnabled,
1564
+ dragArea: dragAreaValue,
1565
+ showDragHandle,
1560
1566
  };
1561
1567
  }
1562
1568
  /**