publ-echo-test 0.0.318 → 0.0.320
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.
@@ -77,11 +77,11 @@ var Resizable = function (_a) {
|
|
77
77
|
return;
|
78
78
|
}
|
79
79
|
var target = (_a = placeholder.children[0].children[0].children[0]) !== null && _a !== void 0 ? _a : placeholder.children[0].children[0];
|
80
|
-
var
|
81
|
-
if (
|
80
|
+
var isCCBLayoutbox = target.classList.contains("ccb-layout-box");
|
81
|
+
if (isCCBLayoutbox) {
|
82
82
|
return;
|
83
83
|
}
|
84
|
-
if (target.clientHeight && !
|
84
|
+
if (target.clientHeight && !isCCBLayoutbox) {
|
85
85
|
minHeight.current = target.clientHeight;
|
86
86
|
}
|
87
87
|
// target.clientHeight -> 실제 "노드"의 height. (gridItem아닌)
|
@@ -161,6 +161,8 @@ var Resizable = function (_a) {
|
|
161
161
|
var compositionBGwrapperPaddingB = Number(oneComposition.getAttribute("data-wrapper-paddingb"));
|
162
162
|
var compositionBGwrapperPaddingL = Number(oneComposition.getAttribute("data-wrapper-paddingl"));
|
163
163
|
var compositionBGwrapperPaddingR = Number(oneComposition.getAttribute("data-wrapper-paddingr"));
|
164
|
+
console.log("oneComposition", oneComposition);
|
165
|
+
console.log("onecompositionminheight", oneCompositionH);
|
164
166
|
var oneCompositionMinHeight = oneCompositionH +
|
165
167
|
compositionBGwrapperPaddingT +
|
166
168
|
compositionBGwrapperPaddingB;
|