@jsenv/navi 0.18.1 → 0.18.2

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.
@@ -17672,6 +17672,7 @@ const selectByTextStrings = (element, range, startText, endText) => {
17672
17672
  installImportMetaCss(import.meta);import.meta.css = /* css */`
17673
17673
  *[data-navi-space] {
17674
17674
  /* user-select: none; */
17675
+ min-width: 0.2em;
17675
17676
  }
17676
17677
 
17677
17678
  .navi_text {
@@ -17765,7 +17766,7 @@ const CustomWidthSpace = ({
17765
17766
  children: "\u200B"
17766
17767
  });
17767
17768
  };
17768
- const applySpacingOnTextChildren = (children, spacing) => {
17769
+ const applySpacingOnTextChildren = (children, spacing = REGULAR_SPACE) => {
17769
17770
  if (spacing === "pre" || spacing === "0" || spacing === 0) {
17770
17771
  return children;
17771
17772
  }
@@ -20071,21 +20072,20 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
20071
20072
  height: 100%;
20072
20073
  padding-top: var(
20073
20074
  --button-padding-top,
20074
- var(--button-padding-y, var(--button-padding))
20075
+ var(--button-padding-y, var(--button-padding, unset))
20075
20076
  );
20076
20077
  padding-right: var(
20077
20078
  --button-padding-right,
20078
- var(--button-padding-x, var(--button-padding))
20079
+ var(--button-padding-x, var(--button-padding, unset))
20079
20080
  );
20080
20081
  padding-bottom: var(
20081
20082
  --button-padding-bottom,
20082
- var(--button-padding-y, var(--button-padding))
20083
+ var(--button-padding-y, var(--button-padding, unset))
20083
20084
  );
20084
20085
  padding-left: var(
20085
20086
  --button-padding-left,
20086
- var(--button-padding-x, var(--button-padding))
20087
+ var(--button-padding-x, var(--button-padding, unset))
20087
20088
  );
20088
- padding: var(--button-padding, unset);
20089
20089
  align-items: inherit;
20090
20090
  justify-content: inherit;
20091
20091
  color: var(--x-button-color);