publ-echo-test 0.0.247 → 0.0.248
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.
@@ -83,6 +83,7 @@ var Resizable = function (_a) {
|
|
83
83
|
}
|
84
84
|
if (target.clientHeight) {
|
85
85
|
minHeight.current = target.clientHeight;
|
86
|
+
console.log("2", minHeight.current);
|
86
87
|
}
|
87
88
|
if (isContentsList && oneComposition) {
|
88
89
|
// NOTE: 이건 좀 확인 필요. 근데 지금스팩엔 이게 맞아보임 (gap때문)
|
@@ -128,10 +129,12 @@ var Resizable = function (_a) {
|
|
128
129
|
insetBottom;
|
129
130
|
minWidth.current = listMinWidth;
|
130
131
|
minHeight.current = listMinHeight;
|
132
|
+
console.log("3", minHeight.current);
|
131
133
|
return;
|
132
134
|
}
|
133
135
|
return;
|
134
136
|
}
|
137
|
+
console.log("fallthrough,");
|
135
138
|
// target.clientHeight -> 실제 "노드"의 height. (gridItem아닌)
|
136
139
|
if (target.clientHeight > elementRef.current.clientHeight) {
|
137
140
|
extendedHeightRef.current = target.clientHeight;
|