rbro-tat-uds 1.6.24 → 1.6.25
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/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/dist/index.es.js
CHANGED
@@ -4921,7 +4921,7 @@ const z0 = R.div`
|
|
4921
4921
|
|
4922
4922
|
&:after {
|
4923
4923
|
content: "";
|
4924
|
-
width: ${(t) =>
|
4924
|
+
width: ${(t) => typeof t.$value == "number" ? t.$value * 100 + "%" : "50%"};
|
4925
4925
|
height: 100%;
|
4926
4926
|
position: absolute;
|
4927
4927
|
top: 0;
|
@@ -4929,7 +4929,7 @@ const z0 = R.div`
|
|
4929
4929
|
background-color: ${(t) => t.$leftColor && Object.keys(l).includes(t.$leftColor) ? l[t.$leftColor] : l.gray_950};
|
4930
4930
|
}
|
4931
4931
|
`, Cl = ({
|
4932
|
-
value: t = 0
|
4932
|
+
value: t = 0,
|
4933
4933
|
leftColor: i = "gray_950",
|
4934
4934
|
rightColor: a = "gray_60",
|
4935
4935
|
height: n = 24,
|