[1218] WINDOW를 이동할 때 잡는 영역 - 전체에서 input, button, select, textarea, [contenteditable] 제외

This commit is contained in:
ysCha 2025-08-04 17:08:47 +09:00
parent 58d35a2881
commit f11a7d68e7

View File

@ -25,6 +25,7 @@ export default function WithDraggable({ isShow, children, pos = { x: 0, y: 0 },
position={{ x: position.x, y: position.y }}
onDrag={(e, data) => handleOnDrag(e, data)}
handle= ''//{handle === '' ? '.modal-handle' : handle} //전체 handle
cancel="input, button, select, textarea, [contenteditable]"
>
<div className={`modal-pop-wrap ${className}`} style={{ visibility: isHidden ? 'hidden' : 'visible' }}>
{children}