publ-echo 0.0.121 → 0.0.122

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.
@@ -603,6 +603,7 @@ var GridItem = function (_a) {
603
603
  "data-grid-id": i,
604
604
  "data-z-index": z,
605
605
  "data-z-order": zOrder,
606
+ "data-parent-group-id": props.parentGroupId,
606
607
  "data-is-height-variable": props.isheightVariable,
607
608
  "data-height-fit-content": heightFitContent,
608
609
  "data-z-order-internal": zOrderInternal,
@@ -86,6 +86,7 @@ export type GridItemProps = {
86
86
  isheightVariable: boolean;
87
87
  heightFitContent: boolean;
88
88
  isGroupChild?: boolean;
89
+ parentGroupId?: string;
89
90
  };
90
91
  export type GridItemDefaultProps = {
91
92
  className: string;
@@ -609,7 +609,7 @@ var ReactGridLayout = function (_a) {
609
609
  var showBlockData = editable && !isInBulk && overlapsActiveRows;
610
610
  return (_jsx(GridItem, { heightFitContent: !!(l === null || l === void 0 ? void 0 : l.heightFitContent), isheightVariable: device === "DESKTOP"
611
611
  ? !!block.isHeightVariableDesktop
612
- : !!block.isHeightVariableMobile, className: classNames({
612
+ : !!block.isHeightVariableMobile, parentGroupId: parent ? parent.blockId : undefined, className: classNames({
613
613
  "editable-grid-item": !isRoot && editable,
614
614
  "not-editable-grid-item": !isRoot && !editable,
615
615
  "bulk-child-item": isInBulk,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "publ-echo",
3
- "version": "0.0.121",
3
+ "version": "0.0.122",
4
4
  "private": false,
5
5
  "main": "dist/lib/index.js",
6
6
  "types": "dist/lib/index.d.js",