publ-echo-test 0.0.340 → 0.0.341
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.
@@ -590,8 +590,8 @@ var ReactGridLayout = function (_a) {
|
|
590
590
|
})();
|
591
591
|
var zIndex = editorMode === "EDIT" ? editorZIndex : z;
|
592
592
|
return (_jsx(GridItem, { isPinned: device === "DESKTOP"
|
593
|
-
? !!block.
|
594
|
-
: !!block.
|
593
|
+
? !!block.isPinnedDesktop
|
594
|
+
: !!block.isPinnedMobile, className: classNames({
|
595
595
|
"editable-grid-item": !isRoot && editable,
|
596
596
|
"not-editable-grid-item": !isRoot && !editable,
|
597
597
|
"bulk-child-item": isInBulk,
|
@@ -721,8 +721,8 @@ var ReactGridLayout = function (_a) {
|
|
721
721
|
? findParentGroupBlock(blockStructure, block.blockId)
|
722
722
|
: null;
|
723
723
|
return (_jsx(OutsideClickHandler, { onOutsideClick: onDoubleClickOutsideGroup, children: _jsx(GroupItem, { isPinned: device === "DESKTOP"
|
724
|
-
? !!block.
|
725
|
-
: !!block.
|
724
|
+
? !!block.isPinnedDesktop
|
725
|
+
: !!block.isPinnedMobile, className: classNames({
|
726
726
|
"bulk-child-item": isInBulk,
|
727
727
|
"grid-bulk-block": block.blockId === "BULK",
|
728
728
|
editing: editingGroupBlock === block.blockId,
|