publ-echo-test 0.0.73 → 0.0.74
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.
| @@ -496,6 +496,9 @@ var ReactGridLayout = function (_a) { | |
| 496 496 | 
             
                    var isInBulk = bulkIds === null || bulkIds === void 0 ? void 0 : bulkIds.includes(l.i);
         | 
| 497 497 | 
             
                    var isRoot = editingGroupBlock === 'ROOT';
         | 
| 498 498 | 
             
                    var baseZ = function () {
         | 
| 499 | 
            +
                        if (isInBulk) {
         | 
| 500 | 
            +
                            return zIndexMap.BULK;
         | 
| 501 | 
            +
                        }
         | 
| 499 502 | 
             
                        if (!isRoot && editable) {
         | 
| 500 503 | 
             
                            return zIndexMap.EDITING_GROUP;
         | 
| 501 504 | 
             
                        }
         | 
| @@ -515,7 +518,7 @@ var ReactGridLayout = function (_a) { | |
| 515 518 | 
             
                            'outside-of-editing-group': outsideOfEditingGroup,
         | 
| 516 519 | 
             
                        }), 
         | 
| 517 520 | 
             
                        // className={editable ? 'editable-grid-item' : isInBulk ? 'bulk-grid-item': 'not-editable-grid-item'}
         | 
| 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));
         | 
| 521 | 
            +
                        z: baseZ() + z, isDraggable: editable && !isInBulk, isResizable: editable && !isInBulk, 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));
         | 
| 519 522 | 
             
                };
         | 
| 520 523 | 
             
                var onDragOverHandler = function (e) {
         | 
| 521 524 | 
             
                    var _a;
         |