publ-echo-test 0.0.171 → 0.0.172
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.
@@ -567,8 +567,7 @@ var ReactGridLayout = function (_a) {
|
|
567
567
|
var zOrder = (_a = block[device === 'DESKTOP' ? 'zOrderDesktopInternal' : 'zOrderMobileInternal']) !== null && _a !== void 0 ? _a : 0;
|
568
568
|
var editorZIndex = (function () {
|
569
569
|
if (isInBulk) {
|
570
|
-
|
571
|
-
return z;
|
570
|
+
return zIndexMap.EDITING_GROUP_CHILD + z;
|
572
571
|
}
|
573
572
|
if (!isRoot && editable) {
|
574
573
|
return zIndexMap.EDITING_GROUP_CHILD + z;
|
@@ -740,7 +739,6 @@ var ReactGridLayout = function (_a) {
|
|
740
739
|
var currentGroupBlocks = blockStructure
|
741
740
|
? findGroupBlocks(blockStructure, editingGroupBlock)
|
742
741
|
: [];
|
743
|
-
console.log('currentGroupBlocks', currentGroupBlocks);
|
744
742
|
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: {
|
745
743
|
marginTop: margin[1] + 'px',
|
746
744
|
marginBottom: margin[1] + 'px',
|