@jsenv/navi 0.14.22 → 0.14.24

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(
@@ -16312,8 +16314,8 @@ const ButtonBasic = props => {
16312
16314
  loading,
16313
16315
  autoFocus,
16314
16316
  // visual
16315
- discrete,
16316
16317
  icon,
16318
+ discrete = icon,
16317
16319
  children,
16318
16320
  ...rest
16319
16321
  } = props;
@@ -16336,6 +16338,7 @@ const ButtonBasic = props => {
16336
16338
  const renderButtonContentMemoized = useCallback(renderButtonContent, [children]);
16337
16339
  return jsxs(Box, {
16338
16340
  "data-readonly-silent": innerLoading ? "" : undefined,
16341
+ "data-nohover": icon ? "" : undefined,
16339
16342
  ...remainingProps,
16340
16343
  as: "button",
16341
16344
  ref: ref,
@@ -16718,6 +16721,7 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
16718
16721
  --x-link-cursor: var(--link-cursor);
16719
16722
 
16720
16723
  position: relative;
16724
+ aspect-ratio: inherit;
16721
16725
  color: var(--x-link-color);
16722
16726
  text-decoration: var(--x-link-text-decoration);
16723
16727
  border-radius: var(--link-border-radius);
@@ -17467,10 +17471,11 @@ const Tab = props => {
17467
17471
  };
17468
17472
  TabList.Tab = Tab;
17469
17473
  const TabRoute = ({
17474
+ circle,
17470
17475
  route,
17471
17476
  routeParams,
17472
17477
  children,
17473
- padding,
17478
+ padding = 2,
17474
17479
  paddingX,
17475
17480
  paddingY,
17476
17481
  alignX,
@@ -17485,10 +17490,13 @@ const TabRoute = ({
17485
17490
  return jsx(TabBasic, {
17486
17491
  selected: selected,
17487
17492
  ...props,
17493
+ circle: circle,
17494
+ padding: "0",
17488
17495
  alignX: alignX,
17489
17496
  alignY: alignY,
17490
17497
  children: jsx(RouteLink, {
17491
17498
  box: true,
17499
+ circle: circle,
17492
17500
  route: route,
17493
17501
  routeParams: routeParams,
17494
17502
  expand: true,