publ-echo 0.0.124 → 0.0.125
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.
|
@@ -555,22 +555,29 @@ var ReactGridLayout = function (_a) {
|
|
|
555
555
|
}
|
|
556
556
|
var zOrder = (_a = block[device === "DESKTOP" ? "zOrderDesktopInternal" : "zOrderMobileInternal"]) !== null && _a !== void 0 ? _a : 0;
|
|
557
557
|
var isInsideOfEditingGroup = editingGroupAllChildren.includes(l.i);
|
|
558
|
+
console.log("id", block.blockId, "isRoot", isRoot, "isBulk", isInBulk, "isInGroup", isInGroup, "isInsideOfEditingGroup", isInsideOfEditingGroup, "editable", editable);
|
|
558
559
|
var editorZIndex = (function () {
|
|
559
560
|
if (isRoot && isInBulk) {
|
|
561
|
+
console.log("1 : ", block.blockId);
|
|
560
562
|
return zIndexMap.ROOT + z;
|
|
561
563
|
}
|
|
562
564
|
if (!isRoot && isInsideOfEditingGroup) {
|
|
565
|
+
console.log("2 : ", block.blockId);
|
|
563
566
|
return zIndexMap.CB_IN_EDITING_GROUP + z;
|
|
564
567
|
}
|
|
565
568
|
if (isRoot && editable) {
|
|
569
|
+
console.log("3 : ", block.blockId);
|
|
566
570
|
return zIndexMap.ROOT + z;
|
|
567
571
|
}
|
|
568
572
|
if (isRoot && !editable) {
|
|
573
|
+
console.log("4 : ", block.blockId);
|
|
569
574
|
return zIndexMap.ROOT + z;
|
|
570
575
|
}
|
|
571
576
|
if (!editable) {
|
|
577
|
+
console.log("5 : ", block.blockId);
|
|
572
578
|
return z;
|
|
573
579
|
}
|
|
580
|
+
console.log("6 : ", block.blockId);
|
|
574
581
|
return z;
|
|
575
582
|
})();
|
|
576
583
|
var zIndex = editorMode === "EDIT" ? editorZIndex : z;
|
|
@@ -706,7 +713,6 @@ var ReactGridLayout = function (_a) {
|
|
|
706
713
|
var isRoot = editingGroupBlock === "ROOT";
|
|
707
714
|
var isInBulk = bulkIds === null || bulkIds === void 0 ? void 0 : bulkIds.includes(block.blockId);
|
|
708
715
|
var isBulk = block.blockId === "BULK";
|
|
709
|
-
console.log("id", block.blockId, "isBulk", isBulk, "isInBulk", isInBulk, "isEditingGroup", isEditingGroup);
|
|
710
716
|
var baseZ = (function () {
|
|
711
717
|
if (isBulk) {
|
|
712
718
|
// groupItem.z : 그룹 내 CB중 가장 큰 zorder
|