aefis-core-ui 2.1.16 → 2.1.17
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.modern.js +3 -1
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.modern.js
CHANGED
|
@@ -16392,7 +16392,7 @@ const ReadOnlyView = ({
|
|
|
16392
16392
|
},
|
|
16393
16393
|
description: /*#__PURE__*/jsx(Box$2, {
|
|
16394
16394
|
sx: {
|
|
16395
|
-
paddingRight:
|
|
16395
|
+
paddingRight: 0.5
|
|
16396
16396
|
},
|
|
16397
16397
|
children: _emptyViewText
|
|
16398
16398
|
}),
|
|
@@ -19473,6 +19473,7 @@ const TextWidgetReadOnly$1 = props => {
|
|
|
19473
19473
|
options: {
|
|
19474
19474
|
prefix = "$",
|
|
19475
19475
|
decimalScale = 2,
|
|
19476
|
+
fixedDecimalScale = 2,
|
|
19476
19477
|
thousandSeparator = ",",
|
|
19477
19478
|
decimalSeparator = ".",
|
|
19478
19479
|
allowNegative = true
|
|
@@ -19483,6 +19484,7 @@ const TextWidgetReadOnly$1 = props => {
|
|
|
19483
19484
|
} = useNumericFormat({
|
|
19484
19485
|
value: props.value,
|
|
19485
19486
|
decimalScale,
|
|
19487
|
+
fixedDecimalScale,
|
|
19486
19488
|
thousandSeparator,
|
|
19487
19489
|
decimalSeparator,
|
|
19488
19490
|
allowNegative
|