@jsenv/navi 0.20.6 → 0.20.7

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.
@@ -7563,7 +7563,7 @@ const Box = props => {
7563
7563
  }
7564
7564
  }
7565
7565
  if (defaultDisplay === "inline") {
7566
- if (inline === undefined) {
7566
+ if (inline === undefined && !block) {
7567
7567
  inline = true;
7568
7568
  }
7569
7569
  } else if (defaultDisplay === "block") {
@@ -7571,7 +7571,7 @@ const Box = props => {
7571
7571
  block = true;
7572
7572
  }
7573
7573
  } else if (defaultDisplay === "inline-block") {
7574
- if (inline === undefined) {
7574
+ if (inline === undefined && !block) {
7575
7575
  inline = true;
7576
7576
  }
7577
7577
  if (block === undefined && !flex && !grid) {