publ-echo-test 0.0.298 → 0.0.300
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.
@@ -138,9 +138,7 @@ var GridItem = function (_a) {
|
|
138
138
|
var callback = function (mutationsList) {
|
139
139
|
for (var _i = 0, mutationsList_2 = mutationsList; _i < mutationsList_2.length; _i++) {
|
140
140
|
var mutation = mutationsList_2[_i];
|
141
|
-
console.log("mutation", mutation);
|
142
141
|
var isInitial = mutation.attributeName === "data-is-initialized";
|
143
|
-
console.log("isInitial", isInitial);
|
144
142
|
var isSizeChanged = mutation.attributeName === "data-min-width" ||
|
145
143
|
mutation.attributeName === "data-min-height";
|
146
144
|
var keepWidth = true;
|
@@ -175,6 +175,7 @@ var Resizable = function (_a) {
|
|
175
175
|
(numberOfColumns - 1) * columnGap +
|
176
176
|
paddingLR +
|
177
177
|
compositionWrapperPaddingLR;
|
178
|
+
console.log("listMinWidth", listMinWidth);
|
178
179
|
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
179
180
|
var gridWrapperTotalH = gridWrapperInnerH + insetTop + insetBottom;
|
180
181
|
var listMinHeight = oneCompositionMinHeight * numberOfRows +
|