publ-echo-test 0.0.362 → 0.0.363
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.
|
@@ -18,6 +18,7 @@ export function GridBackgroundPlaceholder(_a) {
|
|
|
18
18
|
// 또는, 마지막 요소에는 margin[0]이 없다고 가정하고 계산합니다.
|
|
19
19
|
var gridContentWidth = totalCols * (colWidth + margin[0]) - margin[0];
|
|
20
20
|
var showActiveRows = !!activeDrag.heightFitContent && activeRows.length > 0;
|
|
21
|
+
console.log("active rows in Placeholder:", activeRows);
|
|
21
22
|
return (_jsx("div", { className: "grid-placeholder", style: {
|
|
22
23
|
marginTop: margin[1] + "px",
|
|
23
24
|
marginBottom: margin[1] + "px",
|
|
@@ -792,6 +792,7 @@ var ReactGridLayout = function (_a) {
|
|
|
792
792
|
? heightVariableRows
|
|
793
793
|
: activeRows;
|
|
794
794
|
console.log("activeBlock", activeBlock);
|
|
795
|
+
console.log("activeDrag", activeDrag);
|
|
795
796
|
console.log("shouldShowAllHeightVariableRows", shouldShowAllHeightVariableRows);
|
|
796
797
|
console.log("heightVariableRows", heightVariableRows);
|
|
797
798
|
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, { backgroundWidth: getBackgroundWidth(), backgroundHeight: getBackgroundHeight(), margin: margin,
|