publ-echo-test 0.0.155 → 0.0.157
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.
@@ -437,11 +437,10 @@ var GroupItem = function (_a) {
|
|
437
437
|
onContextMenu: function (e) {
|
438
438
|
onContextGroup(e);
|
439
439
|
},
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
// }
|
440
|
+
onMouseMove: function (e) {
|
441
|
+
if (isDragging || isResizing) {
|
442
|
+
return;
|
443
|
+
}
|
445
444
|
// 일시적으로 pointer-events 비활성화
|
446
445
|
if (elementRef.current) {
|
447
446
|
elementRef.current.style.pointerEvents = 'none';
|
@@ -454,7 +453,7 @@ var GroupItem = function (_a) {
|
|
454
453
|
elementRef.current.style.pointerEvents = 'auto';
|
455
454
|
}
|
456
455
|
if (underlyingElement &&
|
457
|
-
underlyingElement.classList.contains('
|
456
|
+
underlyingElement.classList.contains('cb-layout-box')) {
|
458
457
|
underlyingElement.classList.add('hovered');
|
459
458
|
}
|
460
459
|
},
|