@redneckz/wildless-cms-uni-blocks 0.14.996 → 0.14.997

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.
@@ -8834,7 +8834,6 @@
8834
8834
  : {
8835
8835
  ..._,
8836
8836
  ...normalizeReplenishWithdrawn(_),
8837
- ...normalizeMoneyValue(_, rows),
8838
8837
  ...normalizeMonthValue(_, rows),
8839
8838
  ...normalizeCurrency(_, rows),
8840
8839
  };
@@ -8843,11 +8842,6 @@
8843
8842
  const monthsValue = _.monthsValue || Math.round((minMonths + maxMonths) / 2);
8844
8843
  return { monthsValue: clamp(monthsValue, minMonths, maxMonths) };
8845
8844
  };
8846
- const normalizeMoneyValue = (_, rows) => {
8847
- const { minSum, maxSum } = getRangeByKeys(['minSum', 'maxSum'], getRows(rows, _?.currency));
8848
- const moneyValue = _.moneyValue || minSum;
8849
- return { moneyValue: clamp(moneyValue, minSum, maxSum) };
8850
- };
8851
8845
  const normalizeCurrency = (_, rows) => ({
8852
8846
  currency: _?.currency ?? rows?.map((row) => row.currency)?.[0],
8853
8847
  });
@@ -13742,7 +13736,7 @@
13742
13736
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
13743
13737
  });
13744
13738
 
13745
- const packageVersion = "0.14.995";
13739
+ const packageVersion = "0.14.996";
13746
13740
 
13747
13741
  exports.Blocks = Blocks;
13748
13742
  exports.ContentPage = ContentPage;