@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.
- package/fesm2022/acorex-components-media-viewer.mjs +105 -36
- package/fesm2022/acorex-components-media-viewer.mjs.map +1 -1
- package/fesm2022/acorex-components-phone-box.mjs +21 -20
- package/fesm2022/acorex-components-phone-box.mjs.map +1 -1
- package/fesm2022/acorex-components-tree-view.mjs +6 -0
- package/fesm2022/acorex-components-tree-view.mjs.map +1 -1
- package/media-viewer/index.d.ts +23 -7
- package/package.json +7 -7
- package/tree-view/index.d.ts +6 -0
|
@@ -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
|
/**
|