@jsenv/navi 0.20.18 → 0.20.19

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.
@@ -6302,6 +6302,9 @@ const DIMENSION_PROPS = {
6302
6302
  boxFlow === "flex-x" || boxFlow === "inline-flex-x";
6303
6303
  if (selfHorizontalFlexFlow || inHorizontalFlexFlow) {
6304
6304
  if (!inHorizontalFlexFlow) {
6305
+ if (parentBoxFlow === "flex-y" || parentBoxFlow === "inline-flex-y") {
6306
+ return { minWidth: "100%", width: "auto" };
6307
+ }
6305
6308
  return {
6306
6309
  flexGrow: 1,
6307
6310
  flexBasis: "0%",
@@ -6326,6 +6329,9 @@ const DIMENSION_PROPS = {
6326
6329
  boxFlow === "flex-y" || boxFlow === "inline-flex-y";
6327
6330
  if (selfVerticalFlexFlow || inVerticalFlexFlow) {
6328
6331
  if (!inVerticalFlexFlow) {
6332
+ if (parentBoxFlow === "flex-x" || parentBoxFlow === "inline-flex-x") {
6333
+ return { minHeight: "100%", height: "auto" };
6334
+ }
6329
6335
  return {
6330
6336
  flexGrow: 1,
6331
6337
  flexBasis: "0%",