publ-echo-test 0.0.285 → 0.0.286
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.
@@ -181,12 +181,14 @@ var GridItem = function (_a) {
|
|
181
181
|
var paddingLR = paddingL + paddingR;
|
182
182
|
var paddingTB = paddingT + paddingB;
|
183
183
|
var compositionWrapperPaddingLR = (compositionBGwrapperPaddingL + compositionBGwrapperPaddingR) *
|
184
|
-
|
184
|
+
numberOfColumns;
|
185
|
+
console.log("compositionWrapperPaddingLR", compositionWrapperPaddingLR);
|
186
|
+
console.log("numberOfColumns,", numberOfColumns);
|
187
|
+
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
185
188
|
var listMinWidth = oneCompositionMinWidth * numberOfColumns +
|
186
189
|
(numberOfColumns - 1) * columnGap +
|
187
190
|
paddingLR +
|
188
191
|
compositionWrapperPaddingLR;
|
189
|
-
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
190
192
|
var gridWrapperTotalH = gridWrapperInnerH + insetTop + insetBottom;
|
191
193
|
var listMinHeight = oneCompositionMinHeight * numberOfRows +
|
192
194
|
(numberOfRows - 1) * rowGap +
|