publ-echo-test 0.0.153 → 0.0.155

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.
@@ -438,15 +438,17 @@ var GroupItem = function (_a) {
438
438
  onContextGroup(e);
439
439
  },
440
440
  onMouseDown: function (e) {
441
- if (isDragging || isResizing) {
442
- return;
443
- }
441
+ console.log('mouse down,,,');
442
+ // if (isDragging || isResizing) {
443
+ // return;
444
+ // }
444
445
  // 일시적으로 pointer-events 비활성화
445
446
  if (elementRef.current) {
446
447
  elementRef.current.style.pointerEvents = 'none';
447
448
  }
448
449
  // 현재 마우스 위치에서 실제 요소 찾기
449
450
  var underlyingElement = document.elementFromPoint(e.clientX, e.clientY);
451
+ console.log(underlyingElement);
450
452
  // pointer-events 복구
451
453
  if (elementRef.current) {
452
454
  elementRef.current.style.pointerEvents = 'auto';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo-test",
3
- "version": "0.0.153",
3
+ "version": "0.0.155",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",