@jsenv/navi 0.25.3 → 0.25.5

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.
@@ -27086,7 +27086,6 @@ const ListUI = props => {
27086
27086
  "data-expand-x": expandX ? "" : undefined,
27087
27087
  expandX: expandX,
27088
27088
  maxHeight: maxHeight,
27089
- visualSelector: ".navi_list",
27090
27089
  styleCSSVars: LIST_STYLE_CSS_VARS,
27091
27090
  pseudoClasses: LIST_PSEUDO_CLASSES,
27092
27091
  hasChildFunction: true,
@@ -27487,7 +27486,10 @@ const useVirtualItemHeightSignal = (ulRef, virtualItemHeightProp = 0) => {
27487
27486
  return virtualHeightSignal;
27488
27487
  };
27489
27488
  const LIST_STYLE_CSS_VARS = {
27490
- maxHeight: "--list-max-height"
27489
+ maxHeight: "--list-max-height",
27490
+ borderColor: "--list-border-color",
27491
+ borderRadius: "--list-border-radius",
27492
+ borderWidth: "--list-border-width"
27491
27493
  };
27492
27494
  const LIST_PSEUDO_CLASSES = [":-navi-void"];
27493
27495
  // Inner <ul> — hosts the fillers + items.
@@ -28539,9 +28541,11 @@ const css$l = /* css */`
28539
28541
 
28540
28542
  &[data-left] {
28541
28543
  left: var(--x-padding-left-base);
28544
+ width: var(--left-slot-size);
28542
28545
  }
28543
28546
  &[data-right] {
28544
28547
  right: var(--x-padding-right-base);
28548
+ width: var(--right-slot-size);
28545
28549
  }
28546
28550
  &[data-hide-while-empty] {
28547
28551
  opacity: 0;