@redneckz/wildless-cms-uni-blocks 0.14.193 → 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.
@@ -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.192";
6034
+ const packageVersion = "0.14.193";
6037
6035
 
6038
6036
  exports.Blocks = Blocks;
6039
6037
  exports.ContentPage = ContentPage;