publ-echo-test 0.0.159 → 0.0.160
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.
@@ -740,6 +740,7 @@ var ReactGridLayout = function (_a) {
|
|
740
740
|
var currentGroupBlocks = blockStructure
|
741
741
|
? findGroupBlocks(blockStructure, editingGroupBlock)
|
742
742
|
: [];
|
743
|
+
console.log('currentGroupBlocks', currentGroupBlocks);
|
743
744
|
return (_jsxs("div", { ref: innerRef, className: mergedClassName, style: mergedStyle, onDrop: isDroppable ? onDropHandler : noop, onDragLeave: isDroppable ? onDragLeaveHandler : noop, onDragEnter: isDroppable ? onDragEnterHandler : noop, onDragOver: isDroppable ? onDragOverHandler : noop, children: [currentGroupBlocks.map(function (each) { return processGroup(each); }), React.Children.map(children, function (child) { return processGridItem(child); }), placeholder(), activeDrag && _jsx("div", { className: 'grid-guide-line-center' }), activeDrag && (_jsx("div", { className: 'grid-placeholder', style: {
|
744
745
|
marginTop: margin[1] + 'px',
|
745
746
|
marginBottom: margin[1] + 'px',
|
@@ -121,6 +121,7 @@ export var findGroupBlocks = function (block, targetId) {
|
|
121
121
|
return groupBlocks;
|
122
122
|
}
|
123
123
|
if (groupInBulk && groupInBulk.length > 0) {
|
124
|
+
console.log('groupInBulk', groupInBulk);
|
124
125
|
return [targetBlock].concat(groupBlocks).concat(groupInBulk);
|
125
126
|
}
|
126
127
|
return [targetBlock].concat(groupBlocks);
|