@redneckz/wildless-cms-uni-blocks 0.14.192 → 0.14.194
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 -6
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/Calculator/constants.js +2 -2
- package/dist/components/Calculator/constants.js.map +1 -1
- package/dist/components/Calculator/getDefaultValues.js +1 -3
- package/dist/components/Calculator/getDefaultValues.js.map +1 -1
- package/lib/components/Calculator/constants.js +2 -2
- package/lib/components/Calculator/constants.js.map +1 -1
- package/lib/components/Calculator/getDefaultValues.js +2 -4
- package/lib/components/Calculator/getDefaultValues.js.map +1 -1
- package/mobile/bundle/bundle.umd.js +4 -6
- package/mobile/bundle/bundle.umd.min.js +1 -1
- package/mobile/dist/components/Calculator/constants.js +2 -2
- package/mobile/dist/components/Calculator/constants.js.map +1 -1
- package/mobile/dist/components/Calculator/getDefaultValues.js +1 -3
- package/mobile/dist/components/Calculator/getDefaultValues.js.map +1 -1
- package/mobile/lib/components/Calculator/constants.js +2 -2
- package/mobile/lib/components/Calculator/constants.js.map +1 -1
- package/mobile/lib/components/Calculator/getDefaultValues.js +2 -4
- package/mobile/lib/components/Calculator/getDefaultValues.js.map +1 -1
- package/mobile/src/components/Calculator/constants.ts +2 -2
- package/mobile/src/components/Calculator/getDefaultValues.ts +2 -9
- package/package.json +1 -1
- package/src/components/Calculator/constants.ts +2 -2
- package/src/components/Calculator/getDefaultValues.ts +2 -9
package/bundle/bundle.umd.js
CHANGED
|
@@ -2153,7 +2153,7 @@
|
|
|
2153
2153
|
};
|
|
2154
2154
|
const DEFAULT_DEPOSIT_CALCULATOR_PARAMS = {
|
|
2155
2155
|
minSum: 50000,
|
|
2156
|
-
maxSum:
|
|
2156
|
+
maxSum: 100000001,
|
|
2157
2157
|
minMonths: 2,
|
|
2158
2158
|
maxMonths: 10,
|
|
2159
2159
|
rate: 0,
|
|
@@ -2162,7 +2162,7 @@
|
|
|
2162
2162
|
};
|
|
2163
2163
|
const DEFAULT_BUSINESS_DEPOSIT_CALCULATOR_PARAMS = {
|
|
2164
2164
|
minSum: 1000,
|
|
2165
|
-
maxSum:
|
|
2165
|
+
maxSum: 100000001,
|
|
2166
2166
|
minDays: BUSINESS_MIN_DAYS,
|
|
2167
2167
|
maxDays: BUSINESS_MAX_DAYS,
|
|
2168
2168
|
rate: 0,
|
|
@@ -2313,9 +2313,7 @@
|
|
|
2313
2313
|
}
|
|
2314
2314
|
};
|
|
2315
2315
|
|
|
2316
|
-
const getMoneyDefaultValue = (defaultParams, defaultMoney = 0) => defaultParams?.sum
|
|
2317
|
-
? defaultParams.sum
|
|
2318
|
-
: defaultMoney;
|
|
2316
|
+
const getMoneyDefaultValue = (defaultParams, defaultMoney = 0) => defaultParams?.sum ? defaultParams.sum : defaultMoney;
|
|
2319
2317
|
const getMonthsDefaultValue = (defaultParams, defaultMonth = 0) => defaultParams?.period &&
|
|
2320
2318
|
defaultParams.period >= DEFAULT_MIN_MONTHS &&
|
|
2321
2319
|
defaultParams.period <= DEFAULT_MAX_MONTHS
|
|
@@ -6033,7 +6031,7 @@
|
|
|
6033
6031
|
slots: () => [HEADER_SLOT, FOOTER_SLOT, STICKY_FOOTER_SLOT],
|
|
6034
6032
|
});
|
|
6035
6033
|
|
|
6036
|
-
const packageVersion = "0.14.
|
|
6034
|
+
const packageVersion = "0.14.193";
|
|
6037
6035
|
|
|
6038
6036
|
exports.Blocks = Blocks;
|
|
6039
6037
|
exports.ContentPage = ContentPage;
|