publ-echo-test 0.0.299 → 0.0.301
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.
@@ -36,7 +36,7 @@ import classNames from "../../external-lib/classnames";
|
|
36
36
|
import { bottom, cloneLayoutItem, compact, getAllCollisions, getBoundingArea, getLayoutItem, moveElement, noop, synchronizeLayoutWithChildren, withLayoutItem, } from "./utils/renderHelpers";
|
37
37
|
import { calcGridColWidth, calcXY, resolveRowHeight, } from "../GridItem/utils/calculateUtils";
|
38
38
|
// NOTE: 필수 변경하기
|
39
|
-
import GridItem from "../GridItem/
|
39
|
+
import GridItem from "../GridItem/GridItem";
|
40
40
|
import isEqual from "../../external-lib/lodash.isEqual";
|
41
41
|
import { findAllChildrenCbIds, findBlockByBlockId, findDirectChildrenBlockIds, findDirectChildrenCbIds, findGroupBlocks, findParentGroupBlock, formatCbIdToBlockId, getBlockSpecificType, zIndexMap, } from "./group";
|
42
42
|
import GroupItem from "../GridItem/GroupItem";
|
@@ -175,6 +175,9 @@ var Resizable = function (_a) {
|
|
175
175
|
(numberOfColumns - 1) * columnGap +
|
176
176
|
paddingLR +
|
177
177
|
compositionWrapperPaddingLR;
|
178
|
+
console.log("oneCompositionMinWidth", oneCompositionMinWidth);
|
179
|
+
console.log("cols", numberOfColumns);
|
180
|
+
console.log("listMinWidth", listMinWidth);
|
178
181
|
var numberOfRows = Math.ceil(numberOfItems / numberOfColumns);
|
179
182
|
var gridWrapperTotalH = gridWrapperInnerH + insetTop + insetBottom;
|
180
183
|
var listMinHeight = oneCompositionMinHeight * numberOfRows +
|