publ-echo-test 0.0.334 → 0.0.335
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.
@@ -692,12 +692,12 @@ var ReactGridLayout = function (_a) {
|
|
692
692
|
if (isEditingGroup) {
|
693
693
|
return zIndexMap.EDITING_GROUP;
|
694
694
|
}
|
695
|
+
if (!isRoot && type === "GROUP_BLOCK") {
|
696
|
+
return zIndexMap.EDITABLE_GROUP + internalZOrder;
|
697
|
+
}
|
695
698
|
if (type === "GROUP_BLOCK") {
|
696
|
-
return zIndexMap.ROOT +
|
699
|
+
return zIndexMap.ROOT + zIndexMap.GROUP;
|
697
700
|
}
|
698
|
-
// if (type === "GROUP_BLOCK") {
|
699
|
-
// return internalZOrder;
|
700
|
-
// }
|
701
701
|
return -1; // NOTE: ERROR
|
702
702
|
})();
|
703
703
|
var zIndex = editorMode === "EDIT" ? baseZ : internalZOrder;
|