publ-echo 0.0.123 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo",
3
- "version": "0.0.123",
3
+ "version": "0.0.125",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",