publ-echo-test 0.0.150 → 0.0.152
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.
@@ -567,7 +567,8 @@ var ReactGridLayout = function (_a) {
|
|
567
567
|
var zOrder = (_a = block[device === 'DESKTOP' ? 'zOrderDesktopInternal' : 'zOrderMobileInternal']) !== null && _a !== void 0 ? _a : 0;
|
568
568
|
var editorZIndex = (function () {
|
569
569
|
if (isInBulk) {
|
570
|
-
return zIndexMap.EDITING_GROUP_CHILD + z;
|
570
|
+
// return zIndexMap.EDITING_GROUP_CHILD + z;
|
571
|
+
return z;
|
571
572
|
}
|
572
573
|
if (!isRoot && editable) {
|
573
574
|
return zIndexMap.EDITING_GROUP_CHILD + z;
|
@@ -579,9 +580,9 @@ var ReactGridLayout = function (_a) {
|
|
579
580
|
return zIndexMap.ROOT + z;
|
580
581
|
}
|
581
582
|
if (!editable) {
|
582
|
-
return
|
583
|
+
return z;
|
583
584
|
}
|
584
|
-
return
|
585
|
+
return z;
|
585
586
|
})();
|
586
587
|
var outsideOfEditingGroup = !editingGroupAllChildren.includes(l.i);
|
587
588
|
var zIndex = editorMode === 'EDIT' ? editorZIndex : z;
|