publ-echo-test 0.0.310 → 0.0.311
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.
@@ -47,7 +47,7 @@ var GridItem = function (_a) {
|
|
47
47
|
if (!targetNode || isDragging || isResizing) {
|
48
48
|
return;
|
49
49
|
}
|
50
|
-
if (targetNode.
|
50
|
+
if (targetNode.classList.contains("ccb-layout-box")) {
|
51
51
|
return;
|
52
52
|
}
|
53
53
|
var prevPaddingL = parseFloat(getComputedStyle(targetNode).paddingLeft);
|
@@ -131,7 +131,6 @@ 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].children[0].children[0].children[2];
|
134
|
-
console.log("one composition", oneComposition);
|
135
134
|
if (!isContentsList || !oneComposition) {
|
136
135
|
return;
|
137
136
|
}
|
@@ -176,12 +175,6 @@ var Resizable = function (_a) {
|
|
176
175
|
(numberOfColumns - 1) * columnGap +
|
177
176
|
paddingLR +
|
178
177
|
compositionWrapperPaddingLR;
|
179
|
-
console.log("oneCompositionMinWidth", oneCompositionMinWidth);
|
180
|
-
console.log("cols", numberOfColumns);
|
181
|
-
console.log("listMinWidth", listMinWidth);
|
182
|
-
console.log("one-composition", oneComposition);
|
183
|
-
console.log("minCellWidth;", minCellWidth);
|
184
|
-
console.log("compositionCols", compositionCols);
|
185
178
|
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
186
179
|
var gridWrapperTotalH = gridWrapperInnerH + insetTop + insetBottom;
|
187
180
|
var listMinHeight = oneCompositionMinHeight * numberOfRows +
|