publ-echo-test 0.0.169 → 0.0.171
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.
@@ -39,15 +39,6 @@ var GridItem = function (_a) {
|
|
39
39
|
var _r = useState(false), pointerEventsNone = _r[0], setPointerEventsNone = _r[1];
|
40
40
|
var elementRef = useRef(null);
|
41
41
|
var isSelected = (_b = elementRef.current) === null || _b === void 0 ? void 0 : _b.classList.contains('react-grid-item-selected');
|
42
|
-
// useLayoutEffect(() => {
|
43
|
-
// if (elementRef.current && isSelected) {
|
44
|
-
// elementRef.current.scrollIntoView({
|
45
|
-
// behavior: 'smooth',
|
46
|
-
// block: 'center',
|
47
|
-
// inline: 'center',
|
48
|
-
// });
|
49
|
-
// }
|
50
|
-
// }, [isSelected]);
|
51
42
|
useEffect(function () {
|
52
43
|
var _a;
|
53
44
|
if (!isSelected || !autoResize) {
|
@@ -684,7 +684,7 @@ var ReactGridLayout = function (_a) {
|
|
684
684
|
return zIndexMap.EDITING_GROUP;
|
685
685
|
}
|
686
686
|
if (isBulk) {
|
687
|
-
return zIndexMap.EDITING_GROUP_CHILD +
|
687
|
+
return zIndexMap.EDITING_GROUP_CHILD + groupItem.z;
|
688
688
|
}
|
689
689
|
if (isInBulk) {
|
690
690
|
// 위와 같지만 이것은 not-editable이긴 함.
|