publ-echo-test 0.0.313 → 0.0.314
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.
@@ -128,9 +128,11 @@ var GridItem = function (_a) {
|
|
128
128
|
if (!targetNode || isDragging || isResizing) {
|
129
129
|
return;
|
130
130
|
}
|
131
|
+
console.log("targetNode", targetNode);
|
131
132
|
if (!targetNode.classList.contains("ccb-layout-box")) {
|
132
133
|
return;
|
133
134
|
}
|
135
|
+
console.log("contains?:", targetNode.classList.contains("ccb-layout-box"));
|
134
136
|
var prevPaddingL = parseFloat(getComputedStyle(targetNode).paddingLeft);
|
135
137
|
var prevPaddingR = parseFloat(getComputedStyle(targetNode).paddingRight);
|
136
138
|
var prevPaddingT = parseFloat(getComputedStyle(targetNode).paddingTop);
|
@@ -147,6 +149,9 @@ var GridItem = function (_a) {
|
|
147
149
|
var layoutBox = targetNode.children[0];
|
148
150
|
var contentsWrapper = layoutBox.children[0];
|
149
151
|
var oneComposition = contentsWrapper.children[0];
|
152
|
+
console.log("layoutbox", layoutBox);
|
153
|
+
console.log("contentsWrapper", contentsWrapper);
|
154
|
+
console.log("oneComposition", oneComposition);
|
150
155
|
// const insetTop = Number(mutation.target.dataset.insetTop!);
|
151
156
|
// const insetBottom = Number(mutation.target.dataset.insetBottom!);
|
152
157
|
var minWidth = 0;
|