publ-echo-test 0.0.147 → 0.0.148
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.
@@ -564,16 +564,16 @@ var ReactGridLayout = function (_a) {
|
|
564
564
|
var zOrder = (_a = block[device === 'DESKTOP' ? 'zOrderDesktopInternal' : 'zOrderMobileInternal']) !== null && _a !== void 0 ? _a : 0;
|
565
565
|
var editorZIndex = (function () {
|
566
566
|
if (isInBulk) {
|
567
|
-
return zIndexMap.EDITING_GROUP_CHILD +
|
567
|
+
return zIndexMap.EDITING_GROUP_CHILD + z;
|
568
568
|
}
|
569
569
|
if (!isRoot && editable) {
|
570
|
-
return zIndexMap.EDITING_GROUP_CHILD +
|
570
|
+
return zIndexMap.EDITING_GROUP_CHILD + z;
|
571
571
|
}
|
572
572
|
if (isRoot && editable) {
|
573
|
-
return zIndexMap.ROOT +
|
573
|
+
return zIndexMap.ROOT + z;
|
574
574
|
}
|
575
575
|
if (isRoot && !editable) {
|
576
|
-
return zIndexMap.ROOT +
|
576
|
+
return zIndexMap.ROOT + z;
|
577
577
|
}
|
578
578
|
if (!editable) {
|
579
579
|
return 0;
|