publ-echo-test 0.0.290 → 0.0.291
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.
@@ -134,6 +134,9 @@ var GridItem = function (_a) {
|
|
134
134
|
var prevPaddingR = parseFloat(getComputedStyle(targetNode).paddingRight);
|
135
135
|
var prevPaddingT = parseFloat(getComputedStyle(targetNode).paddingTop);
|
136
136
|
var prevPaddingB = parseFloat(getComputedStyle(targetNode).paddingBottom);
|
137
|
+
var layoutBox = targetNode.children[0];
|
138
|
+
var contentsWrapper = layoutBox.children[0];
|
139
|
+
var oneComposition = contentsWrapper.children[0];
|
137
140
|
// MutationObserver 콜백 함수
|
138
141
|
var callback = function (mutationsList) {
|
139
142
|
for (var _i = 0, mutationsList_2 = mutationsList; _i < mutationsList_2.length; _i++) {
|
@@ -147,8 +150,12 @@ var GridItem = function (_a) {
|
|
147
150
|
var minWidth = 0;
|
148
151
|
// const minHeight =
|
149
152
|
// Number(mutation.target.dataset.minHeight) + insetTop + insetBottom;
|
150
|
-
|
151
|
-
|
153
|
+
// const contentsWrapper = mutation.target.querySelector(
|
154
|
+
// ".cb-contentslist-wrapper"
|
155
|
+
// );
|
156
|
+
// const oneComposition = mutation.target.querySelector(
|
157
|
+
// ".composition-container"
|
158
|
+
// );
|
152
159
|
var minHeight = 0;
|
153
160
|
if (contentsWrapper && oneComposition) {
|
154
161
|
var minCellWidth = 10;
|