publ-echo-test 0.0.302 → 0.0.304
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.children[0];
|
134
|
+
console.log("childrens", contentsWrapper.children);
|
134
135
|
if (!isContentsList || !oneComposition) {
|
135
136
|
return;
|
136
137
|
}
|
@@ -179,6 +180,8 @@ var Resizable = function (_a) {
|
|
179
180
|
console.log("cols", numberOfColumns);
|
180
181
|
console.log("listMinWidth", listMinWidth);
|
181
182
|
console.log("one-composition", oneComposition);
|
183
|
+
console.log("minCellWidth;", minCellWidth);
|
184
|
+
console.log("compositionCols", compositionCols);
|
182
185
|
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
183
186
|
var gridWrapperTotalH = gridWrapperInnerH + insetTop + insetBottom;
|
184
187
|
var listMinHeight = oneCompositionMinHeight * numberOfRows +
|