@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.
- package/fesm2022/acorex-cdk-drag-drop.mjs +2 -4
- package/fesm2022/acorex-cdk-drag-drop.mjs.map +1 -1
- package/fesm2022/acorex-cdk-full-screen.mjs +12 -1
- package/fesm2022/acorex-cdk-full-screen.mjs.map +1 -1
- package/fesm2022/acorex-cdk-overlay.mjs +371 -10
- package/fesm2022/acorex-cdk-overlay.mjs.map +1 -1
- package/fesm2022/acorex-cdk-z-index.mjs +35 -0
- package/fesm2022/acorex-cdk-z-index.mjs.map +1 -0
- package/full-screen/index.d.ts +5 -0
- package/overlay/index.d.ts +94 -5
- package/package.json +14 -10
- package/z-index/README.md +3 -0
- package/z-index/index.d.ts +14 -0
|
@@ -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', '
|
|
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');
|