urfu-ui-kit-react 0.0.78 → 0.0.79
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.
|
@@ -11048,7 +11048,10 @@ const zn = (n) => {
|
|
|
11048
11048
|
overflow: "hidden",
|
|
11049
11049
|
textOverflow: "ellipsis"
|
|
11050
11050
|
},
|
|
11051
|
-
children: s.roundUpTo && W !== y ?
|
|
11051
|
+
children: s.roundUpTo && W !== y ? new Intl.NumberFormat("ru-RU", {
|
|
11052
|
+
minimumFractionDigits: s.roundUpTo,
|
|
11053
|
+
maximumFractionDigits: s.roundUpTo
|
|
11054
|
+
}).format(Number(W)).replace(",", ".") : new Intl.NumberFormat("ru-RU").format(Number(W))
|
|
11052
11055
|
}
|
|
11053
11056
|
)
|
|
11054
11057
|
]
|