@jsenv/navi 0.14.22 → 0.14.23

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.
@@ -16112,6 +16112,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
16112
16112
 
16113
16113
  position: relative;
16114
16114
  box-sizing: border-box;
16115
+ aspect-ratio: inherit;
16115
16116
  padding: 0;
16116
16117
  vertical-align: middle;
16117
16118
  background: none;
@@ -16128,6 +16129,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
16128
16129
  position: relative;
16129
16130
  display: inherit;
16130
16131
  box-sizing: border-box;
16132
+ aspect-ratio: inherit;
16131
16133
  width: 100%;
16132
16134
  height: 100%;
16133
16135
  padding-top: var(
@@ -16718,6 +16720,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
16718
16720
  --x-link-cursor: var(--link-cursor);
16719
16721
 
16720
16722
  position: relative;
16723
+ aspect-ratio: inherit;
16721
16724
  color: var(--x-link-color);
16722
16725
  text-decoration: var(--x-link-text-decoration);
16723
16726
  border-radius: var(--link-border-radius);
@@ -17467,10 +17470,11 @@ const Tab = props => {
17467
17470
  };
17468
17471
  TabList.Tab = Tab;
17469
17472
  const TabRoute = ({
17473
+ circle,
17470
17474
  route,
17471
17475
  routeParams,
17472
17476
  children,
17473
- padding,
17477
+ padding = 2,
17474
17478
  paddingX,
17475
17479
  paddingY,
17476
17480
  alignX,
@@ -17485,10 +17489,13 @@ const TabRoute = ({
17485
17489
  return jsx(TabBasic, {
17486
17490
  selected: selected,
17487
17491
  ...props,
17492
+ circle: circle,
17493
+ padding: "0",
17488
17494
  alignX: alignX,
17489
17495
  alignY: alignY,
17490
17496
  children: jsx(RouteLink, {
17491
17497
  box: true,
17498
+ circle: circle,
17492
17499
  route: route,
17493
17500
  routeParams: routeParams,
17494
17501
  expand: true,