@redneckz/wildless-cms-uni-blocks 0.14.798 → 0.14.799

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,7 +6816,9 @@
6816
6816
  checkRangeByKeys(monthsValue || defaultMonth, ['minMonths', 'maxMonths'], row),
6817
6817
  ].every(Boolean)) || DEFAULT_DEPOSIT_CALCULATOR_PARAMS;
6818
6818
  const { rate } = depositCalculatorSourceBookParams;
6819
- const income = getDepositIncome(rate, userInputParams);
6819
+ const extraPercent = userInputParams?.extraPercent?.key;
6820
+ const totalRate = Number(rate) + Number(extraPercent);
6821
+ const income = getDepositIncome(totalRate, userInputParams);
6820
6822
  const finalSum = moneyValue + income;
6821
6823
  const sourceBookRows = rows || [DEFAULT_DEPOSIT_CALCULATOR_PARAMS];
6822
6824
  return {
@@ -11431,7 +11433,7 @@
11431
11433
  slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
11432
11434
  });
11433
11435
 
11434
- const packageVersion = "0.14.797";
11436
+ const packageVersion = "0.14.798";
11435
11437
 
11436
11438
  exports.Blocks = Blocks;
11437
11439
  exports.ContentPage = ContentPage;