publ-echo-test 0.0.368 → 0.0.370
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.
|
@@ -22,9 +22,6 @@ export function GridBackgroundPlaceholder(_a) {
|
|
|
22
22
|
? !!(activeBlock === null || activeBlock === void 0 ? void 0 : activeBlock.isHeightVariableDesktop)
|
|
23
23
|
: !!(activeBlock === null || activeBlock === void 0 ? void 0 : activeBlock.isHeightVariableMobile);
|
|
24
24
|
var showActiveRows = !!activeDrag.heightFitContent || isHeightVariable;
|
|
25
|
-
console.log("activeDrag in Placeholder", activeDrag); // --- IGNORE ---
|
|
26
|
-
console.log("isHeightVariable in Placeholder", isHeightVariable); // --- IGNORE ---
|
|
27
|
-
console.log("showActiveRows in Placeholder", showActiveRows); // --- IGNORE ---
|
|
28
25
|
return (_jsx("div", { className: "grid-placeholder", style: {
|
|
29
26
|
marginTop: margin[1] + "px",
|
|
30
27
|
marginBottom: margin[1] + "px",
|
|
@@ -40,8 +37,6 @@ export function GridBackgroundPlaceholder(_a) {
|
|
|
40
37
|
return (_jsxs("g", { children: [activeCols.map(function (col) {
|
|
41
38
|
var x = col * (colWidth + margin[0]) + 0.5;
|
|
42
39
|
return (_jsx("rect", { x: x, y: y_top, width: colWidth, height: rowHeight, className: "grid-active-cell-placeholder" }, "active-".concat(row, "-").concat(col)));
|
|
43
|
-
}), _jsx("
|
|
44
|
-
// 💡 텍스트 x 위치도 gridContentWidth를 기준으로 계산
|
|
45
|
-
x: gridContentWidth + textPadding, y: y_center, className: "grid-indicator-text", children: "\u2195 \uAC00\uBCC0" })] }, "active-row-".concat(row)));
|
|
40
|
+
}), _jsx("foreignObject", { x: gridContentWidth + textPadding, y: y_center, children: _jsx("div", { className: "grid-indicator-text" }) })] }, "active-row-".concat(row)));
|
|
46
41
|
})] }) }));
|
|
47
42
|
}
|