@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.
@@ -2153,7 +2153,7 @@
2153
2153
  };
2154
2154
  const DEFAULT_DEPOSIT_CALCULATOR_PARAMS = {
2155
2155
  minSum: 50000,
2156
- maxSum: 5000000,
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: 500000,
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 && defaultParams.sum >= DEFAULT_MIN_SUM$1 && defaultParams.sum <= DEFAULT_MAX_SUM$1
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.191";
6034
+ const packageVersion = "0.14.193";
6037
6035
 
6038
6036
  exports.Blocks = Blocks;
6039
6037
  exports.ContentPage = ContentPage;