publ-echo-test 0.0.374 → 0.0.375
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.
|
@@ -771,6 +771,7 @@ var ReactGridLayout = function (_a) {
|
|
|
771
771
|
var activeRowsFiltered = shouldShowAllHeightVariableRows
|
|
772
772
|
? heightVariableRows
|
|
773
773
|
: activeRows;
|
|
774
|
+
console.log("selectedBlockId", selectedBlockId);
|
|
774
775
|
console.log("activeBlock", activeBlock);
|
|
775
776
|
console.log("activeRowsFiltered", activeRowsFiltered);
|
|
776
777
|
return (_jsxs("div", { ref: innerRef, className: mergedClassName, style: mergedStyle, onDrop: isDroppable ? onDropHandler : noop, onDragLeave: isDroppable ? onDragLeaveHandler : noop, onDragEnter: isDroppable ? onDragEnterHandler : noop, onDragOver: isDroppable ? onDragOverHandler : noop, "data-grid-row-height": rowHeight, "data-grid-cols": cols, "data-section-id": sectionId, children: [currentGroupBlocks.map(function (each) { return processGroup(each); }), React.Children.map(children, function (child) { return processGridItem(child); }), placeholder(), activeDrag && _jsx("div", { className: "grid-guide-line-center" }), activeDragItemOrSelectedItem && (_jsx(GridBackgroundPlaceholder, { device: device, backgroundWidth: getBackgroundWidth(), backgroundHeight: getBackgroundHeight(), margin: margin,
|