publ-echo-test 0.0.320 → 0.0.322
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.
@@ -131,6 +131,7 @@ var Resizable = function (_a) {
|
|
131
131
|
var layoutBox = target.children[0];
|
132
132
|
var contentsWrapper = layoutBox.children[0];
|
133
133
|
var oneComposition = contentsWrapper.querySelector(".composition-container");
|
134
|
+
console.log("contentsWrapper", contentsWrapper);
|
134
135
|
// const oneComposition =
|
135
136
|
// contentsWrapper.children[0].children[0].children[0].children[2];
|
136
137
|
if (!isCCBLayoutbox || !oneComposition) {
|
@@ -161,8 +162,6 @@ var Resizable = function (_a) {
|
|
161
162
|
var compositionBGwrapperPaddingB = Number(oneComposition.getAttribute("data-wrapper-paddingb"));
|
162
163
|
var compositionBGwrapperPaddingL = Number(oneComposition.getAttribute("data-wrapper-paddingl"));
|
163
164
|
var compositionBGwrapperPaddingR = Number(oneComposition.getAttribute("data-wrapper-paddingr"));
|
164
|
-
console.log("oneComposition", oneComposition);
|
165
|
-
console.log("onecompositionminheight", oneCompositionH);
|
166
165
|
var oneCompositionMinHeight = oneCompositionH +
|
167
166
|
compositionBGwrapperPaddingT +
|
168
167
|
compositionBGwrapperPaddingB;
|
@@ -186,6 +185,10 @@ var Resizable = function (_a) {
|
|
186
185
|
paddingTB +
|
187
186
|
insetTop +
|
188
187
|
insetBottom;
|
188
|
+
console.log("numberofrows", numberOfRows);
|
189
|
+
console.log("paddingTB", paddingTB);
|
190
|
+
console.log("insetTop", insetTop);
|
191
|
+
console.log("insetBottom", insetBottom);
|
189
192
|
if (listMinHeight > gridWrapperTotalH) {
|
190
193
|
minHeight.current = listMinHeight;
|
191
194
|
}
|