publ-echo-test 0.0.381 → 0.0.382
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.
|
@@ -769,12 +769,15 @@ var ReactGridLayout = function (_a) {
|
|
|
769
769
|
: (parsedSelectedBlockId === null || parsedSelectedBlockId === void 0 ? void 0 : parsedSelectedBlockId.type) === "GB"
|
|
770
770
|
? generateGrouplayout(parsedSelectedBlockId.id)
|
|
771
771
|
: null;
|
|
772
|
+
console.log("selectedLayoutItem", selectedLayoutItem);
|
|
772
773
|
var activeDragItemOrSelectedItem = activeDrag || selectedLayoutItem;
|
|
774
|
+
console.log("activeDragItemOrSelectedItem", activeDragItemOrSelectedItem);
|
|
773
775
|
var activeBlock = activeDragItemOrSelectedItem
|
|
774
776
|
? blockStructure
|
|
775
777
|
? findBlockByBlockId(blockStructure, activeDragItemOrSelectedItem.i)
|
|
776
778
|
: null
|
|
777
779
|
: null;
|
|
780
|
+
console.log("activeBlock", activeBlock);
|
|
778
781
|
var activeRows = activeDragItemOrSelectedItem &&
|
|
779
782
|
Array.from({ length: activeDragItemOrSelectedItem.h }, function (_, i) { return activeDragItemOrSelectedItem.y + i; });
|
|
780
783
|
var heightVariableRows = getRowsForHeightFitContentItems(layout);
|