@mcurros2/microm 1.1.117-0 → 1.1.118-0
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.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47508,9 +47508,11 @@ function $62b3483ba35d005f$export$35626b90bc912862(props) {
|
|
|
47508
47508
|
]);
|
|
47509
47509
|
const formatter = (0, $b4te3$react.useCallback)((value)=>{
|
|
47510
47510
|
const formattedValue = (0, $jNUqj.moneyFormatter)(value, "");
|
|
47511
|
-
column.valueDescription = formattedValue
|
|
47511
|
+
column.valueDescription = `${currencySymbol} ${formattedValue}`;
|
|
47512
47512
|
return formattedValue;
|
|
47513
|
-
}, [
|
|
47513
|
+
}, [
|
|
47514
|
+
currencySymbol
|
|
47515
|
+
]);
|
|
47514
47516
|
const variable_step = (0, $b4te3$react.useMemo)(()=>{
|
|
47515
47517
|
const value = entityForm.form.values[column.name];
|
|
47516
47518
|
return value >= 1000000 ? millionsStep : value >= 1000 ? thousandsStep : step || 1;
|