@jsenv/navi 0.20.18 → 0.20.20

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%",
@@ -18815,9 +18821,14 @@ const css$3 = /* css */`
18815
18821
  .navi_text_bold_clone,
18816
18822
  .navi_text_bold_foreground {
18817
18823
  display: inherit;
18824
+ width: inherit;
18825
+ min-width: inherit;
18826
+ height: inherit;
18827
+ min-height: inherit;
18818
18828
  flex-grow: inherit;
18819
18829
  align-items: inherit;
18820
18830
  justify-content: inherit;
18831
+ gap: inherit;
18821
18832
  text-align: inherit;
18822
18833
  border-radius: inherit;
18823
18834
  }
@@ -19132,7 +19143,7 @@ const TextBasic = ({
19132
19143
  // La technique consiste a avoid un double gras qui force une taille
19133
19144
  // et la version light par dessus en position absolute
19134
19145
  // on la centre aussi pour donner l'impression que le gras s'applique depuis le centre
19135
- // ne fonctionne que sur une seul ligne de texte (donc lorsque noWrap est actif)
19146
+ // ne fonctionne que sur une seule ligne de texte (donc lorsque noWrap est actif)
19136
19147
  // on pourrait auto-active cela sur une prop genre boldCanChange
19137
19148
  return jsxs(Box, {
19138
19149
  ...boxProps,