@jsenv/navi 0.29.0 → 0.29.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.
@@ -48664,7 +48664,10 @@ const css$p = /* css */`
48664
48664
  color: inherit;
48665
48665
  background: none;
48666
48666
  border: none;
48667
- border-radius: var(--navi-control-border-radius);
48667
+ /* Square by default, and rounded back only where the box is rounded (see
48668
+ below): the corners that give onto the value have nothing to follow, and
48669
+ a radius there would show as a notch in the pressed background. */
48670
+ border-radius: 0;
48668
48671
  cursor: pointer;
48669
48672
  }
48670
48673
  .navi_picker_spin > .navi_picker_spin_way_out:hover {
@@ -48690,9 +48693,10 @@ const css$p = /* css */`
48690
48693
  justify-content: center;
48691
48694
  }
48692
48695
  /* The corners of the box belong to what sits in them: a chevron in the corner
48693
- of a rounded spin is rounded there too, and nowhere else. Said with
48694
- inherit rather than clipped away with overflow, which would cut the focus
48695
- ring of the very button it rounds. */
48696
+ of a rounded spin is rounded there too, and nowhere else the two corners
48697
+ it does not own stay at the 0 above. Said with inherit rather than clipped
48698
+ away with overflow, which would cut the focus ring of the very button it
48699
+ rounds. */
48696
48700
  .navi_picker_spin:not([data-vertical])
48697
48701
  > .navi_picker_spin_way_out:first-of-type {
48698
48702
  border-start-start-radius: inherit;
@@ -49059,6 +49063,13 @@ const WayOut = ({
49059
49063
  "aria-label": label,
49060
49064
  "aria-disabled": unavailableMessage ? "true" : undefined,
49061
49065
  "data-unavailable": unavailableMessage ? "" : undefined
49066
+ // At the chevron, not beside it: a callout aims its arrow at where the
49067
+ // anchor's text starts, and there is no text here — only a glyph in the
49068
+ // middle of the box, which is what one pressed and what the answer is
49069
+ // about.
49070
+ ,
49071
+
49072
+ "data-callout-arrow-x": "center"
49062
49073
  // Read by triggerNaviCommand below the same way it reads a button's own.
49063
49074
  ,
49064
49075