@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.
- package/bundle/bundle.umd.js +4 -2
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/CalculatorDeposit/getDepositCalculatorParams.js +3 -1
- package/dist/components/CalculatorDeposit/getDepositCalculatorParams.js.map +1 -1
- package/lib/components/CalculatorDeposit/getDepositCalculatorParams.js +3 -1
- package/lib/components/CalculatorDeposit/getDepositCalculatorParams.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +4 -2
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/CalculatorDeposit/getDepositCalculatorParams.js +3 -1
- package/mobile/dist/components/CalculatorDeposit/getDepositCalculatorParams.js.map +1 -1
- package/mobile/lib/components/CalculatorDeposit/getDepositCalculatorParams.js +3 -1
- package/mobile/lib/components/CalculatorDeposit/getDepositCalculatorParams.js.map +1 -1
- package/mobile/src/components/CalculatorDeposit/getDepositCalculatorParams.ts +3 -1
- package/package.json +1 -1
- package/src/components/CalculatorDeposit/getDepositCalculatorParams.ts +3 -1
package/bundle/bundle.umd.js
CHANGED
|
@@ -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
|
|
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.
|
|
11436
|
+
const packageVersion = "0.14.798";
|
|
11435
11437
|
|
|
11436
11438
|
exports.Blocks = Blocks;
|
|
11437
11439
|
exports.ContentPage = ContentPage;
|