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

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