@jsenv/navi 0.12.37 → 0.12.39

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.
@@ -11300,7 +11300,7 @@ const Box = props => {
11300
11300
  if (inline === undefined) {
11301
11301
  inline = true;
11302
11302
  }
11303
- if (column === undefined) {
11303
+ if (column === undefined && !row) {
11304
11304
  column = true;
11305
11305
  }
11306
11306
  }
@@ -15768,6 +15768,9 @@ const TabList = ({
15768
15768
  underline,
15769
15769
  expand,
15770
15770
  expandX,
15771
+ paddingX,
15772
+ paddingY,
15773
+ padding,
15771
15774
  ...props
15772
15775
  }) => {
15773
15776
  return jsx(Box, {
@@ -15783,6 +15786,9 @@ const TabList = ({
15783
15786
  as: "ul",
15784
15787
  column: true,
15785
15788
  role: "list",
15789
+ paddingX: paddingX,
15790
+ paddingY: paddingY,
15791
+ padding: padding,
15786
15792
  spacing: spacing,
15787
15793
  children: jsx(TabListUnderlinerContext.Provider, {
15788
15794
  value: underline,