@jsenv/navi 0.27.32 → 0.27.34

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.
@@ -27376,12 +27376,14 @@ installImportMetaCssBuild(import.meta);const css$I = /* css */`
27376
27376
  --button-background-color-readonly
27377
27377
  );
27378
27378
  --button-color-disabled: var(--button-color-readonly);
27379
+
27380
+ /* Here to be easy to override */
27381
+ font-size: var(--button-font-size);
27382
+ font-family: var(--button-font-family);
27379
27383
  }
27380
27384
  }
27381
27385
 
27382
27386
  a.navi_button {
27383
- display: inline-block;
27384
- color: inherit;
27385
27387
  text-align: center;
27386
27388
  text-decoration: none;
27387
27389
  }
@@ -27405,8 +27407,6 @@ installImportMetaCssBuild(import.meta);const css$I = /* css */`
27405
27407
  cursor: var(--x-button-cursor);
27406
27408
  -webkit-tap-highlight-color: transparent;
27407
27409
  position: relative;
27408
- font-size: var(--button-font-size);
27409
- font-family: var(--button-font-family);
27410
27410
  touch-action: manipulation;
27411
27411
  user-select: none;
27412
27412
  -webkit-tap-highlight-color: var(--navi-control-tap-highlight-color);
@@ -27685,11 +27685,14 @@ const ButtonUI = props => {
27685
27685
  elementSelector: visualSelector
27686
27686
  });
27687
27687
  return jsxs(Box, {
27688
+ inline: true,
27689
+ flex: true,
27688
27690
  ...buttonControlRootProps,
27689
27691
  ...buttonControlHostProps,
27690
27692
  // eslint-disable-next-line react/no-children-prop
27691
27693
  children: undefined,
27692
27694
  spacing: undefined,
27695
+ cta: undefined,
27693
27696
  ref: ref,
27694
27697
  as: as,
27695
27698
  href: href,
@@ -38095,7 +38098,6 @@ installImportMetaCssBuild(import.meta);const css$i = /* css */`
38095
38098
  display: inline-block;
38096
38099
  min-width: 0;
38097
38100
  max-width: 100%;
38098
- margin-inline: 0.2em;
38099
38101
  margin-top: calc(-1 * var(--x-picker-padding-top));
38100
38102
  margin-bottom: calc(-1 * var(--x-picker-padding-bottom));
38101
38103
  padding-top: var(--x-picker-padding-top);
@@ -38115,6 +38117,7 @@ installImportMetaCssBuild(import.meta);const css$i = /* css */`
38115
38117
  display: inline-flex;
38116
38118
  height: 1em;
38117
38119
  height: 1lh;
38120
+ margin-inline: 0.1em;
38118
38121
  flex-shrink: 0;
38119
38122
  align-items: center;
38120
38123
  align-self: flex-start;
@@ -38143,6 +38146,7 @@ installImportMetaCssBuild(import.meta);const css$i = /* css */`
38143
38146
 
38144
38147
  .navi_picker_content {
38145
38148
  display: contents;
38149
+ text-align: initial; /* Don't inherit picker text align */
38146
38150
  }
38147
38151
 
38148
38152
  &[data-line-clamp] {