@jsenv/navi 0.27.27 → 0.27.29

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.
@@ -26471,13 +26471,15 @@ installImportMetaCssBuild(import.meta);const css$I = /* css */`
26471
26471
  --button-padding-x-default: var(--navi-button-padding-x-default);
26472
26472
  --button-padding-y-default: var(--navi-button-padding-y-default);
26473
26473
  --button-loader-color: var(--navi-loader-color);
26474
- --button-border-color: light-dark(#767676, #8e8e93);
26474
+ --button-border-color: var(--navi-control-border-color);
26475
26475
  --button-background-color: var(
26476
26476
  --button-background,
26477
26477
  light-dark(#f3f4f6, #2d3748)
26478
26478
  );
26479
26479
  --button-color: currentColor;
26480
26480
  --button-cursor: pointer;
26481
+ --button-font-size: var(--navi-control-font-size);
26482
+ --button-font-family: var(--navi-control-font-family);
26481
26483
 
26482
26484
  /* Hover */
26483
26485
  --button-border-color-hover: color-mix(
@@ -26543,6 +26545,8 @@ installImportMetaCssBuild(import.meta);const css$I = /* css */`
26543
26545
  cursor: var(--x-button-cursor);
26544
26546
  -webkit-tap-highlight-color: transparent;
26545
26547
  position: relative;
26548
+ font-size: var(--button-font-size);
26549
+ font-family: var(--button-font-family);
26546
26550
  touch-action: manipulation;
26547
26551
  user-select: none;
26548
26552
 
@@ -28475,10 +28479,12 @@ installImportMetaCssBuild(import.meta);const css$A = /* css */`
28475
28479
  --outline-color: var(--navi-focus-outline-color);
28476
28480
  /* Focus outline end */
28477
28481
  --margin: 3px 3px 3px 4px;
28478
- --width: round(0.815em, 1px);
28479
- --height: round(0.815em, 1px);
28482
+ --font-size: var(--navi-control-font-size);
28483
+ --font-family: var(--navi-control-font-family);
28484
+ --width: round(1em, 1px);
28485
+ --height: round(1em, 1px);
28480
28486
  --loader-color: var(--navi-loader-color);
28481
- --border-color: light-dark(#767676, #8e8e93);
28487
+ --border-color: var(--navi-control-border-color);
28482
28488
  --background-color: white;
28483
28489
  --accent-color: light-dark(#4476ff, #3b82f6);
28484
28490
  --background-color-checked: var(--accent-color);
@@ -28552,6 +28558,8 @@ installImportMetaCssBuild(import.meta);const css$A = /* css */`
28552
28558
  height: var(--height);
28553
28559
  min-height: var(--height); /* Do not allow to shrink */
28554
28560
  margin: var(--margin);
28561
+ font-size: var(--font-size);
28562
+ font-family: var(--font-family);
28555
28563
  background-color: var(--x-background-color);
28556
28564
  border-width: var(--border-width);
28557
28565
  border-style: solid;
@@ -28905,8 +28913,8 @@ installImportMetaCssBuild(import.meta);const css$z = /* css */`
28905
28913
  --outline-offset: 1px;
28906
28914
  --outline-width: 2px;
28907
28915
  /* Rounding ensures outline is visually a nice circle */
28908
- --width: round(0.815em, 1px);
28909
- --height: round(0.815em, 1px);
28916
+ --width: round(1em, 1px);
28917
+ --height: round(1em, 1px);
28910
28918
 
28911
28919
  --color-mix-light: black;
28912
28920
  --color-mix-dark: white;
@@ -28914,13 +28922,15 @@ installImportMetaCssBuild(import.meta);const css$z = /* css */`
28914
28922
 
28915
28923
  --outline-color: var(--navi-focus-outline-color);
28916
28924
  --loader-color: var(--navi-loader-color);
