@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.
- package/bundle/bundle.umd.js +2 -4
- package/bundle/bundle.umd.min.js +1 -1
- package/dist/components/Calculator/getDefaultValues.js +1 -3
- package/dist/components/Calculator/getDefaultValues.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 +2 -4
- package/mobile/bundle/bundle.umd.min.js +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/getDefaultValues.js +2 -4
- package/mobile/lib/components/Calculator/getDefaultValues.js.map +1 -1
- package/mobile/src/components/Calculator/getDefaultValues.ts +2 -9
- package/package.json +1 -1
- package/src/components/Calculator/getDefaultValues.ts +2 -9
package/bundle/bundle.umd.js
CHANGED
|
@@ -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;
|