@acorex/cdk 21.0.1-next.3 → 21.0.1-next.4

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.
@@ -604,9 +604,7 @@ class AXDragDirective {
604
604
  this.setPosition(0, 0);
605
605
  }
606
606
  handlePointerMove(e) {
607
- if (!this.isDragging() ||
608
- !isPlatformBrowser(this.platformId) ||
609
- e.pointerId !== this.activePointerId()) {
607
+ if (!this.isDragging() || !isPlatformBrowser(this.platformId) || e.pointerId !== this.activePointerId()) {
610
608
  return;
611
609
  }
612
610
  e.preventDefault();
@@ -1061,7 +1059,7 @@ class AXDragDirective {
1061
1059
  this.renderer.setStyle(clonedElement, 'margin', '0');
1062
1060
  this.renderer.setStyle(clonedElement, 'box-sizing', 'border-box');
1063
1061
  this.renderer.setStyle(clonedElement, 'opacity', '0.75');
1064
- this.renderer.setStyle(clonedElement, 'z-index', '10000');
1062
+ this.renderer.setStyle(clonedElement, 'z-index', '999');
1065
1063
  this.renderer.setStyle(clonedElement, 'pointer-events', 'none', RendererStyleFlags2.Important);
1066
1064
  this.renderer.setStyle(clonedElement, 'user-select', 'none');
1067
1065
  this.renderer.setStyle(clonedElement, 'touch-action', 'none');