publ-echo-test 0.0.72 → 0.0.73
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.
@@ -507,11 +507,12 @@ var ReactGridLayout = function (_a) {
|
|
507
507
|
}
|
508
508
|
return 0;
|
509
509
|
};
|
510
|
+
var outsideOfEditingGroup = !editingGroupAllChildren.includes(l.i);
|
510
511
|
return (_jsx(GridItem, { className: classNames({
|
511
512
|
'editable-grid-item': (!isRoot && editable),
|
512
513
|
'not-editable-grid-item': (!isRoot && !editable),
|
513
514
|
'bulk-child-item': isInBulk,
|
514
|
-
|
515
|
+
'outside-of-editing-group': outsideOfEditingGroup,
|
515
516
|
}),
|
516
517
|
// className={editable ? 'editable-grid-item' : isInBulk ? 'bulk-grid-item': 'not-editable-grid-item'}
|
517
518
|
z: baseZ() + z, isDraggable: editable, isResizable: editable, containerWidth: width, cols: cols, margin: margin, containerPadding: containerPadding || margin, maxRows: maxRows, rowHeight: rowHeight, cancel: draggableCancel, handle: draggableHandle, onDragStop: onDragStopHandler, onDragStart: onDragStartHandler, onDrag: onDragHandler, onResizeStart: onResizeStartHandler, onResize: onResizeHandler, onResizeStop: onResizeStopHandler, onFitToContent: onFitToContentHandler, isBounded: bounded, useCSSTransforms: useCSSTransforms && isMounted, usePercentages: !isMounted, transformScale: transformScale, w: l.w, h: l.h, x: l.x, y: l.y, i: l.i, minH: l.minH, minW: l.minW, maxH: l.maxH, maxW: l.maxW, static: l.static, droppingPosition: isDroppingItem ? droppingPosition : undefined, resizeHandles: resizeHandlesOptions, resizeHandle: resizeHandle, isHiddenVisibility: isHiddenVisibility, customColWidth: colWidth, autoResize: !!l.autoResize, children: child }, l.i));
|