@jsenv/navi 0.18.17 → 0.18.19
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.
- package/dist/jsenv_navi.js +6 -7
- package/dist/jsenv_navi.js.map +4 -4
- package/package.json +1 -1
package/dist/jsenv_navi.js
CHANGED
|
@@ -29713,9 +29713,6 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
29713
29713
|
letter-spacing: 0.06em;
|
|
29714
29714
|
}
|
|
29715
29715
|
.navi_quantity_body {
|
|
29716
|
-
.navi_quantity_value {
|
|
29717
|
-
font-weight: bold;
|
|
29718
|
-
}
|
|
29719
29716
|
.navi_quantity_unit {
|
|
29720
29717
|
color: var(--unit-color);
|
|
29721
29718
|
font-weight: normal;
|
|
@@ -29800,6 +29797,7 @@ const Quantity = ({
|
|
|
29800
29797
|
loading,
|
|
29801
29798
|
readOnly,
|
|
29802
29799
|
disabled,
|
|
29800
|
+
bold = true,
|
|
29803
29801
|
...props
|
|
29804
29802
|
}) => {
|
|
29805
29803
|
const value = parseQuantityValue(children);
|
|
@@ -29819,6 +29817,7 @@ const Quantity = ({
|
|
|
29819
29817
|
},
|
|
29820
29818
|
pseudoClasses: QuantityPseudoClasses,
|
|
29821
29819
|
spacing: "pre",
|
|
29820
|
+
bold: bold,
|
|
29822
29821
|
...props,
|
|
29823
29822
|
children: [label && jsx("span", {
|
|
29824
29823
|
className: "navi_quantity_label",
|
|
@@ -29900,12 +29899,12 @@ installImportMetaCss(import.meta);import.meta.css = /* css */`
|
|
|
29900
29899
|
--fill-color-suboptimum: light-dark(#fdb900, #ffc107);
|
|
29901
29900
|
--fill-color-even-less-good: light-dark(#d83b01, #f44336);
|
|
29902
29901
|
|
|
29903
|
-
--x-color: var(--navi-color-
|
|
29904
|
-
--x-shadow-color:
|
|
29902
|
+
--x-color: var(--navi-color-black);
|
|
29903
|
+
--x-shadow-color: white;
|
|
29905
29904
|
--shadow-size: 0.5em;
|
|
29906
29905
|
&[data-dark-background] {
|
|
29907
|
-
--x-color:
|
|
29908
|
-
--x-shadow-color:
|
|
29906
|
+
--x-color: white;
|
|
29907
|
+
--x-shadow-color: black;
|
|
29909
29908
|
}
|
|
29910
29909
|
}
|
|
29911
29910
|
}
|