28917
- --border-color: light-dark(#767676, #8e8e93);
28925
+ --border-color: var(--navi-control-border-color);
28918
28926
  --background-color: white;
28919
28927
  --background-color-checked: var(--background-color);
28920
28928
  --accent-color: light-dark(#4476ff, #3b82f6);
28921
28929
  --radiomark-color: var(--accent-color);
28922
28930
  --border-color-checked: var(--accent-color);
28923
28931
  --cursor: pointer;
28932
+ --font-size: var(--navi-control-font-size);
28933
+ --font-family: var(--navi-control-font-family);
28924
28934
 
28925
28935
  /* Hover */
28926
28936
  --border-color-hover: color-mix(in srgb, var(--border-color) 60%, black);
@@ -29004,6 +29014,8 @@ installImportMetaCssBuild(import.meta);const css$z = /* css */`
29004
29014
  height: var(--x-height);
29005
29015
  min-height: var(--x-height); /* Do not allow to shrink */
29006
29016
  margin: var(--margin);
29017
+ font-size: var(--font-size);
29018
+ font-family: var(--font-family);
29007
29019
  outline-width: var(--x-outline-width);
29008
29020
  outline-style: none;
29009
29021
  outline-color: var(--x-outline-color);
@@ -29755,6 +29767,9 @@ installImportMetaCssBuild(import.meta);const css$y = /* css */`
29755
29767
  --thumb-height: var(--thumb-size);
29756
29768
  --thumb-border-radius: 100%;
29757
29769
  --thumb-cursor: pointer;
29770
+ /* Range can contains text (legend etc) */
29771
+ --font-size: var(--navi-control-font-size);
29772
+ --font-family: var(--navi-control-font-family);
29758
29773
 
29759
29774
  --loader-color: var(--navi-loader-color);
29760
29775
  --accent-color: rgb(24, 117, 255);
@@ -29848,6 +29863,8 @@ installImportMetaCssBuild(import.meta);const css$y = /* css */`
29848
29863
  flex-direction: inherit;
29849
29864
  align-items: center;
29850
29865
  /* Just for the outline, the real border radius of the range is fixed */
29866
+ font-size: var(--font-size);
29867
+ font-family: var(--font-family);
29851
29868
  border-radius: var(--outline-border-radius);
29852
29869
  outline-width: var(--outline-width);
29853
29870
  outline-style: none;
@@ -31028,8 +31045,9 @@ const css$w = /* css */`
31028
31045
  --outline-color: var(--navi-focus-outline-color);
31029
31046
  /* Focus outline end */
31030
31047
  --font-size: var(--navi-control-font-size);
31048
+ --font-family: var(--navi-control-font-family);
31031
31049
  --loader-color: var(--navi-loader-color);
31032
- --border-color: light-dark(#767676, #8e8e93);
31050
+ --border-color: var(--navi-control-border-color);
31033
31051
  --background-color: white;
31034
31052
  --color: currentColor;
31035
31053
  --color-dimmed: color-mix(in srgb, currentColor 60%, transparent);
@@ -31104,6 +31122,7 @@ const css$w = /* css */`
31104
31122
  flex-direction: row;
31105
31123
  color: var(--x-color);
31106
31124
  font-size: var(--font-size);
31125
+ font-family: var(--font-family);
31107
31126
  background-color: var(--x-background-color);
31108
31127
  border-width: var(--border-width);
31109
31128
  border-style: solid;
@@ -32484,10 +32503,12 @@ installImportMetaCssBuild(import.meta);const css$p = /* css */`
32484
32503
  border-style: solid;
32485
32504
  border-color: var(--x-picker-border-color);
32486
32505
  border-radius: var(--picker-border-radius);
32487
- outline-width: var(--x-picker-outline-width);
32506
+ outline-width: var(--picker-outline-width);
32488
32507
  outline-color: var(--picker-outline-color);
32489
- outline-offset: var(--x-picker-outline-offset);
32490
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.22);
32508
+ outline-offset: var(--picker-outline-offset);
32509
+ box-shadow:
32510
+ 0 4px 8px rgba(0, 0, 0, 0.08),
32511
+ 0 12px 40px rgba(0, 0, 0, 0.22);
32491
32512
  cursor: default; /* Reset pointer cursor within the select */
32492
32513
  overflow: hidden;
32493
32514
  overscroll-behavior: none;
@@ -32568,10 +32589,12 @@ installImportMetaCssBuild(import.meta);const css$p = /* css */`
32568
32589
  background: var(--picker-background-color);
32569
32590
  border: var(--picker-border-width) solid var(--x-picker-border-color);
32570
32591
  border-radius: var(--picker-border-radius);
32571
- outline-width: var(--x-picker-outline-width);
32592
+ outline-width: var(--picker-outline-width);
32572
32593
  outline-color: var(--picker-outline-color);
32573
- outline-offset: var(--x-picker-outline-offset);
32574
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08), 0 12px 40px rgba(0, 0, 0, 0.22);
32594
+ outline-offset: var(--picker-outline-offset);
32595
+ box-shadow:
32596
+ 0 4px 8px rgba(0, 0, 0, 0.08),
32597
+ 0 12px 40px rgba(0, 0, 0, 0.22);
32575
32598
  cursor: default; /* Reset pointer cursor within the select */
32576
32599
  /* overscroll-behavior: contain; */
32577
32600
 
@@ -36380,8 +36403,10 @@ installImportMetaCssBuild(import.meta);const css$k = /* css */`
36380
36403
  /* Focus outline end */
36381
36404
  --picker-padding-x-default: var(--navi-picker-padding-x-default);
36382
36405
  --picker-padding-y-default: var(--navi-picker-padding-y-default);
36406
+ --picker-font-size: var(--navi-control-font-size);
36407
+ --picker-font-family: var(--navi-control-font-family);
36383
36408
  --picker-loader-color: var(--navi-loader-color);
36384
- --picker-border-color: light-dark(#767676, #8e8e93);
36409
+ --picker-border-color: var(--navi-control-border-color);
36385
36410
  --picker-background-color: white;
36386
36411
  --picker-color: currentColor;
36387
36412
  --picker-placeholder-color: color-mix(
@@ -36477,6 +36502,8 @@ installImportMetaCssBuild(import.meta);const css$k = /* css */`
36477
36502
  align-items: center;
36478
36503
  gap: var(--navi-xs);
36479
36504
  color: var(--x-picker-color);
36505
+ font-size: var(--picker-font-size);
36506
+ font-family: var(--picker-font-family);
36480
36507
  text-align: inherit;
36481
36508
  text-overflow: ellipsis;
36482
36509
  background-color: var(--x-picker-background-color);