publ-echo-test 0.0.314 → 0.0.317
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.
@@ -141,6 +141,7 @@ var GridItem = function (_a) {
|
|
141
141
|
var callback = function (mutationsList) {
|
142
142
|
for (var _i = 0, mutationsList_2 = mutationsList; _i < mutationsList_2.length; _i++) {
|
143
143
|
var mutation = mutationsList_2[_i];
|
144
|
+
console.log("mutation", mutation);
|
144
145
|
// const isInitial = mutation.attributeName === "data-is-initialized";
|
145
146
|
var isSizeChanged = mutation.attributeName === "data-min-width" ||
|
146
147
|
mutation.attributeName === "data-min-height";
|
@@ -148,7 +149,7 @@ var GridItem = function (_a) {
|
|
148
149
|
var hasPaddingChanged = true;
|
149
150
|
var layoutBox = targetNode.children[0];
|
150
151
|
var contentsWrapper = layoutBox.children[0];
|
151
|
-
var oneComposition = contentsWrapper.
|
152
|
+
var oneComposition = contentsWrapper.querySelector(".composition-container");
|
152
153
|
console.log("layoutbox", layoutBox);
|
153
154
|
console.log("contentsWrapper", contentsWrapper);
|
154
155
|
console.log("oneComposition", oneComposition);
|
@@ -218,7 +219,7 @@ var GridItem = function (_a) {
|
|
218
219
|
minWidth = listMinWidth;
|
219
220
|
}
|
220
221
|
}
|
221
|
-
//
|
222
|
+
// 필요가 없을 수도.
|
222
223
|
if (isNaN(minWidth) || isNaN(minHeight)) {
|
223
224
|
return;
|
224
225
|
}
|