publ-echo-test 0.0.83 → 0.0.84
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.
@@ -37,7 +37,7 @@ import { bottom, cloneLayoutItem, compact, getAllCollisions, getBoundingArea, ge
|
|
37
37
|
import { calcGridColWidth, calcXY, resolveRowHeight, } from "../GridItem/utils/calculateUtils";
|
38
38
|
import GridItem from "../GridItem/GridItem";
|
39
39
|
import isEqual from "../../external-lib/lodash.isEqual";
|
40
|
-
import { findAllChildrenComponentIds, findChildrenComponentIds, findGroupBlocks, getBlockSpecificType, zIndexMap } from "./group";
|
40
|
+
import { findAllChildrenComponentIds, findChildrenComponentIds, findGroupBlocks, getBlockIdByComponentId, getBlockSpecificType, zIndexMap } from "./group";
|
41
41
|
import GroupItem from "../GridItem/GroupItem";
|
42
42
|
import OutsideClickHandler from "../GridItem/OutsideClickHandler";
|
43
43
|
var layoutClassName = "react-grid-layout";
|
@@ -493,7 +493,7 @@ var ReactGridLayout = function (_a) {
|
|
493
493
|
var bounded = draggable && isBounded && l.isBounded !== false;
|
494
494
|
var editable = editableItems.includes(l.i);
|
495
495
|
var z = l.z || 0;
|
496
|
-
var isInBulk = bulkIds === null || bulkIds === void 0 ? void 0 : bulkIds.includes(l.i);
|
496
|
+
var isInBulk = blockStructure && (bulkIds === null || bulkIds === void 0 ? void 0 : bulkIds.includes(getBlockIdByComponentId(blockStructure, Number(l.i))));
|
497
497
|
var isRoot = editingGroupBlock === 'ROOT';
|
498
498
|
var baseZ = function () {
|
499
499
|
if (isInBulk) {
|