aefis-core-ui 2.1.16 → 2.2.0-rc1

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.
@@ -6816,10 +6816,7 @@ DataTable.propTypes = {
6816
6816
  getRowId: PropTypes.func
6817
6817
  };
6818
6818
 
6819
- const options = {
6820
- arrayFormat: "bracket-separator",
6821
- arrayFormatSeparator: ","
6822
- };
6819
+ const options = {};
6823
6820
  const setQueryStringWithoutPageReload = qsValue => {
6824
6821
  const {
6825
6822
  protocol,
@@ -16392,7 +16389,7 @@ const ReadOnlyView = ({
16392
16389
  },
16393
16390
  description: /*#__PURE__*/jsx(Box$2, {
16394
16391
  sx: {
16395
- paddingRight: 1
16392
+ paddingRight: 0.5
16396
16393
  },
16397
16394
  children: _emptyViewText
16398
16395
  }),
@@ -19473,6 +19470,7 @@ const TextWidgetReadOnly$1 = props => {
19473
19470
  options: {
19474
19471
  prefix = "$",
19475
19472
  decimalScale = 2,
19473
+ fixedDecimalScale = 2,
19476
19474
  thousandSeparator = ",",
19477
19475
  decimalSeparator = ".",
19478
19476
  allowNegative = true
@@ -19483,6 +19481,7 @@ const TextWidgetReadOnly$1 = props => {
19483
19481
  } = useNumericFormat({
19484
19482
  value: props.value,
19485
19483
  decimalScale,
19484
+ fixedDecimalScale,
19486
19485
  thousandSeparator,
19487
19486
  decimalSeparator,
19488
19487
  allowNegative